diff --git a/.prettierignore b/.prettierignore index 0b99898..751bbc4 100644 --- a/.prettierignore +++ b/.prettierignore @@ -9,6 +9,7 @@ src/lib/helpers/pokeapi-pokemon.json static/sprites/pokemon.json src/lib/helpers/pokedex.json src/lib/helpers/sprites.json +static/sprites-small/manifest.json # Machine-local editor and tool settings. **/*.local.json diff --git a/package.json b/package.json index eddd0ab..8b580e9 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "dev-generate": "GENERATE_SW=true npx tailwindcss -i ./static/input.css -o ./static/output.css && vite dev", "dev-generate-suppress-w": "GENERATE_SW=true SUPPRESS_WARNING=true npx tailwindcss -i ./static/input.css -o ./static/output.css && vite dev", "sprites:build": "node scripts/optimize-sprites.mjs", + "sprites:manifest": "node scripts/sprite-manifest.mjs", "build-generate-sw": "npm run tailwind && GENERATE_SW=true vite build", "build-generate-sw-node": "npm run tailwind && NODE_ADAPTER=true GENERATE_SW=true vite build", "build": "npm run tailwind && vite build", diff --git a/scripts/optimize-sprites.mjs b/scripts/optimize-sprites.mjs index 4665394..e7e1d0b 100644 --- a/scripts/optimize-sprites.mjs +++ b/scripts/optimize-sprites.mjs @@ -3,13 +3,16 @@ import path from 'node:path'; import process from 'node:process'; import { mkdir, readdir, rename } from 'node:fs/promises'; import sharp from 'sharp'; +import { writeSpriteManifest } from './sprite-manifest.mjs'; const inputDir = process.env.SPRITE_INPUT_DIR ?? path.join(process.cwd(), 'static', 'sprites'); const outputDir = process.env.SPRITE_OUTPUT_DIR ?? path.join(process.cwd(), 'static', 'sprites-small'); const format = (process.env.SPRITE_FORMAT ?? 'webp').toLowerCase(); const quality = Number(process.env.SPRITE_QUALITY ?? 80); -const maxSize = Number(process.env.SPRITE_MAX_SIZE ?? 0); +// Sprites render at 44-64px in the box grid and up to 192px in the detail view, and every byte is +// downloaded (and cached offline) per sprite, so larger sources only cost users data. +const maxSize = Number(process.env.SPRITE_MAX_SIZE ?? 192); if (!['png', 'webp'].includes(format)) { console.error(`Unsupported SPRITE_FORMAT "${format}". Use "png" or "webp".`); @@ -69,4 +72,5 @@ for (const [index, file] of files.entries()) { } } -console.log('Sprite optimization complete.'); +const manifest = await writeSpriteManifest(outputDir); +console.log(`Sprite optimization complete. Manifest lists ${manifest.files.length} sprites.`); diff --git a/scripts/sprite-manifest.mjs b/scripts/sprite-manifest.mjs new file mode 100644 index 0000000..74eff54 --- /dev/null +++ b/scripts/sprite-manifest.mjs @@ -0,0 +1,48 @@ +#!/usr/bin/env node +// Lists every sprite (all forms, shiny and female variants) with its size, so the offline worker can +// save the complete set on request and tell whether anything is still missing. +import path from 'node:path'; +import process from 'node:process'; +import { readdir, stat, writeFile } from 'node:fs/promises'; +import { fileURLToPath } from 'node:url'; + +export const SPRITE_MANIFEST_NAME = 'manifest.json'; + +async function walk(dir, files = []) { + for (const entry of await readdir(dir, { withFileTypes: true })) { + const fullPath = path.join(dir, entry.name); + if (entry.isDirectory()) await walk(fullPath, files); + else if (entry.isFile() && entry.name.endsWith('.webp')) files.push(fullPath); + } + return files; +} + +/** Builds the manifest for `/home`, with paths relative to that folder. */ +export async function buildSpriteManifest(spritesDir) { + const homeDir = path.join(spritesDir, 'home'); + const files = await walk(homeDir); + const entries = await Promise.all( + files.map(async (file) => [ + path.relative(homeDir, file).split(path.sep).join('/'), + (await stat(file)).size + ]) + ); + entries.sort(([a], [b]) => (a < b ? -1 : a > b ? 1 : 0)); + return { version: 1, files: entries }; +} + +export async function writeSpriteManifest(spritesDir) { + const manifest = await buildSpriteManifest(spritesDir); + await writeFile(path.join(spritesDir, SPRITE_MANIFEST_NAME), `${JSON.stringify(manifest)}\n`); + return manifest; +} + +if (process.argv[1] === fileURLToPath(import.meta.url)) { + const spritesDir = + process.env.SPRITE_OUTPUT_DIR ?? path.join(process.cwd(), 'static', 'sprites-small'); + const manifest = await writeSpriteManifest(spritesDir); + const bytes = manifest.files.reduce((total, [, size]) => total + size, 0); + console.log( + `Wrote ${manifest.files.length} sprites (${(bytes / 1048576).toFixed(1)} MB) to ${SPRITE_MANIFEST_NAME}` + ); +} diff --git a/src/lib/components/pokedex/PokedexEntryCatchRecord.svelte b/src/lib/components/pokedex/PokedexEntryCatchRecord.svelte index a991184..8faf176 100644 --- a/src/lib/components/pokedex/PokedexEntryCatchRecord.svelte +++ b/src/lib/components/pokedex/PokedexEntryCatchRecord.svelte @@ -263,4 +263,11 @@ width: 100%; aspect-ratio: 1; } + + /* Sprite files are at most 192px, so cap the display size there to keep them crisp. */ + .sprite-container :global(img) { + width: 192px; + max-width: 100%; + height: auto; + } diff --git a/src/lib/utils/spriteUrl.ts b/src/lib/utils/spriteUrl.ts index 1717f5d..862e907 100644 --- a/src/lib/utils/spriteUrl.ts +++ b/src/lib/utils/spriteUrl.ts @@ -1,3 +1,10 @@ +/** Folder holding every sprite; paths in static/sprites-small/manifest.json are relative to it. */ +export function spriteRoot(useLocalSprites: boolean): string { + return useLocalSprites + ? '/sprites-small/home' + : 'https://raw.githubusercontent.com/jcreek/LivingDexTracker/master/static/sprites-small/home'; +} + export function resolveSpriteUrl( entry: { pokedexNumber: number; form?: string; spriteKey?: string }, shiny: boolean, @@ -34,9 +41,7 @@ export function resolveSpriteUrl( } } - let root = useLocalSprites - ? '/sprites-small/home' - : 'https://raw.githubusercontent.com/jcreek/LivingDexTracker/master/static/sprites-small/home'; + let root = spriteRoot(useLocalSprites); if (shiny) root += '/shiny'; if (/^female\b/i.test(form)) root += '/female'; return `${root}/${key}.webp`; diff --git a/static/sprites-small/home/0.webp b/static/sprites-small/home/0.webp index 5a0f8cf..b853bd1 100644 Binary files a/static/sprites-small/home/0.webp and b/static/sprites-small/home/0.webp differ diff --git a/static/sprites-small/home/1.webp b/static/sprites-small/home/1.webp index 3da5168..b882930 100644 Binary files a/static/sprites-small/home/1.webp and b/static/sprites-small/home/1.webp differ diff --git a/static/sprites-small/home/10.webp b/static/sprites-small/home/10.webp index 09dbdaa..a4c6212 100644 Binary files a/static/sprites-small/home/10.webp and b/static/sprites-small/home/10.webp differ diff --git a/static/sprites-small/home/100.webp b/static/sprites-small/home/100.webp index 38aa4d6..7f14d1f 100644 Binary files a/static/sprites-small/home/100.webp and b/static/sprites-small/home/100.webp differ diff --git a/static/sprites-small/home/1000.webp b/static/sprites-small/home/1000.webp index c7d93a3..d092907 100644 Binary files a/static/sprites-small/home/1000.webp and b/static/sprites-small/home/1000.webp differ diff --git a/static/sprites-small/home/10001.webp b/static/sprites-small/home/10001.webp index 7092d68..157da3a 100644 Binary files a/static/sprites-small/home/10001.webp and b/static/sprites-small/home/10001.webp differ diff --git a/static/sprites-small/home/10002.webp b/static/sprites-small/home/10002.webp index 4ff344f..f7d279d 100644 Binary files a/static/sprites-small/home/10002.webp and b/static/sprites-small/home/10002.webp differ diff --git a/static/sprites-small/home/10003.webp b/static/sprites-small/home/10003.webp index 6a5b38c..a15365d 100644 Binary files a/static/sprites-small/home/10003.webp and b/static/sprites-small/home/10003.webp differ diff --git a/static/sprites-small/home/10004.webp b/static/sprites-small/home/10004.webp index 17c9995..8f78fac 100644 Binary files a/static/sprites-small/home/10004.webp and b/static/sprites-small/home/10004.webp differ diff --git a/static/sprites-small/home/10005.webp b/static/sprites-small/home/10005.webp index 1b8b105..6d520a3 100644 Binary files a/static/sprites-small/home/10005.webp and b/static/sprites-small/home/10005.webp differ diff --git a/static/sprites-small/home/10006.webp b/static/sprites-small/home/10006.webp index b78d613..8027ca8 100644 Binary files a/static/sprites-small/home/10006.webp and b/static/sprites-small/home/10006.webp differ diff --git a/static/sprites-small/home/10007.webp b/static/sprites-small/home/10007.webp index 6479beb..6dc602e 100644 Binary files a/static/sprites-small/home/10007.webp and b/static/sprites-small/home/10007.webp differ diff --git a/static/sprites-small/home/10008.webp b/static/sprites-small/home/10008.webp index c0bc7a3..c431d7f 100644 Binary files a/static/sprites-small/home/10008.webp and b/static/sprites-small/home/10008.webp differ diff --git a/static/sprites-small/home/10009.webp b/static/sprites-small/home/10009.webp index ea59ead..3ef2e3f 100644 Binary files a/static/sprites-small/home/10009.webp and b/static/sprites-small/home/10009.webp differ diff --git a/static/sprites-small/home/1001.webp b/static/sprites-small/home/1001.webp index 9de4e78..2bc04f8 100644 Binary files a/static/sprites-small/home/1001.webp and b/static/sprites-small/home/1001.webp differ diff --git a/static/sprites-small/home/10010.webp b/static/sprites-small/home/10010.webp index bd46989..1d77c8b 100644 Binary files a/static/sprites-small/home/10010.webp and b/static/sprites-small/home/10010.webp differ diff --git a/static/sprites-small/home/10011.webp b/static/sprites-small/home/10011.webp index 5b7c325..542e44c 100644 Binary files a/static/sprites-small/home/10011.webp and b/static/sprites-small/home/10011.webp differ diff --git a/static/sprites-small/home/10012.webp b/static/sprites-small/home/10012.webp index 8b42965..1de3f5a 100644 Binary files a/static/sprites-small/home/10012.webp and b/static/sprites-small/home/10012.webp differ diff --git a/static/sprites-small/home/10013.webp b/static/sprites-small/home/10013.webp index dd938ac..79b57da 100644 Binary files a/static/sprites-small/home/10013.webp and b/static/sprites-small/home/10013.webp differ diff --git a/static/sprites-small/home/10014.webp b/static/sprites-small/home/10014.webp index 1b22ce4..73ab69e 100644 Binary files a/static/sprites-small/home/10014.webp and b/static/sprites-small/home/10014.webp differ diff --git a/static/sprites-small/home/10015.webp b/static/sprites-small/home/10015.webp index 87a65b2..b01a98a 100644 Binary files a/static/sprites-small/home/10015.webp and b/static/sprites-small/home/10015.webp differ diff --git a/static/sprites-small/home/10016.webp b/static/sprites-small/home/10016.webp index 13bd840..66e51c0 100644 Binary files a/static/sprites-small/home/10016.webp and b/static/sprites-small/home/10016.webp differ diff --git a/static/sprites-small/home/10017.webp b/static/sprites-small/home/10017.webp index 6092af7..d4770ff 100644 Binary files a/static/sprites-small/home/10017.webp and b/static/sprites-small/home/10017.webp differ diff --git a/static/sprites-small/home/10018.webp b/static/sprites-small/home/10018.webp index ebd07fa..37ae375 100644 Binary files a/static/sprites-small/home/10018.webp and b/static/sprites-small/home/10018.webp differ diff --git a/static/sprites-small/home/10019.webp b/static/sprites-small/home/10019.webp index e3b1821..b1ee52e 100644 Binary files a/static/sprites-small/home/10019.webp and b/static/sprites-small/home/10019.webp differ diff --git a/static/sprites-small/home/1002.webp b/static/sprites-small/home/1002.webp index 11734c4..47f71b7 100644 Binary files a/static/sprites-small/home/1002.webp and b/static/sprites-small/home/1002.webp differ diff --git a/static/sprites-small/home/10020.webp b/static/sprites-small/home/10020.webp index 4976f0b..13d4370 100644 Binary files a/static/sprites-small/home/10020.webp and b/static/sprites-small/home/10020.webp differ diff --git a/static/sprites-small/home/10021.webp b/static/sprites-small/home/10021.webp index 8e5747b..22a542f 100644 Binary files a/static/sprites-small/home/10021.webp and b/static/sprites-small/home/10021.webp differ diff --git a/static/sprites-small/home/10022.webp b/static/sprites-small/home/10022.webp index 8fe6cd0..e1bcddd 100644 Binary files a/static/sprites-small/home/10022.webp and b/static/sprites-small/home/10022.webp differ diff --git a/static/sprites-small/home/10023.webp b/static/sprites-small/home/10023.webp index 48f3213..642963f 100644 Binary files a/static/sprites-small/home/10023.webp and b/static/sprites-small/home/10023.webp differ diff --git a/static/sprites-small/home/10024.webp b/static/sprites-small/home/10024.webp index 4e7654b..55fd409 100644 Binary files a/static/sprites-small/home/10024.webp and b/static/sprites-small/home/10024.webp differ diff --git a/static/sprites-small/home/10025.webp b/static/sprites-small/home/10025.webp index af33a4f..6356e87 100644 Binary files a/static/sprites-small/home/10025.webp and b/static/sprites-small/home/10025.webp differ diff --git a/static/sprites-small/home/10026.webp b/static/sprites-small/home/10026.webp index e02da02..f3c5353 100644 Binary files a/static/sprites-small/home/10026.webp and b/static/sprites-small/home/10026.webp differ diff --git a/static/sprites-small/home/10027.webp b/static/sprites-small/home/10027.webp index 6e3a7b1..fd93006 100644 Binary files a/static/sprites-small/home/10027.webp and b/static/sprites-small/home/10027.webp differ diff --git a/static/sprites-small/home/10028.webp b/static/sprites-small/home/10028.webp index 3fbf6c4..9c06e6a 100644 Binary files a/static/sprites-small/home/10028.webp and b/static/sprites-small/home/10028.webp differ diff --git a/static/sprites-small/home/10029.webp b/static/sprites-small/home/10029.webp index a03005d..aa29b33 100644 Binary files a/static/sprites-small/home/10029.webp and b/static/sprites-small/home/10029.webp differ diff --git a/static/sprites-small/home/1003.webp b/static/sprites-small/home/1003.webp index 9612eb0..5ea879f 100644 Binary files a/static/sprites-small/home/1003.webp and b/static/sprites-small/home/1003.webp differ diff --git a/static/sprites-small/home/10030.webp b/static/sprites-small/home/10030.webp index b915db2..46eb354 100644 Binary files a/static/sprites-small/home/10030.webp and b/static/sprites-small/home/10030.webp differ diff --git a/static/sprites-small/home/10031.webp b/static/sprites-small/home/10031.webp index 15aef01..bd9f626 100644 Binary files a/static/sprites-small/home/10031.webp and b/static/sprites-small/home/10031.webp differ diff --git a/static/sprites-small/home/10032.webp b/static/sprites-small/home/10032.webp index 0a5c7e5..3aa1526 100644 Binary files a/static/sprites-small/home/10032.webp and b/static/sprites-small/home/10032.webp differ diff --git a/static/sprites-small/home/10033.webp b/static/sprites-small/home/10033.webp index f96f597..b54e2b2 100644 Binary files a/static/sprites-small/home/10033.webp and b/static/sprites-small/home/10033.webp differ diff --git a/static/sprites-small/home/10034.webp b/static/sprites-small/home/10034.webp index 0c1008e..f098da0 100644 Binary files a/static/sprites-small/home/10034.webp and b/static/sprites-small/home/10034.webp differ diff --git a/static/sprites-small/home/10035.webp b/static/sprites-small/home/10035.webp index faff210..ae688c1 100644 Binary files a/static/sprites-small/home/10035.webp and b/static/sprites-small/home/10035.webp differ diff --git a/static/sprites-small/home/10036.webp b/static/sprites-small/home/10036.webp index 8cebcc1..f04ab6f 100644 Binary files a/static/sprites-small/home/10036.webp and b/static/sprites-small/home/10036.webp differ diff --git a/static/sprites-small/home/10037.webp b/static/sprites-small/home/10037.webp index dfa5963..3f5c955 100644 Binary files a/static/sprites-small/home/10037.webp and b/static/sprites-small/home/10037.webp differ diff --git a/static/sprites-small/home/10038.webp b/static/sprites-small/home/10038.webp index 15fe69b..de7765f 100644 Binary files a/static/sprites-small/home/10038.webp and b/static/sprites-small/home/10038.webp differ diff --git a/static/sprites-small/home/10039.webp b/static/sprites-small/home/10039.webp index 28759c0..4348678 100644 Binary files a/static/sprites-small/home/10039.webp and b/static/sprites-small/home/10039.webp differ diff --git a/static/sprites-small/home/1004.webp b/static/sprites-small/home/1004.webp index 57f90a9..3626705 100644 Binary files a/static/sprites-small/home/1004.webp and b/static/sprites-small/home/1004.webp differ diff --git a/static/sprites-small/home/10040.webp b/static/sprites-small/home/10040.webp index 8c9479c..95889ef 100644 Binary files a/static/sprites-small/home/10040.webp and b/static/sprites-small/home/10040.webp differ diff --git a/static/sprites-small/home/10041.webp b/static/sprites-small/home/10041.webp index 4608734..aa61dfa 100644 Binary files a/static/sprites-small/home/10041.webp and b/static/sprites-small/home/10041.webp differ diff --git a/static/sprites-small/home/10042.webp b/static/sprites-small/home/10042.webp index 1abc3e1..538e86e 100644 Binary files a/static/sprites-small/home/10042.webp and b/static/sprites-small/home/10042.webp differ diff --git a/static/sprites-small/home/10043.webp b/static/sprites-small/home/10043.webp index ac6aaf4..76bbd46 100644 Binary files a/static/sprites-small/home/10043.webp and b/static/sprites-small/home/10043.webp differ diff --git a/static/sprites-small/home/10044.webp b/static/sprites-small/home/10044.webp index a2e24b1..0da7ade 100644 Binary files a/static/sprites-small/home/10044.webp and b/static/sprites-small/home/10044.webp differ diff --git a/static/sprites-small/home/10045.webp b/static/sprites-small/home/10045.webp index 88d18b2..56a9c79 100644 Binary files a/static/sprites-small/home/10045.webp and b/static/sprites-small/home/10045.webp differ diff --git a/static/sprites-small/home/10046.webp b/static/sprites-small/home/10046.webp index 00380e6..1c96d25 100644 Binary files a/static/sprites-small/home/10046.webp and b/static/sprites-small/home/10046.webp differ diff --git a/static/sprites-small/home/10047.webp b/static/sprites-small/home/10047.webp index 9848141..57f04ab 100644 Binary files a/static/sprites-small/home/10047.webp and b/static/sprites-small/home/10047.webp differ diff --git a/static/sprites-small/home/10048.webp b/static/sprites-small/home/10048.webp index 890e689..6c87411 100644 Binary files a/static/sprites-small/home/10048.webp and b/static/sprites-small/home/10048.webp differ diff --git a/static/sprites-small/home/10049.webp b/static/sprites-small/home/10049.webp index 2c8274d..3bcaa69 100644 Binary files a/static/sprites-small/home/10049.webp and b/static/sprites-small/home/10049.webp differ diff --git a/static/sprites-small/home/1005.webp b/static/sprites-small/home/1005.webp index b74ceb5..043a4e5 100644 Binary files a/static/sprites-small/home/1005.webp and b/static/sprites-small/home/1005.webp differ diff --git a/static/sprites-small/home/10050.webp b/static/sprites-small/home/10050.webp index 96960af..b2c9339 100644 Binary files a/static/sprites-small/home/10050.webp and b/static/sprites-small/home/10050.webp differ diff --git a/static/sprites-small/home/10051.webp b/static/sprites-small/home/10051.webp index 98b8e33..59d69c9 100644 Binary files a/static/sprites-small/home/10051.webp and b/static/sprites-small/home/10051.webp differ diff --git a/static/sprites-small/home/10052.webp b/static/sprites-small/home/10052.webp index 70cd4e1..3416004 100644 Binary files a/static/sprites-small/home/10052.webp and b/static/sprites-small/home/10052.webp differ diff --git a/static/sprites-small/home/10053.webp b/static/sprites-small/home/10053.webp index 71c22a1..f4fa255 100644 Binary files a/static/sprites-small/home/10053.webp and b/static/sprites-small/home/10053.webp differ diff --git a/static/sprites-small/home/10054.webp b/static/sprites-small/home/10054.webp index f3b71f0..b7bb581 100644 Binary files a/static/sprites-small/home/10054.webp and b/static/sprites-small/home/10054.webp differ diff --git a/static/sprites-small/home/10055.webp b/static/sprites-small/home/10055.webp index 880d38d..29748be 100644 Binary files a/static/sprites-small/home/10055.webp and b/static/sprites-small/home/10055.webp differ diff --git a/static/sprites-small/home/10056.webp b/static/sprites-small/home/10056.webp index 43ee1e5..fdf87af 100644 Binary files a/static/sprites-small/home/10056.webp and b/static/sprites-small/home/10056.webp differ diff --git a/static/sprites-small/home/10057.webp b/static/sprites-small/home/10057.webp index a28e84f..99b6372 100644 Binary files a/static/sprites-small/home/10057.webp and b/static/sprites-small/home/10057.webp differ diff --git a/static/sprites-small/home/10058.webp b/static/sprites-small/home/10058.webp index 10ab94b..475f7d2 100644 Binary files a/static/sprites-small/home/10058.webp and b/static/sprites-small/home/10058.webp differ diff --git a/static/sprites-small/home/10059.webp b/static/sprites-small/home/10059.webp index bf43811..7de4c91 100644 Binary files a/static/sprites-small/home/10059.webp and b/static/sprites-small/home/10059.webp differ diff --git a/static/sprites-small/home/1006.webp b/static/sprites-small/home/1006.webp index 0bb2598..9d8badd 100644 Binary files a/static/sprites-small/home/1006.webp and b/static/sprites-small/home/1006.webp differ diff --git a/static/sprites-small/home/10060.webp b/static/sprites-small/home/10060.webp index 1d5857b..c656d0e 100644 Binary files a/static/sprites-small/home/10060.webp and b/static/sprites-small/home/10060.webp differ diff --git a/static/sprites-small/home/10062.webp b/static/sprites-small/home/10062.webp index 21450a9..84bd6cb 100644 Binary files a/static/sprites-small/home/10062.webp and b/static/sprites-small/home/10062.webp differ diff --git a/static/sprites-small/home/10063.webp b/static/sprites-small/home/10063.webp index 406662f..d8c0ae2 100644 Binary files a/static/sprites-small/home/10063.webp and b/static/sprites-small/home/10063.webp differ diff --git a/static/sprites-small/home/10064.webp b/static/sprites-small/home/10064.webp index e343cea..9218953 100644 Binary files a/static/sprites-small/home/10064.webp and b/static/sprites-small/home/10064.webp differ diff --git a/static/sprites-small/home/10065.webp b/static/sprites-small/home/10065.webp index 14b6595..b08872b 100644 Binary files a/static/sprites-small/home/10065.webp and b/static/sprites-small/home/10065.webp differ diff --git a/static/sprites-small/home/10066.webp b/static/sprites-small/home/10066.webp index d3ad0fb..74ab465 100644 Binary files a/static/sprites-small/home/10066.webp and b/static/sprites-small/home/10066.webp differ diff --git a/static/sprites-small/home/10067.webp b/static/sprites-small/home/10067.webp index 14c8f4f..84fbe71 100644 Binary files a/static/sprites-small/home/10067.webp and b/static/sprites-small/home/10067.webp differ diff --git a/static/sprites-small/home/10068.webp b/static/sprites-small/home/10068.webp index 4c2d220..04686db 100644 Binary files a/static/sprites-small/home/10068.webp and b/static/sprites-small/home/10068.webp differ diff --git a/static/sprites-small/home/10069.webp b/static/sprites-small/home/10069.webp index 32ec41b..10611b1 100644 Binary files a/static/sprites-small/home/10069.webp and b/static/sprites-small/home/10069.webp differ diff --git a/static/sprites-small/home/1007.webp b/static/sprites-small/home/1007.webp index f1d09a4..fdb1944 100644 Binary files a/static/sprites-small/home/1007.webp and b/static/sprites-small/home/1007.webp differ diff --git a/static/sprites-small/home/10070.webp b/static/sprites-small/home/10070.webp index f20ef76..6543c0f 100644 Binary files a/static/sprites-small/home/10070.webp and b/static/sprites-small/home/10070.webp differ diff --git a/static/sprites-small/home/10071.webp b/static/sprites-small/home/10071.webp index d4b0208..a04ec10 100644 Binary files a/static/sprites-small/home/10071.webp and b/static/sprites-small/home/10071.webp differ diff --git a/static/sprites-small/home/10072.webp b/static/sprites-small/home/10072.webp index 7e0e5a9..f3ca5c1 100644 Binary files a/static/sprites-small/home/10072.webp and b/static/sprites-small/home/10072.webp differ diff --git a/static/sprites-small/home/10073.webp b/static/sprites-small/home/10073.webp index c4b43df..9ee0251 100644 Binary files a/static/sprites-small/home/10073.webp and b/static/sprites-small/home/10073.webp differ diff --git a/static/sprites-small/home/10074.webp b/static/sprites-small/home/10074.webp index 723495f..512fb24 100644 Binary files a/static/sprites-small/home/10074.webp and b/static/sprites-small/home/10074.webp differ diff --git a/static/sprites-small/home/10075.webp b/static/sprites-small/home/10075.webp index 092d917..bced8a5 100644 Binary files a/static/sprites-small/home/10075.webp and b/static/sprites-small/home/10075.webp differ diff --git a/static/sprites-small/home/10076.webp b/static/sprites-small/home/10076.webp index 5b4fdf5..4b1dcfe 100644 Binary files a/static/sprites-small/home/10076.webp and b/static/sprites-small/home/10076.webp differ diff --git a/static/sprites-small/home/10077.webp b/static/sprites-small/home/10077.webp index d6ffd8b..6783204 100644 Binary files a/static/sprites-small/home/10077.webp and b/static/sprites-small/home/10077.webp differ diff --git a/static/sprites-small/home/10078.webp b/static/sprites-small/home/10078.webp index 324b453..594c4d2 100644 Binary files a/static/sprites-small/home/10078.webp and b/static/sprites-small/home/10078.webp differ diff --git a/static/sprites-small/home/10079.webp b/static/sprites-small/home/10079.webp index c854982..a12acd1 100644 Binary files a/static/sprites-small/home/10079.webp and b/static/sprites-small/home/10079.webp differ diff --git a/static/sprites-small/home/1008.webp b/static/sprites-small/home/1008.webp index 51505f0..c89f14c 100644 Binary files a/static/sprites-small/home/1008.webp and b/static/sprites-small/home/1008.webp differ diff --git a/static/sprites-small/home/10086.webp b/static/sprites-small/home/10086.webp index 26488d2..a90bbd6 100644 Binary files a/static/sprites-small/home/10086.webp and b/static/sprites-small/home/10086.webp differ diff --git a/static/sprites-small/home/10087.webp b/static/sprites-small/home/10087.webp index 8e559e0..9ed21f7 100644 Binary files a/static/sprites-small/home/10087.webp and b/static/sprites-small/home/10087.webp differ diff --git a/static/sprites-small/home/10088.webp b/static/sprites-small/home/10088.webp index d107728..e06f93e 100644 Binary files a/static/sprites-small/home/10088.webp and b/static/sprites-small/home/10088.webp differ diff --git a/static/sprites-small/home/10089.webp b/static/sprites-small/home/10089.webp index d531844..2b6f389 100644 Binary files a/static/sprites-small/home/10089.webp and b/static/sprites-small/home/10089.webp differ diff --git a/static/sprites-small/home/1009.webp b/static/sprites-small/home/1009.webp index da6b088..b8878bd 100644 Binary files a/static/sprites-small/home/1009.webp and b/static/sprites-small/home/1009.webp differ diff --git a/static/sprites-small/home/10090.webp b/static/sprites-small/home/10090.webp index a2a36ae..07d4d5a 100644 Binary files a/static/sprites-small/home/10090.webp and b/static/sprites-small/home/10090.webp differ diff --git a/static/sprites-small/home/10091.webp b/static/sprites-small/home/10091.webp index 53473dd..22dcf47 100644 Binary files a/static/sprites-small/home/10091.webp and b/static/sprites-small/home/10091.webp differ diff --git a/static/sprites-small/home/10092.webp b/static/sprites-small/home/10092.webp index 34a5c9c..7f5dbf3 100644 Binary files a/static/sprites-small/home/10092.webp and b/static/sprites-small/home/10092.webp differ diff --git a/static/sprites-small/home/10093.webp b/static/sprites-small/home/10093.webp index 1438672..ae7f762 100644 Binary files a/static/sprites-small/home/10093.webp and b/static/sprites-small/home/10093.webp differ diff --git a/static/sprites-small/home/10094.webp b/static/sprites-small/home/10094.webp index 53d47e2..e9535c0 100644 Binary files a/static/sprites-small/home/10094.webp and b/static/sprites-small/home/10094.webp differ diff --git a/static/sprites-small/home/10095.webp b/static/sprites-small/home/10095.webp index d3f592f..e9e14fd 100644 Binary files a/static/sprites-small/home/10095.webp and b/static/sprites-small/home/10095.webp differ diff --git a/static/sprites-small/home/10096.webp b/static/sprites-small/home/10096.webp index a45b54b..c280991 100644 Binary files a/static/sprites-small/home/10096.webp and b/static/sprites-small/home/10096.webp differ diff --git a/static/sprites-small/home/10097.webp b/static/sprites-small/home/10097.webp index 653e72a..9de7ae0 100644 Binary files a/static/sprites-small/home/10097.webp and b/static/sprites-small/home/10097.webp differ diff --git a/static/sprites-small/home/10098.webp b/static/sprites-small/home/10098.webp index 5bca444..09d2488 100644 Binary files a/static/sprites-small/home/10098.webp and b/static/sprites-small/home/10098.webp differ diff --git a/static/sprites-small/home/10099.webp b/static/sprites-small/home/10099.webp index 8f38a1e..a4f72bb 100644 Binary files a/static/sprites-small/home/10099.webp and b/static/sprites-small/home/10099.webp differ diff --git a/static/sprites-small/home/101.webp b/static/sprites-small/home/101.webp index a6d14ee..f0f901e 100644 Binary files a/static/sprites-small/home/101.webp and b/static/sprites-small/home/101.webp differ diff --git a/static/sprites-small/home/1010.webp b/static/sprites-small/home/1010.webp index 425fbd5..89b62d9 100644 Binary files a/static/sprites-small/home/1010.webp and b/static/sprites-small/home/1010.webp differ diff --git a/static/sprites-small/home/10100.webp b/static/sprites-small/home/10100.webp index afe855d..610a520 100644 Binary files a/static/sprites-small/home/10100.webp and b/static/sprites-small/home/10100.webp differ diff --git a/static/sprites-small/home/10101.webp b/static/sprites-small/home/10101.webp index ef9d9ba..7e1d1eb 100644 Binary files a/static/sprites-small/home/10101.webp and b/static/sprites-small/home/10101.webp differ diff --git a/static/sprites-small/home/10102.webp b/static/sprites-small/home/10102.webp index ca0fa6e..a6af18e 100644 Binary files a/static/sprites-small/home/10102.webp and b/static/sprites-small/home/10102.webp differ diff --git a/static/sprites-small/home/10103.webp b/static/sprites-small/home/10103.webp index d73d5f7..e567a8e 100644 Binary files a/static/sprites-small/home/10103.webp and b/static/sprites-small/home/10103.webp differ diff --git a/static/sprites-small/home/10104.webp b/static/sprites-small/home/10104.webp index 0a847dd..0fd5e3b 100644 Binary files a/static/sprites-small/home/10104.webp and b/static/sprites-small/home/10104.webp differ diff --git a/static/sprites-small/home/10105.webp b/static/sprites-small/home/10105.webp index d707fe7..e87a54f 100644 Binary files a/static/sprites-small/home/10105.webp and b/static/sprites-small/home/10105.webp differ diff --git a/static/sprites-small/home/10106.webp b/static/sprites-small/home/10106.webp index 56a5f25..16ce5a6 100644 Binary files a/static/sprites-small/home/10106.webp and b/static/sprites-small/home/10106.webp differ diff --git a/static/sprites-small/home/10107.webp b/static/sprites-small/home/10107.webp index 32a913c..06a77ea 100644 Binary files a/static/sprites-small/home/10107.webp and b/static/sprites-small/home/10107.webp differ diff --git a/static/sprites-small/home/10108.webp b/static/sprites-small/home/10108.webp index 979925a..490368d 100644 Binary files a/static/sprites-small/home/10108.webp and b/static/sprites-small/home/10108.webp differ diff --git a/static/sprites-small/home/10109.webp b/static/sprites-small/home/10109.webp index 48a3e36..9fe7316 100644 Binary files a/static/sprites-small/home/10109.webp and b/static/sprites-small/home/10109.webp differ diff --git a/static/sprites-small/home/1011.webp b/static/sprites-small/home/1011.webp index 5d2a8d3..e0509d7 100644 Binary files a/static/sprites-small/home/1011.webp and b/static/sprites-small/home/1011.webp differ diff --git a/static/sprites-small/home/10110.webp b/static/sprites-small/home/10110.webp index 282ebf7..b62c4ce 100644 Binary files a/static/sprites-small/home/10110.webp and b/static/sprites-small/home/10110.webp differ diff --git a/static/sprites-small/home/10111.webp b/static/sprites-small/home/10111.webp index a629e52..6a3b81e 100644 Binary files a/static/sprites-small/home/10111.webp and b/static/sprites-small/home/10111.webp differ diff --git a/static/sprites-small/home/10112.webp b/static/sprites-small/home/10112.webp index 2ccfb82..fd847ac 100644 Binary files a/static/sprites-small/home/10112.webp and b/static/sprites-small/home/10112.webp differ diff --git a/static/sprites-small/home/10113.webp b/static/sprites-small/home/10113.webp index 77d0372..929ce6f 100644 Binary files a/static/sprites-small/home/10113.webp and b/static/sprites-small/home/10113.webp differ diff --git a/static/sprites-small/home/10114.webp b/static/sprites-small/home/10114.webp index 240dfa0..5d6e8c0 100644 Binary files a/static/sprites-small/home/10114.webp and b/static/sprites-small/home/10114.webp differ diff --git a/static/sprites-small/home/10115.webp b/static/sprites-small/home/10115.webp index dcac4af..81f89e7 100644 Binary files a/static/sprites-small/home/10115.webp and b/static/sprites-small/home/10115.webp differ diff --git a/static/sprites-small/home/10116.webp b/static/sprites-small/home/10116.webp index 21171fe..b76c90a 100644 Binary files a/static/sprites-small/home/10116.webp and b/static/sprites-small/home/10116.webp differ diff --git a/static/sprites-small/home/10117.webp b/static/sprites-small/home/10117.webp index 817dca1..e1e5a5a 100644 Binary files a/static/sprites-small/home/10117.webp and b/static/sprites-small/home/10117.webp differ diff --git a/static/sprites-small/home/10118.webp b/static/sprites-small/home/10118.webp index c9c5268..788f59f 100644 Binary files a/static/sprites-small/home/10118.webp and b/static/sprites-small/home/10118.webp differ diff --git a/static/sprites-small/home/10119.webp b/static/sprites-small/home/10119.webp index cc0fefb..614e6ba 100644 Binary files a/static/sprites-small/home/10119.webp and b/static/sprites-small/home/10119.webp differ diff --git a/static/sprites-small/home/1012.webp b/static/sprites-small/home/1012.webp index 6a5a9e9..f1d8d06 100644 Binary files a/static/sprites-small/home/1012.webp and b/static/sprites-small/home/1012.webp differ diff --git a/static/sprites-small/home/10120.webp b/static/sprites-small/home/10120.webp index 4e44497..9b66752 100644 Binary files a/static/sprites-small/home/10120.webp and b/static/sprites-small/home/10120.webp differ diff --git a/static/sprites-small/home/10121.webp b/static/sprites-small/home/10121.webp index 7c4f6ec..4f9ab90 100644 Binary files a/static/sprites-small/home/10121.webp and b/static/sprites-small/home/10121.webp differ diff --git a/static/sprites-small/home/10122.webp b/static/sprites-small/home/10122.webp index e9b3e45..e3e5258 100644 Binary files a/static/sprites-small/home/10122.webp and b/static/sprites-small/home/10122.webp differ diff --git a/static/sprites-small/home/10123.webp b/static/sprites-small/home/10123.webp index 6d76ea2..01cbeab 100644 Binary files a/static/sprites-small/home/10123.webp and b/static/sprites-small/home/10123.webp differ diff --git a/static/sprites-small/home/10124.webp b/static/sprites-small/home/10124.webp index a02b2be..712cc95 100644 Binary files a/static/sprites-small/home/10124.webp and b/static/sprites-small/home/10124.webp differ diff --git a/static/sprites-small/home/10125.webp b/static/sprites-small/home/10125.webp index c54c99a..d068b7b 100644 Binary files a/static/sprites-small/home/10125.webp and b/static/sprites-small/home/10125.webp differ diff --git a/static/sprites-small/home/10126.webp b/static/sprites-small/home/10126.webp index a1d178f..737e784 100644 Binary files a/static/sprites-small/home/10126.webp and b/static/sprites-small/home/10126.webp differ diff --git a/static/sprites-small/home/10127.webp b/static/sprites-small/home/10127.webp index 18b2ddd..3ef7f92 100644 Binary files a/static/sprites-small/home/10127.webp and b/static/sprites-small/home/10127.webp differ diff --git a/static/sprites-small/home/10128.webp b/static/sprites-small/home/10128.webp index 81bea4d..84aff9f 100644 Binary files a/static/sprites-small/home/10128.webp and b/static/sprites-small/home/10128.webp differ diff --git a/static/sprites-small/home/10129.webp b/static/sprites-small/home/10129.webp index 1669a2a..553ca84 100644 Binary files a/static/sprites-small/home/10129.webp and b/static/sprites-small/home/10129.webp differ diff --git a/static/sprites-small/home/1013.webp b/static/sprites-small/home/1013.webp index c3d379c..fc999d1 100644 Binary files a/static/sprites-small/home/1013.webp and b/static/sprites-small/home/1013.webp differ diff --git a/static/sprites-small/home/10130.webp b/static/sprites-small/home/10130.webp index e127bfd..5948764 100644 Binary files a/static/sprites-small/home/10130.webp and b/static/sprites-small/home/10130.webp differ diff --git a/static/sprites-small/home/10131.webp b/static/sprites-small/home/10131.webp index e127bfd..5948764 100644 Binary files a/static/sprites-small/home/10131.webp and b/static/sprites-small/home/10131.webp differ diff --git a/static/sprites-small/home/10132.webp b/static/sprites-small/home/10132.webp index e127bfd..5948764 100644 Binary files a/static/sprites-small/home/10132.webp and b/static/sprites-small/home/10132.webp differ diff --git a/static/sprites-small/home/10133.webp b/static/sprites-small/home/10133.webp index e127bfd..5948764 100644 Binary files a/static/sprites-small/home/10133.webp and b/static/sprites-small/home/10133.webp differ diff --git a/static/sprites-small/home/10134.webp b/static/sprites-small/home/10134.webp index e127bfd..5948764 100644 Binary files a/static/sprites-small/home/10134.webp and b/static/sprites-small/home/10134.webp differ diff --git a/static/sprites-small/home/10135.webp b/static/sprites-small/home/10135.webp index e127bfd..5948764 100644 Binary files a/static/sprites-small/home/10135.webp and b/static/sprites-small/home/10135.webp differ diff --git a/static/sprites-small/home/10136.webp b/static/sprites-small/home/10136.webp index e5e1686..61d7c4b 100644 Binary files a/static/sprites-small/home/10136.webp and b/static/sprites-small/home/10136.webp differ diff --git a/static/sprites-small/home/10137.webp b/static/sprites-small/home/10137.webp index ed23e2a..33c768f 100644 Binary files a/static/sprites-small/home/10137.webp and b/static/sprites-small/home/10137.webp differ diff --git a/static/sprites-small/home/10138.webp b/static/sprites-small/home/10138.webp index 08e052a..15cee6f 100644 Binary files a/static/sprites-small/home/10138.webp and b/static/sprites-small/home/10138.webp differ diff --git a/static/sprites-small/home/10139.webp b/static/sprites-small/home/10139.webp index 6425570..0943501 100644 Binary files a/static/sprites-small/home/10139.webp and b/static/sprites-small/home/10139.webp differ diff --git a/static/sprites-small/home/1014.webp b/static/sprites-small/home/1014.webp index d730c31..f0eccee 100644 Binary files a/static/sprites-small/home/1014.webp and b/static/sprites-small/home/1014.webp differ diff --git a/static/sprites-small/home/10140.webp b/static/sprites-small/home/10140.webp index 13eba91..3b7589c 100644 Binary files a/static/sprites-small/home/10140.webp and b/static/sprites-small/home/10140.webp differ diff --git a/static/sprites-small/home/10141.webp b/static/sprites-small/home/10141.webp index 2e4f364..3d69606 100644 Binary files a/static/sprites-small/home/10141.webp and b/static/sprites-small/home/10141.webp differ diff --git a/static/sprites-small/home/10142.webp b/static/sprites-small/home/10142.webp index 86482c0..736ebe2 100644 Binary files a/static/sprites-small/home/10142.webp and b/static/sprites-small/home/10142.webp differ diff --git a/static/sprites-small/home/10143.webp b/static/sprites-small/home/10143.webp index 4f4817a..6109f59 100644 Binary files a/static/sprites-small/home/10143.webp and b/static/sprites-small/home/10143.webp differ diff --git a/static/sprites-small/home/10145.webp b/static/sprites-small/home/10145.webp index 3db281d..09a772a 100644 Binary files a/static/sprites-small/home/10145.webp and b/static/sprites-small/home/10145.webp differ diff --git a/static/sprites-small/home/10146.webp b/static/sprites-small/home/10146.webp index b85722b..280ffee 100644 Binary files a/static/sprites-small/home/10146.webp and b/static/sprites-small/home/10146.webp differ diff --git a/static/sprites-small/home/10147.webp b/static/sprites-small/home/10147.webp index cf6dc5e..30bc8a6 100644 Binary files a/static/sprites-small/home/10147.webp and b/static/sprites-small/home/10147.webp differ diff --git a/static/sprites-small/home/10148.webp b/static/sprites-small/home/10148.webp index 86d309b..9768582 100644 Binary files a/static/sprites-small/home/10148.webp and b/static/sprites-small/home/10148.webp differ diff --git a/static/sprites-small/home/10149.webp b/static/sprites-small/home/10149.webp index e598241..9e25899 100644 Binary files a/static/sprites-small/home/10149.webp and b/static/sprites-small/home/10149.webp differ diff --git a/static/sprites-small/home/1015.webp b/static/sprites-small/home/1015.webp index 57c9484..7922361 100644 Binary files a/static/sprites-small/home/1015.webp and b/static/sprites-small/home/1015.webp differ diff --git a/static/sprites-small/home/10150.webp b/static/sprites-small/home/10150.webp index ac643e9..76e2386 100644 Binary files a/static/sprites-small/home/10150.webp and b/static/sprites-small/home/10150.webp differ diff --git a/static/sprites-small/home/10152.webp b/static/sprites-small/home/10152.webp index f54db8b..99cbfd5 100644 Binary files a/static/sprites-small/home/10152.webp and b/static/sprites-small/home/10152.webp differ diff --git a/static/sprites-small/home/10153.webp b/static/sprites-small/home/10153.webp index be42360..6041e63 100644 Binary files a/static/sprites-small/home/10153.webp and b/static/sprites-small/home/10153.webp differ diff --git a/static/sprites-small/home/10154.webp b/static/sprites-small/home/10154.webp index f1bc606..0caad26 100644 Binary files a/static/sprites-small/home/10154.webp and b/static/sprites-small/home/10154.webp differ diff --git a/static/sprites-small/home/10155.webp b/static/sprites-small/home/10155.webp index 4de2b6b..7a1fdeb 100644 Binary files a/static/sprites-small/home/10155.webp and b/static/sprites-small/home/10155.webp differ diff --git a/static/sprites-small/home/10156.webp b/static/sprites-small/home/10156.webp index f7a6efb..e5c06d6 100644 Binary files a/static/sprites-small/home/10156.webp and b/static/sprites-small/home/10156.webp differ diff --git a/static/sprites-small/home/10157.webp b/static/sprites-small/home/10157.webp index dacdb96..66cb347 100644 Binary files a/static/sprites-small/home/10157.webp and b/static/sprites-small/home/10157.webp differ diff --git a/static/sprites-small/home/1016.webp b/static/sprites-small/home/1016.webp index e1f298a..0f7a184 100644 Binary files a/static/sprites-small/home/1016.webp and b/static/sprites-small/home/1016.webp differ diff --git a/static/sprites-small/home/10160.webp b/static/sprites-small/home/10160.webp index a4c3336..0aa9cb8 100644 Binary files a/static/sprites-small/home/10160.webp and b/static/sprites-small/home/10160.webp differ diff --git a/static/sprites-small/home/10161.webp b/static/sprites-small/home/10161.webp index 7a7b0ea..9a3c761 100644 Binary files a/static/sprites-small/home/10161.webp and b/static/sprites-small/home/10161.webp differ diff --git a/static/sprites-small/home/10162.webp b/static/sprites-small/home/10162.webp index 0e6a529..185a865 100644 Binary files a/static/sprites-small/home/10162.webp and b/static/sprites-small/home/10162.webp differ diff --git a/static/sprites-small/home/10163.webp b/static/sprites-small/home/10163.webp index 0b975e4..038b1a7 100644 Binary files a/static/sprites-small/home/10163.webp and b/static/sprites-small/home/10163.webp differ diff --git a/static/sprites-small/home/10164.webp b/static/sprites-small/home/10164.webp index 2a95ee9..335a454 100644 Binary files a/static/sprites-small/home/10164.webp and b/static/sprites-small/home/10164.webp differ diff --git a/static/sprites-small/home/10165.webp b/static/sprites-small/home/10165.webp index e617b0f..ccb389d 100644 Binary files a/static/sprites-small/home/10165.webp and b/static/sprites-small/home/10165.webp differ diff --git a/static/sprites-small/home/10166.webp b/static/sprites-small/home/10166.webp index 237c7e7..ac397eb 100644 Binary files a/static/sprites-small/home/10166.webp and b/static/sprites-small/home/10166.webp differ diff --git a/static/sprites-small/home/10167.webp b/static/sprites-small/home/10167.webp index 4097626..3b1b61d 100644 Binary files a/static/sprites-small/home/10167.webp and b/static/sprites-small/home/10167.webp differ diff --git a/static/sprites-small/home/10168.webp b/static/sprites-small/home/10168.webp index 542bca7..329ee6b 100644 Binary files a/static/sprites-small/home/10168.webp and b/static/sprites-small/home/10168.webp differ diff --git a/static/sprites-small/home/10169.webp b/static/sprites-small/home/10169.webp index a89ec57..089fea6 100644 Binary files a/static/sprites-small/home/10169.webp and b/static/sprites-small/home/10169.webp differ diff --git a/static/sprites-small/home/1017.webp b/static/sprites-small/home/1017.webp index 69117e1..95a1166 100644 Binary files a/static/sprites-small/home/1017.webp and b/static/sprites-small/home/1017.webp differ diff --git a/static/sprites-small/home/10170.webp b/static/sprites-small/home/10170.webp index 72771c6..7c5d57c 100644 Binary files a/static/sprites-small/home/10170.webp and b/static/sprites-small/home/10170.webp differ diff --git a/static/sprites-small/home/10171.webp b/static/sprites-small/home/10171.webp index 7f4d550..0bd4550 100644 Binary files a/static/sprites-small/home/10171.webp and b/static/sprites-small/home/10171.webp differ diff --git a/static/sprites-small/home/10172.webp b/static/sprites-small/home/10172.webp index 8ddafb5..6cb30e5 100644 Binary files a/static/sprites-small/home/10172.webp and b/static/sprites-small/home/10172.webp differ diff --git a/static/sprites-small/home/10173.webp b/static/sprites-small/home/10173.webp index da6e9af..5f98f58 100644 Binary files a/static/sprites-small/home/10173.webp and b/static/sprites-small/home/10173.webp differ diff --git a/static/sprites-small/home/10174.webp b/static/sprites-small/home/10174.webp index 98ef6df..3f241f6e 100644 Binary files a/static/sprites-small/home/10174.webp and b/static/sprites-small/home/10174.webp differ diff --git a/static/sprites-small/home/10175.webp b/static/sprites-small/home/10175.webp index bfa8e3d..09ace20 100644 Binary files a/static/sprites-small/home/10175.webp and b/static/sprites-small/home/10175.webp differ diff --git a/static/sprites-small/home/10176.webp b/static/sprites-small/home/10176.webp index f3f192a..0c41792 100644 Binary files a/static/sprites-small/home/10176.webp and b/static/sprites-small/home/10176.webp differ diff --git a/static/sprites-small/home/10177.webp b/static/sprites-small/home/10177.webp index 5329621..326b764 100644 Binary files a/static/sprites-small/home/10177.webp and b/static/sprites-small/home/10177.webp differ diff --git a/static/sprites-small/home/10178.webp b/static/sprites-small/home/10178.webp index f5e94fd..1331311 100644 Binary files a/static/sprites-small/home/10178.webp and b/static/sprites-small/home/10178.webp differ diff --git a/static/sprites-small/home/10179.webp b/static/sprites-small/home/10179.webp index 18b4d0a..a5c0cb3 100644 Binary files a/static/sprites-small/home/10179.webp and b/static/sprites-small/home/10179.webp differ diff --git a/static/sprites-small/home/1018.webp b/static/sprites-small/home/1018.webp index b5b4a54..fe39abd 100644 Binary files a/static/sprites-small/home/1018.webp and b/static/sprites-small/home/1018.webp differ diff --git a/static/sprites-small/home/10180.webp b/static/sprites-small/home/10180.webp index bb074b2..fc95800 100644 Binary files a/static/sprites-small/home/10180.webp and b/static/sprites-small/home/10180.webp differ diff --git a/static/sprites-small/home/10181.webp b/static/sprites-small/home/10181.webp index d4200e8..afb0b77 100644 Binary files a/static/sprites-small/home/10181.webp and b/static/sprites-small/home/10181.webp differ diff --git a/static/sprites-small/home/10184.webp b/static/sprites-small/home/10184.webp index d7de35e..ca3881c 100644 Binary files a/static/sprites-small/home/10184.webp and b/static/sprites-small/home/10184.webp differ diff --git a/static/sprites-small/home/10185.webp b/static/sprites-small/home/10185.webp index ab4d03e..de4e39c 100644 Binary files a/static/sprites-small/home/10185.webp and b/static/sprites-small/home/10185.webp differ diff --git a/static/sprites-small/home/10186.webp b/static/sprites-small/home/10186.webp index 4259276..25ebf52 100644 Binary files a/static/sprites-small/home/10186.webp and b/static/sprites-small/home/10186.webp differ diff --git a/static/sprites-small/home/10188.webp b/static/sprites-small/home/10188.webp index ebb18df..a224815 100644 Binary files a/static/sprites-small/home/10188.webp and b/static/sprites-small/home/10188.webp differ diff --git a/static/sprites-small/home/10189.webp b/static/sprites-small/home/10189.webp index c914da1..cceebef 100644 Binary files a/static/sprites-small/home/10189.webp and b/static/sprites-small/home/10189.webp differ diff --git a/static/sprites-small/home/1019.webp b/static/sprites-small/home/1019.webp index 88547f0..19ea474 100644 Binary files a/static/sprites-small/home/1019.webp and b/static/sprites-small/home/1019.webp differ diff --git a/static/sprites-small/home/10190.webp b/static/sprites-small/home/10190.webp index 6dc468d..898923a 100644 Binary files a/static/sprites-small/home/10190.webp and b/static/sprites-small/home/10190.webp differ diff --git a/static/sprites-small/home/10191.webp b/static/sprites-small/home/10191.webp index 94b72c2..0b67ca9 100644 Binary files a/static/sprites-small/home/10191.webp and b/static/sprites-small/home/10191.webp differ diff --git a/static/sprites-small/home/10192.webp b/static/sprites-small/home/10192.webp index d022368..20467b1 100644 Binary files a/static/sprites-small/home/10192.webp and b/static/sprites-small/home/10192.webp differ diff --git a/static/sprites-small/home/10193.webp b/static/sprites-small/home/10193.webp index 581f700..2d089b9 100644 Binary files a/static/sprites-small/home/10193.webp and b/static/sprites-small/home/10193.webp differ diff --git a/static/sprites-small/home/10194.webp b/static/sprites-small/home/10194.webp index 44c25b4..82940ae 100644 Binary files a/static/sprites-small/home/10194.webp and b/static/sprites-small/home/10194.webp differ diff --git a/static/sprites-small/home/10195.webp b/static/sprites-small/home/10195.webp index 8ba3b5c..6f0cb59 100644 Binary files a/static/sprites-small/home/10195.webp and b/static/sprites-small/home/10195.webp differ diff --git a/static/sprites-small/home/10196.webp b/static/sprites-small/home/10196.webp index 505f65f..9d30c56 100644 Binary files a/static/sprites-small/home/10196.webp and b/static/sprites-small/home/10196.webp differ diff --git a/static/sprites-small/home/10197.webp b/static/sprites-small/home/10197.webp index be22717..72f4e01 100644 Binary files a/static/sprites-small/home/10197.webp and b/static/sprites-small/home/10197.webp differ diff --git a/static/sprites-small/home/10198.webp b/static/sprites-small/home/10198.webp index f77bcb7..ea019eb 100644 Binary files a/static/sprites-small/home/10198.webp and b/static/sprites-small/home/10198.webp differ diff --git a/static/sprites-small/home/10199.webp b/static/sprites-small/home/10199.webp index b83b52c..81bee71 100644 Binary files a/static/sprites-small/home/10199.webp and b/static/sprites-small/home/10199.webp differ diff --git a/static/sprites-small/home/102.webp b/static/sprites-small/home/102.webp index 725d32b..566dea4 100644 Binary files a/static/sprites-small/home/102.webp and b/static/sprites-small/home/102.webp differ diff --git a/static/sprites-small/home/1020.webp b/static/sprites-small/home/1020.webp index 95c19c2..479f911 100644 Binary files a/static/sprites-small/home/1020.webp and b/static/sprites-small/home/1020.webp differ diff --git a/static/sprites-small/home/10200.webp b/static/sprites-small/home/10200.webp index d8b7e15..8941b72 100644 Binary files a/static/sprites-small/home/10200.webp and b/static/sprites-small/home/10200.webp differ diff --git a/static/sprites-small/home/10201.webp b/static/sprites-small/home/10201.webp index 62a07c7..da1e0f4 100644 Binary files a/static/sprites-small/home/10201.webp and b/static/sprites-small/home/10201.webp differ diff --git a/static/sprites-small/home/10202.webp b/static/sprites-small/home/10202.webp index d0bb5f6..96118df 100644 Binary files a/static/sprites-small/home/10202.webp and b/static/sprites-small/home/10202.webp differ diff --git a/static/sprites-small/home/10203.webp b/static/sprites-small/home/10203.webp index b30300e..2a06d5f 100644 Binary files a/static/sprites-small/home/10203.webp and b/static/sprites-small/home/10203.webp differ diff --git a/static/sprites-small/home/10204.webp b/static/sprites-small/home/10204.webp index 65904f2..3c7b7cc 100644 Binary files a/static/sprites-small/home/10204.webp and b/static/sprites-small/home/10204.webp differ diff --git a/static/sprites-small/home/10205.webp b/static/sprites-small/home/10205.webp index 00abf8e..9f8f039 100644 Binary files a/static/sprites-small/home/10205.webp and b/static/sprites-small/home/10205.webp differ diff --git a/static/sprites-small/home/10206.webp b/static/sprites-small/home/10206.webp index 51a82c4..c1acbb2 100644 Binary files a/static/sprites-small/home/10206.webp and b/static/sprites-small/home/10206.webp differ diff --git a/static/sprites-small/home/10207.webp b/static/sprites-small/home/10207.webp index 6805204..229ff93 100644 Binary files a/static/sprites-small/home/10207.webp and b/static/sprites-small/home/10207.webp differ diff --git a/static/sprites-small/home/10208.webp b/static/sprites-small/home/10208.webp index a1dffd9..5fb8b32 100644 Binary files a/static/sprites-small/home/10208.webp and b/static/sprites-small/home/10208.webp differ diff --git a/static/sprites-small/home/10209.webp b/static/sprites-small/home/10209.webp index 67a45fd..a44cad4 100644 Binary files a/static/sprites-small/home/10209.webp and b/static/sprites-small/home/10209.webp differ diff --git a/static/sprites-small/home/1021.webp b/static/sprites-small/home/1021.webp index 7aca804..3a3f169 100644 Binary files a/static/sprites-small/home/1021.webp and b/static/sprites-small/home/1021.webp differ diff --git a/static/sprites-small/home/10210.webp b/static/sprites-small/home/10210.webp index 42206e4..e6eb4d2 100644 Binary files a/static/sprites-small/home/10210.webp and b/static/sprites-small/home/10210.webp differ diff --git a/static/sprites-small/home/10211.webp b/static/sprites-small/home/10211.webp index 9904400..198c61b 100644 Binary files a/static/sprites-small/home/10211.webp and b/static/sprites-small/home/10211.webp differ diff --git a/static/sprites-small/home/10212.webp b/static/sprites-small/home/10212.webp index 35aeee1..5bb0851 100644 Binary files a/static/sprites-small/home/10212.webp and b/static/sprites-small/home/10212.webp differ diff --git a/static/sprites-small/home/10213.webp b/static/sprites-small/home/10213.webp index 351a8c4..3dc0171 100644 Binary files a/static/sprites-small/home/10213.webp and b/static/sprites-small/home/10213.webp differ diff --git a/static/sprites-small/home/10214.webp b/static/sprites-small/home/10214.webp index 0e30c26..0523df8 100644 Binary files a/static/sprites-small/home/10214.webp and b/static/sprites-small/home/10214.webp differ diff --git a/static/sprites-small/home/10215.webp b/static/sprites-small/home/10215.webp index 78b138b..35c1be2 100644 Binary files a/static/sprites-small/home/10215.webp and b/static/sprites-small/home/10215.webp differ diff --git a/static/sprites-small/home/10216.webp b/static/sprites-small/home/10216.webp index fb891a7..f92d87f 100644 Binary files a/static/sprites-small/home/10216.webp and b/static/sprites-small/home/10216.webp differ diff --git a/static/sprites-small/home/10217.webp b/static/sprites-small/home/10217.webp index f5274e3..761e2ec 100644 Binary files a/static/sprites-small/home/10217.webp and b/static/sprites-small/home/10217.webp differ diff --git a/static/sprites-small/home/10218.webp b/static/sprites-small/home/10218.webp index ec619da..dc68a77 100644 Binary files a/static/sprites-small/home/10218.webp and b/static/sprites-small/home/10218.webp differ diff --git a/static/sprites-small/home/10219.webp b/static/sprites-small/home/10219.webp index 7a2fbf9..e3617fa 100644 Binary files a/static/sprites-small/home/10219.webp and b/static/sprites-small/home/10219.webp differ diff --git a/static/sprites-small/home/1022.webp b/static/sprites-small/home/1022.webp index 1d01a74..3dbbb18 100644 Binary files a/static/sprites-small/home/1022.webp and b/static/sprites-small/home/1022.webp differ diff --git a/static/sprites-small/home/10220.webp b/static/sprites-small/home/10220.webp index ec6b906..1cd0ab6 100644 Binary files a/static/sprites-small/home/10220.webp and b/static/sprites-small/home/10220.webp differ diff --git a/static/sprites-small/home/10221.webp b/static/sprites-small/home/10221.webp index 25d4a94..8c6ed08 100644 Binary files a/static/sprites-small/home/10221.webp and b/static/sprites-small/home/10221.webp differ diff --git a/static/sprites-small/home/10222.webp b/static/sprites-small/home/10222.webp index 415b8af..69bc9e1 100644 Binary files a/static/sprites-small/home/10222.webp and b/static/sprites-small/home/10222.webp differ diff --git a/static/sprites-small/home/10223.webp b/static/sprites-small/home/10223.webp index dc1c696..208d90b 100644 Binary files a/static/sprites-small/home/10223.webp and b/static/sprites-small/home/10223.webp differ diff --git a/static/sprites-small/home/10224.webp b/static/sprites-small/home/10224.webp index 60312d4..a9b7e5b 100644 Binary files a/static/sprites-small/home/10224.webp and b/static/sprites-small/home/10224.webp differ diff --git a/static/sprites-small/home/10225.webp b/static/sprites-small/home/10225.webp index e1c241b..a0476af 100644 Binary files a/static/sprites-small/home/10225.webp and b/static/sprites-small/home/10225.webp differ diff --git a/static/sprites-small/home/10226.webp b/static/sprites-small/home/10226.webp index 5a0df16..414f65c 100644 Binary files a/static/sprites-small/home/10226.webp and b/static/sprites-small/home/10226.webp differ diff --git a/static/sprites-small/home/10227.webp b/static/sprites-small/home/10227.webp index 0019936..104c691 100644 Binary files a/static/sprites-small/home/10227.webp and b/static/sprites-small/home/10227.webp differ diff --git a/static/sprites-small/home/10228.webp b/static/sprites-small/home/10228.webp index 5926569..81c9375 100644 Binary files a/static/sprites-small/home/10228.webp and b/static/sprites-small/home/10228.webp differ diff --git a/static/sprites-small/home/10229.webp b/static/sprites-small/home/10229.webp index 8e1575c..f77f093 100644 Binary files a/static/sprites-small/home/10229.webp and b/static/sprites-small/home/10229.webp differ diff --git a/static/sprites-small/home/1023.webp b/static/sprites-small/home/1023.webp index b6e4126..6a97d46 100644 Binary files a/static/sprites-small/home/1023.webp and b/static/sprites-small/home/1023.webp differ diff --git a/static/sprites-small/home/10230.webp b/static/sprites-small/home/10230.webp index 959ca05..00eb87f 100644 Binary files a/static/sprites-small/home/10230.webp and b/static/sprites-small/home/10230.webp differ diff --git a/static/sprites-small/home/10231.webp b/static/sprites-small/home/10231.webp index 6c0b249..1798da6 100644 Binary files a/static/sprites-small/home/10231.webp and b/static/sprites-small/home/10231.webp differ diff --git a/static/sprites-small/home/10232.webp b/static/sprites-small/home/10232.webp index 6e9ccf4..874136b 100644 Binary files a/static/sprites-small/home/10232.webp and b/static/sprites-small/home/10232.webp differ diff --git a/static/sprites-small/home/10233.webp b/static/sprites-small/home/10233.webp index a7e70c1..d871dcd 100644 Binary files a/static/sprites-small/home/10233.webp and b/static/sprites-small/home/10233.webp differ diff --git a/static/sprites-small/home/10234.webp b/static/sprites-small/home/10234.webp index 5e32bb5..e2cc0f8 100644 Binary files a/static/sprites-small/home/10234.webp and b/static/sprites-small/home/10234.webp differ diff --git a/static/sprites-small/home/10235.webp b/static/sprites-small/home/10235.webp index b5a9a61..b8980fc 100644 Binary files a/static/sprites-small/home/10235.webp and b/static/sprites-small/home/10235.webp differ diff --git a/static/sprites-small/home/10236.webp b/static/sprites-small/home/10236.webp index 9066499..2afa0eb 100644 Binary files a/static/sprites-small/home/10236.webp and b/static/sprites-small/home/10236.webp differ diff --git a/static/sprites-small/home/10237.webp b/static/sprites-small/home/10237.webp index 52344b4..aa267ae 100644 Binary files a/static/sprites-small/home/10237.webp and b/static/sprites-small/home/10237.webp differ diff --git a/static/sprites-small/home/10238.webp b/static/sprites-small/home/10238.webp index 5b9c54d..acac3a4 100644 Binary files a/static/sprites-small/home/10238.webp and b/static/sprites-small/home/10238.webp differ diff --git a/static/sprites-small/home/10239.webp b/static/sprites-small/home/10239.webp index 4c35882..56ea9d5 100644 Binary files a/static/sprites-small/home/10239.webp and b/static/sprites-small/home/10239.webp differ diff --git a/static/sprites-small/home/1024.webp b/static/sprites-small/home/1024.webp index 1e788a2..18d2dd0 100644 Binary files a/static/sprites-small/home/1024.webp and b/static/sprites-small/home/1024.webp differ diff --git a/static/sprites-small/home/10240.webp b/static/sprites-small/home/10240.webp index ab6659e..cb507ab 100644 Binary files a/static/sprites-small/home/10240.webp and b/static/sprites-small/home/10240.webp differ diff --git a/static/sprites-small/home/10241.webp b/static/sprites-small/home/10241.webp index a2f184c..b381442 100644 Binary files a/static/sprites-small/home/10241.webp and b/static/sprites-small/home/10241.webp differ diff --git a/static/sprites-small/home/10242.webp b/static/sprites-small/home/10242.webp index 84818ba..d49e67a 100644 Binary files a/static/sprites-small/home/10242.webp and b/static/sprites-small/home/10242.webp differ diff --git a/static/sprites-small/home/10243.webp b/static/sprites-small/home/10243.webp index 4857083..89c08e1 100644 Binary files a/static/sprites-small/home/10243.webp and b/static/sprites-small/home/10243.webp differ diff --git a/static/sprites-small/home/10244.webp b/static/sprites-small/home/10244.webp index eaf6407..e57232a 100644 Binary files a/static/sprites-small/home/10244.webp and b/static/sprites-small/home/10244.webp differ diff --git a/static/sprites-small/home/10245.webp b/static/sprites-small/home/10245.webp index a92aa51..30ddcf8 100644 Binary files a/static/sprites-small/home/10245.webp and b/static/sprites-small/home/10245.webp differ diff --git a/static/sprites-small/home/10246.webp b/static/sprites-small/home/10246.webp index 067cb86..f278896 100644 Binary files a/static/sprites-small/home/10246.webp and b/static/sprites-small/home/10246.webp differ diff --git a/static/sprites-small/home/10247.webp b/static/sprites-small/home/10247.webp index c0c33f2..8c192f8 100644 Binary files a/static/sprites-small/home/10247.webp and b/static/sprites-small/home/10247.webp differ diff --git a/static/sprites-small/home/10248.webp b/static/sprites-small/home/10248.webp index 330a122..c8825ae 100644 Binary files a/static/sprites-small/home/10248.webp and b/static/sprites-small/home/10248.webp differ diff --git a/static/sprites-small/home/10249.webp b/static/sprites-small/home/10249.webp index 5137caa..6e60516 100644 Binary files a/static/sprites-small/home/10249.webp and b/static/sprites-small/home/10249.webp differ diff --git a/static/sprites-small/home/1025.webp b/static/sprites-small/home/1025.webp index 9c358cc..3e2d67b 100644 Binary files a/static/sprites-small/home/1025.webp and b/static/sprites-small/home/1025.webp differ diff --git a/static/sprites-small/home/10250.webp b/static/sprites-small/home/10250.webp index da7e665..e183e66 100644 Binary files a/static/sprites-small/home/10250.webp and b/static/sprites-small/home/10250.webp differ diff --git a/static/sprites-small/home/10251.webp b/static/sprites-small/home/10251.webp index c3e69ec..1c0dfe1 100644 Binary files a/static/sprites-small/home/10251.webp and b/static/sprites-small/home/10251.webp differ diff --git a/static/sprites-small/home/10252.webp b/static/sprites-small/home/10252.webp index ab8a6da..ef29238 100644 Binary files a/static/sprites-small/home/10252.webp and b/static/sprites-small/home/10252.webp differ diff --git a/static/sprites-small/home/10253.webp b/static/sprites-small/home/10253.webp index e404f8f..f2db126 100644 Binary files a/static/sprites-small/home/10253.webp and b/static/sprites-small/home/10253.webp differ diff --git a/static/sprites-small/home/10254.webp b/static/sprites-small/home/10254.webp index a91d353..14c2432 100644 Binary files a/static/sprites-small/home/10254.webp and b/static/sprites-small/home/10254.webp differ diff --git a/static/sprites-small/home/10255.webp b/static/sprites-small/home/10255.webp index 25c777c..4f6db50 100644 Binary files a/static/sprites-small/home/10255.webp and b/static/sprites-small/home/10255.webp differ diff --git a/static/sprites-small/home/10256.webp b/static/sprites-small/home/10256.webp index ac1e172..b18f306 100644 Binary files a/static/sprites-small/home/10256.webp and b/static/sprites-small/home/10256.webp differ diff --git a/static/sprites-small/home/10257.webp b/static/sprites-small/home/10257.webp index 2e73e5a..eb6367c 100644 Binary files a/static/sprites-small/home/10257.webp and b/static/sprites-small/home/10257.webp differ diff --git a/static/sprites-small/home/10258.webp b/static/sprites-small/home/10258.webp index 9f120b3..9a16692 100644 Binary files a/static/sprites-small/home/10258.webp and b/static/sprites-small/home/10258.webp differ diff --git a/static/sprites-small/home/10259.webp b/static/sprites-small/home/10259.webp index b27adf3..52f2a66 100644 Binary files a/static/sprites-small/home/10259.webp and b/static/sprites-small/home/10259.webp differ diff --git a/static/sprites-small/home/10260.webp b/static/sprites-small/home/10260.webp index 81a9db0..5bd965d 100644 Binary files a/static/sprites-small/home/10260.webp and b/static/sprites-small/home/10260.webp differ diff --git a/static/sprites-small/home/10261.webp b/static/sprites-small/home/10261.webp index 312e3d4..aad7cc9 100644 Binary files a/static/sprites-small/home/10261.webp and b/static/sprites-small/home/10261.webp differ diff --git a/static/sprites-small/home/10262.webp b/static/sprites-small/home/10262.webp index d37a0c0..bec7aa7 100644 Binary files a/static/sprites-small/home/10262.webp and b/static/sprites-small/home/10262.webp differ diff --git a/static/sprites-small/home/10263.webp b/static/sprites-small/home/10263.webp index 5198610..4c1b57c 100644 Binary files a/static/sprites-small/home/10263.webp and b/static/sprites-small/home/10263.webp differ diff --git a/static/sprites-small/home/10272.webp b/static/sprites-small/home/10272.webp index 815fcbc..619b0c3 100644 Binary files a/static/sprites-small/home/10272.webp and b/static/sprites-small/home/10272.webp differ diff --git a/static/sprites-small/home/10273.webp b/static/sprites-small/home/10273.webp index b182bcf..a0102f2 100644 Binary files a/static/sprites-small/home/10273.webp and b/static/sprites-small/home/10273.webp differ diff --git a/static/sprites-small/home/10274.webp b/static/sprites-small/home/10274.webp index 1472b42..a4323e5 100644 Binary files a/static/sprites-small/home/10274.webp and b/static/sprites-small/home/10274.webp differ diff --git a/static/sprites-small/home/10275.webp b/static/sprites-small/home/10275.webp index a558a69..d4c1c0e 100644 Binary files a/static/sprites-small/home/10275.webp and b/static/sprites-small/home/10275.webp differ diff --git a/static/sprites-small/home/10276.webp b/static/sprites-small/home/10276.webp index f64c3a4..fd8faf1 100644 Binary files a/static/sprites-small/home/10276.webp and b/static/sprites-small/home/10276.webp differ diff --git a/static/sprites-small/home/10277.webp b/static/sprites-small/home/10277.webp index 15c4112..5afe9b6 100644 Binary files a/static/sprites-small/home/10277.webp and b/static/sprites-small/home/10277.webp differ diff --git a/static/sprites-small/home/103.webp b/static/sprites-small/home/103.webp index efbcf0f..26844ae 100644 Binary files a/static/sprites-small/home/103.webp and b/static/sprites-small/home/103.webp differ diff --git a/static/sprites-small/home/104.webp b/static/sprites-small/home/104.webp index cfe53f6..818c5ea 100644 Binary files a/static/sprites-small/home/104.webp and b/static/sprites-small/home/104.webp differ diff --git a/static/sprites-small/home/105.webp b/static/sprites-small/home/105.webp index 888ab70..015c426 100644 Binary files a/static/sprites-small/home/105.webp and b/static/sprites-small/home/105.webp differ diff --git a/static/sprites-small/home/106.webp b/static/sprites-small/home/106.webp index d3ce06f..87dee51 100644 Binary files a/static/sprites-small/home/106.webp and b/static/sprites-small/home/106.webp differ diff --git a/static/sprites-small/home/107.webp b/static/sprites-small/home/107.webp index 161baa3..2b400c0 100644 Binary files a/static/sprites-small/home/107.webp and b/static/sprites-small/home/107.webp differ diff --git a/static/sprites-small/home/108.webp b/static/sprites-small/home/108.webp index a9a5c00..31410c0 100644 Binary files a/static/sprites-small/home/108.webp and b/static/sprites-small/home/108.webp differ diff --git a/static/sprites-small/home/109.webp b/static/sprites-small/home/109.webp index b2bb929..d7c322c 100644 Binary files a/static/sprites-small/home/109.webp and b/static/sprites-small/home/109.webp differ diff --git a/static/sprites-small/home/11.webp b/static/sprites-small/home/11.webp index 5dae84c..d79209e 100644 Binary files a/static/sprites-small/home/11.webp and b/static/sprites-small/home/11.webp differ diff --git a/static/sprites-small/home/110.webp b/static/sprites-small/home/110.webp index c6f6eb1..f47e8d6 100644 Binary files a/static/sprites-small/home/110.webp and b/static/sprites-small/home/110.webp differ diff --git a/static/sprites-small/home/111.webp b/static/sprites-small/home/111.webp index ca75103..8f42f8c 100644 Binary files a/static/sprites-small/home/111.webp and b/static/sprites-small/home/111.webp differ diff --git a/static/sprites-small/home/112.webp b/static/sprites-small/home/112.webp index 54f6b35..406205b 100644 Binary files a/static/sprites-small/home/112.webp and b/static/sprites-small/home/112.webp differ diff --git a/static/sprites-small/home/113.webp b/static/sprites-small/home/113.webp index 3bdd912..34ed3ed 100644 Binary files a/static/sprites-small/home/113.webp and b/static/sprites-small/home/113.webp differ diff --git a/static/sprites-small/home/114.webp b/static/sprites-small/home/114.webp index bd65303..297f9c4 100644 Binary files a/static/sprites-small/home/114.webp and b/static/sprites-small/home/114.webp differ diff --git a/static/sprites-small/home/115.webp b/static/sprites-small/home/115.webp index 4563d52..cb5a3f6 100644 Binary files a/static/sprites-small/home/115.webp and b/static/sprites-small/home/115.webp differ diff --git a/static/sprites-small/home/116.webp b/static/sprites-small/home/116.webp index 7b5280b..009dec0 100644 Binary files a/static/sprites-small/home/116.webp and b/static/sprites-small/home/116.webp differ diff --git a/static/sprites-small/home/117.webp b/static/sprites-small/home/117.webp index 9b7b325..82b0aff 100644 Binary files a/static/sprites-small/home/117.webp and b/static/sprites-small/home/117.webp differ diff --git a/static/sprites-small/home/118.webp b/static/sprites-small/home/118.webp index 2555dd7..5e490e9 100644 Binary files a/static/sprites-small/home/118.webp and b/static/sprites-small/home/118.webp differ diff --git a/static/sprites-small/home/119.webp b/static/sprites-small/home/119.webp index d7f267c..a92b446 100644 Binary files a/static/sprites-small/home/119.webp and b/static/sprites-small/home/119.webp differ diff --git a/static/sprites-small/home/12.webp b/static/sprites-small/home/12.webp index 902c18c..efd450c 100644 Binary files a/static/sprites-small/home/12.webp and b/static/sprites-small/home/12.webp differ diff --git a/static/sprites-small/home/120.webp b/static/sprites-small/home/120.webp index 6afa2a2..3b0bcbe 100644 Binary files a/static/sprites-small/home/120.webp and b/static/sprites-small/home/120.webp differ diff --git a/static/sprites-small/home/121.webp b/static/sprites-small/home/121.webp index 27d9032..75d3856 100644 Binary files a/static/sprites-small/home/121.webp and b/static/sprites-small/home/121.webp differ diff --git a/static/sprites-small/home/122.webp b/static/sprites-small/home/122.webp index 7946eb8..d7f30f0 100644 Binary files a/static/sprites-small/home/122.webp and b/static/sprites-small/home/122.webp differ diff --git a/static/sprites-small/home/123.webp b/static/sprites-small/home/123.webp index d2e5fbb..b5d631f 100644 Binary files a/static/sprites-small/home/123.webp and b/static/sprites-small/home/123.webp differ diff --git a/static/sprites-small/home/124.webp b/static/sprites-small/home/124.webp index 1e0cfb6..0f96002 100644 Binary files a/static/sprites-small/home/124.webp and b/static/sprites-small/home/124.webp differ diff --git a/static/sprites-small/home/125.webp b/static/sprites-small/home/125.webp index 440a7d3..4b882c7 100644 Binary files a/static/sprites-small/home/125.webp and b/static/sprites-small/home/125.webp differ diff --git a/static/sprites-small/home/126.webp b/static/sprites-small/home/126.webp index 62c66d0..ce9f11f 100644 Binary files a/static/sprites-small/home/126.webp and b/static/sprites-small/home/126.webp differ diff --git a/static/sprites-small/home/127.webp b/static/sprites-small/home/127.webp index f5a7856..d5639c0 100644 Binary files a/static/sprites-small/home/127.webp and b/static/sprites-small/home/127.webp differ diff --git a/static/sprites-small/home/128.webp b/static/sprites-small/home/128.webp index 3628ef5..5118501 100644 Binary files a/static/sprites-small/home/128.webp and b/static/sprites-small/home/128.webp differ diff --git a/static/sprites-small/home/129.webp b/static/sprites-small/home/129.webp index 322d3db..f10d4c2 100644 Binary files a/static/sprites-small/home/129.webp and b/static/sprites-small/home/129.webp differ diff --git a/static/sprites-small/home/13.webp b/static/sprites-small/home/13.webp index 8405f91..04afb02 100644 Binary files a/static/sprites-small/home/13.webp and b/static/sprites-small/home/13.webp differ diff --git a/static/sprites-small/home/130.webp b/static/sprites-small/home/130.webp index 560be66..20b7c31 100644 Binary files a/static/sprites-small/home/130.webp and b/static/sprites-small/home/130.webp differ diff --git a/static/sprites-small/home/131.webp b/static/sprites-small/home/131.webp index 934d35a..42d99e5 100644 Binary files a/static/sprites-small/home/131.webp and b/static/sprites-small/home/131.webp differ diff --git a/static/sprites-small/home/132.webp b/static/sprites-small/home/132.webp index eaa15a6..f6f670b 100644 Binary files a/static/sprites-small/home/132.webp and b/static/sprites-small/home/132.webp differ diff --git a/static/sprites-small/home/133.webp b/static/sprites-small/home/133.webp index 3c2eab6..70bdd02 100644 Binary files a/static/sprites-small/home/133.webp and b/static/sprites-small/home/133.webp differ diff --git a/static/sprites-small/home/134.webp b/static/sprites-small/home/134.webp index 35f7b47..5d4b7e8 100644 Binary files a/static/sprites-small/home/134.webp and b/static/sprites-small/home/134.webp differ diff --git a/static/sprites-small/home/135.webp b/static/sprites-small/home/135.webp index 7b90a84..c8e1101 100644 Binary files a/static/sprites-small/home/135.webp and b/static/sprites-small/home/135.webp differ diff --git a/static/sprites-small/home/136.webp b/static/sprites-small/home/136.webp index d531932..c1e92d4 100644 Binary files a/static/sprites-small/home/136.webp and b/static/sprites-small/home/136.webp differ diff --git a/static/sprites-small/home/137.webp b/static/sprites-small/home/137.webp index 2b4dfb9..50b43fa 100644 Binary files a/static/sprites-small/home/137.webp and b/static/sprites-small/home/137.webp differ diff --git a/static/sprites-small/home/138.webp b/static/sprites-small/home/138.webp index 97fe008..2559f58 100644 Binary files a/static/sprites-small/home/138.webp and b/static/sprites-small/home/138.webp differ diff --git a/static/sprites-small/home/139.webp b/static/sprites-small/home/139.webp index 09171bf..783da8e 100644 Binary files a/static/sprites-small/home/139.webp and b/static/sprites-small/home/139.webp differ diff --git a/static/sprites-small/home/14.webp b/static/sprites-small/home/14.webp index 4b35adf..bcc71d8 100644 Binary files a/static/sprites-small/home/14.webp and b/static/sprites-small/home/14.webp differ diff --git a/static/sprites-small/home/140.webp b/static/sprites-small/home/140.webp index 5e5202b..4f45fb0 100644 Binary files a/static/sprites-small/home/140.webp and b/static/sprites-small/home/140.webp differ diff --git a/static/sprites-small/home/141.webp b/static/sprites-small/home/141.webp index 941e4aa..7876bf4 100644 Binary files a/static/sprites-small/home/141.webp and b/static/sprites-small/home/141.webp differ diff --git a/static/sprites-small/home/142.webp b/static/sprites-small/home/142.webp index c1c9eae..497eb8e 100644 Binary files a/static/sprites-small/home/142.webp and b/static/sprites-small/home/142.webp differ diff --git a/static/sprites-small/home/143.webp b/static/sprites-small/home/143.webp index ecdfd93..5bef7a5 100644 Binary files a/static/sprites-small/home/143.webp and b/static/sprites-small/home/143.webp differ diff --git a/static/sprites-small/home/144.webp b/static/sprites-small/home/144.webp index bd92e28..026d467 100644 Binary files a/static/sprites-small/home/144.webp and b/static/sprites-small/home/144.webp differ diff --git a/static/sprites-small/home/145.webp b/static/sprites-small/home/145.webp index 7117062..e1edd1d 100644 Binary files a/static/sprites-small/home/145.webp and b/static/sprites-small/home/145.webp differ diff --git a/static/sprites-small/home/146.webp b/static/sprites-small/home/146.webp index 0653ad4..04de6aa 100644 Binary files a/static/sprites-small/home/146.webp and b/static/sprites-small/home/146.webp differ diff --git a/static/sprites-small/home/147.webp b/static/sprites-small/home/147.webp index fb621da..0d24ad2 100644 Binary files a/static/sprites-small/home/147.webp and b/static/sprites-small/home/147.webp differ diff --git a/static/sprites-small/home/148.webp b/static/sprites-small/home/148.webp index 4c18074..25655b0 100644 Binary files a/static/sprites-small/home/148.webp and b/static/sprites-small/home/148.webp differ diff --git a/static/sprites-small/home/149.webp b/static/sprites-small/home/149.webp index 69a9017..b93a529 100644 Binary files a/static/sprites-small/home/149.webp and b/static/sprites-small/home/149.webp differ diff --git a/static/sprites-small/home/15.webp b/static/sprites-small/home/15.webp index a9ce69f..92128ca 100644 Binary files a/static/sprites-small/home/15.webp and b/static/sprites-small/home/15.webp differ diff --git a/static/sprites-small/home/150.webp b/static/sprites-small/home/150.webp index 25b5dd7..92b9e19 100644 Binary files a/static/sprites-small/home/150.webp and b/static/sprites-small/home/150.webp differ diff --git a/static/sprites-small/home/151.webp b/static/sprites-small/home/151.webp index fa3f831..8791e0b 100644 Binary files a/static/sprites-small/home/151.webp and b/static/sprites-small/home/151.webp differ diff --git a/static/sprites-small/home/152.webp b/static/sprites-small/home/152.webp index 04f087c..b7b6125 100644 Binary files a/static/sprites-small/home/152.webp and b/static/sprites-small/home/152.webp differ diff --git a/static/sprites-small/home/153.webp b/static/sprites-small/home/153.webp index 9febed9..63a531d 100644 Binary files a/static/sprites-small/home/153.webp and b/static/sprites-small/home/153.webp differ diff --git a/static/sprites-small/home/154.webp b/static/sprites-small/home/154.webp index 9d167d6..3761f17 100644 Binary files a/static/sprites-small/home/154.webp and b/static/sprites-small/home/154.webp differ diff --git a/static/sprites-small/home/155.webp b/static/sprites-small/home/155.webp index 84a4108..a82a0e8 100644 Binary files a/static/sprites-small/home/155.webp and b/static/sprites-small/home/155.webp differ diff --git a/static/sprites-small/home/156.webp b/static/sprites-small/home/156.webp index c6bde19..36342e0 100644 Binary files a/static/sprites-small/home/156.webp and b/static/sprites-small/home/156.webp differ diff --git a/static/sprites-small/home/157.webp b/static/sprites-small/home/157.webp index 4fdf6ea..0f7ad42 100644 Binary files a/static/sprites-small/home/157.webp and b/static/sprites-small/home/157.webp differ diff --git a/static/sprites-small/home/158.webp b/static/sprites-small/home/158.webp index 598dd27..06c0289 100644 Binary files a/static/sprites-small/home/158.webp and b/static/sprites-small/home/158.webp differ diff --git a/static/sprites-small/home/159.webp b/static/sprites-small/home/159.webp index 696c141..c00df02 100644 Binary files a/static/sprites-small/home/159.webp and b/static/sprites-small/home/159.webp differ diff --git a/static/sprites-small/home/16.webp b/static/sprites-small/home/16.webp index 18c7e5b..08958d6 100644 Binary files a/static/sprites-small/home/16.webp and b/static/sprites-small/home/16.webp differ diff --git a/static/sprites-small/home/160.webp b/static/sprites-small/home/160.webp index 5a712f6..21035d5 100644 Binary files a/static/sprites-small/home/160.webp and b/static/sprites-small/home/160.webp differ diff --git a/static/sprites-small/home/161.webp b/static/sprites-small/home/161.webp index 74e70f2..c6bf43e 100644 Binary files a/static/sprites-small/home/161.webp and b/static/sprites-small/home/161.webp differ diff --git a/static/sprites-small/home/162.webp b/static/sprites-small/home/162.webp index 1e34e48..a1121ee 100644 Binary files a/static/sprites-small/home/162.webp and b/static/sprites-small/home/162.webp differ diff --git a/static/sprites-small/home/163.webp b/static/sprites-small/home/163.webp index 3192dd6..e59dd6c 100644 Binary files a/static/sprites-small/home/163.webp and b/static/sprites-small/home/163.webp differ diff --git a/static/sprites-small/home/164.webp b/static/sprites-small/home/164.webp index dbd457c..037681a 100644 Binary files a/static/sprites-small/home/164.webp and b/static/sprites-small/home/164.webp differ diff --git a/static/sprites-small/home/165.webp b/static/sprites-small/home/165.webp index e8222c7..a4af921 100644 Binary files a/static/sprites-small/home/165.webp and b/static/sprites-small/home/165.webp differ diff --git a/static/sprites-small/home/166.webp b/static/sprites-small/home/166.webp index c67698a..e21a0c6 100644 Binary files a/static/sprites-small/home/166.webp and b/static/sprites-small/home/166.webp differ diff --git a/static/sprites-small/home/167.webp b/static/sprites-small/home/167.webp index a66b949..8a1152b 100644 Binary files a/static/sprites-small/home/167.webp and b/static/sprites-small/home/167.webp differ diff --git a/static/sprites-small/home/168.webp b/static/sprites-small/home/168.webp index 7bc4148..4e0a560 100644 Binary files a/static/sprites-small/home/168.webp and b/static/sprites-small/home/168.webp differ diff --git a/static/sprites-small/home/169.webp b/static/sprites-small/home/169.webp index 69772db..49740d1 100644 Binary files a/static/sprites-small/home/169.webp and b/static/sprites-small/home/169.webp differ diff --git a/static/sprites-small/home/17.webp b/static/sprites-small/home/17.webp index f225b27..006051b 100644 Binary files a/static/sprites-small/home/17.webp and b/static/sprites-small/home/17.webp differ diff --git a/static/sprites-small/home/170.webp b/static/sprites-small/home/170.webp index 1c657c4..4b42fdf 100644 Binary files a/static/sprites-small/home/170.webp and b/static/sprites-small/home/170.webp differ diff --git a/static/sprites-small/home/171.webp b/static/sprites-small/home/171.webp index e8769df..c492f9c 100644 Binary files a/static/sprites-small/home/171.webp and b/static/sprites-small/home/171.webp differ diff --git a/static/sprites-small/home/172.webp b/static/sprites-small/home/172.webp index d1e1137..f5e79b1 100644 Binary files a/static/sprites-small/home/172.webp and b/static/sprites-small/home/172.webp differ diff --git a/static/sprites-small/home/173.webp b/static/sprites-small/home/173.webp index 68ce0f0..6d908fc 100644 Binary files a/static/sprites-small/home/173.webp and b/static/sprites-small/home/173.webp differ diff --git a/static/sprites-small/home/174.webp b/static/sprites-small/home/174.webp index 0748817..4e7d61a 100644 Binary files a/static/sprites-small/home/174.webp and b/static/sprites-small/home/174.webp differ diff --git a/static/sprites-small/home/175.webp b/static/sprites-small/home/175.webp index 348b32a..802bfd7 100644 Binary files a/static/sprites-small/home/175.webp and b/static/sprites-small/home/175.webp differ diff --git a/static/sprites-small/home/176.webp b/static/sprites-small/home/176.webp index 79a33ff..123d0c2 100644 Binary files a/static/sprites-small/home/176.webp and b/static/sprites-small/home/176.webp differ diff --git a/static/sprites-small/home/177.webp b/static/sprites-small/home/177.webp index 0854d03..07cdc7f 100644 Binary files a/static/sprites-small/home/177.webp and b/static/sprites-small/home/177.webp differ diff --git a/static/sprites-small/home/178.webp b/static/sprites-small/home/178.webp index 5b88f21..ef63fac 100644 Binary files a/static/sprites-small/home/178.webp and b/static/sprites-small/home/178.webp differ diff --git a/static/sprites-small/home/179.webp b/static/sprites-small/home/179.webp index 7244639..0070963 100644 Binary files a/static/sprites-small/home/179.webp and b/static/sprites-small/home/179.webp differ diff --git a/static/sprites-small/home/18.webp b/static/sprites-small/home/18.webp index 3679006..a6e72d5 100644 Binary files a/static/sprites-small/home/18.webp and b/static/sprites-small/home/18.webp differ diff --git a/static/sprites-small/home/180.webp b/static/sprites-small/home/180.webp index 4919446..88c3553 100644 Binary files a/static/sprites-small/home/180.webp and b/static/sprites-small/home/180.webp differ diff --git a/static/sprites-small/home/181.webp b/static/sprites-small/home/181.webp index 8fb831b..adc3704 100644 Binary files a/static/sprites-small/home/181.webp and b/static/sprites-small/home/181.webp differ diff --git a/static/sprites-small/home/182.webp b/static/sprites-small/home/182.webp index d1f4e60..a6b4e3b 100644 Binary files a/static/sprites-small/home/182.webp and b/static/sprites-small/home/182.webp differ diff --git a/static/sprites-small/home/183.webp b/static/sprites-small/home/183.webp index 8c95e7d..12aadf9 100644 Binary files a/static/sprites-small/home/183.webp and b/static/sprites-small/home/183.webp differ diff --git a/static/sprites-small/home/184.webp b/static/sprites-small/home/184.webp index dd29200..eda426a 100644 Binary files a/static/sprites-small/home/184.webp and b/static/sprites-small/home/184.webp differ diff --git a/static/sprites-small/home/185.webp b/static/sprites-small/home/185.webp index a6b5f20..5e6ec69 100644 Binary files a/static/sprites-small/home/185.webp and b/static/sprites-small/home/185.webp differ diff --git a/static/sprites-small/home/186.webp b/static/sprites-small/home/186.webp index 3b7df06..85babab 100644 Binary files a/static/sprites-small/home/186.webp and b/static/sprites-small/home/186.webp differ diff --git a/static/sprites-small/home/187.webp b/static/sprites-small/home/187.webp index d7a31cb..bdf43aa 100644 Binary files a/static/sprites-small/home/187.webp and b/static/sprites-small/home/187.webp differ diff --git a/static/sprites-small/home/188.webp b/static/sprites-small/home/188.webp index c4d2bed..b0221a1 100644 Binary files a/static/sprites-small/home/188.webp and b/static/sprites-small/home/188.webp differ diff --git a/static/sprites-small/home/189.webp b/static/sprites-small/home/189.webp index 6222581..c8cf9d2 100644 Binary files a/static/sprites-small/home/189.webp and b/static/sprites-small/home/189.webp differ diff --git a/static/sprites-small/home/19.webp b/static/sprites-small/home/19.webp index 3acf2a8..1ded69a 100644 Binary files a/static/sprites-small/home/19.webp and b/static/sprites-small/home/19.webp differ diff --git a/static/sprites-small/home/190.webp b/static/sprites-small/home/190.webp index b102a16..4e82812 100644 Binary files a/static/sprites-small/home/190.webp and b/static/sprites-small/home/190.webp differ diff --git a/static/sprites-small/home/191.webp b/static/sprites-small/home/191.webp index fff9fb9..e049167 100644 Binary files a/static/sprites-small/home/191.webp and b/static/sprites-small/home/191.webp differ diff --git a/static/sprites-small/home/192.webp b/static/sprites-small/home/192.webp index 2e3ebad..ce027ca 100644 Binary files a/static/sprites-small/home/192.webp and b/static/sprites-small/home/192.webp differ diff --git a/static/sprites-small/home/193.webp b/static/sprites-small/home/193.webp index 8a253f4..f4d4860 100644 Binary files a/static/sprites-small/home/193.webp and b/static/sprites-small/home/193.webp differ diff --git a/static/sprites-small/home/194.webp b/static/sprites-small/home/194.webp index ee837d6..3db82b4 100644 Binary files a/static/sprites-small/home/194.webp and b/static/sprites-small/home/194.webp differ diff --git a/static/sprites-small/home/195.webp b/static/sprites-small/home/195.webp index e7dbe15..cc5d990 100644 Binary files a/static/sprites-small/home/195.webp and b/static/sprites-small/home/195.webp differ diff --git a/static/sprites-small/home/196.webp b/static/sprites-small/home/196.webp index bc9a04b..c74641e 100644 Binary files a/static/sprites-small/home/196.webp and b/static/sprites-small/home/196.webp differ diff --git a/static/sprites-small/home/197.webp b/static/sprites-small/home/197.webp index 83197c2..409d169 100644 Binary files a/static/sprites-small/home/197.webp and b/static/sprites-small/home/197.webp differ diff --git a/static/sprites-small/home/198.webp b/static/sprites-small/home/198.webp index 50396b4..730d183 100644 Binary files a/static/sprites-small/home/198.webp and b/static/sprites-small/home/198.webp differ diff --git a/static/sprites-small/home/199.webp b/static/sprites-small/home/199.webp index a6f27ff..ed3c685 100644 Binary files a/static/sprites-small/home/199.webp and b/static/sprites-small/home/199.webp differ diff --git a/static/sprites-small/home/2.webp b/static/sprites-small/home/2.webp index 31cbea2..532c785 100644 Binary files a/static/sprites-small/home/2.webp and b/static/sprites-small/home/2.webp differ diff --git a/static/sprites-small/home/20.webp b/static/sprites-small/home/20.webp index 30b3f74..90d7beb 100644 Binary files a/static/sprites-small/home/20.webp and b/static/sprites-small/home/20.webp differ diff --git a/static/sprites-small/home/200.webp b/static/sprites-small/home/200.webp index 8d629b2..f6b648d 100644 Binary files a/static/sprites-small/home/200.webp and b/static/sprites-small/home/200.webp differ diff --git a/static/sprites-small/home/201-a.webp b/static/sprites-small/home/201-a.webp index 54f13e4..046d990 100644 Binary files a/static/sprites-small/home/201-a.webp and b/static/sprites-small/home/201-a.webp differ diff --git a/static/sprites-small/home/201-b.webp b/static/sprites-small/home/201-b.webp index f123cfd..22585c1 100644 Binary files a/static/sprites-small/home/201-b.webp and b/static/sprites-small/home/201-b.webp differ diff --git a/static/sprites-small/home/201-c.webp b/static/sprites-small/home/201-c.webp index 5d10149..fc34530 100644 Binary files a/static/sprites-small/home/201-c.webp and b/static/sprites-small/home/201-c.webp differ diff --git a/static/sprites-small/home/201-d.webp b/static/sprites-small/home/201-d.webp index 1194d98..23c6f68 100644 Binary files a/static/sprites-small/home/201-d.webp and b/static/sprites-small/home/201-d.webp differ diff --git a/static/sprites-small/home/201-e.webp b/static/sprites-small/home/201-e.webp index 55f8f90..22b2aa3 100644 Binary files a/static/sprites-small/home/201-e.webp and b/static/sprites-small/home/201-e.webp differ diff --git a/static/sprites-small/home/201-exclamation.webp b/static/sprites-small/home/201-exclamation.webp index 18acf35..e439d0d 100644 Binary files a/static/sprites-small/home/201-exclamation.webp and b/static/sprites-small/home/201-exclamation.webp differ diff --git a/static/sprites-small/home/201-f.webp b/static/sprites-small/home/201-f.webp index 21c5559..d3e714f 100644 Binary files a/static/sprites-small/home/201-f.webp and b/static/sprites-small/home/201-f.webp differ diff --git a/static/sprites-small/home/201-g.webp b/static/sprites-small/home/201-g.webp index 1187105..e9aa34b 100644 Binary files a/static/sprites-small/home/201-g.webp and b/static/sprites-small/home/201-g.webp differ diff --git a/static/sprites-small/home/201-h.webp b/static/sprites-small/home/201-h.webp index 2200d48..baa91ba 100644 Binary files a/static/sprites-small/home/201-h.webp and b/static/sprites-small/home/201-h.webp differ diff --git a/static/sprites-small/home/201-i.webp b/static/sprites-small/home/201-i.webp index 2fa698d..6e70f1a 100644 Binary files a/static/sprites-small/home/201-i.webp and b/static/sprites-small/home/201-i.webp differ diff --git a/static/sprites-small/home/201-j.webp b/static/sprites-small/home/201-j.webp index f6e776e..a0e1263 100644 Binary files a/static/sprites-small/home/201-j.webp and b/static/sprites-small/home/201-j.webp differ diff --git a/static/sprites-small/home/201-k.webp b/static/sprites-small/home/201-k.webp index 0c1e62e..ebaeb84 100644 Binary files a/static/sprites-small/home/201-k.webp and b/static/sprites-small/home/201-k.webp differ diff --git a/static/sprites-small/home/201-l.webp b/static/sprites-small/home/201-l.webp index 7adedbe..0733e64 100644 Binary files a/static/sprites-small/home/201-l.webp and b/static/sprites-small/home/201-l.webp differ diff --git a/static/sprites-small/home/201-m.webp b/static/sprites-small/home/201-m.webp index 0270d6c..1644c9c 100644 Binary files a/static/sprites-small/home/201-m.webp and b/static/sprites-small/home/201-m.webp differ diff --git a/static/sprites-small/home/201-n.webp b/static/sprites-small/home/201-n.webp index d11d13f..8fe97da 100644 Binary files a/static/sprites-small/home/201-n.webp and b/static/sprites-small/home/201-n.webp differ diff --git a/static/sprites-small/home/201-o.webp b/static/sprites-small/home/201-o.webp index d8169ca..a2325a8 100644 Binary files a/static/sprites-small/home/201-o.webp and b/static/sprites-small/home/201-o.webp differ diff --git a/static/sprites-small/home/201-p.webp b/static/sprites-small/home/201-p.webp index b05fd56..0382f73 100644 Binary files a/static/sprites-small/home/201-p.webp and b/static/sprites-small/home/201-p.webp differ diff --git a/static/sprites-small/home/201-q.webp b/static/sprites-small/home/201-q.webp index 84f8713..b2553ea 100644 Binary files a/static/sprites-small/home/201-q.webp and b/static/sprites-small/home/201-q.webp differ diff --git a/static/sprites-small/home/201-question.webp b/static/sprites-small/home/201-question.webp index 4044229..fdd2bdd 100644 Binary files a/static/sprites-small/home/201-question.webp and b/static/sprites-small/home/201-question.webp differ diff --git a/static/sprites-small/home/201-r.webp b/static/sprites-small/home/201-r.webp index ca4f925..bacbd78 100644 Binary files a/static/sprites-small/home/201-r.webp and b/static/sprites-small/home/201-r.webp differ diff --git a/static/sprites-small/home/201-s.webp b/static/sprites-small/home/201-s.webp index 77775e6..76a7e74 100644 Binary files a/static/sprites-small/home/201-s.webp and b/static/sprites-small/home/201-s.webp differ diff --git a/static/sprites-small/home/201-t.webp b/static/sprites-small/home/201-t.webp index 0c143a8..96c40b3 100644 Binary files a/static/sprites-small/home/201-t.webp and b/static/sprites-small/home/201-t.webp differ diff --git a/static/sprites-small/home/201-u.webp b/static/sprites-small/home/201-u.webp index 9d5f42f..0fff6e3 100644 Binary files a/static/sprites-small/home/201-u.webp and b/static/sprites-small/home/201-u.webp differ diff --git a/static/sprites-small/home/201-v.webp b/static/sprites-small/home/201-v.webp index 84de099..b188bac 100644 Binary files a/static/sprites-small/home/201-v.webp and b/static/sprites-small/home/201-v.webp differ diff --git a/static/sprites-small/home/201-w.webp b/static/sprites-small/home/201-w.webp index 3a039ae..ec87a36 100644 Binary files a/static/sprites-small/home/201-w.webp and b/static/sprites-small/home/201-w.webp differ diff --git a/static/sprites-small/home/201-x.webp b/static/sprites-small/home/201-x.webp index 7b84d72..c7c18d7 100644 Binary files a/static/sprites-small/home/201-x.webp and b/static/sprites-small/home/201-x.webp differ diff --git a/static/sprites-small/home/201-y.webp b/static/sprites-small/home/201-y.webp index a1f7a23..f3a4f1c 100644 Binary files a/static/sprites-small/home/201-y.webp and b/static/sprites-small/home/201-y.webp differ diff --git a/static/sprites-small/home/201-z.webp b/static/sprites-small/home/201-z.webp index 1f25a62..c1c807c 100644 Binary files a/static/sprites-small/home/201-z.webp and b/static/sprites-small/home/201-z.webp differ diff --git a/static/sprites-small/home/201.webp b/static/sprites-small/home/201.webp index 54f13e4..046d990 100644 Binary files a/static/sprites-small/home/201.webp and b/static/sprites-small/home/201.webp differ diff --git a/static/sprites-small/home/202.webp b/static/sprites-small/home/202.webp index d68f627..de998b1 100644 Binary files a/static/sprites-small/home/202.webp and b/static/sprites-small/home/202.webp differ diff --git a/static/sprites-small/home/203.webp b/static/sprites-small/home/203.webp index 4e9924f..f77421d 100644 Binary files a/static/sprites-small/home/203.webp and b/static/sprites-small/home/203.webp differ diff --git a/static/sprites-small/home/204.webp b/static/sprites-small/home/204.webp index df84e8d..d15395a 100644 Binary files a/static/sprites-small/home/204.webp and b/static/sprites-small/home/204.webp differ diff --git a/static/sprites-small/home/205.webp b/static/sprites-small/home/205.webp index 4dac2a4..62e0451 100644 Binary files a/static/sprites-small/home/205.webp and b/static/sprites-small/home/205.webp differ diff --git a/static/sprites-small/home/206.webp b/static/sprites-small/home/206.webp index d76f2f7..b280584 100644 Binary files a/static/sprites-small/home/206.webp and b/static/sprites-small/home/206.webp differ diff --git a/static/sprites-small/home/207.webp b/static/sprites-small/home/207.webp index b2eed72..57153dc 100644 Binary files a/static/sprites-small/home/207.webp and b/static/sprites-small/home/207.webp differ diff --git a/static/sprites-small/home/208.webp b/static/sprites-small/home/208.webp index b48680f..a2a132a 100644 Binary files a/static/sprites-small/home/208.webp and b/static/sprites-small/home/208.webp differ diff --git a/static/sprites-small/home/209.webp b/static/sprites-small/home/209.webp index 1102d7c..cf3d8e1 100644 Binary files a/static/sprites-small/home/209.webp and b/static/sprites-small/home/209.webp differ diff --git a/static/sprites-small/home/21.webp b/static/sprites-small/home/21.webp index 850b99a..dd1245f 100644 Binary files a/static/sprites-small/home/21.webp and b/static/sprites-small/home/21.webp differ diff --git a/static/sprites-small/home/210.webp b/static/sprites-small/home/210.webp index 25acec3..5de0744 100644 Binary files a/static/sprites-small/home/210.webp and b/static/sprites-small/home/210.webp differ diff --git a/static/sprites-small/home/211.webp b/static/sprites-small/home/211.webp index a1293ab..2e08b32 100644 Binary files a/static/sprites-small/home/211.webp and b/static/sprites-small/home/211.webp differ diff --git a/static/sprites-small/home/212.webp b/static/sprites-small/home/212.webp index e4f3741..b13b7f0 100644 Binary files a/static/sprites-small/home/212.webp and b/static/sprites-small/home/212.webp differ diff --git a/static/sprites-small/home/213.webp b/static/sprites-small/home/213.webp index c2b6c05..3536d74 100644 Binary files a/static/sprites-small/home/213.webp and b/static/sprites-small/home/213.webp differ diff --git a/static/sprites-small/home/214.webp b/static/sprites-small/home/214.webp index 2550678..daea6be 100644 Binary files a/static/sprites-small/home/214.webp and b/static/sprites-small/home/214.webp differ diff --git a/static/sprites-small/home/215.webp b/static/sprites-small/home/215.webp index c4db8ae..726f66a 100644 Binary files a/static/sprites-small/home/215.webp and b/static/sprites-small/home/215.webp differ diff --git a/static/sprites-small/home/216.webp b/static/sprites-small/home/216.webp index cc30b75..5667870 100644 Binary files a/static/sprites-small/home/216.webp and b/static/sprites-small/home/216.webp differ diff --git a/static/sprites-small/home/217.webp b/static/sprites-small/home/217.webp index 414dc21..07561e8 100644 Binary files a/static/sprites-small/home/217.webp and b/static/sprites-small/home/217.webp differ diff --git a/static/sprites-small/home/218.webp b/static/sprites-small/home/218.webp index adf1fee..47ba7bf 100644 Binary files a/static/sprites-small/home/218.webp and b/static/sprites-small/home/218.webp differ diff --git a/static/sprites-small/home/219.webp b/static/sprites-small/home/219.webp index 917ba9b..d38ee53 100644 Binary files a/static/sprites-small/home/219.webp and b/static/sprites-small/home/219.webp differ diff --git a/static/sprites-small/home/22.webp b/static/sprites-small/home/22.webp index f85f90f..6c4b7c2 100644 Binary files a/static/sprites-small/home/22.webp and b/static/sprites-small/home/22.webp differ diff --git a/static/sprites-small/home/220.webp b/static/sprites-small/home/220.webp index 841a4e5..acd05fe 100644 Binary files a/static/sprites-small/home/220.webp and b/static/sprites-small/home/220.webp differ diff --git a/static/sprites-small/home/221.webp b/static/sprites-small/home/221.webp index b777f32..cb0e3b9 100644 Binary files a/static/sprites-small/home/221.webp and b/static/sprites-small/home/221.webp differ diff --git a/static/sprites-small/home/222.webp b/static/sprites-small/home/222.webp index 7929112..a3c2df6 100644 Binary files a/static/sprites-small/home/222.webp and b/static/sprites-small/home/222.webp differ diff --git a/static/sprites-small/home/223.webp b/static/sprites-small/home/223.webp index 8f8b428..6f86e50 100644 Binary files a/static/sprites-small/home/223.webp and b/static/sprites-small/home/223.webp differ diff --git a/static/sprites-small/home/224.webp b/static/sprites-small/home/224.webp index e863782..7ffe8a5 100644 Binary files a/static/sprites-small/home/224.webp and b/static/sprites-small/home/224.webp differ diff --git a/static/sprites-small/home/225.webp b/static/sprites-small/home/225.webp index 2a795e9..8af9660 100644 Binary files a/static/sprites-small/home/225.webp and b/static/sprites-small/home/225.webp differ diff --git a/static/sprites-small/home/226.webp b/static/sprites-small/home/226.webp index 49aee71..55d510d 100644 Binary files a/static/sprites-small/home/226.webp and b/static/sprites-small/home/226.webp differ diff --git a/static/sprites-small/home/227.webp b/static/sprites-small/home/227.webp index f99824a..a0e334c 100644 Binary files a/static/sprites-small/home/227.webp and b/static/sprites-small/home/227.webp differ diff --git a/static/sprites-small/home/228.webp b/static/sprites-small/home/228.webp index d6444b9..0faf02a 100644 Binary files a/static/sprites-small/home/228.webp and b/static/sprites-small/home/228.webp differ diff --git a/static/sprites-small/home/229.webp b/static/sprites-small/home/229.webp index 80526ad..e8022b3 100644 Binary files a/static/sprites-small/home/229.webp and b/static/sprites-small/home/229.webp differ diff --git a/static/sprites-small/home/23.webp b/static/sprites-small/home/23.webp index 2741cb2..4eb52b0 100644 Binary files a/static/sprites-small/home/23.webp and b/static/sprites-small/home/23.webp differ diff --git a/static/sprites-small/home/230.webp b/static/sprites-small/home/230.webp index f11c10e..9c7f9cd 100644 Binary files a/static/sprites-small/home/230.webp and b/static/sprites-small/home/230.webp differ diff --git a/static/sprites-small/home/231.webp b/static/sprites-small/home/231.webp index cd76b68..8ecb04b 100644 Binary files a/static/sprites-small/home/231.webp and b/static/sprites-small/home/231.webp differ diff --git a/static/sprites-small/home/232.webp b/static/sprites-small/home/232.webp index ac5cbc3..26c8b75 100644 Binary files a/static/sprites-small/home/232.webp and b/static/sprites-small/home/232.webp differ diff --git a/static/sprites-small/home/233.webp b/static/sprites-small/home/233.webp index 98f6bf4..c7e60cf 100644 Binary files a/static/sprites-small/home/233.webp and b/static/sprites-small/home/233.webp differ diff --git a/static/sprites-small/home/234.webp b/static/sprites-small/home/234.webp index b576c1b..ab36a3f 100644 Binary files a/static/sprites-small/home/234.webp and b/static/sprites-small/home/234.webp differ diff --git a/static/sprites-small/home/235.webp b/static/sprites-small/home/235.webp index a2b0ba7..72fab98 100644 Binary files a/static/sprites-small/home/235.webp and b/static/sprites-small/home/235.webp differ diff --git a/static/sprites-small/home/236.webp b/static/sprites-small/home/236.webp index 56f5eb1..bd9440b 100644 Binary files a/static/sprites-small/home/236.webp and b/static/sprites-small/home/236.webp differ diff --git a/static/sprites-small/home/237.webp b/static/sprites-small/home/237.webp index 2704081..1b96979 100644 Binary files a/static/sprites-small/home/237.webp and b/static/sprites-small/home/237.webp differ diff --git a/static/sprites-small/home/238.webp b/static/sprites-small/home/238.webp index d12a40a..8916277 100644 Binary files a/static/sprites-small/home/238.webp and b/static/sprites-small/home/238.webp differ diff --git a/static/sprites-small/home/239.webp b/static/sprites-small/home/239.webp index ddb0766..1798ca8 100644 Binary files a/static/sprites-small/home/239.webp and b/static/sprites-small/home/239.webp differ diff --git a/static/sprites-small/home/24.webp b/static/sprites-small/home/24.webp index 1e0adb0..c6d830b 100644 Binary files a/static/sprites-small/home/24.webp and b/static/sprites-small/home/24.webp differ diff --git a/static/sprites-small/home/240.webp b/static/sprites-small/home/240.webp index cf0c74a..24d9b83 100644 Binary files a/static/sprites-small/home/240.webp and b/static/sprites-small/home/240.webp differ diff --git a/static/sprites-small/home/241.webp b/static/sprites-small/home/241.webp index 23cb92f..cf80cbe 100644 Binary files a/static/sprites-small/home/241.webp and b/static/sprites-small/home/241.webp differ diff --git a/static/sprites-small/home/242.webp b/static/sprites-small/home/242.webp index 2ed6408..909dd92 100644 Binary files a/static/sprites-small/home/242.webp and b/static/sprites-small/home/242.webp differ diff --git a/static/sprites-small/home/243.webp b/static/sprites-small/home/243.webp index c42f37e..7a75366 100644 Binary files a/static/sprites-small/home/243.webp and b/static/sprites-small/home/243.webp differ diff --git a/static/sprites-small/home/244.webp b/static/sprites-small/home/244.webp index 7c236ea..6481848 100644 Binary files a/static/sprites-small/home/244.webp and b/static/sprites-small/home/244.webp differ diff --git a/static/sprites-small/home/245.webp b/static/sprites-small/home/245.webp index 1b029e9..31b5b8a 100644 Binary files a/static/sprites-small/home/245.webp and b/static/sprites-small/home/245.webp differ diff --git a/static/sprites-small/home/246.webp b/static/sprites-small/home/246.webp index 56b040e..90f5d38 100644 Binary files a/static/sprites-small/home/246.webp and b/static/sprites-small/home/246.webp differ diff --git a/static/sprites-small/home/247.webp b/static/sprites-small/home/247.webp index a18b501..68464e2 100644 Binary files a/static/sprites-small/home/247.webp and b/static/sprites-small/home/247.webp differ diff --git a/static/sprites-small/home/248.webp b/static/sprites-small/home/248.webp index 0b303f9..4b22de5 100644 Binary files a/static/sprites-small/home/248.webp and b/static/sprites-small/home/248.webp differ diff --git a/static/sprites-small/home/249.webp b/static/sprites-small/home/249.webp index ef12515..fa99d1c 100644 Binary files a/static/sprites-small/home/249.webp and b/static/sprites-small/home/249.webp differ diff --git a/static/sprites-small/home/25.webp b/static/sprites-small/home/25.webp index 20d6156..6ddf858 100644 Binary files a/static/sprites-small/home/25.webp and b/static/sprites-small/home/25.webp differ diff --git a/static/sprites-small/home/250.webp b/static/sprites-small/home/250.webp index 4a5b606..0aebf87 100644 Binary files a/static/sprites-small/home/250.webp and b/static/sprites-small/home/250.webp differ diff --git a/static/sprites-small/home/251.webp b/static/sprites-small/home/251.webp index 838e0b5..5407395 100644 Binary files a/static/sprites-small/home/251.webp and b/static/sprites-small/home/251.webp differ diff --git a/static/sprites-small/home/252.webp b/static/sprites-small/home/252.webp index d049c2d..d95d56d 100644 Binary files a/static/sprites-small/home/252.webp and b/static/sprites-small/home/252.webp differ diff --git a/static/sprites-small/home/253.webp b/static/sprites-small/home/253.webp index fde219d..2885bec 100644 Binary files a/static/sprites-small/home/253.webp and b/static/sprites-small/home/253.webp differ diff --git a/static/sprites-small/home/254.webp b/static/sprites-small/home/254.webp index e340c2d..5b0bb7e 100644 Binary files a/static/sprites-small/home/254.webp and b/static/sprites-small/home/254.webp differ diff --git a/static/sprites-small/home/255.webp b/static/sprites-small/home/255.webp index 77255e1..6178067 100644 Binary files a/static/sprites-small/home/255.webp and b/static/sprites-small/home/255.webp differ diff --git a/static/sprites-small/home/256.webp b/static/sprites-small/home/256.webp index d536680..1064b3f 100644 Binary files a/static/sprites-small/home/256.webp and b/static/sprites-small/home/256.webp differ diff --git a/static/sprites-small/home/257.webp b/static/sprites-small/home/257.webp index ccdede2..e3ce6e0 100644 Binary files a/static/sprites-small/home/257.webp and b/static/sprites-small/home/257.webp differ diff --git a/static/sprites-small/home/258.webp b/static/sprites-small/home/258.webp index 99b2002..eebea7d 100644 Binary files a/static/sprites-small/home/258.webp and b/static/sprites-small/home/258.webp differ diff --git a/static/sprites-small/home/259.webp b/static/sprites-small/home/259.webp index d6eb9f2..2365a43 100644 Binary files a/static/sprites-small/home/259.webp and b/static/sprites-small/home/259.webp differ diff --git a/static/sprites-small/home/26.webp b/static/sprites-small/home/26.webp index bc5c857..1034347 100644 Binary files a/static/sprites-small/home/26.webp and b/static/sprites-small/home/26.webp differ diff --git a/static/sprites-small/home/260.webp b/static/sprites-small/home/260.webp index a1d7a6e..5e34689 100644 Binary files a/static/sprites-small/home/260.webp and b/static/sprites-small/home/260.webp differ diff --git a/static/sprites-small/home/261.webp b/static/sprites-small/home/261.webp index d640d21..a239e77 100644 Binary files a/static/sprites-small/home/261.webp and b/static/sprites-small/home/261.webp differ diff --git a/static/sprites-small/home/262.webp b/static/sprites-small/home/262.webp index 69e5cd7..13348b5 100644 Binary files a/static/sprites-small/home/262.webp and b/static/sprites-small/home/262.webp differ diff --git a/static/sprites-small/home/263.webp b/static/sprites-small/home/263.webp index f4560a2..629a555 100644 Binary files a/static/sprites-small/home/263.webp and b/static/sprites-small/home/263.webp differ diff --git a/static/sprites-small/home/264.webp b/static/sprites-small/home/264.webp index b6fac01..b614ce1 100644 Binary files a/static/sprites-small/home/264.webp and b/static/sprites-small/home/264.webp differ diff --git a/static/sprites-small/home/265.webp b/static/sprites-small/home/265.webp index 980628e..2333e52 100644 Binary files a/static/sprites-small/home/265.webp and b/static/sprites-small/home/265.webp differ diff --git a/static/sprites-small/home/266.webp b/static/sprites-small/home/266.webp index 89d1632..6fe8983 100644 Binary files a/static/sprites-small/home/266.webp and b/static/sprites-small/home/266.webp differ diff --git a/static/sprites-small/home/267.webp b/static/sprites-small/home/267.webp index 039d67c..a623300 100644 Binary files a/static/sprites-small/home/267.webp and b/static/sprites-small/home/267.webp differ diff --git a/static/sprites-small/home/268.webp b/static/sprites-small/home/268.webp index 43e238f..979af6f 100644 Binary files a/static/sprites-small/home/268.webp and b/static/sprites-small/home/268.webp differ diff --git a/static/sprites-small/home/269.webp b/static/sprites-small/home/269.webp index d24d646..bc16a63 100644 Binary files a/static/sprites-small/home/269.webp and b/static/sprites-small/home/269.webp differ diff --git a/static/sprites-small/home/27.webp b/static/sprites-small/home/27.webp index 0105d97..f0d3dba 100644 Binary files a/static/sprites-small/home/27.webp and b/static/sprites-small/home/27.webp differ diff --git a/static/sprites-small/home/270.webp b/static/sprites-small/home/270.webp index 4918785..1d1d01c 100644 Binary files a/static/sprites-small/home/270.webp and b/static/sprites-small/home/270.webp differ diff --git a/static/sprites-small/home/271.webp b/static/sprites-small/home/271.webp index c711027..bdfb7df 100644 Binary files a/static/sprites-small/home/271.webp and b/static/sprites-small/home/271.webp differ diff --git a/static/sprites-small/home/272.webp b/static/sprites-small/home/272.webp index 99f8419..1ac57c7 100644 Binary files a/static/sprites-small/home/272.webp and b/static/sprites-small/home/272.webp differ diff --git a/static/sprites-small/home/273.webp b/static/sprites-small/home/273.webp index 21f23ca..b5f1ef5 100644 Binary files a/static/sprites-small/home/273.webp and b/static/sprites-small/home/273.webp differ diff --git a/static/sprites-small/home/274.webp b/static/sprites-small/home/274.webp index 57c7e09..a0bc32e 100644 Binary files a/static/sprites-small/home/274.webp and b/static/sprites-small/home/274.webp differ diff --git a/static/sprites-small/home/275.webp b/static/sprites-small/home/275.webp index c56360e..d905085 100644 Binary files a/static/sprites-small/home/275.webp and b/static/sprites-small/home/275.webp differ diff --git a/static/sprites-small/home/276.webp b/static/sprites-small/home/276.webp index af05fcf..ebd2aca 100644 Binary files a/static/sprites-small/home/276.webp and b/static/sprites-small/home/276.webp differ diff --git a/static/sprites-small/home/277.webp b/static/sprites-small/home/277.webp index fe9e0db..1ff0406 100644 Binary files a/static/sprites-small/home/277.webp and b/static/sprites-small/home/277.webp differ diff --git a/static/sprites-small/home/278.webp b/static/sprites-small/home/278.webp index 6710479..dcfee98 100644 Binary files a/static/sprites-small/home/278.webp and b/static/sprites-small/home/278.webp differ diff --git a/static/sprites-small/home/279.webp b/static/sprites-small/home/279.webp index 74e8d87..6c6c25a 100644 Binary files a/static/sprites-small/home/279.webp and b/static/sprites-small/home/279.webp differ diff --git a/static/sprites-small/home/28.webp b/static/sprites-small/home/28.webp index a0e3b86..8ec9494 100644 Binary files a/static/sprites-small/home/28.webp and b/static/sprites-small/home/28.webp differ diff --git a/static/sprites-small/home/280.webp b/static/sprites-small/home/280.webp index efd51f3..ce95c19 100644 Binary files a/static/sprites-small/home/280.webp and b/static/sprites-small/home/280.webp differ diff --git a/static/sprites-small/home/281.webp b/static/sprites-small/home/281.webp index 0b5d63b..f0e469e 100644 Binary files a/static/sprites-small/home/281.webp and b/static/sprites-small/home/281.webp differ diff --git a/static/sprites-small/home/282.webp b/static/sprites-small/home/282.webp index 08f8fd2..df32616 100644 Binary files a/static/sprites-small/home/282.webp and b/static/sprites-small/home/282.webp differ diff --git a/static/sprites-small/home/283.webp b/static/sprites-small/home/283.webp index d7a0f18..6881587 100644 Binary files a/static/sprites-small/home/283.webp and b/static/sprites-small/home/283.webp differ diff --git a/static/sprites-small/home/284.webp b/static/sprites-small/home/284.webp index 1c34fcb..43c0c48 100644 Binary files a/static/sprites-small/home/284.webp and b/static/sprites-small/home/284.webp differ diff --git a/static/sprites-small/home/285.webp b/static/sprites-small/home/285.webp index 582ee49..abbe41a 100644 Binary files a/static/sprites-small/home/285.webp and b/static/sprites-small/home/285.webp differ diff --git a/static/sprites-small/home/286.webp b/static/sprites-small/home/286.webp index 344c06b..12eae64 100644 Binary files a/static/sprites-small/home/286.webp and b/static/sprites-small/home/286.webp differ diff --git a/static/sprites-small/home/287.webp b/static/sprites-small/home/287.webp index e9189ab..4f76aa8 100644 Binary files a/static/sprites-small/home/287.webp and b/static/sprites-small/home/287.webp differ diff --git a/static/sprites-small/home/288.webp b/static/sprites-small/home/288.webp index d4c9a61..9d41bbe 100644 Binary files a/static/sprites-small/home/288.webp and b/static/sprites-small/home/288.webp differ diff --git a/static/sprites-small/home/289.webp b/static/sprites-small/home/289.webp index b4f257e..2582bff 100644 Binary files a/static/sprites-small/home/289.webp and b/static/sprites-small/home/289.webp differ diff --git a/static/sprites-small/home/29.webp b/static/sprites-small/home/29.webp index d979afe..bbddc45 100644 Binary files a/static/sprites-small/home/29.webp and b/static/sprites-small/home/29.webp differ diff --git a/static/sprites-small/home/290.webp b/static/sprites-small/home/290.webp index aecb3ed..e510bf8 100644 Binary files a/static/sprites-small/home/290.webp and b/static/sprites-small/home/290.webp differ diff --git a/static/sprites-small/home/291.webp b/static/sprites-small/home/291.webp index f0819aa..bb48e80 100644 Binary files a/static/sprites-small/home/291.webp and b/static/sprites-small/home/291.webp differ diff --git a/static/sprites-small/home/292.webp b/static/sprites-small/home/292.webp index 484063a..77d7d1e 100644 Binary files a/static/sprites-small/home/292.webp and b/static/sprites-small/home/292.webp differ diff --git a/static/sprites-small/home/293.webp b/static/sprites-small/home/293.webp index eac9891..22a8f3b 100644 Binary files a/static/sprites-small/home/293.webp and b/static/sprites-small/home/293.webp differ diff --git a/static/sprites-small/home/294.webp b/static/sprites-small/home/294.webp index 43a0341..b3a6c2a 100644 Binary files a/static/sprites-small/home/294.webp and b/static/sprites-small/home/294.webp differ diff --git a/static/sprites-small/home/295.webp b/static/sprites-small/home/295.webp index fe0f99e..efbe649 100644 Binary files a/static/sprites-small/home/295.webp and b/static/sprites-small/home/295.webp differ diff --git a/static/sprites-small/home/296.webp b/static/sprites-small/home/296.webp index 13499d0..5df2d86 100644 Binary files a/static/sprites-small/home/296.webp and b/static/sprites-small/home/296.webp differ diff --git a/static/sprites-small/home/297.webp b/static/sprites-small/home/297.webp index 3a4f791..805efee 100644 Binary files a/static/sprites-small/home/297.webp and b/static/sprites-small/home/297.webp differ diff --git a/static/sprites-small/home/298.webp b/static/sprites-small/home/298.webp index 0483df4..01a20ea 100644 Binary files a/static/sprites-small/home/298.webp and b/static/sprites-small/home/298.webp differ diff --git a/static/sprites-small/home/299.webp b/static/sprites-small/home/299.webp index 1504656..9910f2a 100644 Binary files a/static/sprites-small/home/299.webp and b/static/sprites-small/home/299.webp differ diff --git a/static/sprites-small/home/3.webp b/static/sprites-small/home/3.webp index 47f6b68..3c10e23 100644 Binary files a/static/sprites-small/home/3.webp and b/static/sprites-small/home/3.webp differ diff --git a/static/sprites-small/home/30.webp b/static/sprites-small/home/30.webp index b846542..6c7f767 100644 Binary files a/static/sprites-small/home/30.webp and b/static/sprites-small/home/30.webp differ diff --git a/static/sprites-small/home/300.webp b/static/sprites-small/home/300.webp index 2a97b6e..477d662 100644 Binary files a/static/sprites-small/home/300.webp and b/static/sprites-small/home/300.webp differ diff --git a/static/sprites-small/home/301.webp b/static/sprites-small/home/301.webp index 0225650..c6de8a6 100644 Binary files a/static/sprites-small/home/301.webp and b/static/sprites-small/home/301.webp differ diff --git a/static/sprites-small/home/302.webp b/static/sprites-small/home/302.webp index 8db8c7e..4938061 100644 Binary files a/static/sprites-small/home/302.webp and b/static/sprites-small/home/302.webp differ diff --git a/static/sprites-small/home/303.webp b/static/sprites-small/home/303.webp index f3cf9f5..80df12b 100644 Binary files a/static/sprites-small/home/303.webp and b/static/sprites-small/home/303.webp differ diff --git a/static/sprites-small/home/304.webp b/static/sprites-small/home/304.webp index 664a643..3b5500c 100644 Binary files a/static/sprites-small/home/304.webp and b/static/sprites-small/home/304.webp differ diff --git a/static/sprites-small/home/305.webp b/static/sprites-small/home/305.webp index 40dc368..95b40a7 100644 Binary files a/static/sprites-small/home/305.webp and b/static/sprites-small/home/305.webp differ diff --git a/static/sprites-small/home/306.webp b/static/sprites-small/home/306.webp index 4e6c73c..c6dd173 100644 Binary files a/static/sprites-small/home/306.webp and b/static/sprites-small/home/306.webp differ diff --git a/static/sprites-small/home/307.webp b/static/sprites-small/home/307.webp index e1a0ad4..1d8a3ce 100644 Binary files a/static/sprites-small/home/307.webp and b/static/sprites-small/home/307.webp differ diff --git a/static/sprites-small/home/308.webp b/static/sprites-small/home/308.webp index 6663bf6..5a1b84f 100644 Binary files a/static/sprites-small/home/308.webp and b/static/sprites-small/home/308.webp differ diff --git a/static/sprites-small/home/309.webp b/static/sprites-small/home/309.webp index 85b81e0..096fe0e 100644 Binary files a/static/sprites-small/home/309.webp and b/static/sprites-small/home/309.webp differ diff --git a/static/sprites-small/home/31.webp b/static/sprites-small/home/31.webp index eebc6e9..18d3392 100644 Binary files a/static/sprites-small/home/31.webp and b/static/sprites-small/home/31.webp differ diff --git a/static/sprites-small/home/310.webp b/static/sprites-small/home/310.webp index 1124420..7f1bef6 100644 Binary files a/static/sprites-small/home/310.webp and b/static/sprites-small/home/310.webp differ diff --git a/static/sprites-small/home/311.webp b/static/sprites-small/home/311.webp index 34e3a17..f58b73f 100644 Binary files a/static/sprites-small/home/311.webp and b/static/sprites-small/home/311.webp differ diff --git a/static/sprites-small/home/312.webp b/static/sprites-small/home/312.webp index db7a13f..051248c 100644 Binary files a/static/sprites-small/home/312.webp and b/static/sprites-small/home/312.webp differ diff --git a/static/sprites-small/home/313.webp b/static/sprites-small/home/313.webp index 76bd446..b141907 100644 Binary files a/static/sprites-small/home/313.webp and b/static/sprites-small/home/313.webp differ diff --git a/static/sprites-small/home/314.webp b/static/sprites-small/home/314.webp index 1356f76..a3a968f 100644 Binary files a/static/sprites-small/home/314.webp and b/static/sprites-small/home/314.webp differ diff --git a/static/sprites-small/home/315.webp b/static/sprites-small/home/315.webp index 1c695b6..b6866e6 100644 Binary files a/static/sprites-small/home/315.webp and b/static/sprites-small/home/315.webp differ diff --git a/static/sprites-small/home/316.webp b/static/sprites-small/home/316.webp index 07ff697..4e9879d 100644 Binary files a/static/sprites-small/home/316.webp and b/static/sprites-small/home/316.webp differ diff --git a/static/sprites-small/home/317.webp b/static/sprites-small/home/317.webp index cef5375..edbbf93 100644 Binary files a/static/sprites-small/home/317.webp and b/static/sprites-small/home/317.webp differ diff --git a/static/sprites-small/home/318.webp b/static/sprites-small/home/318.webp index 28903df..cd26e5b 100644 Binary files a/static/sprites-small/home/318.webp and b/static/sprites-small/home/318.webp differ diff --git a/static/sprites-small/home/319.webp b/static/sprites-small/home/319.webp index 955b986..795fbd3 100644 Binary files a/static/sprites-small/home/319.webp and b/static/sprites-small/home/319.webp differ diff --git a/static/sprites-small/home/32.webp b/static/sprites-small/home/32.webp index 7bc8599..a5ed255 100644 Binary files a/static/sprites-small/home/32.webp and b/static/sprites-small/home/32.webp differ diff --git a/static/sprites-small/home/320.webp b/static/sprites-small/home/320.webp index c1c37e5..77b10b0 100644 Binary files a/static/sprites-small/home/320.webp and b/static/sprites-small/home/320.webp differ diff --git a/static/sprites-small/home/321.webp b/static/sprites-small/home/321.webp index 50d5fb1..186d372 100644 Binary files a/static/sprites-small/home/321.webp and b/static/sprites-small/home/321.webp differ diff --git a/static/sprites-small/home/322.webp b/static/sprites-small/home/322.webp index 8ce3eca..e79a841 100644 Binary files a/static/sprites-small/home/322.webp and b/static/sprites-small/home/322.webp differ diff --git a/static/sprites-small/home/323.webp b/static/sprites-small/home/323.webp index be40ba4..30b6929 100644 Binary files a/static/sprites-small/home/323.webp and b/static/sprites-small/home/323.webp differ diff --git a/static/sprites-small/home/324.webp b/static/sprites-small/home/324.webp index bed9e5e..d551dfb 100644 Binary files a/static/sprites-small/home/324.webp and b/static/sprites-small/home/324.webp differ diff --git a/static/sprites-small/home/325.webp b/static/sprites-small/home/325.webp index dac2dd9..8e86308 100644 Binary files a/static/sprites-small/home/325.webp and b/static/sprites-small/home/325.webp differ diff --git a/static/sprites-small/home/326.webp b/static/sprites-small/home/326.webp index 6c8e2f0..2b25085 100644 Binary files a/static/sprites-small/home/326.webp and b/static/sprites-small/home/326.webp differ diff --git a/static/sprites-small/home/327.webp b/static/sprites-small/home/327.webp index 5d74ba9..3463a48 100644 Binary files a/static/sprites-small/home/327.webp and b/static/sprites-small/home/327.webp differ diff --git a/static/sprites-small/home/328.webp b/static/sprites-small/home/328.webp index 40da81c..2a23493 100644 Binary files a/static/sprites-small/home/328.webp and b/static/sprites-small/home/328.webp differ diff --git a/static/sprites-small/home/329.webp b/static/sprites-small/home/329.webp index a7ea395..a34bdb2 100644 Binary files a/static/sprites-small/home/329.webp and b/static/sprites-small/home/329.webp differ diff --git a/static/sprites-small/home/33.webp b/static/sprites-small/home/33.webp index 55a3028..085550c 100644 Binary files a/static/sprites-small/home/33.webp and b/static/sprites-small/home/33.webp differ diff --git a/static/sprites-small/home/330.webp b/static/sprites-small/home/330.webp index b4530b2..fcb9e4a 100644 Binary files a/static/sprites-small/home/330.webp and b/static/sprites-small/home/330.webp differ diff --git a/static/sprites-small/home/331.webp b/static/sprites-small/home/331.webp index 6b0f1b8..9425605 100644 Binary files a/static/sprites-small/home/331.webp and b/static/sprites-small/home/331.webp differ diff --git a/static/sprites-small/home/332.webp b/static/sprites-small/home/332.webp index dadbb2a..e30afb4 100644 Binary files a/static/sprites-small/home/332.webp and b/static/sprites-small/home/332.webp differ diff --git a/static/sprites-small/home/333.webp b/static/sprites-small/home/333.webp index 9d0ab10..5ee28ff 100644 Binary files a/static/sprites-small/home/333.webp and b/static/sprites-small/home/333.webp differ diff --git a/static/sprites-small/home/334.webp b/static/sprites-small/home/334.webp index 7a014c8..28f8e6f 100644 Binary files a/static/sprites-small/home/334.webp and b/static/sprites-small/home/334.webp differ diff --git a/static/sprites-small/home/335.webp b/static/sprites-small/home/335.webp index ca8d90c..0f72bf0 100644 Binary files a/static/sprites-small/home/335.webp and b/static/sprites-small/home/335.webp differ diff --git a/static/sprites-small/home/336.webp b/static/sprites-small/home/336.webp index b413639..bffa52c 100644 Binary files a/static/sprites-small/home/336.webp and b/static/sprites-small/home/336.webp differ diff --git a/static/sprites-small/home/337.webp b/static/sprites-small/home/337.webp index ae92095..ea23fd3 100644 Binary files a/static/sprites-small/home/337.webp and b/static/sprites-small/home/337.webp differ diff --git a/static/sprites-small/home/338.webp b/static/sprites-small/home/338.webp index f6d4e78..69010ce 100644 Binary files a/static/sprites-small/home/338.webp and b/static/sprites-small/home/338.webp differ diff --git a/static/sprites-small/home/339.webp b/static/sprites-small/home/339.webp index c7602e7..978f8fc 100644 Binary files a/static/sprites-small/home/339.webp and b/static/sprites-small/home/339.webp differ diff --git a/static/sprites-small/home/34.webp b/static/sprites-small/home/34.webp index 661526e..38e4684 100644 Binary files a/static/sprites-small/home/34.webp and b/static/sprites-small/home/34.webp differ diff --git a/static/sprites-small/home/340.webp b/static/sprites-small/home/340.webp index a7fb832..bae1e2c 100644 Binary files a/static/sprites-small/home/340.webp and b/static/sprites-small/home/340.webp differ diff --git a/static/sprites-small/home/341.webp b/static/sprites-small/home/341.webp index e4068dc..a921dfe 100644 Binary files a/static/sprites-small/home/341.webp and b/static/sprites-small/home/341.webp differ diff --git a/static/sprites-small/home/342.webp b/static/sprites-small/home/342.webp index 7c8a217..db08869 100644 Binary files a/static/sprites-small/home/342.webp and b/static/sprites-small/home/342.webp differ diff --git a/static/sprites-small/home/343.webp b/static/sprites-small/home/343.webp index b4652bd..db7325d 100644 Binary files a/static/sprites-small/home/343.webp and b/static/sprites-small/home/343.webp differ diff --git a/static/sprites-small/home/344.webp b/static/sprites-small/home/344.webp index db74070..6921070 100644 Binary files a/static/sprites-small/home/344.webp and b/static/sprites-small/home/344.webp differ diff --git a/static/sprites-small/home/345.webp b/static/sprites-small/home/345.webp index 197eeb7..fc4b7e6 100644 Binary files a/static/sprites-small/home/345.webp and b/static/sprites-small/home/345.webp differ diff --git a/static/sprites-small/home/346.webp b/static/sprites-small/home/346.webp index 2eeaf69..0d77fc6 100644 Binary files a/static/sprites-small/home/346.webp and b/static/sprites-small/home/346.webp differ diff --git a/static/sprites-small/home/347.webp b/static/sprites-small/home/347.webp index 74d26c7..c3b2900 100644 Binary files a/static/sprites-small/home/347.webp and b/static/sprites-small/home/347.webp differ diff --git a/static/sprites-small/home/348.webp b/static/sprites-small/home/348.webp index f6eb7b1..23e82a4 100644 Binary files a/static/sprites-small/home/348.webp and b/static/sprites-small/home/348.webp differ diff --git a/static/sprites-small/home/349.webp b/static/sprites-small/home/349.webp index 78bb484..285a382 100644 Binary files a/static/sprites-small/home/349.webp and b/static/sprites-small/home/349.webp differ diff --git a/static/sprites-small/home/35.webp b/static/sprites-small/home/35.webp index 810222c..5afe84d 100644 Binary files a/static/sprites-small/home/35.webp and b/static/sprites-small/home/35.webp differ diff --git a/static/sprites-small/home/350.webp b/static/sprites-small/home/350.webp index fc4f6ee..def81d3 100644 Binary files a/static/sprites-small/home/350.webp and b/static/sprites-small/home/350.webp differ diff --git a/static/sprites-small/home/351.webp b/static/sprites-small/home/351.webp index 3b4a7f6..f8ae32a 100644 Binary files a/static/sprites-small/home/351.webp and b/static/sprites-small/home/351.webp differ diff --git a/static/sprites-small/home/352.webp b/static/sprites-small/home/352.webp index 5c51bcc..922afb9 100644 Binary files a/static/sprites-small/home/352.webp and b/static/sprites-small/home/352.webp differ diff --git a/static/sprites-small/home/353.webp b/static/sprites-small/home/353.webp index 6da393c..82a8b9d 100644 Binary files a/static/sprites-small/home/353.webp and b/static/sprites-small/home/353.webp differ diff --git a/static/sprites-small/home/354.webp b/static/sprites-small/home/354.webp index 57bb081..f55953e 100644 Binary files a/static/sprites-small/home/354.webp and b/static/sprites-small/home/354.webp differ diff --git a/static/sprites-small/home/355.webp b/static/sprites-small/home/355.webp index 8d3fbca..af358e9 100644 Binary files a/static/sprites-small/home/355.webp and b/static/sprites-small/home/355.webp differ diff --git a/static/sprites-small/home/356.webp b/static/sprites-small/home/356.webp index cef8d57..493bdf5 100644 Binary files a/static/sprites-small/home/356.webp and b/static/sprites-small/home/356.webp differ diff --git a/static/sprites-small/home/357.webp b/static/sprites-small/home/357.webp index f0bf0d7..297f3d9 100644 Binary files a/static/sprites-small/home/357.webp and b/static/sprites-small/home/357.webp differ diff --git a/static/sprites-small/home/358.webp b/static/sprites-small/home/358.webp index 7a4f5e4..ddb4f73 100644 Binary files a/static/sprites-small/home/358.webp and b/static/sprites-small/home/358.webp differ diff --git a/static/sprites-small/home/359.webp b/static/sprites-small/home/359.webp index 9b71d2d..850d8a0 100644 Binary files a/static/sprites-small/home/359.webp and b/static/sprites-small/home/359.webp differ diff --git a/static/sprites-small/home/36.webp b/static/sprites-small/home/36.webp index ae93ccd..95a9514 100644 Binary files a/static/sprites-small/home/36.webp and b/static/sprites-small/home/36.webp differ diff --git a/static/sprites-small/home/360.webp b/static/sprites-small/home/360.webp index 7eba127..5fbd760 100644 Binary files a/static/sprites-small/home/360.webp and b/static/sprites-small/home/360.webp differ diff --git a/static/sprites-small/home/361.webp b/static/sprites-small/home/361.webp index 69616b5..4800960 100644 Binary files a/static/sprites-small/home/361.webp and b/static/sprites-small/home/361.webp differ diff --git a/static/sprites-small/home/362.webp b/static/sprites-small/home/362.webp index 1c26bba..083cdd9 100644 Binary files a/static/sprites-small/home/362.webp and b/static/sprites-small/home/362.webp differ diff --git a/static/sprites-small/home/363.webp b/static/sprites-small/home/363.webp index ce3bf68..d4c0775 100644 Binary files a/static/sprites-small/home/363.webp and b/static/sprites-small/home/363.webp differ diff --git a/static/sprites-small/home/364.webp b/static/sprites-small/home/364.webp index 32f412a..1b52400 100644 Binary files a/static/sprites-small/home/364.webp and b/static/sprites-small/home/364.webp differ diff --git a/static/sprites-small/home/365.webp b/static/sprites-small/home/365.webp index 817d682..3e3f00e 100644 Binary files a/static/sprites-small/home/365.webp and b/static/sprites-small/home/365.webp differ diff --git a/static/sprites-small/home/366.webp b/static/sprites-small/home/366.webp index 70eee93..7317e6b 100644 Binary files a/static/sprites-small/home/366.webp and b/static/sprites-small/home/366.webp differ diff --git a/static/sprites-small/home/367.webp b/static/sprites-small/home/367.webp index 826b8ca..a478a4d 100644 Binary files a/static/sprites-small/home/367.webp and b/static/sprites-small/home/367.webp differ diff --git a/static/sprites-small/home/368.webp b/static/sprites-small/home/368.webp index d4e646d..39df19f 100644 Binary files a/static/sprites-small/home/368.webp and b/static/sprites-small/home/368.webp differ diff --git a/static/sprites-small/home/369.webp b/static/sprites-small/home/369.webp index f38f087..a3a5117 100644 Binary files a/static/sprites-small/home/369.webp and b/static/sprites-small/home/369.webp differ diff --git a/static/sprites-small/home/37.webp b/static/sprites-small/home/37.webp index 7b8448e..3aa7d3d 100644 Binary files a/static/sprites-small/home/37.webp and b/static/sprites-small/home/37.webp differ diff --git a/static/sprites-small/home/370.webp b/static/sprites-small/home/370.webp index ddb7749..aa28efe 100644 Binary files a/static/sprites-small/home/370.webp and b/static/sprites-small/home/370.webp differ diff --git a/static/sprites-small/home/371.webp b/static/sprites-small/home/371.webp index 2b32bea..cef5163 100644 Binary files a/static/sprites-small/home/371.webp and b/static/sprites-small/home/371.webp differ diff --git a/static/sprites-small/home/372.webp b/static/sprites-small/home/372.webp index e2a8028..c992af6 100644 Binary files a/static/sprites-small/home/372.webp and b/static/sprites-small/home/372.webp differ diff --git a/static/sprites-small/home/373.webp b/static/sprites-small/home/373.webp index d88a8c6..66fc0ea 100644 Binary files a/static/sprites-small/home/373.webp and b/static/sprites-small/home/373.webp differ diff --git a/static/sprites-small/home/374.webp b/static/sprites-small/home/374.webp index 59ce293..cbb0258 100644 Binary files a/static/sprites-small/home/374.webp and b/static/sprites-small/home/374.webp differ diff --git a/static/sprites-small/home/375.webp b/static/sprites-small/home/375.webp index b0d91dd..b011546 100644 Binary files a/static/sprites-small/home/375.webp and b/static/sprites-small/home/375.webp differ diff --git a/static/sprites-small/home/376.webp b/static/sprites-small/home/376.webp index 323a80b..cabb1a0 100644 Binary files a/static/sprites-small/home/376.webp and b/static/sprites-small/home/376.webp differ diff --git a/static/sprites-small/home/377.webp b/static/sprites-small/home/377.webp index 2bb8342..6529cfe 100644 Binary files a/static/sprites-small/home/377.webp and b/static/sprites-small/home/377.webp differ diff --git a/static/sprites-small/home/378.webp b/static/sprites-small/home/378.webp index a40bf62..64d7469 100644 Binary files a/static/sprites-small/home/378.webp and b/static/sprites-small/home/378.webp differ diff --git a/static/sprites-small/home/379.webp b/static/sprites-small/home/379.webp index 6a85561..7c21e1a 100644 Binary files a/static/sprites-small/home/379.webp and b/static/sprites-small/home/379.webp differ diff --git a/static/sprites-small/home/38.webp b/static/sprites-small/home/38.webp index cafda35..cacf3f3 100644 Binary files a/static/sprites-small/home/38.webp and b/static/sprites-small/home/38.webp differ diff --git a/static/sprites-small/home/380.webp b/static/sprites-small/home/380.webp index 8590ce1..e52500f 100644 Binary files a/static/sprites-small/home/380.webp and b/static/sprites-small/home/380.webp differ diff --git a/static/sprites-small/home/381.webp b/static/sprites-small/home/381.webp index 076339d..3946d83 100644 Binary files a/static/sprites-small/home/381.webp and b/static/sprites-small/home/381.webp differ diff --git a/static/sprites-small/home/382.webp b/static/sprites-small/home/382.webp index 1e045c5..1ab2052 100644 Binary files a/static/sprites-small/home/382.webp and b/static/sprites-small/home/382.webp differ diff --git a/static/sprites-small/home/383.webp b/static/sprites-small/home/383.webp index 8c354d8..ce50773 100644 Binary files a/static/sprites-small/home/383.webp and b/static/sprites-small/home/383.webp differ diff --git a/static/sprites-small/home/384.webp b/static/sprites-small/home/384.webp index b64f86d..a05acb3 100644 Binary files a/static/sprites-small/home/384.webp and b/static/sprites-small/home/384.webp differ diff --git a/static/sprites-small/home/385.webp b/static/sprites-small/home/385.webp index f7ed93c..a26827c 100644 Binary files a/static/sprites-small/home/385.webp and b/static/sprites-small/home/385.webp differ diff --git a/static/sprites-small/home/386.webp b/static/sprites-small/home/386.webp index 4417a0a..76fa30b 100644 Binary files a/static/sprites-small/home/386.webp and b/static/sprites-small/home/386.webp differ diff --git a/static/sprites-small/home/387.webp b/static/sprites-small/home/387.webp index ec31565..eada0b4 100644 Binary files a/static/sprites-small/home/387.webp and b/static/sprites-small/home/387.webp differ diff --git a/static/sprites-small/home/388.webp b/static/sprites-small/home/388.webp index 90d9c65..735c745 100644 Binary files a/static/sprites-small/home/388.webp and b/static/sprites-small/home/388.webp differ diff --git a/static/sprites-small/home/389.webp b/static/sprites-small/home/389.webp index 3287a6e..0bebd78 100644 Binary files a/static/sprites-small/home/389.webp and b/static/sprites-small/home/389.webp differ diff --git a/static/sprites-small/home/39.webp b/static/sprites-small/home/39.webp index d803b0f..bf2366c 100644 Binary files a/static/sprites-small/home/39.webp and b/static/sprites-small/home/39.webp differ diff --git a/static/sprites-small/home/390.webp b/static/sprites-small/home/390.webp index a286eb7..22e701f 100644 Binary files a/static/sprites-small/home/390.webp and b/static/sprites-small/home/390.webp differ diff --git a/static/sprites-small/home/391.webp b/static/sprites-small/home/391.webp index 65616e5..89d791f 100644 Binary files a/static/sprites-small/home/391.webp and b/static/sprites-small/home/391.webp differ diff --git a/static/sprites-small/home/392.webp b/static/sprites-small/home/392.webp index fd8f7be..1851b42 100644 Binary files a/static/sprites-small/home/392.webp and b/static/sprites-small/home/392.webp differ diff --git a/static/sprites-small/home/393.webp b/static/sprites-small/home/393.webp index 30e94eb..89e3dff 100644 Binary files a/static/sprites-small/home/393.webp and b/static/sprites-small/home/393.webp differ diff --git a/static/sprites-small/home/394.webp b/static/sprites-small/home/394.webp index f188328..a136fe2 100644 Binary files a/static/sprites-small/home/394.webp and b/static/sprites-small/home/394.webp differ diff --git a/static/sprites-small/home/395.webp b/static/sprites-small/home/395.webp index e726a6e..83a63e9 100644 Binary files a/static/sprites-small/home/395.webp and b/static/sprites-small/home/395.webp differ diff --git a/static/sprites-small/home/396.webp b/static/sprites-small/home/396.webp index abb404b..16d32cc 100644 Binary files a/static/sprites-small/home/396.webp and b/static/sprites-small/home/396.webp differ diff --git a/static/sprites-small/home/397.webp b/static/sprites-small/home/397.webp index af33f9d..1b89bff 100644 Binary files a/static/sprites-small/home/397.webp and b/static/sprites-small/home/397.webp differ diff --git a/static/sprites-small/home/398.webp b/static/sprites-small/home/398.webp index aafb497..7740f49 100644 Binary files a/static/sprites-small/home/398.webp and b/static/sprites-small/home/398.webp differ diff --git a/static/sprites-small/home/399.webp b/static/sprites-small/home/399.webp index b5d299b..4113de1 100644 Binary files a/static/sprites-small/home/399.webp and b/static/sprites-small/home/399.webp differ diff --git a/static/sprites-small/home/4.webp b/static/sprites-small/home/4.webp index 6f22747..98fb7fd 100644 Binary files a/static/sprites-small/home/4.webp and b/static/sprites-small/home/4.webp differ diff --git a/static/sprites-small/home/40.webp b/static/sprites-small/home/40.webp index cac3167..09fd658 100644 Binary files a/static/sprites-small/home/40.webp and b/static/sprites-small/home/40.webp differ diff --git a/static/sprites-small/home/400.webp b/static/sprites-small/home/400.webp index 9901a74..7f63629 100644 Binary files a/static/sprites-small/home/400.webp and b/static/sprites-small/home/400.webp differ diff --git a/static/sprites-small/home/401.webp b/static/sprites-small/home/401.webp index 785b8ca..d1ee1d2 100644 Binary files a/static/sprites-small/home/401.webp and b/static/sprites-small/home/401.webp differ diff --git a/static/sprites-small/home/402.webp b/static/sprites-small/home/402.webp index 8aec662..1ca6de4 100644 Binary files a/static/sprites-small/home/402.webp and b/static/sprites-small/home/402.webp differ diff --git a/static/sprites-small/home/403.webp b/static/sprites-small/home/403.webp index 6a4738f..b0c99ec 100644 Binary files a/static/sprites-small/home/403.webp and b/static/sprites-small/home/403.webp differ diff --git a/static/sprites-small/home/404.webp b/static/sprites-small/home/404.webp index 63cebb7..1423359 100644 Binary files a/static/sprites-small/home/404.webp and b/static/sprites-small/home/404.webp differ diff --git a/static/sprites-small/home/405.webp b/static/sprites-small/home/405.webp index 57bdd4f..610a8f3 100644 Binary files a/static/sprites-small/home/405.webp and b/static/sprites-small/home/405.webp differ diff --git a/static/sprites-small/home/406.webp b/static/sprites-small/home/406.webp index 9030ff7..a0d6099 100644 Binary files a/static/sprites-small/home/406.webp and b/static/sprites-small/home/406.webp differ diff --git a/static/sprites-small/home/407.webp b/static/sprites-small/home/407.webp index a47b823..29f96c4 100644 Binary files a/static/sprites-small/home/407.webp and b/static/sprites-small/home/407.webp differ diff --git a/static/sprites-small/home/408.webp b/static/sprites-small/home/408.webp index 13b243f..3120ecb 100644 Binary files a/static/sprites-small/home/408.webp and b/static/sprites-small/home/408.webp differ diff --git a/static/sprites-small/home/409.webp b/static/sprites-small/home/409.webp index e402514..234794c 100644 Binary files a/static/sprites-small/home/409.webp and b/static/sprites-small/home/409.webp differ diff --git a/static/sprites-small/home/41.webp b/static/sprites-small/home/41.webp index fffe031..9f4485c 100644 Binary files a/static/sprites-small/home/41.webp and b/static/sprites-small/home/41.webp differ diff --git a/static/sprites-small/home/410.webp b/static/sprites-small/home/410.webp index 8731eff..19f8282 100644 Binary files a/static/sprites-small/home/410.webp and b/static/sprites-small/home/410.webp differ diff --git a/static/sprites-small/home/411.webp b/static/sprites-small/home/411.webp index 16a9f53..24867d7 100644 Binary files a/static/sprites-small/home/411.webp and b/static/sprites-small/home/411.webp differ diff --git a/static/sprites-small/home/412-plant.webp b/static/sprites-small/home/412-plant.webp index 602cf87..2a6682c 100644 Binary files a/static/sprites-small/home/412-plant.webp and b/static/sprites-small/home/412-plant.webp differ diff --git a/static/sprites-small/home/412-sandy.webp b/static/sprites-small/home/412-sandy.webp index 6c89273..03afd64 100644 Binary files a/static/sprites-small/home/412-sandy.webp and b/static/sprites-small/home/412-sandy.webp differ diff --git a/static/sprites-small/home/412-trash.webp b/static/sprites-small/home/412-trash.webp index c892979..12e95bd 100644 Binary files a/static/sprites-small/home/412-trash.webp and b/static/sprites-small/home/412-trash.webp differ diff --git a/static/sprites-small/home/412.webp b/static/sprites-small/home/412.webp index 602cf87..2a6682c 100644 Binary files a/static/sprites-small/home/412.webp and b/static/sprites-small/home/412.webp differ diff --git a/static/sprites-small/home/413-plant.webp b/static/sprites-small/home/413-plant.webp index 8056d4b..5afe021 100644 Binary files a/static/sprites-small/home/413-plant.webp and b/static/sprites-small/home/413-plant.webp differ diff --git a/static/sprites-small/home/413-sandy.webp b/static/sprites-small/home/413-sandy.webp index 17c9995..8f78fac 100644 Binary files a/static/sprites-small/home/413-sandy.webp and b/static/sprites-small/home/413-sandy.webp differ diff --git a/static/sprites-small/home/413-trash.webp b/static/sprites-small/home/413-trash.webp index 1b8b105..6d520a3 100644 Binary files a/static/sprites-small/home/413-trash.webp and b/static/sprites-small/home/413-trash.webp differ diff --git a/static/sprites-small/home/413.webp b/static/sprites-small/home/413.webp index 9bc60a7..3db6712 100644 Binary files a/static/sprites-small/home/413.webp and b/static/sprites-small/home/413.webp differ diff --git a/static/sprites-small/home/414.webp b/static/sprites-small/home/414.webp index 6dcbab7..826bc2c 100644 Binary files a/static/sprites-small/home/414.webp and b/static/sprites-small/home/414.webp differ diff --git a/static/sprites-small/home/415.webp b/static/sprites-small/home/415.webp index 61322be..f1bdc88 100644 Binary files a/static/sprites-small/home/415.webp and b/static/sprites-small/home/415.webp differ diff --git a/static/sprites-small/home/416.webp b/static/sprites-small/home/416.webp index eb51006..ddc7c86 100644 Binary files a/static/sprites-small/home/416.webp and b/static/sprites-small/home/416.webp differ diff --git a/static/sprites-small/home/417.webp b/static/sprites-small/home/417.webp index 91ca3d2..1649640 100644 Binary files a/static/sprites-small/home/417.webp and b/static/sprites-small/home/417.webp differ diff --git a/static/sprites-small/home/418.webp b/static/sprites-small/home/418.webp index cf243ca..e3d345a 100644 Binary files a/static/sprites-small/home/418.webp and b/static/sprites-small/home/418.webp differ diff --git a/static/sprites-small/home/419.webp b/static/sprites-small/home/419.webp index 1ef818a..3d9bb46 100644 Binary files a/static/sprites-small/home/419.webp and b/static/sprites-small/home/419.webp differ diff --git a/static/sprites-small/home/42.webp b/static/sprites-small/home/42.webp index 0cbe80b..57e851a 100644 Binary files a/static/sprites-small/home/42.webp and b/static/sprites-small/home/42.webp differ diff --git a/static/sprites-small/home/420.webp b/static/sprites-small/home/420.webp index b50802f..b42e439 100644 Binary files a/static/sprites-small/home/420.webp and b/static/sprites-small/home/420.webp differ diff --git a/static/sprites-small/home/421-overcast.webp b/static/sprites-small/home/421-overcast.webp index 551d36e..41b19d6 100644 Binary files a/static/sprites-small/home/421-overcast.webp and b/static/sprites-small/home/421-overcast.webp differ diff --git a/static/sprites-small/home/421-sunshine.webp b/static/sprites-small/home/421-sunshine.webp index ed55fa9..1400383 100644 Binary files a/static/sprites-small/home/421-sunshine.webp and b/static/sprites-small/home/421-sunshine.webp differ diff --git a/static/sprites-small/home/421.webp b/static/sprites-small/home/421.webp index 551d36e..41b19d6 100644 Binary files a/static/sprites-small/home/421.webp and b/static/sprites-small/home/421.webp differ diff --git a/static/sprites-small/home/422-east.webp b/static/sprites-small/home/422-east.webp index 8056359..360e396 100644 Binary files a/static/sprites-small/home/422-east.webp and b/static/sprites-small/home/422-east.webp differ diff --git a/static/sprites-small/home/422-west.webp b/static/sprites-small/home/422-west.webp index c03031c..b6d5bf7 100644 Binary files a/static/sprites-small/home/422-west.webp and b/static/sprites-small/home/422-west.webp differ diff --git a/static/sprites-small/home/422.webp b/static/sprites-small/home/422.webp index c03031c..b6d5bf7 100644 Binary files a/static/sprites-small/home/422.webp and b/static/sprites-small/home/422.webp differ diff --git a/static/sprites-small/home/423-east.webp b/static/sprites-small/home/423-east.webp index 8592876..192c0ec 100644 Binary files a/static/sprites-small/home/423-east.webp and b/static/sprites-small/home/423-east.webp differ diff --git a/static/sprites-small/home/423-west.webp b/static/sprites-small/home/423-west.webp index a614228..e6adcb7 100644 Binary files a/static/sprites-small/home/423-west.webp and b/static/sprites-small/home/423-west.webp differ diff --git a/static/sprites-small/home/423.webp b/static/sprites-small/home/423.webp index a614228..e6adcb7 100644 Binary files a/static/sprites-small/home/423.webp and b/static/sprites-small/home/423.webp differ diff --git a/static/sprites-small/home/424.webp b/static/sprites-small/home/424.webp index 335d244..5e3f4fd 100644 Binary files a/static/sprites-small/home/424.webp and b/static/sprites-small/home/424.webp differ diff --git a/static/sprites-small/home/425.webp b/static/sprites-small/home/425.webp index 165bc17..f41c335 100644 Binary files a/static/sprites-small/home/425.webp and b/static/sprites-small/home/425.webp differ diff --git a/static/sprites-small/home/426.webp b/static/sprites-small/home/426.webp index 60b02d1..4dcd11b 100644 Binary files a/static/sprites-small/home/426.webp and b/static/sprites-small/home/426.webp differ diff --git a/static/sprites-small/home/427.webp b/static/sprites-small/home/427.webp index 3c06995..661cc86 100644 Binary files a/static/sprites-small/home/427.webp and b/static/sprites-small/home/427.webp differ diff --git a/static/sprites-small/home/428.webp b/static/sprites-small/home/428.webp index 93cb22c..f229c28 100644 Binary files a/static/sprites-small/home/428.webp and b/static/sprites-small/home/428.webp differ diff --git a/static/sprites-small/home/429.webp b/static/sprites-small/home/429.webp index 87ff21a..db447fc 100644 Binary files a/static/sprites-small/home/429.webp and b/static/sprites-small/home/429.webp differ diff --git a/static/sprites-small/home/43.webp b/static/sprites-small/home/43.webp index 71619ec..9920242 100644 Binary files a/static/sprites-small/home/43.webp and b/static/sprites-small/home/43.webp differ diff --git a/static/sprites-small/home/430.webp b/static/sprites-small/home/430.webp index 688fe8e..a10102a 100644 Binary files a/static/sprites-small/home/430.webp and b/static/sprites-small/home/430.webp differ diff --git a/static/sprites-small/home/431.webp b/static/sprites-small/home/431.webp index 8f41be9..5fac5ca 100644 Binary files a/static/sprites-small/home/431.webp and b/static/sprites-small/home/431.webp differ diff --git a/static/sprites-small/home/432.webp b/static/sprites-small/home/432.webp index d4059fe..f80f000 100644 Binary files a/static/sprites-small/home/432.webp and b/static/sprites-small/home/432.webp differ diff --git a/static/sprites-small/home/433.webp b/static/sprites-small/home/433.webp index 65e097d..a69b909 100644 Binary files a/static/sprites-small/home/433.webp and b/static/sprites-small/home/433.webp differ diff --git a/static/sprites-small/home/434.webp b/static/sprites-small/home/434.webp index 10a9a03..d446739 100644 Binary files a/static/sprites-small/home/434.webp and b/static/sprites-small/home/434.webp differ diff --git a/static/sprites-small/home/435.webp b/static/sprites-small/home/435.webp index c1bf469..70cb6aa 100644 Binary files a/static/sprites-small/home/435.webp and b/static/sprites-small/home/435.webp differ diff --git a/static/sprites-small/home/436.webp b/static/sprites-small/home/436.webp index 8975977..1973597 100644 Binary files a/static/sprites-small/home/436.webp and b/static/sprites-small/home/436.webp differ diff --git a/static/sprites-small/home/437.webp b/static/sprites-small/home/437.webp index dc1198e..1e9da77 100644 Binary files a/static/sprites-small/home/437.webp and b/static/sprites-small/home/437.webp differ diff --git a/static/sprites-small/home/438.webp b/static/sprites-small/home/438.webp index c7e8792..31368d2 100644 Binary files a/static/sprites-small/home/438.webp and b/static/sprites-small/home/438.webp differ diff --git a/static/sprites-small/home/439.webp b/static/sprites-small/home/439.webp index a5b07c7..1004044 100644 Binary files a/static/sprites-small/home/439.webp and b/static/sprites-small/home/439.webp differ diff --git a/static/sprites-small/home/44.webp b/static/sprites-small/home/44.webp index 6a8e0de..2f048e7 100644 Binary files a/static/sprites-small/home/44.webp and b/static/sprites-small/home/44.webp differ diff --git a/static/sprites-small/home/440.webp b/static/sprites-small/home/440.webp index 6353467..b8b0b0a 100644 Binary files a/static/sprites-small/home/440.webp and b/static/sprites-small/home/440.webp differ diff --git a/static/sprites-small/home/441.webp b/static/sprites-small/home/441.webp index 76e0cb3..67522d9 100644 Binary files a/static/sprites-small/home/441.webp and b/static/sprites-small/home/441.webp differ diff --git a/static/sprites-small/home/442.webp b/static/sprites-small/home/442.webp index b02594e..856956d 100644 Binary files a/static/sprites-small/home/442.webp and b/static/sprites-small/home/442.webp differ diff --git a/static/sprites-small/home/443.webp b/static/sprites-small/home/443.webp index 5f80036..5acf936 100644 Binary files a/static/sprites-small/home/443.webp and b/static/sprites-small/home/443.webp differ diff --git a/static/sprites-small/home/444.webp b/static/sprites-small/home/444.webp index 549a97c..a78b8c9 100644 Binary files a/static/sprites-small/home/444.webp and b/static/sprites-small/home/444.webp differ diff --git a/static/sprites-small/home/445.webp b/static/sprites-small/home/445.webp index 58b877f..d58c307 100644 Binary files a/static/sprites-small/home/445.webp and b/static/sprites-small/home/445.webp differ diff --git a/static/sprites-small/home/446.webp b/static/sprites-small/home/446.webp index f8cb949..ad41c7b 100644 Binary files a/static/sprites-small/home/446.webp and b/static/sprites-small/home/446.webp differ diff --git a/static/sprites-small/home/447.webp b/static/sprites-small/home/447.webp index c19494a..c356561 100644 Binary files a/static/sprites-small/home/447.webp and b/static/sprites-small/home/447.webp differ diff --git a/static/sprites-small/home/448.webp b/static/sprites-small/home/448.webp index 7f6bd74..8225682 100644 Binary files a/static/sprites-small/home/448.webp and b/static/sprites-small/home/448.webp differ diff --git a/static/sprites-small/home/449.webp b/static/sprites-small/home/449.webp index 7e403de..ab23042 100644 Binary files a/static/sprites-small/home/449.webp and b/static/sprites-small/home/449.webp differ diff --git a/static/sprites-small/home/45.webp b/static/sprites-small/home/45.webp index 8e16de4..ff0eb76 100644 Binary files a/static/sprites-small/home/45.webp and b/static/sprites-small/home/45.webp differ diff --git a/static/sprites-small/home/450.webp b/static/sprites-small/home/450.webp index ca128e5..7dfe67a 100644 Binary files a/static/sprites-small/home/450.webp and b/static/sprites-small/home/450.webp differ diff --git a/static/sprites-small/home/451.webp b/static/sprites-small/home/451.webp index db37ef0..5236628 100644 Binary files a/static/sprites-small/home/451.webp and b/static/sprites-small/home/451.webp differ diff --git a/static/sprites-small/home/452.webp b/static/sprites-small/home/452.webp index e1b1fbd..b0be18b 100644 Binary files a/static/sprites-small/home/452.webp and b/static/sprites-small/home/452.webp differ diff --git a/static/sprites-small/home/453.webp b/static/sprites-small/home/453.webp index b5e26a4..b94b55b 100644 Binary files a/static/sprites-small/home/453.webp and b/static/sprites-small/home/453.webp differ diff --git a/static/sprites-small/home/454.webp b/static/sprites-small/home/454.webp index 4c71666..579470d 100644 Binary files a/static/sprites-small/home/454.webp and b/static/sprites-small/home/454.webp differ diff --git a/static/sprites-small/home/455.webp b/static/sprites-small/home/455.webp index 8673839..3ee5f67 100644 Binary files a/static/sprites-small/home/455.webp and b/static/sprites-small/home/455.webp differ diff --git a/static/sprites-small/home/456.webp b/static/sprites-small/home/456.webp index ee4b4ab..b7ad5b6 100644 Binary files a/static/sprites-small/home/456.webp and b/static/sprites-small/home/456.webp differ diff --git a/static/sprites-small/home/457.webp b/static/sprites-small/home/457.webp index 73aef9a..dfacd3e 100644 Binary files a/static/sprites-small/home/457.webp and b/static/sprites-small/home/457.webp differ diff --git a/static/sprites-small/home/458.webp b/static/sprites-small/home/458.webp index d95b3c7..98ef89f 100644 Binary files a/static/sprites-small/home/458.webp and b/static/sprites-small/home/458.webp differ diff --git a/static/sprites-small/home/459.webp b/static/sprites-small/home/459.webp index d0e2ee2..068c7ab 100644 Binary files a/static/sprites-small/home/459.webp and b/static/sprites-small/home/459.webp differ diff --git a/static/sprites-small/home/46.webp b/static/sprites-small/home/46.webp index 81b8534..6de6f93 100644 Binary files a/static/sprites-small/home/46.webp and b/static/sprites-small/home/46.webp differ diff --git a/static/sprites-small/home/460.webp b/static/sprites-small/home/460.webp index 95e2de1..961b05e 100644 Binary files a/static/sprites-small/home/460.webp and b/static/sprites-small/home/460.webp differ diff --git a/static/sprites-small/home/461.webp b/static/sprites-small/home/461.webp index f32e177..f3586b6 100644 Binary files a/static/sprites-small/home/461.webp and b/static/sprites-small/home/461.webp differ diff --git a/static/sprites-small/home/462.webp b/static/sprites-small/home/462.webp index 683cee4..ab097e9 100644 Binary files a/static/sprites-small/home/462.webp and b/static/sprites-small/home/462.webp differ diff --git a/static/sprites-small/home/463.webp b/static/sprites-small/home/463.webp index 31ac022..d962336 100644 Binary files a/static/sprites-small/home/463.webp and b/static/sprites-small/home/463.webp differ diff --git a/static/sprites-small/home/464.webp b/static/sprites-small/home/464.webp index dc8d8da..fb9f70a 100644 Binary files a/static/sprites-small/home/464.webp and b/static/sprites-small/home/464.webp differ diff --git a/static/sprites-small/home/465.webp b/static/sprites-small/home/465.webp index 4ec56d2..a952ec2 100644 Binary files a/static/sprites-small/home/465.webp and b/static/sprites-small/home/465.webp differ diff --git a/static/sprites-small/home/466.webp b/static/sprites-small/home/466.webp index 4b6260e..a138dee 100644 Binary files a/static/sprites-small/home/466.webp and b/static/sprites-small/home/466.webp differ diff --git a/static/sprites-small/home/467.webp b/static/sprites-small/home/467.webp index c9c32b9..6e8bd3a 100644 Binary files a/static/sprites-small/home/467.webp and b/static/sprites-small/home/467.webp differ diff --git a/static/sprites-small/home/468.webp b/static/sprites-small/home/468.webp index 9404102..ffab284 100644 Binary files a/static/sprites-small/home/468.webp and b/static/sprites-small/home/468.webp differ diff --git a/static/sprites-small/home/469.webp b/static/sprites-small/home/469.webp index b94d96e..f9261d3 100644 Binary files a/static/sprites-small/home/469.webp and b/static/sprites-small/home/469.webp differ diff --git a/static/sprites-small/home/47.webp b/static/sprites-small/home/47.webp index 9a668c9..c9cc96a 100644 Binary files a/static/sprites-small/home/47.webp and b/static/sprites-small/home/47.webp differ diff --git a/static/sprites-small/home/470.webp b/static/sprites-small/home/470.webp index a722120..f976a42 100644 Binary files a/static/sprites-small/home/470.webp and b/static/sprites-small/home/470.webp differ diff --git a/static/sprites-small/home/471.webp b/static/sprites-small/home/471.webp index cc5a8cd..9b754ea 100644 Binary files a/static/sprites-small/home/471.webp and b/static/sprites-small/home/471.webp differ diff --git a/static/sprites-small/home/472.webp b/static/sprites-small/home/472.webp index 38c9369..77e59b7 100644 Binary files a/static/sprites-small/home/472.webp and b/static/sprites-small/home/472.webp differ diff --git a/static/sprites-small/home/473.webp b/static/sprites-small/home/473.webp index ee83fbb..c6062b9 100644 Binary files a/static/sprites-small/home/473.webp and b/static/sprites-small/home/473.webp differ diff --git a/static/sprites-small/home/474.webp b/static/sprites-small/home/474.webp index 68dd0aa..20ce822 100644 Binary files a/static/sprites-small/home/474.webp and b/static/sprites-small/home/474.webp differ diff --git a/static/sprites-small/home/475.webp b/static/sprites-small/home/475.webp index fc95c74..bbdfc0a 100644 Binary files a/static/sprites-small/home/475.webp and b/static/sprites-small/home/475.webp differ diff --git a/static/sprites-small/home/476.webp b/static/sprites-small/home/476.webp index 4f54edf..161c262 100644 Binary files a/static/sprites-small/home/476.webp and b/static/sprites-small/home/476.webp differ diff --git a/static/sprites-small/home/477.webp b/static/sprites-small/home/477.webp index 99562b9..d7e86dc 100644 Binary files a/static/sprites-small/home/477.webp and b/static/sprites-small/home/477.webp differ diff --git a/static/sprites-small/home/478.webp b/static/sprites-small/home/478.webp index 720efa1..3015368 100644 Binary files a/static/sprites-small/home/478.webp and b/static/sprites-small/home/478.webp differ diff --git a/static/sprites-small/home/479.webp b/static/sprites-small/home/479.webp index 0003f83..49d3e44 100644 Binary files a/static/sprites-small/home/479.webp and b/static/sprites-small/home/479.webp differ diff --git a/static/sprites-small/home/48.webp b/static/sprites-small/home/48.webp index 31f33eb..9171832 100644 Binary files a/static/sprites-small/home/48.webp and b/static/sprites-small/home/48.webp differ diff --git a/static/sprites-small/home/480.webp b/static/sprites-small/home/480.webp index ff441ff..66383db 100644 Binary files a/static/sprites-small/home/480.webp and b/static/sprites-small/home/480.webp differ diff --git a/static/sprites-small/home/481.webp b/static/sprites-small/home/481.webp index 712bd60..8bbf541 100644 Binary files a/static/sprites-small/home/481.webp and b/static/sprites-small/home/481.webp differ diff --git a/static/sprites-small/home/482.webp b/static/sprites-small/home/482.webp index 3862ae8..507161f 100644 Binary files a/static/sprites-small/home/482.webp and b/static/sprites-small/home/482.webp differ diff --git a/static/sprites-small/home/483.webp b/static/sprites-small/home/483.webp index e3e965f..47f5b2c 100644 Binary files a/static/sprites-small/home/483.webp and b/static/sprites-small/home/483.webp differ diff --git a/static/sprites-small/home/484.webp b/static/sprites-small/home/484.webp index 8b31932..845cfe8 100644 Binary files a/static/sprites-small/home/484.webp and b/static/sprites-small/home/484.webp differ diff --git a/static/sprites-small/home/485.webp b/static/sprites-small/home/485.webp index da9f752..3d92256 100644 Binary files a/static/sprites-small/home/485.webp and b/static/sprites-small/home/485.webp differ diff --git a/static/sprites-small/home/486.webp b/static/sprites-small/home/486.webp index 497bd58..aa8794a 100644 Binary files a/static/sprites-small/home/486.webp and b/static/sprites-small/home/486.webp differ diff --git a/static/sprites-small/home/487.webp b/static/sprites-small/home/487.webp index 93422b7..115db1e 100644 Binary files a/static/sprites-small/home/487.webp and b/static/sprites-small/home/487.webp differ diff --git a/static/sprites-small/home/488.webp b/static/sprites-small/home/488.webp index a901742..0b4490c 100644 Binary files a/static/sprites-small/home/488.webp and b/static/sprites-small/home/488.webp differ diff --git a/static/sprites-small/home/489.webp b/static/sprites-small/home/489.webp index d373b99..cf9112e 100644 Binary files a/static/sprites-small/home/489.webp and b/static/sprites-small/home/489.webp differ diff --git a/static/sprites-small/home/49.webp b/static/sprites-small/home/49.webp index e02e5e4..ed7ca66 100644 Binary files a/static/sprites-small/home/49.webp and b/static/sprites-small/home/49.webp differ diff --git a/static/sprites-small/home/490.webp b/static/sprites-small/home/490.webp index f22c560..49e2a5f 100644 Binary files a/static/sprites-small/home/490.webp and b/static/sprites-small/home/490.webp differ diff --git a/static/sprites-small/home/491.webp b/static/sprites-small/home/491.webp index 26dc79f..fb72cd5 100644 Binary files a/static/sprites-small/home/491.webp and b/static/sprites-small/home/491.webp differ diff --git a/static/sprites-small/home/492.webp b/static/sprites-small/home/492.webp index 79d8ab4..dca4239 100644 Binary files a/static/sprites-small/home/492.webp and b/static/sprites-small/home/492.webp differ diff --git a/static/sprites-small/home/493-bug.webp b/static/sprites-small/home/493-bug.webp index 11e10fd..d9cad2a 100644 Binary files a/static/sprites-small/home/493-bug.webp and b/static/sprites-small/home/493-bug.webp differ diff --git a/static/sprites-small/home/493-dark.webp b/static/sprites-small/home/493-dark.webp index c395c17..2facc42 100644 Binary files a/static/sprites-small/home/493-dark.webp and b/static/sprites-small/home/493-dark.webp differ diff --git a/static/sprites-small/home/493-dragon.webp b/static/sprites-small/home/493-dragon.webp index 637b958..91db2a2 100644 Binary files a/static/sprites-small/home/493-dragon.webp and b/static/sprites-small/home/493-dragon.webp differ diff --git a/static/sprites-small/home/493-electric.webp b/static/sprites-small/home/493-electric.webp index ff3b0e5..fdcde27 100644 Binary files a/static/sprites-small/home/493-electric.webp and b/static/sprites-small/home/493-electric.webp differ diff --git a/static/sprites-small/home/493-fairy.webp b/static/sprites-small/home/493-fairy.webp index 0374b8f..b8ad152 100644 Binary files a/static/sprites-small/home/493-fairy.webp and b/static/sprites-small/home/493-fairy.webp differ diff --git a/static/sprites-small/home/493-fighting.webp b/static/sprites-small/home/493-fighting.webp index 3a0764a..9b31b18 100644 Binary files a/static/sprites-small/home/493-fighting.webp and b/static/sprites-small/home/493-fighting.webp differ diff --git a/static/sprites-small/home/493-fire.webp b/static/sprites-small/home/493-fire.webp index e1c0666..4c56835 100644 Binary files a/static/sprites-small/home/493-fire.webp and b/static/sprites-small/home/493-fire.webp differ diff --git a/static/sprites-small/home/493-flying.webp b/static/sprites-small/home/493-flying.webp index 061a32c..a919458 100644 Binary files a/static/sprites-small/home/493-flying.webp and b/static/sprites-small/home/493-flying.webp differ diff --git a/static/sprites-small/home/493-ghost.webp b/static/sprites-small/home/493-ghost.webp index f68fd72..90c465b 100644 Binary files a/static/sprites-small/home/493-ghost.webp and b/static/sprites-small/home/493-ghost.webp differ diff --git a/static/sprites-small/home/493-grass.webp b/static/sprites-small/home/493-grass.webp index 0e8356e..2a5a72d 100644 Binary files a/static/sprites-small/home/493-grass.webp and b/static/sprites-small/home/493-grass.webp differ diff --git a/static/sprites-small/home/493-ground.webp b/static/sprites-small/home/493-ground.webp index 134bda9..1274188 100644 Binary files a/static/sprites-small/home/493-ground.webp and b/static/sprites-small/home/493-ground.webp differ diff --git a/static/sprites-small/home/493-ice.webp b/static/sprites-small/home/493-ice.webp index d795ae3..25830ac 100644 Binary files a/static/sprites-small/home/493-ice.webp and b/static/sprites-small/home/493-ice.webp differ diff --git a/static/sprites-small/home/493-poison.webp b/static/sprites-small/home/493-poison.webp index 57807f3..75d426a 100644 Binary files a/static/sprites-small/home/493-poison.webp and b/static/sprites-small/home/493-poison.webp differ diff --git a/static/sprites-small/home/493-psychic.webp b/static/sprites-small/home/493-psychic.webp index 10b9d0a..1f662e2 100644 Binary files a/static/sprites-small/home/493-psychic.webp and b/static/sprites-small/home/493-psychic.webp differ diff --git a/static/sprites-small/home/493-rock.webp b/static/sprites-small/home/493-rock.webp index 003d3be..165f49a 100644 Binary files a/static/sprites-small/home/493-rock.webp and b/static/sprites-small/home/493-rock.webp differ diff --git a/static/sprites-small/home/493-steel.webp b/static/sprites-small/home/493-steel.webp index 1373914..fcb5d83 100644 Binary files a/static/sprites-small/home/493-steel.webp and b/static/sprites-small/home/493-steel.webp differ diff --git a/static/sprites-small/home/493-unknown.webp b/static/sprites-small/home/493-unknown.webp index be6b09a..9bc8521 100644 Binary files a/static/sprites-small/home/493-unknown.webp and b/static/sprites-small/home/493-unknown.webp differ diff --git a/static/sprites-small/home/493-water.webp b/static/sprites-small/home/493-water.webp index 1447265..df0f5eb 100644 Binary files a/static/sprites-small/home/493-water.webp and b/static/sprites-small/home/493-water.webp differ diff --git a/static/sprites-small/home/493.webp b/static/sprites-small/home/493.webp index be6b09a..9bc8521 100644 Binary files a/static/sprites-small/home/493.webp and b/static/sprites-small/home/493.webp differ diff --git a/static/sprites-small/home/494.webp b/static/sprites-small/home/494.webp index 5d782d5..1198372 100644 Binary files a/static/sprites-small/home/494.webp and b/static/sprites-small/home/494.webp differ diff --git a/static/sprites-small/home/495.webp b/static/sprites-small/home/495.webp index ceed91f..324dd6d 100644 Binary files a/static/sprites-small/home/495.webp and b/static/sprites-small/home/495.webp differ diff --git a/static/sprites-small/home/496.webp b/static/sprites-small/home/496.webp index 80994c4..8341902 100644 Binary files a/static/sprites-small/home/496.webp and b/static/sprites-small/home/496.webp differ diff --git a/static/sprites-small/home/497.webp b/static/sprites-small/home/497.webp index 2136188..feb4f82 100644 Binary files a/static/sprites-small/home/497.webp and b/static/sprites-small/home/497.webp differ diff --git a/static/sprites-small/home/498.webp b/static/sprites-small/home/498.webp index 1fa9850..14be2cb 100644 Binary files a/static/sprites-small/home/498.webp and b/static/sprites-small/home/498.webp differ diff --git a/static/sprites-small/home/499.webp b/static/sprites-small/home/499.webp index ba22614..dbdd2de 100644 Binary files a/static/sprites-small/home/499.webp and b/static/sprites-small/home/499.webp differ diff --git a/static/sprites-small/home/5.webp b/static/sprites-small/home/5.webp index 28d2b53..c4056c0 100644 Binary files a/static/sprites-small/home/5.webp and b/static/sprites-small/home/5.webp differ diff --git a/static/sprites-small/home/50.webp b/static/sprites-small/home/50.webp index 53f5070..06b694d 100644 Binary files a/static/sprites-small/home/50.webp and b/static/sprites-small/home/50.webp differ diff --git a/static/sprites-small/home/500.webp b/static/sprites-small/home/500.webp index f2d4da1..4fb1caf 100644 Binary files a/static/sprites-small/home/500.webp and b/static/sprites-small/home/500.webp differ diff --git a/static/sprites-small/home/501.webp b/static/sprites-small/home/501.webp index c092c5c..a5be801 100644 Binary files a/static/sprites-small/home/501.webp and b/static/sprites-small/home/501.webp differ diff --git a/static/sprites-small/home/502.webp b/static/sprites-small/home/502.webp index fddb60a..e1e4546 100644 Binary files a/static/sprites-small/home/502.webp and b/static/sprites-small/home/502.webp differ diff --git a/static/sprites-small/home/503.webp b/static/sprites-small/home/503.webp index 9b7457d..6b5ede4 100644 Binary files a/static/sprites-small/home/503.webp and b/static/sprites-small/home/503.webp differ diff --git a/static/sprites-small/home/504.webp b/static/sprites-small/home/504.webp index 96600c1..5002984 100644 Binary files a/static/sprites-small/home/504.webp and b/static/sprites-small/home/504.webp differ diff --git a/static/sprites-small/home/505.webp b/static/sprites-small/home/505.webp index be3227f..2b376d5 100644 Binary files a/static/sprites-small/home/505.webp and b/static/sprites-small/home/505.webp differ diff --git a/static/sprites-small/home/506.webp b/static/sprites-small/home/506.webp index 65a68e4..00e680a 100644 Binary files a/static/sprites-small/home/506.webp and b/static/sprites-small/home/506.webp differ diff --git a/static/sprites-small/home/507.webp b/static/sprites-small/home/507.webp index fc24611..e7afaa4 100644 Binary files a/static/sprites-small/home/507.webp and b/static/sprites-small/home/507.webp differ diff --git a/static/sprites-small/home/508.webp b/static/sprites-small/home/508.webp index 7172052..3d62663 100644 Binary files a/static/sprites-small/home/508.webp and b/static/sprites-small/home/508.webp differ diff --git a/static/sprites-small/home/509.webp b/static/sprites-small/home/509.webp index 9659123..48be86e 100644 Binary files a/static/sprites-small/home/509.webp and b/static/sprites-small/home/509.webp differ diff --git a/static/sprites-small/home/51.webp b/static/sprites-small/home/51.webp index bcf3027..d74498c 100644 Binary files a/static/sprites-small/home/51.webp and b/static/sprites-small/home/51.webp differ diff --git a/static/sprites-small/home/510.webp b/static/sprites-small/home/510.webp index c1f6391..198129a 100644 Binary files a/static/sprites-small/home/510.webp and b/static/sprites-small/home/510.webp differ diff --git a/static/sprites-small/home/511.webp b/static/sprites-small/home/511.webp index 95917da..cbf1982 100644 Binary files a/static/sprites-small/home/511.webp and b/static/sprites-small/home/511.webp differ diff --git a/static/sprites-small/home/512.webp b/static/sprites-small/home/512.webp index 0f97a9f..46a1616 100644 Binary files a/static/sprites-small/home/512.webp and b/static/sprites-small/home/512.webp differ diff --git a/static/sprites-small/home/513.webp b/static/sprites-small/home/513.webp index 76e7775..74f902f 100644 Binary files a/static/sprites-small/home/513.webp and b/static/sprites-small/home/513.webp differ diff --git a/static/sprites-small/home/514.webp b/static/sprites-small/home/514.webp index db6410f..2677af6 100644 Binary files a/static/sprites-small/home/514.webp and b/static/sprites-small/home/514.webp differ diff --git a/static/sprites-small/home/515.webp b/static/sprites-small/home/515.webp index 189624d..b164c67 100644 Binary files a/static/sprites-small/home/515.webp and b/static/sprites-small/home/515.webp differ diff --git a/static/sprites-small/home/516.webp b/static/sprites-small/home/516.webp index e166447..e7047f5 100644 Binary files a/static/sprites-small/home/516.webp and b/static/sprites-small/home/516.webp differ diff --git a/static/sprites-small/home/517.webp b/static/sprites-small/home/517.webp index 8d80db2..ae4d7ab 100644 Binary files a/static/sprites-small/home/517.webp and b/static/sprites-small/home/517.webp differ diff --git a/static/sprites-small/home/518.webp b/static/sprites-small/home/518.webp index eb8fd27..6ea07f5 100644 Binary files a/static/sprites-small/home/518.webp and b/static/sprites-small/home/518.webp differ diff --git a/static/sprites-small/home/519.webp b/static/sprites-small/home/519.webp index 3c29c2c..04f5268 100644 Binary files a/static/sprites-small/home/519.webp and b/static/sprites-small/home/519.webp differ diff --git a/static/sprites-small/home/52.webp b/static/sprites-small/home/52.webp index 76c667a..df1f5a4 100644 Binary files a/static/sprites-small/home/52.webp and b/static/sprites-small/home/52.webp differ diff --git a/static/sprites-small/home/520.webp b/static/sprites-small/home/520.webp index 2262431..b7711f9 100644 Binary files a/static/sprites-small/home/520.webp and b/static/sprites-small/home/520.webp differ diff --git a/static/sprites-small/home/521.webp b/static/sprites-small/home/521.webp index 0c0fb5a..0a4a9ea 100644 Binary files a/static/sprites-small/home/521.webp and b/static/sprites-small/home/521.webp differ diff --git a/static/sprites-small/home/522.webp b/static/sprites-small/home/522.webp index 4cdb36b..63dea70 100644 Binary files a/static/sprites-small/home/522.webp and b/static/sprites-small/home/522.webp differ diff --git a/static/sprites-small/home/523.webp b/static/sprites-small/home/523.webp index a79e579..390e576 100644 Binary files a/static/sprites-small/home/523.webp and b/static/sprites-small/home/523.webp differ diff --git a/static/sprites-small/home/524.webp b/static/sprites-small/home/524.webp index 558c8d8..c2e602d 100644 Binary files a/static/sprites-small/home/524.webp and b/static/sprites-small/home/524.webp differ diff --git a/static/sprites-small/home/525.webp b/static/sprites-small/home/525.webp index 7961b94..b4c643a 100644 Binary files a/static/sprites-small/home/525.webp and b/static/sprites-small/home/525.webp differ diff --git a/static/sprites-small/home/526.webp b/static/sprites-small/home/526.webp index 8ee1671..26d36b5 100644 Binary files a/static/sprites-small/home/526.webp and b/static/sprites-small/home/526.webp differ diff --git a/static/sprites-small/home/527.webp b/static/sprites-small/home/527.webp index 8b38b65..bd5104c 100644 Binary files a/static/sprites-small/home/527.webp and b/static/sprites-small/home/527.webp differ diff --git a/static/sprites-small/home/528.webp b/static/sprites-small/home/528.webp index a091ac4..2afc9d9 100644 Binary files a/static/sprites-small/home/528.webp and b/static/sprites-small/home/528.webp differ diff --git a/static/sprites-small/home/529.webp b/static/sprites-small/home/529.webp index 5778a7c..973817d 100644 Binary files a/static/sprites-small/home/529.webp and b/static/sprites-small/home/529.webp differ diff --git a/static/sprites-small/home/53.webp b/static/sprites-small/home/53.webp index 39985db..8a24468 100644 Binary files a/static/sprites-small/home/53.webp and b/static/sprites-small/home/53.webp differ diff --git a/static/sprites-small/home/530.webp b/static/sprites-small/home/530.webp index 2124c32..14bafdd 100644 Binary files a/static/sprites-small/home/530.webp and b/static/sprites-small/home/530.webp differ diff --git a/static/sprites-small/home/531.webp b/static/sprites-small/home/531.webp index 5c67e05..b7a935b 100644 Binary files a/static/sprites-small/home/531.webp and b/static/sprites-small/home/531.webp differ diff --git a/static/sprites-small/home/532.webp b/static/sprites-small/home/532.webp index 1a6bed0..e613517 100644 Binary files a/static/sprites-small/home/532.webp and b/static/sprites-small/home/532.webp differ diff --git a/static/sprites-small/home/533.webp b/static/sprites-small/home/533.webp index fd91463..423d244 100644 Binary files a/static/sprites-small/home/533.webp and b/static/sprites-small/home/533.webp differ diff --git a/static/sprites-small/home/534.webp b/static/sprites-small/home/534.webp index e668a61..0714cc5 100644 Binary files a/static/sprites-small/home/534.webp and b/static/sprites-small/home/534.webp differ diff --git a/static/sprites-small/home/535.webp b/static/sprites-small/home/535.webp index e005d26..bd1b7a3 100644 Binary files a/static/sprites-small/home/535.webp and b/static/sprites-small/home/535.webp differ diff --git a/static/sprites-small/home/536.webp b/static/sprites-small/home/536.webp index 4fe7038..833a563 100644 Binary files a/static/sprites-small/home/536.webp and b/static/sprites-small/home/536.webp differ diff --git a/static/sprites-small/home/537.webp b/static/sprites-small/home/537.webp index 5719922..6005953 100644 Binary files a/static/sprites-small/home/537.webp and b/static/sprites-small/home/537.webp differ diff --git a/static/sprites-small/home/538.webp b/static/sprites-small/home/538.webp index c470f59..35b1550 100644 Binary files a/static/sprites-small/home/538.webp and b/static/sprites-small/home/538.webp differ diff --git a/static/sprites-small/home/539.webp b/static/sprites-small/home/539.webp index f8525cc..a5738ab 100644 Binary files a/static/sprites-small/home/539.webp and b/static/sprites-small/home/539.webp differ diff --git a/static/sprites-small/home/54.webp b/static/sprites-small/home/54.webp index 0780166..82572c0 100644 Binary files a/static/sprites-small/home/54.webp and b/static/sprites-small/home/54.webp differ diff --git a/static/sprites-small/home/540.webp b/static/sprites-small/home/540.webp index 548e3d5..4f6e0b2 100644 Binary files a/static/sprites-small/home/540.webp and b/static/sprites-small/home/540.webp differ diff --git a/static/sprites-small/home/541.webp b/static/sprites-small/home/541.webp index e2f16a7..de7ad33 100644 Binary files a/static/sprites-small/home/541.webp and b/static/sprites-small/home/541.webp differ diff --git a/static/sprites-small/home/542.webp b/static/sprites-small/home/542.webp index 1c0ce1c..4bc9863 100644 Binary files a/static/sprites-small/home/542.webp and b/static/sprites-small/home/542.webp differ diff --git a/static/sprites-small/home/543.webp b/static/sprites-small/home/543.webp index d8377fc..e727982 100644 Binary files a/static/sprites-small/home/543.webp and b/static/sprites-small/home/543.webp differ diff --git a/static/sprites-small/home/544.webp b/static/sprites-small/home/544.webp index 2c19c2b..2f56357 100644 Binary files a/static/sprites-small/home/544.webp and b/static/sprites-small/home/544.webp differ diff --git a/static/sprites-small/home/545.webp b/static/sprites-small/home/545.webp index 870725a..d3c1e55 100644 Binary files a/static/sprites-small/home/545.webp and b/static/sprites-small/home/545.webp differ diff --git a/static/sprites-small/home/546.webp b/static/sprites-small/home/546.webp index 67f29a3..e8e673a 100644 Binary files a/static/sprites-small/home/546.webp and b/static/sprites-small/home/546.webp differ diff --git a/static/sprites-small/home/547.webp b/static/sprites-small/home/547.webp index 8ae9596..7ce154f 100644 Binary files a/static/sprites-small/home/547.webp and b/static/sprites-small/home/547.webp differ diff --git a/static/sprites-small/home/548.webp b/static/sprites-small/home/548.webp index 207d19b..f167b07 100644 Binary files a/static/sprites-small/home/548.webp and b/static/sprites-small/home/548.webp differ diff --git a/static/sprites-small/home/549.webp b/static/sprites-small/home/549.webp index ac2de50..ab2d657 100644 Binary files a/static/sprites-small/home/549.webp and b/static/sprites-small/home/549.webp differ diff --git a/static/sprites-small/home/55.webp b/static/sprites-small/home/55.webp index d8c7181..fa840df 100644 Binary files a/static/sprites-small/home/55.webp and b/static/sprites-small/home/55.webp differ diff --git a/static/sprites-small/home/550.webp b/static/sprites-small/home/550.webp index 927bdc4..f5ac783 100644 Binary files a/static/sprites-small/home/550.webp and b/static/sprites-small/home/550.webp differ diff --git a/static/sprites-small/home/551.webp b/static/sprites-small/home/551.webp index 8455946..dfd4a2d 100644 Binary files a/static/sprites-small/home/551.webp and b/static/sprites-small/home/551.webp differ diff --git a/static/sprites-small/home/552.webp b/static/sprites-small/home/552.webp index 118b33d..ea78914 100644 Binary files a/static/sprites-small/home/552.webp and b/static/sprites-small/home/552.webp differ diff --git a/static/sprites-small/home/553.webp b/static/sprites-small/home/553.webp index a41d0b7..ca6d823 100644 Binary files a/static/sprites-small/home/553.webp and b/static/sprites-small/home/553.webp differ diff --git a/static/sprites-small/home/554.webp b/static/sprites-small/home/554.webp index 7a75072..aab468b 100644 Binary files a/static/sprites-small/home/554.webp and b/static/sprites-small/home/554.webp differ diff --git a/static/sprites-small/home/555.webp b/static/sprites-small/home/555.webp index e1356e7..489b95f 100644 Binary files a/static/sprites-small/home/555.webp and b/static/sprites-small/home/555.webp differ diff --git a/static/sprites-small/home/556.webp b/static/sprites-small/home/556.webp index c6d9e45..53edf7a 100644 Binary files a/static/sprites-small/home/556.webp and b/static/sprites-small/home/556.webp differ diff --git a/static/sprites-small/home/557.webp b/static/sprites-small/home/557.webp index 432457b..3796845 100644 Binary files a/static/sprites-small/home/557.webp and b/static/sprites-small/home/557.webp differ diff --git a/static/sprites-small/home/558.webp b/static/sprites-small/home/558.webp index 55dc9ec..6f7c15e 100644 Binary files a/static/sprites-small/home/558.webp and b/static/sprites-small/home/558.webp differ diff --git a/static/sprites-small/home/559.webp b/static/sprites-small/home/559.webp index 10ffbaf..767bcf4 100644 Binary files a/static/sprites-small/home/559.webp and b/static/sprites-small/home/559.webp differ diff --git a/static/sprites-small/home/56.webp b/static/sprites-small/home/56.webp index 703ce6b..ab6974b 100644 Binary files a/static/sprites-small/home/56.webp and b/static/sprites-small/home/56.webp differ diff --git a/static/sprites-small/home/560.webp b/static/sprites-small/home/560.webp index 2e3058f..4c1191d 100644 Binary files a/static/sprites-small/home/560.webp and b/static/sprites-small/home/560.webp differ diff --git a/static/sprites-small/home/561.webp b/static/sprites-small/home/561.webp index 2033da3..a51b283 100644 Binary files a/static/sprites-small/home/561.webp and b/static/sprites-small/home/561.webp differ diff --git a/static/sprites-small/home/562.webp b/static/sprites-small/home/562.webp index f18747d..d88e564 100644 Binary files a/static/sprites-small/home/562.webp and b/static/sprites-small/home/562.webp differ diff --git a/static/sprites-small/home/563.webp b/static/sprites-small/home/563.webp index a4ff20c..53e966e 100644 Binary files a/static/sprites-small/home/563.webp and b/static/sprites-small/home/563.webp differ diff --git a/static/sprites-small/home/564.webp b/static/sprites-small/home/564.webp index 4638329..e15ce4b 100644 Binary files a/static/sprites-small/home/564.webp and b/static/sprites-small/home/564.webp differ diff --git a/static/sprites-small/home/565.webp b/static/sprites-small/home/565.webp index 89a1bc3..f0e2c54 100644 Binary files a/static/sprites-small/home/565.webp and b/static/sprites-small/home/565.webp differ diff --git a/static/sprites-small/home/566.webp b/static/sprites-small/home/566.webp index 96c6b78..908ac61 100644 Binary files a/static/sprites-small/home/566.webp and b/static/sprites-small/home/566.webp differ diff --git a/static/sprites-small/home/567.webp b/static/sprites-small/home/567.webp index 764db15..2b5c3fd 100644 Binary files a/static/sprites-small/home/567.webp and b/static/sprites-small/home/567.webp differ diff --git a/static/sprites-small/home/568.webp b/static/sprites-small/home/568.webp index 01fc7f8..e08fed5 100644 Binary files a/static/sprites-small/home/568.webp and b/static/sprites-small/home/568.webp differ diff --git a/static/sprites-small/home/569.webp b/static/sprites-small/home/569.webp index 6d42904..c644b90 100644 Binary files a/static/sprites-small/home/569.webp and b/static/sprites-small/home/569.webp differ diff --git a/static/sprites-small/home/57.webp b/static/sprites-small/home/57.webp index 3ef63a0..c1e7e16 100644 Binary files a/static/sprites-small/home/57.webp and b/static/sprites-small/home/57.webp differ diff --git a/static/sprites-small/home/570.webp b/static/sprites-small/home/570.webp index 08c9b50..96c8403 100644 Binary files a/static/sprites-small/home/570.webp and b/static/sprites-small/home/570.webp differ diff --git a/static/sprites-small/home/571.webp b/static/sprites-small/home/571.webp index 4129f0a..376052f 100644 Binary files a/static/sprites-small/home/571.webp and b/static/sprites-small/home/571.webp differ diff --git a/static/sprites-small/home/572.webp b/static/sprites-small/home/572.webp index 7c01af7..5ed37c2 100644 Binary files a/static/sprites-small/home/572.webp and b/static/sprites-small/home/572.webp differ diff --git a/static/sprites-small/home/573.webp b/static/sprites-small/home/573.webp index 33e2d01..86986ea 100644 Binary files a/static/sprites-small/home/573.webp and b/static/sprites-small/home/573.webp differ diff --git a/static/sprites-small/home/574.webp b/static/sprites-small/home/574.webp index bc53603..4015395 100644 Binary files a/static/sprites-small/home/574.webp and b/static/sprites-small/home/574.webp differ diff --git a/static/sprites-small/home/575.webp b/static/sprites-small/home/575.webp index 3c9149c..fcb9f0a 100644 Binary files a/static/sprites-small/home/575.webp and b/static/sprites-small/home/575.webp differ diff --git a/static/sprites-small/home/576.webp b/static/sprites-small/home/576.webp index 5315ceb..7a9af30 100644 Binary files a/static/sprites-small/home/576.webp and b/static/sprites-small/home/576.webp differ diff --git a/static/sprites-small/home/577.webp b/static/sprites-small/home/577.webp index f16ddd3..eaa3002 100644 Binary files a/static/sprites-small/home/577.webp and b/static/sprites-small/home/577.webp differ diff --git a/static/sprites-small/home/578.webp b/static/sprites-small/home/578.webp index 861f500..5cca965 100644 Binary files a/static/sprites-small/home/578.webp and b/static/sprites-small/home/578.webp differ diff --git a/static/sprites-small/home/579.webp b/static/sprites-small/home/579.webp index 872245d..e4d4434 100644 Binary files a/static/sprites-small/home/579.webp and b/static/sprites-small/home/579.webp differ diff --git a/static/sprites-small/home/58.webp b/static/sprites-small/home/58.webp index 6ada297..0079a81 100644 Binary files a/static/sprites-small/home/58.webp and b/static/sprites-small/home/58.webp differ diff --git a/static/sprites-small/home/580.webp b/static/sprites-small/home/580.webp index 6197db8..0999231 100644 Binary files a/static/sprites-small/home/580.webp and b/static/sprites-small/home/580.webp differ diff --git a/static/sprites-small/home/581.webp b/static/sprites-small/home/581.webp index c632b36..5f3e93e 100644 Binary files a/static/sprites-small/home/581.webp and b/static/sprites-small/home/581.webp differ diff --git a/static/sprites-small/home/582.webp b/static/sprites-small/home/582.webp index 52ab8b2..4505c13 100644 Binary files a/static/sprites-small/home/582.webp and b/static/sprites-small/home/582.webp differ diff --git a/static/sprites-small/home/583.webp b/static/sprites-small/home/583.webp index 3a74113..dfa63c7 100644 Binary files a/static/sprites-small/home/583.webp and b/static/sprites-small/home/583.webp differ diff --git a/static/sprites-small/home/584.webp b/static/sprites-small/home/584.webp index 505bade..82180b1 100644 Binary files a/static/sprites-small/home/584.webp and b/static/sprites-small/home/584.webp differ diff --git a/static/sprites-small/home/585-autumn.webp b/static/sprites-small/home/585-autumn.webp index 9788431..cc2d394 100644 Binary files a/static/sprites-small/home/585-autumn.webp and b/static/sprites-small/home/585-autumn.webp differ diff --git a/static/sprites-small/home/585-spring.webp b/static/sprites-small/home/585-spring.webp index e3c13f2..8b94620 100644 Binary files a/static/sprites-small/home/585-spring.webp and b/static/sprites-small/home/585-spring.webp differ diff --git a/static/sprites-small/home/585-summer.webp b/static/sprites-small/home/585-summer.webp index e40b63b..e20cdce 100644 Binary files a/static/sprites-small/home/585-summer.webp and b/static/sprites-small/home/585-summer.webp differ diff --git a/static/sprites-small/home/585-winter.webp b/static/sprites-small/home/585-winter.webp index 0804d74..7125f78 100644 Binary files a/static/sprites-small/home/585-winter.webp and b/static/sprites-small/home/585-winter.webp differ diff --git a/static/sprites-small/home/585.webp b/static/sprites-small/home/585.webp index e3c13f2..8b94620 100644 Binary files a/static/sprites-small/home/585.webp and b/static/sprites-small/home/585.webp differ diff --git a/static/sprites-small/home/586-autumn.webp b/static/sprites-small/home/586-autumn.webp index eb7f7ea..64773b0 100644 Binary files a/static/sprites-small/home/586-autumn.webp and b/static/sprites-small/home/586-autumn.webp differ diff --git a/static/sprites-small/home/586-spring.webp b/static/sprites-small/home/586-spring.webp index bf299c5..58e1bc0 100644 Binary files a/static/sprites-small/home/586-spring.webp and b/static/sprites-small/home/586-spring.webp differ diff --git a/static/sprites-small/home/586-summer.webp b/static/sprites-small/home/586-summer.webp index 3261952..215c006 100644 Binary files a/static/sprites-small/home/586-summer.webp and b/static/sprites-small/home/586-summer.webp differ diff --git a/static/sprites-small/home/586-winter.webp b/static/sprites-small/home/586-winter.webp index a9b37ce..88bab37 100644 Binary files a/static/sprites-small/home/586-winter.webp and b/static/sprites-small/home/586-winter.webp differ diff --git a/static/sprites-small/home/586.webp b/static/sprites-small/home/586.webp index bf299c5..58e1bc0 100644 Binary files a/static/sprites-small/home/586.webp and b/static/sprites-small/home/586.webp differ diff --git a/static/sprites-small/home/587.webp b/static/sprites-small/home/587.webp index bd26704..6bf04d0 100644 Binary files a/static/sprites-small/home/587.webp and b/static/sprites-small/home/587.webp differ diff --git a/static/sprites-small/home/588.webp b/static/sprites-small/home/588.webp index 34e8edf..92991f5 100644 Binary files a/static/sprites-small/home/588.webp and b/static/sprites-small/home/588.webp differ diff --git a/static/sprites-small/home/589.webp b/static/sprites-small/home/589.webp index 389022d..c45040a 100644 Binary files a/static/sprites-small/home/589.webp and b/static/sprites-small/home/589.webp differ diff --git a/static/sprites-small/home/59.webp b/static/sprites-small/home/59.webp index 7c0493d..30bbad1 100644 Binary files a/static/sprites-small/home/59.webp and b/static/sprites-small/home/59.webp differ diff --git a/static/sprites-small/home/590.webp b/static/sprites-small/home/590.webp index 0f67e36..2f38737 100644 Binary files a/static/sprites-small/home/590.webp and b/static/sprites-small/home/590.webp differ diff --git a/static/sprites-small/home/591.webp b/static/sprites-small/home/591.webp index 4e85299..f98ccf5 100644 Binary files a/static/sprites-small/home/591.webp and b/static/sprites-small/home/591.webp differ diff --git a/static/sprites-small/home/592.webp b/static/sprites-small/home/592.webp index 3956dab..58c625c 100644 Binary files a/static/sprites-small/home/592.webp and b/static/sprites-small/home/592.webp differ diff --git a/static/sprites-small/home/593.webp b/static/sprites-small/home/593.webp index 287eead..3e0f70e 100644 Binary files a/static/sprites-small/home/593.webp and b/static/sprites-small/home/593.webp differ diff --git a/static/sprites-small/home/594.webp b/static/sprites-small/home/594.webp index de41983..7753e32 100644 Binary files a/static/sprites-small/home/594.webp and b/static/sprites-small/home/594.webp differ diff --git a/static/sprites-small/home/595.webp b/static/sprites-small/home/595.webp index 63d46dd..a6e94fa 100644 Binary files a/static/sprites-small/home/595.webp and b/static/sprites-small/home/595.webp differ diff --git a/static/sprites-small/home/596.webp b/static/sprites-small/home/596.webp index e61ed33..c40c12f 100644 Binary files a/static/sprites-small/home/596.webp and b/static/sprites-small/home/596.webp differ diff --git a/static/sprites-small/home/597.webp b/static/sprites-small/home/597.webp index cf01eb0..202f585 100644 Binary files a/static/sprites-small/home/597.webp and b/static/sprites-small/home/597.webp differ diff --git a/static/sprites-small/home/598.webp b/static/sprites-small/home/598.webp index a773ab0..d9f3bbc 100644 Binary files a/static/sprites-small/home/598.webp and b/static/sprites-small/home/598.webp differ diff --git a/static/sprites-small/home/599.webp b/static/sprites-small/home/599.webp index d079988..010fc79 100644 Binary files a/static/sprites-small/home/599.webp and b/static/sprites-small/home/599.webp differ diff --git a/static/sprites-small/home/6.webp b/static/sprites-small/home/6.webp index 7f5d994..19b40b7 100644 Binary files a/static/sprites-small/home/6.webp and b/static/sprites-small/home/6.webp differ diff --git a/static/sprites-small/home/60.webp b/static/sprites-small/home/60.webp index 57e1a11..f652761 100644 Binary files a/static/sprites-small/home/60.webp and b/static/sprites-small/home/60.webp differ diff --git a/static/sprites-small/home/600.webp b/static/sprites-small/home/600.webp index 5374ebe..bfd8924 100644 Binary files a/static/sprites-small/home/600.webp and b/static/sprites-small/home/600.webp differ diff --git a/static/sprites-small/home/601.webp b/static/sprites-small/home/601.webp index e8bb182..6ab9e12 100644 Binary files a/static/sprites-small/home/601.webp and b/static/sprites-small/home/601.webp differ diff --git a/static/sprites-small/home/602.webp b/static/sprites-small/home/602.webp index 168b8a5..ce3e8b9 100644 Binary files a/static/sprites-small/home/602.webp and b/static/sprites-small/home/602.webp differ diff --git a/static/sprites-small/home/603.webp b/static/sprites-small/home/603.webp index cce94ae..722ef9a 100644 Binary files a/static/sprites-small/home/603.webp and b/static/sprites-small/home/603.webp differ diff --git a/static/sprites-small/home/604.webp b/static/sprites-small/home/604.webp index ebb5c3f..5e688a6 100644 Binary files a/static/sprites-small/home/604.webp and b/static/sprites-small/home/604.webp differ diff --git a/static/sprites-small/home/605.webp b/static/sprites-small/home/605.webp index a441033..fc51078 100644 Binary files a/static/sprites-small/home/605.webp and b/static/sprites-small/home/605.webp differ diff --git a/static/sprites-small/home/606.webp b/static/sprites-small/home/606.webp index a3428b8..1a004bb 100644 Binary files a/static/sprites-small/home/606.webp and b/static/sprites-small/home/606.webp differ diff --git a/static/sprites-small/home/607.webp b/static/sprites-small/home/607.webp index 678194a..94fbe9a 100644 Binary files a/static/sprites-small/home/607.webp and b/static/sprites-small/home/607.webp differ diff --git a/static/sprites-small/home/608.webp b/static/sprites-small/home/608.webp index 4f51fc6..3a60a8a 100644 Binary files a/static/sprites-small/home/608.webp and b/static/sprites-small/home/608.webp differ diff --git a/static/sprites-small/home/609.webp b/static/sprites-small/home/609.webp index b830816..edfb73a 100644 Binary files a/static/sprites-small/home/609.webp and b/static/sprites-small/home/609.webp differ diff --git a/static/sprites-small/home/61.webp b/static/sprites-small/home/61.webp index ca8d6c5..35a8433 100644 Binary files a/static/sprites-small/home/61.webp and b/static/sprites-small/home/61.webp differ diff --git a/static/sprites-small/home/610.webp b/static/sprites-small/home/610.webp index 79f1a59..3586fd4 100644 Binary files a/static/sprites-small/home/610.webp and b/static/sprites-small/home/610.webp differ diff --git a/static/sprites-small/home/611.webp b/static/sprites-small/home/611.webp index ba489ca..4161745 100644 Binary files a/static/sprites-small/home/611.webp and b/static/sprites-small/home/611.webp differ diff --git a/static/sprites-small/home/612.webp b/static/sprites-small/home/612.webp index c2832f8..a972a22 100644 Binary files a/static/sprites-small/home/612.webp and b/static/sprites-small/home/612.webp differ diff --git a/static/sprites-small/home/613.webp b/static/sprites-small/home/613.webp index cc813af..0cd0230 100644 Binary files a/static/sprites-small/home/613.webp and b/static/sprites-small/home/613.webp differ diff --git a/static/sprites-small/home/614.webp b/static/sprites-small/home/614.webp index 8ae087a..9064663 100644 Binary files a/static/sprites-small/home/614.webp and b/static/sprites-small/home/614.webp differ diff --git a/static/sprites-small/home/615.webp b/static/sprites-small/home/615.webp index b63c151..8898c86 100644 Binary files a/static/sprites-small/home/615.webp and b/static/sprites-small/home/615.webp differ diff --git a/static/sprites-small/home/616.webp b/static/sprites-small/home/616.webp index c2d1fa0..1fe889f 100644 Binary files a/static/sprites-small/home/616.webp and b/static/sprites-small/home/616.webp differ diff --git a/static/sprites-small/home/617.webp b/static/sprites-small/home/617.webp index e226bfa..b730e81 100644 Binary files a/static/sprites-small/home/617.webp and b/static/sprites-small/home/617.webp differ diff --git a/static/sprites-small/home/618.webp b/static/sprites-small/home/618.webp index 371f99c..0c13db8 100644 Binary files a/static/sprites-small/home/618.webp and b/static/sprites-small/home/618.webp differ diff --git a/static/sprites-small/home/619.webp b/static/sprites-small/home/619.webp index cd476d2..a24228d 100644 Binary files a/static/sprites-small/home/619.webp and b/static/sprites-small/home/619.webp differ diff --git a/static/sprites-small/home/62.webp b/static/sprites-small/home/62.webp index e296d9e..33311f4 100644 Binary files a/static/sprites-small/home/62.webp and b/static/sprites-small/home/62.webp differ diff --git a/static/sprites-small/home/620.webp b/static/sprites-small/home/620.webp index 60b699a..19dc288 100644 Binary files a/static/sprites-small/home/620.webp and b/static/sprites-small/home/620.webp differ diff --git a/static/sprites-small/home/621.webp b/static/sprites-small/home/621.webp index 67508f4..12e16a0 100644 Binary files a/static/sprites-small/home/621.webp and b/static/sprites-small/home/621.webp differ diff --git a/static/sprites-small/home/622.webp b/static/sprites-small/home/622.webp index 6aedaad..c26a63e 100644 Binary files a/static/sprites-small/home/622.webp and b/static/sprites-small/home/622.webp differ diff --git a/static/sprites-small/home/623.webp b/static/sprites-small/home/623.webp index 6629b3a..cd6dc0d 100644 Binary files a/static/sprites-small/home/623.webp and b/static/sprites-small/home/623.webp differ diff --git a/static/sprites-small/home/624.webp b/static/sprites-small/home/624.webp index cec1a6d..9c9d804 100644 Binary files a/static/sprites-small/home/624.webp and b/static/sprites-small/home/624.webp differ diff --git a/static/sprites-small/home/625.webp b/static/sprites-small/home/625.webp index 0d3d8b8..71738f6 100644 Binary files a/static/sprites-small/home/625.webp and b/static/sprites-small/home/625.webp differ diff --git a/static/sprites-small/home/626.webp b/static/sprites-small/home/626.webp index 89f8079..9da4891 100644 Binary files a/static/sprites-small/home/626.webp and b/static/sprites-small/home/626.webp differ diff --git a/static/sprites-small/home/627.webp b/static/sprites-small/home/627.webp index 35649ef..197033f 100644 Binary files a/static/sprites-small/home/627.webp and b/static/sprites-small/home/627.webp differ diff --git a/static/sprites-small/home/628.webp b/static/sprites-small/home/628.webp index 95cc56f..63c486f 100644 Binary files a/static/sprites-small/home/628.webp and b/static/sprites-small/home/628.webp differ diff --git a/static/sprites-small/home/629.webp b/static/sprites-small/home/629.webp index 34ad20c..f713014 100644 Binary files a/static/sprites-small/home/629.webp and b/static/sprites-small/home/629.webp differ diff --git a/static/sprites-small/home/63.webp b/static/sprites-small/home/63.webp index b57f0f1..338ebfc 100644 Binary files a/static/sprites-small/home/63.webp and b/static/sprites-small/home/63.webp differ diff --git a/static/sprites-small/home/630.webp b/static/sprites-small/home/630.webp index 4655ba6..3df47b6 100644 Binary files a/static/sprites-small/home/630.webp and b/static/sprites-small/home/630.webp differ diff --git a/static/sprites-small/home/631.webp b/static/sprites-small/home/631.webp index 456dd89..515076d 100644 Binary files a/static/sprites-small/home/631.webp and b/static/sprites-small/home/631.webp differ diff --git a/static/sprites-small/home/632.webp b/static/sprites-small/home/632.webp index 02ae48a..d47cd76 100644 Binary files a/static/sprites-small/home/632.webp and b/static/sprites-small/home/632.webp differ diff --git a/static/sprites-small/home/633.webp b/static/sprites-small/home/633.webp index 3aa64b2..53d4bef 100644 Binary files a/static/sprites-small/home/633.webp and b/static/sprites-small/home/633.webp differ diff --git a/static/sprites-small/home/634.webp b/static/sprites-small/home/634.webp index 547481a..bf76d00 100644 Binary files a/static/sprites-small/home/634.webp and b/static/sprites-small/home/634.webp differ diff --git a/static/sprites-small/home/635.webp b/static/sprites-small/home/635.webp index 3bc1961..991e7c9 100644 Binary files a/static/sprites-small/home/635.webp and b/static/sprites-small/home/635.webp differ diff --git a/static/sprites-small/home/636.webp b/static/sprites-small/home/636.webp index 2d7ffb1..bbf0188 100644 Binary files a/static/sprites-small/home/636.webp and b/static/sprites-small/home/636.webp differ diff --git a/static/sprites-small/home/637.webp b/static/sprites-small/home/637.webp index 562eb2f..ab31359 100644 Binary files a/static/sprites-small/home/637.webp and b/static/sprites-small/home/637.webp differ diff --git a/static/sprites-small/home/638.webp b/static/sprites-small/home/638.webp index a8c8671..ae66f62 100644 Binary files a/static/sprites-small/home/638.webp and b/static/sprites-small/home/638.webp differ diff --git a/static/sprites-small/home/639.webp b/static/sprites-small/home/639.webp index b73e159..6943b93 100644 Binary files a/static/sprites-small/home/639.webp and b/static/sprites-small/home/639.webp differ diff --git a/static/sprites-small/home/64.webp b/static/sprites-small/home/64.webp index 388a603..1f12d00 100644 Binary files a/static/sprites-small/home/64.webp and b/static/sprites-small/home/64.webp differ diff --git a/static/sprites-small/home/640.webp b/static/sprites-small/home/640.webp index d89b06b..0b064f1 100644 Binary files a/static/sprites-small/home/640.webp and b/static/sprites-small/home/640.webp differ diff --git a/static/sprites-small/home/641.webp b/static/sprites-small/home/641.webp index 806e581..e9933bd 100644 Binary files a/static/sprites-small/home/641.webp and b/static/sprites-small/home/641.webp differ diff --git a/static/sprites-small/home/642.webp b/static/sprites-small/home/642.webp index cb814f2..c693ca4 100644 Binary files a/static/sprites-small/home/642.webp and b/static/sprites-small/home/642.webp differ diff --git a/static/sprites-small/home/643.webp b/static/sprites-small/home/643.webp index 53285b7..2d35feb 100644 Binary files a/static/sprites-small/home/643.webp and b/static/sprites-small/home/643.webp differ diff --git a/static/sprites-small/home/644.webp b/static/sprites-small/home/644.webp index 592a0ce..09937c0 100644 Binary files a/static/sprites-small/home/644.webp and b/static/sprites-small/home/644.webp differ diff --git a/static/sprites-small/home/645.webp b/static/sprites-small/home/645.webp index eae3298..6369870 100644 Binary files a/static/sprites-small/home/645.webp and b/static/sprites-small/home/645.webp differ diff --git a/static/sprites-small/home/646.webp b/static/sprites-small/home/646.webp index a40eabf..d62025d 100644 Binary files a/static/sprites-small/home/646.webp and b/static/sprites-small/home/646.webp differ diff --git a/static/sprites-small/home/647.webp b/static/sprites-small/home/647.webp index b627341..9f7f251 100644 Binary files a/static/sprites-small/home/647.webp and b/static/sprites-small/home/647.webp differ diff --git a/static/sprites-small/home/648.webp b/static/sprites-small/home/648.webp index 32b037f..263e3e5 100644 Binary files a/static/sprites-small/home/648.webp and b/static/sprites-small/home/648.webp differ diff --git a/static/sprites-small/home/649-burn.webp b/static/sprites-small/home/649-burn.webp index 1f10e03..3aa3137 100644 Binary files a/static/sprites-small/home/649-burn.webp and b/static/sprites-small/home/649-burn.webp differ diff --git a/static/sprites-small/home/649-chill.webp b/static/sprites-small/home/649-chill.webp index 0760c8c..f840b53 100644 Binary files a/static/sprites-small/home/649-chill.webp and b/static/sprites-small/home/649-chill.webp differ diff --git a/static/sprites-small/home/649-douse.webp b/static/sprites-small/home/649-douse.webp index 2180b75..4799757 100644 Binary files a/static/sprites-small/home/649-douse.webp and b/static/sprites-small/home/649-douse.webp differ diff --git a/static/sprites-small/home/649-shock.webp b/static/sprites-small/home/649-shock.webp index bbbaea3..86c803c 100644 Binary files a/static/sprites-small/home/649-shock.webp and b/static/sprites-small/home/649-shock.webp differ diff --git a/static/sprites-small/home/649.webp b/static/sprites-small/home/649.webp index 87684ac..1b15f8b 100644 Binary files a/static/sprites-small/home/649.webp and b/static/sprites-small/home/649.webp differ diff --git a/static/sprites-small/home/65.webp b/static/sprites-small/home/65.webp index 6e6f035..a46586b 100644 Binary files a/static/sprites-small/home/65.webp and b/static/sprites-small/home/65.webp differ diff --git a/static/sprites-small/home/650.webp b/static/sprites-small/home/650.webp index a2c803d..a86fa78 100644 Binary files a/static/sprites-small/home/650.webp and b/static/sprites-small/home/650.webp differ diff --git a/static/sprites-small/home/651.webp b/static/sprites-small/home/651.webp index 4321780..77fa444 100644 Binary files a/static/sprites-small/home/651.webp and b/static/sprites-small/home/651.webp differ diff --git a/static/sprites-small/home/652.webp b/static/sprites-small/home/652.webp index decd7ee..a2cf35e 100644 Binary files a/static/sprites-small/home/652.webp and b/static/sprites-small/home/652.webp differ diff --git a/static/sprites-small/home/653.webp b/static/sprites-small/home/653.webp index 07e1118..f7201c7 100644 Binary files a/static/sprites-small/home/653.webp and b/static/sprites-small/home/653.webp differ diff --git a/static/sprites-small/home/654.webp b/static/sprites-small/home/654.webp index 91b68f1..865acc5 100644 Binary files a/static/sprites-small/home/654.webp and b/static/sprites-small/home/654.webp differ diff --git a/static/sprites-small/home/655.webp b/static/sprites-small/home/655.webp index 7453a1f..86892a2 100644 Binary files a/static/sprites-small/home/655.webp and b/static/sprites-small/home/655.webp differ diff --git a/static/sprites-small/home/656.webp b/static/sprites-small/home/656.webp index 83e9935..9b6a9ea 100644 Binary files a/static/sprites-small/home/656.webp and b/static/sprites-small/home/656.webp differ diff --git a/static/sprites-small/home/657.webp b/static/sprites-small/home/657.webp index b6a2caf..d1fcfcd 100644 Binary files a/static/sprites-small/home/657.webp and b/static/sprites-small/home/657.webp differ diff --git a/static/sprites-small/home/658.webp b/static/sprites-small/home/658.webp index bae060f..9548dfa 100644 Binary files a/static/sprites-small/home/658.webp and b/static/sprites-small/home/658.webp differ diff --git a/static/sprites-small/home/659.webp b/static/sprites-small/home/659.webp index 4ff1ab5..befd148 100644 Binary files a/static/sprites-small/home/659.webp and b/static/sprites-small/home/659.webp differ diff --git a/static/sprites-small/home/66.webp b/static/sprites-small/home/66.webp index e043978..f8d53e6 100644 Binary files a/static/sprites-small/home/66.webp and b/static/sprites-small/home/66.webp differ diff --git a/static/sprites-small/home/660.webp b/static/sprites-small/home/660.webp index e589504..8e93ed0 100644 Binary files a/static/sprites-small/home/660.webp and b/static/sprites-small/home/660.webp differ diff --git a/static/sprites-small/home/661.webp b/static/sprites-small/home/661.webp index 1bd02f8..7d5d488 100644 Binary files a/static/sprites-small/home/661.webp and b/static/sprites-small/home/661.webp differ diff --git a/static/sprites-small/home/662.webp b/static/sprites-small/home/662.webp index cac4109..115cd10 100644 Binary files a/static/sprites-small/home/662.webp and b/static/sprites-small/home/662.webp differ diff --git a/static/sprites-small/home/663.webp b/static/sprites-small/home/663.webp index 411c4f3..2460f28 100644 Binary files a/static/sprites-small/home/663.webp and b/static/sprites-small/home/663.webp differ diff --git a/static/sprites-small/home/664.webp b/static/sprites-small/home/664.webp index 14a7732..625cad6 100644 Binary files a/static/sprites-small/home/664.webp and b/static/sprites-small/home/664.webp differ diff --git a/static/sprites-small/home/665.webp b/static/sprites-small/home/665.webp index 3c17990..285f895 100644 Binary files a/static/sprites-small/home/665.webp and b/static/sprites-small/home/665.webp differ diff --git a/static/sprites-small/home/666-archipelago.webp b/static/sprites-small/home/666-archipelago.webp index d56b1ff..cc1f3df 100644 Binary files a/static/sprites-small/home/666-archipelago.webp and b/static/sprites-small/home/666-archipelago.webp differ diff --git a/static/sprites-small/home/666-continental.webp b/static/sprites-small/home/666-continental.webp index ff517f8..b8df52a 100644 Binary files a/static/sprites-small/home/666-continental.webp and b/static/sprites-small/home/666-continental.webp differ diff --git a/static/sprites-small/home/666-elegant.webp b/static/sprites-small/home/666-elegant.webp index 0d63534..283cf75 100644 Binary files a/static/sprites-small/home/666-elegant.webp and b/static/sprites-small/home/666-elegant.webp differ diff --git a/static/sprites-small/home/666-fancy.webp b/static/sprites-small/home/666-fancy.webp index 1ed4c19..bc9409f 100644 Binary files a/static/sprites-small/home/666-fancy.webp and b/static/sprites-small/home/666-fancy.webp differ diff --git a/static/sprites-small/home/666-garden.webp b/static/sprites-small/home/666-garden.webp index 8d95946..af83757 100644 Binary files a/static/sprites-small/home/666-garden.webp and b/static/sprites-small/home/666-garden.webp differ diff --git a/static/sprites-small/home/666-high-plains.webp b/static/sprites-small/home/666-high-plains.webp index 1cb0387..f54c2a5 100644 Binary files a/static/sprites-small/home/666-high-plains.webp and b/static/sprites-small/home/666-high-plains.webp differ diff --git a/static/sprites-small/home/666-icy-snow.webp b/static/sprites-small/home/666-icy-snow.webp index 8b56fa9..a768457 100644 Binary files a/static/sprites-small/home/666-icy-snow.webp and b/static/sprites-small/home/666-icy-snow.webp differ diff --git a/static/sprites-small/home/666-jungle.webp b/static/sprites-small/home/666-jungle.webp index d149434..66d0d47 100644 Binary files a/static/sprites-small/home/666-jungle.webp and b/static/sprites-small/home/666-jungle.webp differ diff --git a/static/sprites-small/home/666-marine.webp b/static/sprites-small/home/666-marine.webp index 441fa3e..0990b4f 100644 Binary files a/static/sprites-small/home/666-marine.webp and b/static/sprites-small/home/666-marine.webp differ diff --git a/static/sprites-small/home/666-meadow.webp b/static/sprites-small/home/666-meadow.webp index 0bbcddb..4c7a0ed 100644 Binary files a/static/sprites-small/home/666-meadow.webp and b/static/sprites-small/home/666-meadow.webp differ diff --git a/static/sprites-small/home/666-modern.webp b/static/sprites-small/home/666-modern.webp index b3681ec..552f432 100644 Binary files a/static/sprites-small/home/666-modern.webp and b/static/sprites-small/home/666-modern.webp differ diff --git a/static/sprites-small/home/666-monsoon.webp b/static/sprites-small/home/666-monsoon.webp index 318e26f..2814cd5 100644 Binary files a/static/sprites-small/home/666-monsoon.webp and b/static/sprites-small/home/666-monsoon.webp differ diff --git a/static/sprites-small/home/666-ocean.webp b/static/sprites-small/home/666-ocean.webp index 738c7a6..dd7f078 100644 Binary files a/static/sprites-small/home/666-ocean.webp and b/static/sprites-small/home/666-ocean.webp differ diff --git a/static/sprites-small/home/666-poke-ball.webp b/static/sprites-small/home/666-poke-ball.webp index 45f2ace..7ed26d6 100644 Binary files a/static/sprites-small/home/666-poke-ball.webp and b/static/sprites-small/home/666-poke-ball.webp differ diff --git a/static/sprites-small/home/666-polar.webp b/static/sprites-small/home/666-polar.webp index a8f5a7d..8e52f70 100644 Binary files a/static/sprites-small/home/666-polar.webp and b/static/sprites-small/home/666-polar.webp differ diff --git a/static/sprites-small/home/666-river.webp b/static/sprites-small/home/666-river.webp index 9341b2e..f21c3b2 100644 Binary files a/static/sprites-small/home/666-river.webp and b/static/sprites-small/home/666-river.webp differ diff --git a/static/sprites-small/home/666-sandstorm.webp b/static/sprites-small/home/666-sandstorm.webp index e0dfc53..86bf424 100644 Binary files a/static/sprites-small/home/666-sandstorm.webp and b/static/sprites-small/home/666-sandstorm.webp differ diff --git a/static/sprites-small/home/666-savanna.webp b/static/sprites-small/home/666-savanna.webp index b7ea31d..94919f0 100644 Binary files a/static/sprites-small/home/666-savanna.webp and b/static/sprites-small/home/666-savanna.webp differ diff --git a/static/sprites-small/home/666-sun.webp b/static/sprites-small/home/666-sun.webp index 22a26e4..cd2ad4d 100644 Binary files a/static/sprites-small/home/666-sun.webp and b/static/sprites-small/home/666-sun.webp differ diff --git a/static/sprites-small/home/666-tundra.webp b/static/sprites-small/home/666-tundra.webp index d6875cc..8aed802 100644 Binary files a/static/sprites-small/home/666-tundra.webp and b/static/sprites-small/home/666-tundra.webp differ diff --git a/static/sprites-small/home/666.webp b/static/sprites-small/home/666.webp index 0bbcddb..4c7a0ed 100644 Binary files a/static/sprites-small/home/666.webp and b/static/sprites-small/home/666.webp differ diff --git a/static/sprites-small/home/667.webp b/static/sprites-small/home/667.webp index e6da3da..13bb36c 100644 Binary files a/static/sprites-small/home/667.webp and b/static/sprites-small/home/667.webp differ diff --git a/static/sprites-small/home/668.webp b/static/sprites-small/home/668.webp index b7ba09e..5304961 100644 Binary files a/static/sprites-small/home/668.webp and b/static/sprites-small/home/668.webp differ diff --git a/static/sprites-small/home/669-blue.webp b/static/sprites-small/home/669-blue.webp index 71e82c9..913c5b2 100644 Binary files a/static/sprites-small/home/669-blue.webp and b/static/sprites-small/home/669-blue.webp differ diff --git a/static/sprites-small/home/669-orange.webp b/static/sprites-small/home/669-orange.webp index 4ddab67..dd9b121 100644 Binary files a/static/sprites-small/home/669-orange.webp and b/static/sprites-small/home/669-orange.webp differ diff --git a/static/sprites-small/home/669-red.webp b/static/sprites-small/home/669-red.webp index ff5924b..e3aa7e2 100644 Binary files a/static/sprites-small/home/669-red.webp and b/static/sprites-small/home/669-red.webp differ diff --git a/static/sprites-small/home/669-white.webp b/static/sprites-small/home/669-white.webp index d8147f9..a57cb1d 100644 Binary files a/static/sprites-small/home/669-white.webp and b/static/sprites-small/home/669-white.webp differ diff --git a/static/sprites-small/home/669-yellow.webp b/static/sprites-small/home/669-yellow.webp index f1ad00b..c3c7bc1 100644 Binary files a/static/sprites-small/home/669-yellow.webp and b/static/sprites-small/home/669-yellow.webp differ diff --git a/static/sprites-small/home/669.webp b/static/sprites-small/home/669.webp index ff5924b..e3aa7e2 100644 Binary files a/static/sprites-small/home/669.webp and b/static/sprites-small/home/669.webp differ diff --git a/static/sprites-small/home/67.webp b/static/sprites-small/home/67.webp index 4369745..f40d426 100644 Binary files a/static/sprites-small/home/67.webp and b/static/sprites-small/home/67.webp differ diff --git a/static/sprites-small/home/670-blue.webp b/static/sprites-small/home/670-blue.webp index 004400e..2340401 100644 Binary files a/static/sprites-small/home/670-blue.webp and b/static/sprites-small/home/670-blue.webp differ diff --git a/static/sprites-small/home/670-orange.webp b/static/sprites-small/home/670-orange.webp index 718ec73..2cbaa38 100644 Binary files a/static/sprites-small/home/670-orange.webp and b/static/sprites-small/home/670-orange.webp differ diff --git a/static/sprites-small/home/670-red.webp b/static/sprites-small/home/670-red.webp index 2156612..12ddc14 100644 Binary files a/static/sprites-small/home/670-red.webp and b/static/sprites-small/home/670-red.webp differ diff --git a/static/sprites-small/home/670-white.webp b/static/sprites-small/home/670-white.webp index 2173b81..6236b3d 100644 Binary files a/static/sprites-small/home/670-white.webp and b/static/sprites-small/home/670-white.webp differ diff --git a/static/sprites-small/home/670-yellow.webp b/static/sprites-small/home/670-yellow.webp index 394331b..a2a113a 100644 Binary files a/static/sprites-small/home/670-yellow.webp and b/static/sprites-small/home/670-yellow.webp differ diff --git a/static/sprites-small/home/670.webp b/static/sprites-small/home/670.webp index 2156612..12ddc14 100644 Binary files a/static/sprites-small/home/670.webp and b/static/sprites-small/home/670.webp differ diff --git a/static/sprites-small/home/671-blue.webp b/static/sprites-small/home/671-blue.webp index 74dff6a..59a563f 100644 Binary files a/static/sprites-small/home/671-blue.webp and b/static/sprites-small/home/671-blue.webp differ diff --git a/static/sprites-small/home/671-orange.webp b/static/sprites-small/home/671-orange.webp index 52c75e3..be5ace9 100644 Binary files a/static/sprites-small/home/671-orange.webp and b/static/sprites-small/home/671-orange.webp differ diff --git a/static/sprites-small/home/671-red.webp b/static/sprites-small/home/671-red.webp index bab50da..3706526 100644 Binary files a/static/sprites-small/home/671-red.webp and b/static/sprites-small/home/671-red.webp differ diff --git a/static/sprites-small/home/671-white.webp b/static/sprites-small/home/671-white.webp index 4e7c142..dd8f33f 100644 Binary files a/static/sprites-small/home/671-white.webp and b/static/sprites-small/home/671-white.webp differ diff --git a/static/sprites-small/home/671-yellow.webp b/static/sprites-small/home/671-yellow.webp index 8a31faa..5afa942 100644 Binary files a/static/sprites-small/home/671-yellow.webp and b/static/sprites-small/home/671-yellow.webp differ diff --git a/static/sprites-small/home/671.webp b/static/sprites-small/home/671.webp index bab50da..3706526 100644 Binary files a/static/sprites-small/home/671.webp and b/static/sprites-small/home/671.webp differ diff --git a/static/sprites-small/home/672.webp b/static/sprites-small/home/672.webp index 98347f9..f261241 100644 Binary files a/static/sprites-small/home/672.webp and b/static/sprites-small/home/672.webp differ diff --git a/static/sprites-small/home/673.webp b/static/sprites-small/home/673.webp index 488d930..a090d1e 100644 Binary files a/static/sprites-small/home/673.webp and b/static/sprites-small/home/673.webp differ diff --git a/static/sprites-small/home/674.webp b/static/sprites-small/home/674.webp index cdae3af..fe992d6 100644 Binary files a/static/sprites-small/home/674.webp and b/static/sprites-small/home/674.webp differ diff --git a/static/sprites-small/home/675.webp b/static/sprites-small/home/675.webp index f52ebbb..bef6eff 100644 Binary files a/static/sprites-small/home/675.webp and b/static/sprites-small/home/675.webp differ diff --git a/static/sprites-small/home/676-dandy.webp b/static/sprites-small/home/676-dandy.webp index defd00e..1cfd950 100644 Binary files a/static/sprites-small/home/676-dandy.webp and b/static/sprites-small/home/676-dandy.webp differ diff --git a/static/sprites-small/home/676-debutante.webp b/static/sprites-small/home/676-debutante.webp index 3917686..a50e633 100644 Binary files a/static/sprites-small/home/676-debutante.webp and b/static/sprites-small/home/676-debutante.webp differ diff --git a/static/sprites-small/home/676-diamond.webp b/static/sprites-small/home/676-diamond.webp index 17834a5..5fba3c2 100644 Binary files a/static/sprites-small/home/676-diamond.webp and b/static/sprites-small/home/676-diamond.webp differ diff --git a/static/sprites-small/home/676-heart.webp b/static/sprites-small/home/676-heart.webp index 5e6f81e..f336e89 100644 Binary files a/static/sprites-small/home/676-heart.webp and b/static/sprites-small/home/676-heart.webp differ diff --git a/static/sprites-small/home/676-kabuki.webp b/static/sprites-small/home/676-kabuki.webp index bcd1141..ef21a8f 100644 Binary files a/static/sprites-small/home/676-kabuki.webp and b/static/sprites-small/home/676-kabuki.webp differ diff --git a/static/sprites-small/home/676-la-reine.webp b/static/sprites-small/home/676-la-reine.webp index 9541c52..52da9e3 100644 Binary files a/static/sprites-small/home/676-la-reine.webp and b/static/sprites-small/home/676-la-reine.webp differ diff --git a/static/sprites-small/home/676-matron.webp b/static/sprites-small/home/676-matron.webp index 329a7eb..0adfc6b 100644 Binary files a/static/sprites-small/home/676-matron.webp and b/static/sprites-small/home/676-matron.webp differ diff --git a/static/sprites-small/home/676-natural.webp b/static/sprites-small/home/676-natural.webp index ccc52c5..598c30b 100644 Binary files a/static/sprites-small/home/676-natural.webp and b/static/sprites-small/home/676-natural.webp differ diff --git a/static/sprites-small/home/676-pharaoh.webp b/static/sprites-small/home/676-pharaoh.webp index b79e71c..a17c11f 100644 Binary files a/static/sprites-small/home/676-pharaoh.webp and b/static/sprites-small/home/676-pharaoh.webp differ diff --git a/static/sprites-small/home/676-star.webp b/static/sprites-small/home/676-star.webp index 25adc31..cac5702 100644 Binary files a/static/sprites-small/home/676-star.webp and b/static/sprites-small/home/676-star.webp differ diff --git a/static/sprites-small/home/676.webp b/static/sprites-small/home/676.webp index ccc52c5..598c30b 100644 Binary files a/static/sprites-small/home/676.webp and b/static/sprites-small/home/676.webp differ diff --git a/static/sprites-small/home/677.webp b/static/sprites-small/home/677.webp index 9541f5a..88f0cb5 100644 Binary files a/static/sprites-small/home/677.webp and b/static/sprites-small/home/677.webp differ diff --git a/static/sprites-small/home/678.webp b/static/sprites-small/home/678.webp index aec6e0f..6c78d12 100644 Binary files a/static/sprites-small/home/678.webp and b/static/sprites-small/home/678.webp differ diff --git a/static/sprites-small/home/679.webp b/static/sprites-small/home/679.webp index d05bf16..edd035a 100644 Binary files a/static/sprites-small/home/679.webp and b/static/sprites-small/home/679.webp differ diff --git a/static/sprites-small/home/68.webp b/static/sprites-small/home/68.webp index 6a9f5ac..ec3a1d3 100644 Binary files a/static/sprites-small/home/68.webp and b/static/sprites-small/home/68.webp differ diff --git a/static/sprites-small/home/680.webp b/static/sprites-small/home/680.webp index a2ad64d..7e82790 100644 Binary files a/static/sprites-small/home/680.webp and b/static/sprites-small/home/680.webp differ diff --git a/static/sprites-small/home/681.webp b/static/sprites-small/home/681.webp index 2c43813..1b913fd 100644 Binary files a/static/sprites-small/home/681.webp and b/static/sprites-small/home/681.webp differ diff --git a/static/sprites-small/home/682.webp b/static/sprites-small/home/682.webp index eba7be4..ff62966 100644 Binary files a/static/sprites-small/home/682.webp and b/static/sprites-small/home/682.webp differ diff --git a/static/sprites-small/home/683.webp b/static/sprites-small/home/683.webp index 2b073c0..dc969bf 100644 Binary files a/static/sprites-small/home/683.webp and b/static/sprites-small/home/683.webp differ diff --git a/static/sprites-small/home/684.webp b/static/sprites-small/home/684.webp index 4b41838..711b4ea 100644 Binary files a/static/sprites-small/home/684.webp and b/static/sprites-small/home/684.webp differ diff --git a/static/sprites-small/home/685.webp b/static/sprites-small/home/685.webp index 633f57c..014821b 100644 Binary files a/static/sprites-small/home/685.webp and b/static/sprites-small/home/685.webp differ diff --git a/static/sprites-small/home/686.webp b/static/sprites-small/home/686.webp index 21d0563..8ee7116 100644 Binary files a/static/sprites-small/home/686.webp and b/static/sprites-small/home/686.webp differ diff --git a/static/sprites-small/home/687.webp b/static/sprites-small/home/687.webp index 27bfdf4..0010a4c 100644 Binary files a/static/sprites-small/home/687.webp and b/static/sprites-small/home/687.webp differ diff --git a/static/sprites-small/home/688.webp b/static/sprites-small/home/688.webp index c2041e1..e8fb60a 100644 Binary files a/static/sprites-small/home/688.webp and b/static/sprites-small/home/688.webp differ diff --git a/static/sprites-small/home/689.webp b/static/sprites-small/home/689.webp index 5e3bd1a..09fb046 100644 Binary files a/static/sprites-small/home/689.webp and b/static/sprites-small/home/689.webp differ diff --git a/static/sprites-small/home/69.webp b/static/sprites-small/home/69.webp index b76f4ff..ed3d1d9 100644 Binary files a/static/sprites-small/home/69.webp and b/static/sprites-small/home/69.webp differ diff --git a/static/sprites-small/home/690.webp b/static/sprites-small/home/690.webp index 8b05742..67f4541 100644 Binary files a/static/sprites-small/home/690.webp and b/static/sprites-small/home/690.webp differ diff --git a/static/sprites-small/home/691.webp b/static/sprites-small/home/691.webp index 990a533..1e19e6b 100644 Binary files a/static/sprites-small/home/691.webp and b/static/sprites-small/home/691.webp differ diff --git a/static/sprites-small/home/692.webp b/static/sprites-small/home/692.webp index dff3bc7..a7ce755 100644 Binary files a/static/sprites-small/home/692.webp and b/static/sprites-small/home/692.webp differ diff --git a/static/sprites-small/home/693.webp b/static/sprites-small/home/693.webp index 0bed8e8..b6207c0 100644 Binary files a/static/sprites-small/home/693.webp and b/static/sprites-small/home/693.webp differ diff --git a/static/sprites-small/home/694.webp b/static/sprites-small/home/694.webp index 5f820a3..101139c 100644 Binary files a/static/sprites-small/home/694.webp and b/static/sprites-small/home/694.webp differ diff --git a/static/sprites-small/home/695.webp b/static/sprites-small/home/695.webp index e720697..1fed6ba 100644 Binary files a/static/sprites-small/home/695.webp and b/static/sprites-small/home/695.webp differ diff --git a/static/sprites-small/home/696.webp b/static/sprites-small/home/696.webp index ec8811c..a783682 100644 Binary files a/static/sprites-small/home/696.webp and b/static/sprites-small/home/696.webp differ diff --git a/static/sprites-small/home/697.webp b/static/sprites-small/home/697.webp index e2e97b5..7bab80c 100644 Binary files a/static/sprites-small/home/697.webp and b/static/sprites-small/home/697.webp differ diff --git a/static/sprites-small/home/698.webp b/static/sprites-small/home/698.webp index babfa47..5fa0d42 100644 Binary files a/static/sprites-small/home/698.webp and b/static/sprites-small/home/698.webp differ diff --git a/static/sprites-small/home/699.webp b/static/sprites-small/home/699.webp index 0c5c936..4fa77e4 100644 Binary files a/static/sprites-small/home/699.webp and b/static/sprites-small/home/699.webp differ diff --git a/static/sprites-small/home/7.webp b/static/sprites-small/home/7.webp index c5066af..a7e7146 100644 Binary files a/static/sprites-small/home/7.webp and b/static/sprites-small/home/7.webp differ diff --git a/static/sprites-small/home/70.webp b/static/sprites-small/home/70.webp index 4d645ed..2368786 100644 Binary files a/static/sprites-small/home/70.webp and b/static/sprites-small/home/70.webp differ diff --git a/static/sprites-small/home/700.webp b/static/sprites-small/home/700.webp index 75d0ae1..559ef39 100644 Binary files a/static/sprites-small/home/700.webp and b/static/sprites-small/home/700.webp differ diff --git a/static/sprites-small/home/701.webp b/static/sprites-small/home/701.webp index c3340bd..fafa1d5 100644 Binary files a/static/sprites-small/home/701.webp and b/static/sprites-small/home/701.webp differ diff --git a/static/sprites-small/home/702.webp b/static/sprites-small/home/702.webp index f9a8d76..6f535a0 100644 Binary files a/static/sprites-small/home/702.webp and b/static/sprites-small/home/702.webp differ diff --git a/static/sprites-small/home/703.webp b/static/sprites-small/home/703.webp index b3b5c79..18f4440 100644 Binary files a/static/sprites-small/home/703.webp and b/static/sprites-small/home/703.webp differ diff --git a/static/sprites-small/home/704.webp b/static/sprites-small/home/704.webp index f726934..f0bf7b3 100644 Binary files a/static/sprites-small/home/704.webp and b/static/sprites-small/home/704.webp differ diff --git a/static/sprites-small/home/705.webp b/static/sprites-small/home/705.webp index b7141c7..a82c6d0 100644 Binary files a/static/sprites-small/home/705.webp and b/static/sprites-small/home/705.webp differ diff --git a/static/sprites-small/home/706.webp b/static/sprites-small/home/706.webp index d68bc89..44b9445 100644 Binary files a/static/sprites-small/home/706.webp and b/static/sprites-small/home/706.webp differ diff --git a/static/sprites-small/home/707.webp b/static/sprites-small/home/707.webp index 0d72df4..b3bd3a7 100644 Binary files a/static/sprites-small/home/707.webp and b/static/sprites-small/home/707.webp differ diff --git a/static/sprites-small/home/708.webp b/static/sprites-small/home/708.webp index d0fc750..7cfd7b2 100644 Binary files a/static/sprites-small/home/708.webp and b/static/sprites-small/home/708.webp differ diff --git a/static/sprites-small/home/709.webp b/static/sprites-small/home/709.webp index 6b30478..92aad73 100644 Binary files a/static/sprites-small/home/709.webp and b/static/sprites-small/home/709.webp differ diff --git a/static/sprites-small/home/71.webp b/static/sprites-small/home/71.webp index 3180e44..65128c3 100644 Binary files a/static/sprites-small/home/71.webp and b/static/sprites-small/home/71.webp differ diff --git a/static/sprites-small/home/710.webp b/static/sprites-small/home/710.webp index 7e9c58f..1631403 100644 Binary files a/static/sprites-small/home/710.webp and b/static/sprites-small/home/710.webp differ diff --git a/static/sprites-small/home/711.webp b/static/sprites-small/home/711.webp index bdd3004..ab5f37e 100644 Binary files a/static/sprites-small/home/711.webp and b/static/sprites-small/home/711.webp differ diff --git a/static/sprites-small/home/712.webp b/static/sprites-small/home/712.webp index 0025594..68f99b5 100644 Binary files a/static/sprites-small/home/712.webp and b/static/sprites-small/home/712.webp differ diff --git a/static/sprites-small/home/713.webp b/static/sprites-small/home/713.webp index e6db36e..5fa7afb 100644 Binary files a/static/sprites-small/home/713.webp and b/static/sprites-small/home/713.webp differ diff --git a/static/sprites-small/home/714.webp b/static/sprites-small/home/714.webp index a9fd6a2..fe9ef2a 100644 Binary files a/static/sprites-small/home/714.webp and b/static/sprites-small/home/714.webp differ diff --git a/static/sprites-small/home/715.webp b/static/sprites-small/home/715.webp index 6cb13bc..735be63 100644 Binary files a/static/sprites-small/home/715.webp and b/static/sprites-small/home/715.webp differ diff --git a/static/sprites-small/home/716-active.webp b/static/sprites-small/home/716-active.webp index 8efcd2c..a9204bf 100644 Binary files a/static/sprites-small/home/716-active.webp and b/static/sprites-small/home/716-active.webp differ diff --git a/static/sprites-small/home/716-neutral.webp b/static/sprites-small/home/716-neutral.webp index 48bf206..0a43b75 100644 Binary files a/static/sprites-small/home/716-neutral.webp and b/static/sprites-small/home/716-neutral.webp differ diff --git a/static/sprites-small/home/716.webp b/static/sprites-small/home/716.webp index 48bf206..0a43b75 100644 Binary files a/static/sprites-small/home/716.webp and b/static/sprites-small/home/716.webp differ diff --git a/static/sprites-small/home/717.webp b/static/sprites-small/home/717.webp index cad2eb9..c9d3146 100644 Binary files a/static/sprites-small/home/717.webp and b/static/sprites-small/home/717.webp differ diff --git a/static/sprites-small/home/718.webp b/static/sprites-small/home/718.webp index 46f61c1..b92397f 100644 Binary files a/static/sprites-small/home/718.webp and b/static/sprites-small/home/718.webp differ diff --git a/static/sprites-small/home/719.webp b/static/sprites-small/home/719.webp index 3cfc079..7b04b8e 100644 Binary files a/static/sprites-small/home/719.webp and b/static/sprites-small/home/719.webp differ diff --git a/static/sprites-small/home/72.webp b/static/sprites-small/home/72.webp index 6d977a5..a4ed148 100644 Binary files a/static/sprites-small/home/72.webp and b/static/sprites-small/home/72.webp differ diff --git a/static/sprites-small/home/720.webp b/static/sprites-small/home/720.webp index 0483969..503ea44 100644 Binary files a/static/sprites-small/home/720.webp and b/static/sprites-small/home/720.webp differ diff --git a/static/sprites-small/home/721.webp b/static/sprites-small/home/721.webp index 1857ae0..f6c24c0 100644 Binary files a/static/sprites-small/home/721.webp and b/static/sprites-small/home/721.webp differ diff --git a/static/sprites-small/home/722.webp b/static/sprites-small/home/722.webp index 4000b9c..f542e88 100644 Binary files a/static/sprites-small/home/722.webp and b/static/sprites-small/home/722.webp differ diff --git a/static/sprites-small/home/723.webp b/static/sprites-small/home/723.webp index 32b8493..7b5a1d1 100644 Binary files a/static/sprites-small/home/723.webp and b/static/sprites-small/home/723.webp differ diff --git a/static/sprites-small/home/724.webp b/static/sprites-small/home/724.webp index b6c2fff..4229811 100644 Binary files a/static/sprites-small/home/724.webp and b/static/sprites-small/home/724.webp differ diff --git a/static/sprites-small/home/725.webp b/static/sprites-small/home/725.webp index a0d1eee..b7ae289 100644 Binary files a/static/sprites-small/home/725.webp and b/static/sprites-small/home/725.webp differ diff --git a/static/sprites-small/home/726.webp b/static/sprites-small/home/726.webp index 73880ea..893ed50 100644 Binary files a/static/sprites-small/home/726.webp and b/static/sprites-small/home/726.webp differ diff --git a/static/sprites-small/home/727.webp b/static/sprites-small/home/727.webp index 7486107..78c4246 100644 Binary files a/static/sprites-small/home/727.webp and b/static/sprites-small/home/727.webp differ diff --git a/static/sprites-small/home/728.webp b/static/sprites-small/home/728.webp index b193ba2..6136218 100644 Binary files a/static/sprites-small/home/728.webp and b/static/sprites-small/home/728.webp differ diff --git a/static/sprites-small/home/729.webp b/static/sprites-small/home/729.webp index 66e8975..7c582ff 100644 Binary files a/static/sprites-small/home/729.webp and b/static/sprites-small/home/729.webp differ diff --git a/static/sprites-small/home/73.webp b/static/sprites-small/home/73.webp index 83334e0..488ac4c 100644 Binary files a/static/sprites-small/home/73.webp and b/static/sprites-small/home/73.webp differ diff --git a/static/sprites-small/home/730.webp b/static/sprites-small/home/730.webp index dbfd48c..ae0f58d 100644 Binary files a/static/sprites-small/home/730.webp and b/static/sprites-small/home/730.webp differ diff --git a/static/sprites-small/home/731.webp b/static/sprites-small/home/731.webp index d8dbf5e..06e2c40 100644 Binary files a/static/sprites-small/home/731.webp and b/static/sprites-small/home/731.webp differ diff --git a/static/sprites-small/home/732.webp b/static/sprites-small/home/732.webp index 42ef260..cee40de 100644 Binary files a/static/sprites-small/home/732.webp and b/static/sprites-small/home/732.webp differ diff --git a/static/sprites-small/home/733.webp b/static/sprites-small/home/733.webp index 9ee505e..114c43d 100644 Binary files a/static/sprites-small/home/733.webp and b/static/sprites-small/home/733.webp differ diff --git a/static/sprites-small/home/734.webp b/static/sprites-small/home/734.webp index ca8f0cc..e543890 100644 Binary files a/static/sprites-small/home/734.webp and b/static/sprites-small/home/734.webp differ diff --git a/static/sprites-small/home/735.webp b/static/sprites-small/home/735.webp index adbec02..30f9ed7 100644 Binary files a/static/sprites-small/home/735.webp and b/static/sprites-small/home/735.webp differ diff --git a/static/sprites-small/home/736.webp b/static/sprites-small/home/736.webp index c80d9d0..7aa1478 100644 Binary files a/static/sprites-small/home/736.webp and b/static/sprites-small/home/736.webp differ diff --git a/static/sprites-small/home/737.webp b/static/sprites-small/home/737.webp index b81037d..64be695 100644 Binary files a/static/sprites-small/home/737.webp and b/static/sprites-small/home/737.webp differ diff --git a/static/sprites-small/home/738.webp b/static/sprites-small/home/738.webp index e4efbc5..5edf89d 100644 Binary files a/static/sprites-small/home/738.webp and b/static/sprites-small/home/738.webp differ diff --git a/static/sprites-small/home/739.webp b/static/sprites-small/home/739.webp index 5c67f83..f5d9141 100644 Binary files a/static/sprites-small/home/739.webp and b/static/sprites-small/home/739.webp differ diff --git a/static/sprites-small/home/74.webp b/static/sprites-small/home/74.webp index 7ed33f7..fd94921 100644 Binary files a/static/sprites-small/home/74.webp and b/static/sprites-small/home/74.webp differ diff --git a/static/sprites-small/home/740.webp b/static/sprites-small/home/740.webp index a3663b8..bab1538 100644 Binary files a/static/sprites-small/home/740.webp and b/static/sprites-small/home/740.webp differ diff --git a/static/sprites-small/home/741.webp b/static/sprites-small/home/741.webp index 6c556df..bdbe3b1 100644 Binary files a/static/sprites-small/home/741.webp and b/static/sprites-small/home/741.webp differ diff --git a/static/sprites-small/home/742.webp b/static/sprites-small/home/742.webp index 2749c32..2607cb7 100644 Binary files a/static/sprites-small/home/742.webp and b/static/sprites-small/home/742.webp differ diff --git a/static/sprites-small/home/743.webp b/static/sprites-small/home/743.webp index 72df82b..7cdf37b 100644 Binary files a/static/sprites-small/home/743.webp and b/static/sprites-small/home/743.webp differ diff --git a/static/sprites-small/home/744.webp b/static/sprites-small/home/744.webp index 8bb6881..23b1d85 100644 Binary files a/static/sprites-small/home/744.webp and b/static/sprites-small/home/744.webp differ diff --git a/static/sprites-small/home/745.webp b/static/sprites-small/home/745.webp index 3944c59..e47fd05 100644 Binary files a/static/sprites-small/home/745.webp and b/static/sprites-small/home/745.webp differ diff --git a/static/sprites-small/home/746.webp b/static/sprites-small/home/746.webp index 44d0402..ccd0cde 100644 Binary files a/static/sprites-small/home/746.webp and b/static/sprites-small/home/746.webp differ diff --git a/static/sprites-small/home/747.webp b/static/sprites-small/home/747.webp index 739ba2c..42383d0 100644 Binary files a/static/sprites-small/home/747.webp and b/static/sprites-small/home/747.webp differ diff --git a/static/sprites-small/home/748.webp b/static/sprites-small/home/748.webp index d0cf9e7..eacde6c 100644 Binary files a/static/sprites-small/home/748.webp and b/static/sprites-small/home/748.webp differ diff --git a/static/sprites-small/home/749.webp b/static/sprites-small/home/749.webp index a25a99e..140897a 100644 Binary files a/static/sprites-small/home/749.webp and b/static/sprites-small/home/749.webp differ diff --git a/static/sprites-small/home/75.webp b/static/sprites-small/home/75.webp index 331e40b..4c974c0 100644 Binary files a/static/sprites-small/home/75.webp and b/static/sprites-small/home/75.webp differ diff --git a/static/sprites-small/home/750.webp b/static/sprites-small/home/750.webp index 180cb4b..b3fbd35 100644 Binary files a/static/sprites-small/home/750.webp and b/static/sprites-small/home/750.webp differ diff --git a/static/sprites-small/home/751.webp b/static/sprites-small/home/751.webp index 20685bd..f5fb11e 100644 Binary files a/static/sprites-small/home/751.webp and b/static/sprites-small/home/751.webp differ diff --git a/static/sprites-small/home/752.webp b/static/sprites-small/home/752.webp index 5309261..a9f95b7 100644 Binary files a/static/sprites-small/home/752.webp and b/static/sprites-small/home/752.webp differ diff --git a/static/sprites-small/home/753.webp b/static/sprites-small/home/753.webp index d56d581..7d215c3 100644 Binary files a/static/sprites-small/home/753.webp and b/static/sprites-small/home/753.webp differ diff --git a/static/sprites-small/home/754.webp b/static/sprites-small/home/754.webp index 48a4fd0..4e093b2 100644 Binary files a/static/sprites-small/home/754.webp and b/static/sprites-small/home/754.webp differ diff --git a/static/sprites-small/home/755.webp b/static/sprites-small/home/755.webp index abbdf6d..715a158 100644 Binary files a/static/sprites-small/home/755.webp and b/static/sprites-small/home/755.webp differ diff --git a/static/sprites-small/home/756.webp b/static/sprites-small/home/756.webp index 95ed242..3445b0a 100644 Binary files a/static/sprites-small/home/756.webp and b/static/sprites-small/home/756.webp differ diff --git a/static/sprites-small/home/757.webp b/static/sprites-small/home/757.webp index 1f049f6..693afeb 100644 Binary files a/static/sprites-small/home/757.webp and b/static/sprites-small/home/757.webp differ diff --git a/static/sprites-small/home/758.webp b/static/sprites-small/home/758.webp index 5b922fd..1106ed8 100644 Binary files a/static/sprites-small/home/758.webp and b/static/sprites-small/home/758.webp differ diff --git a/static/sprites-small/home/759.webp b/static/sprites-small/home/759.webp index 496b6b1..31fa69f 100644 Binary files a/static/sprites-small/home/759.webp and b/static/sprites-small/home/759.webp differ diff --git a/static/sprites-small/home/76.webp b/static/sprites-small/home/76.webp index b63bcf2..a2115b1 100644 Binary files a/static/sprites-small/home/76.webp and b/static/sprites-small/home/76.webp differ diff --git a/static/sprites-small/home/760.webp b/static/sprites-small/home/760.webp index fae4b0f..2514aa6 100644 Binary files a/static/sprites-small/home/760.webp and b/static/sprites-small/home/760.webp differ diff --git a/static/sprites-small/home/761.webp b/static/sprites-small/home/761.webp index bdc2418..947ef1d 100644 Binary files a/static/sprites-small/home/761.webp and b/static/sprites-small/home/761.webp differ diff --git a/static/sprites-small/home/762.webp b/static/sprites-small/home/762.webp index 8ff30fc..13cbc52 100644 Binary files a/static/sprites-small/home/762.webp and b/static/sprites-small/home/762.webp differ diff --git a/static/sprites-small/home/763.webp b/static/sprites-small/home/763.webp index d98f2d3..8595123 100644 Binary files a/static/sprites-small/home/763.webp and b/static/sprites-small/home/763.webp differ diff --git a/static/sprites-small/home/764.webp b/static/sprites-small/home/764.webp index f7d596b..7fca1a8 100644 Binary files a/static/sprites-small/home/764.webp and b/static/sprites-small/home/764.webp differ diff --git a/static/sprites-small/home/765.webp b/static/sprites-small/home/765.webp index de90f98..cacd05a 100644 Binary files a/static/sprites-small/home/765.webp and b/static/sprites-small/home/765.webp differ diff --git a/static/sprites-small/home/766.webp b/static/sprites-small/home/766.webp index 980d4f6..9f8a6e5 100644 Binary files a/static/sprites-small/home/766.webp and b/static/sprites-small/home/766.webp differ diff --git a/static/sprites-small/home/767.webp b/static/sprites-small/home/767.webp index aeb7d19..928032a 100644 Binary files a/static/sprites-small/home/767.webp and b/static/sprites-small/home/767.webp differ diff --git a/static/sprites-small/home/768.webp b/static/sprites-small/home/768.webp index c774d25..54ef86a 100644 Binary files a/static/sprites-small/home/768.webp and b/static/sprites-small/home/768.webp differ diff --git a/static/sprites-small/home/769.webp b/static/sprites-small/home/769.webp index 1bea699..6ec7217 100644 Binary files a/static/sprites-small/home/769.webp and b/static/sprites-small/home/769.webp differ diff --git a/static/sprites-small/home/77.webp b/static/sprites-small/home/77.webp index 32ab88e..3fda714 100644 Binary files a/static/sprites-small/home/77.webp and b/static/sprites-small/home/77.webp differ diff --git a/static/sprites-small/home/770.webp b/static/sprites-small/home/770.webp index ba53032..e068577 100644 Binary files a/static/sprites-small/home/770.webp and b/static/sprites-small/home/770.webp differ diff --git a/static/sprites-small/home/771.webp b/static/sprites-small/home/771.webp index 3be2c32..bd6cef9 100644 Binary files a/static/sprites-small/home/771.webp and b/static/sprites-small/home/771.webp differ diff --git a/static/sprites-small/home/772.webp b/static/sprites-small/home/772.webp index d5a0965..dc0ff93 100644 Binary files a/static/sprites-small/home/772.webp and b/static/sprites-small/home/772.webp differ diff --git a/static/sprites-small/home/773-bug.webp b/static/sprites-small/home/773-bug.webp index 1de72f2..c0f500f 100644 Binary files a/static/sprites-small/home/773-bug.webp and b/static/sprites-small/home/773-bug.webp differ diff --git a/static/sprites-small/home/773-dark.webp b/static/sprites-small/home/773-dark.webp index 2ca02f9..281915a 100644 Binary files a/static/sprites-small/home/773-dark.webp and b/static/sprites-small/home/773-dark.webp differ diff --git a/static/sprites-small/home/773-dragon.webp b/static/sprites-small/home/773-dragon.webp index 0b0da84..0451823 100644 Binary files a/static/sprites-small/home/773-dragon.webp and b/static/sprites-small/home/773-dragon.webp differ diff --git a/static/sprites-small/home/773-electric.webp b/static/sprites-small/home/773-electric.webp index 3065760..31b49d7 100644 Binary files a/static/sprites-small/home/773-electric.webp and b/static/sprites-small/home/773-electric.webp differ diff --git a/static/sprites-small/home/773-fairy.webp b/static/sprites-small/home/773-fairy.webp index 08c68e2..1801d57 100644 Binary files a/static/sprites-small/home/773-fairy.webp and b/static/sprites-small/home/773-fairy.webp differ diff --git a/static/sprites-small/home/773-fighting.webp b/static/sprites-small/home/773-fighting.webp index f468398..1474062 100644 Binary files a/static/sprites-small/home/773-fighting.webp and b/static/sprites-small/home/773-fighting.webp differ diff --git a/static/sprites-small/home/773-fire.webp b/static/sprites-small/home/773-fire.webp index 2056fd5..af3ab5b 100644 Binary files a/static/sprites-small/home/773-fire.webp and b/static/sprites-small/home/773-fire.webp differ diff --git a/static/sprites-small/home/773-flying.webp b/static/sprites-small/home/773-flying.webp index 3ab7cf1..2393d96 100644 Binary files a/static/sprites-small/home/773-flying.webp and b/static/sprites-small/home/773-flying.webp differ diff --git a/static/sprites-small/home/773-ghost.webp b/static/sprites-small/home/773-ghost.webp index a02ff18..915d905 100644 Binary files a/static/sprites-small/home/773-ghost.webp and b/static/sprites-small/home/773-ghost.webp differ diff --git a/static/sprites-small/home/773-grass.webp b/static/sprites-small/home/773-grass.webp index 13fae34..79ec5ad 100644 Binary files a/static/sprites-small/home/773-grass.webp and b/static/sprites-small/home/773-grass.webp differ diff --git a/static/sprites-small/home/773-ground.webp b/static/sprites-small/home/773-ground.webp index 671edf9..3fef385 100644 Binary files a/static/sprites-small/home/773-ground.webp and b/static/sprites-small/home/773-ground.webp differ diff --git a/static/sprites-small/home/773-ice.webp b/static/sprites-small/home/773-ice.webp index 4f7e5c1..fc25cdc 100644 Binary files a/static/sprites-small/home/773-ice.webp and b/static/sprites-small/home/773-ice.webp differ diff --git a/static/sprites-small/home/773-normal.webp b/static/sprites-small/home/773-normal.webp index 75d2483..a693ac5 100644 Binary files a/static/sprites-small/home/773-normal.webp and b/static/sprites-small/home/773-normal.webp differ diff --git a/static/sprites-small/home/773-poison.webp b/static/sprites-small/home/773-poison.webp index a1052a1..950eea6 100644 Binary files a/static/sprites-small/home/773-poison.webp and b/static/sprites-small/home/773-poison.webp differ diff --git a/static/sprites-small/home/773-psychic.webp b/static/sprites-small/home/773-psychic.webp index d1073af..33ee71b 100644 Binary files a/static/sprites-small/home/773-psychic.webp and b/static/sprites-small/home/773-psychic.webp differ diff --git a/static/sprites-small/home/773-rock.webp b/static/sprites-small/home/773-rock.webp index 3397f3d..c8e7564 100644 Binary files a/static/sprites-small/home/773-rock.webp and b/static/sprites-small/home/773-rock.webp differ diff --git a/static/sprites-small/home/773-steel.webp b/static/sprites-small/home/773-steel.webp index a899d1c..be627f7 100644 Binary files a/static/sprites-small/home/773-steel.webp and b/static/sprites-small/home/773-steel.webp differ diff --git a/static/sprites-small/home/773-water.webp b/static/sprites-small/home/773-water.webp index 7bda7c7..3153d36 100644 Binary files a/static/sprites-small/home/773-water.webp and b/static/sprites-small/home/773-water.webp differ diff --git a/static/sprites-small/home/773.webp b/static/sprites-small/home/773.webp index 75d2483..a693ac5 100644 Binary files a/static/sprites-small/home/773.webp and b/static/sprites-small/home/773.webp differ diff --git a/static/sprites-small/home/774.webp b/static/sprites-small/home/774.webp index b07f6fc..1caa480 100644 Binary files a/static/sprites-small/home/774.webp and b/static/sprites-small/home/774.webp differ diff --git a/static/sprites-small/home/775.webp b/static/sprites-small/home/775.webp index 538afee..cf31433 100644 Binary files a/static/sprites-small/home/775.webp and b/static/sprites-small/home/775.webp differ diff --git a/static/sprites-small/home/776.webp b/static/sprites-small/home/776.webp index aef8d3a..f528800 100644 Binary files a/static/sprites-small/home/776.webp and b/static/sprites-small/home/776.webp differ diff --git a/static/sprites-small/home/777.webp b/static/sprites-small/home/777.webp index cb9ad82..f3dc1ca 100644 Binary files a/static/sprites-small/home/777.webp and b/static/sprites-small/home/777.webp differ diff --git a/static/sprites-small/home/778.webp b/static/sprites-small/home/778.webp index e5afd32..e1bd093 100644 Binary files a/static/sprites-small/home/778.webp and b/static/sprites-small/home/778.webp differ diff --git a/static/sprites-small/home/779.webp b/static/sprites-small/home/779.webp index 69b0452..bbeb1ae 100644 Binary files a/static/sprites-small/home/779.webp and b/static/sprites-small/home/779.webp differ diff --git a/static/sprites-small/home/78.webp b/static/sprites-small/home/78.webp index ae92658..1a79892 100644 Binary files a/static/sprites-small/home/78.webp and b/static/sprites-small/home/78.webp differ diff --git a/static/sprites-small/home/780.webp b/static/sprites-small/home/780.webp index a983d0e..97c8db4 100644 Binary files a/static/sprites-small/home/780.webp and b/static/sprites-small/home/780.webp differ diff --git a/static/sprites-small/home/781.webp b/static/sprites-small/home/781.webp index be97b84..002f4f7 100644 Binary files a/static/sprites-small/home/781.webp and b/static/sprites-small/home/781.webp differ diff --git a/static/sprites-small/home/782.webp b/static/sprites-small/home/782.webp index ed9f841..3ef875d 100644 Binary files a/static/sprites-small/home/782.webp and b/static/sprites-small/home/782.webp differ diff --git a/static/sprites-small/home/783.webp b/static/sprites-small/home/783.webp index c8c54b9..e6c5d40 100644 Binary files a/static/sprites-small/home/783.webp and b/static/sprites-small/home/783.webp differ diff --git a/static/sprites-small/home/784.webp b/static/sprites-small/home/784.webp index 97a86a5..eede015 100644 Binary files a/static/sprites-small/home/784.webp and b/static/sprites-small/home/784.webp differ diff --git a/static/sprites-small/home/785.webp b/static/sprites-small/home/785.webp index 6ca8ac6..c4c071e 100644 Binary files a/static/sprites-small/home/785.webp and b/static/sprites-small/home/785.webp differ diff --git a/static/sprites-small/home/786.webp b/static/sprites-small/home/786.webp index 2d5108c..2908125 100644 Binary files a/static/sprites-small/home/786.webp and b/static/sprites-small/home/786.webp differ diff --git a/static/sprites-small/home/787.webp b/static/sprites-small/home/787.webp index fd6d19b..a1b9fe1 100644 Binary files a/static/sprites-small/home/787.webp and b/static/sprites-small/home/787.webp differ diff --git a/static/sprites-small/home/788.webp b/static/sprites-small/home/788.webp index 81f128c..0a30778 100644 Binary files a/static/sprites-small/home/788.webp and b/static/sprites-small/home/788.webp differ diff --git a/static/sprites-small/home/789.webp b/static/sprites-small/home/789.webp index 043c75c..9076859 100644 Binary files a/static/sprites-small/home/789.webp and b/static/sprites-small/home/789.webp differ diff --git a/static/sprites-small/home/79.webp b/static/sprites-small/home/79.webp index 04beec8..6342172 100644 Binary files a/static/sprites-small/home/79.webp and b/static/sprites-small/home/79.webp differ diff --git a/static/sprites-small/home/790.webp b/static/sprites-small/home/790.webp index 13b19d3..c230133 100644 Binary files a/static/sprites-small/home/790.webp and b/static/sprites-small/home/790.webp differ diff --git a/static/sprites-small/home/791.webp b/static/sprites-small/home/791.webp index e5c697b..5c90058 100644 Binary files a/static/sprites-small/home/791.webp and b/static/sprites-small/home/791.webp differ diff --git a/static/sprites-small/home/792.webp b/static/sprites-small/home/792.webp index 9972fab..82d90be 100644 Binary files a/static/sprites-small/home/792.webp and b/static/sprites-small/home/792.webp differ diff --git a/static/sprites-small/home/793.webp b/static/sprites-small/home/793.webp index 45adaaa..7d38515 100644 Binary files a/static/sprites-small/home/793.webp and b/static/sprites-small/home/793.webp differ diff --git a/static/sprites-small/home/794.webp b/static/sprites-small/home/794.webp index f415253..2c17bf7 100644 Binary files a/static/sprites-small/home/794.webp and b/static/sprites-small/home/794.webp differ diff --git a/static/sprites-small/home/795.webp b/static/sprites-small/home/795.webp index 4c899bb..f83a51f 100644 Binary files a/static/sprites-small/home/795.webp and b/static/sprites-small/home/795.webp differ diff --git a/static/sprites-small/home/796.webp b/static/sprites-small/home/796.webp index c605963..9eff1ad 100644 Binary files a/static/sprites-small/home/796.webp and b/static/sprites-small/home/796.webp differ diff --git a/static/sprites-small/home/797.webp b/static/sprites-small/home/797.webp index 0b2c332..2490dc7 100644 Binary files a/static/sprites-small/home/797.webp and b/static/sprites-small/home/797.webp differ diff --git a/static/sprites-small/home/798.webp b/static/sprites-small/home/798.webp index 7c500f7..2ca52d4 100644 Binary files a/static/sprites-small/home/798.webp and b/static/sprites-small/home/798.webp differ diff --git a/static/sprites-small/home/799.webp b/static/sprites-small/home/799.webp index 63fd459..25e04cd 100644 Binary files a/static/sprites-small/home/799.webp and b/static/sprites-small/home/799.webp differ diff --git a/static/sprites-small/home/8.webp b/static/sprites-small/home/8.webp index 3d5b362..b38fe9f 100644 Binary files a/static/sprites-small/home/8.webp and b/static/sprites-small/home/8.webp differ diff --git a/static/sprites-small/home/80.webp b/static/sprites-small/home/80.webp index 791bc18..2766781 100644 Binary files a/static/sprites-small/home/80.webp and b/static/sprites-small/home/80.webp differ diff --git a/static/sprites-small/home/800.webp b/static/sprites-small/home/800.webp index 7cd0915..f4488b2 100644 Binary files a/static/sprites-small/home/800.webp and b/static/sprites-small/home/800.webp differ diff --git a/static/sprites-small/home/801.webp b/static/sprites-small/home/801.webp index 41f79d2..36fab01 100644 Binary files a/static/sprites-small/home/801.webp and b/static/sprites-small/home/801.webp differ diff --git a/static/sprites-small/home/802.webp b/static/sprites-small/home/802.webp index cb0e1ff..d987bed 100644 Binary files a/static/sprites-small/home/802.webp and b/static/sprites-small/home/802.webp differ diff --git a/static/sprites-small/home/803.webp b/static/sprites-small/home/803.webp index 0352464..743d17a 100644 Binary files a/static/sprites-small/home/803.webp and b/static/sprites-small/home/803.webp differ diff --git a/static/sprites-small/home/804.webp b/static/sprites-small/home/804.webp index 3bd6ef6..0656f7d 100644 Binary files a/static/sprites-small/home/804.webp and b/static/sprites-small/home/804.webp differ diff --git a/static/sprites-small/home/805.webp b/static/sprites-small/home/805.webp index 975d474..ae0f5dc 100644 Binary files a/static/sprites-small/home/805.webp and b/static/sprites-small/home/805.webp differ diff --git a/static/sprites-small/home/806.webp b/static/sprites-small/home/806.webp index 8b241f9..30d454e 100644 Binary files a/static/sprites-small/home/806.webp and b/static/sprites-small/home/806.webp differ diff --git a/static/sprites-small/home/807.webp b/static/sprites-small/home/807.webp index 0aa1853..5edcc40 100644 Binary files a/static/sprites-small/home/807.webp and b/static/sprites-small/home/807.webp differ diff --git a/static/sprites-small/home/808.webp b/static/sprites-small/home/808.webp index b9869a6..d430bfb 100644 Binary files a/static/sprites-small/home/808.webp and b/static/sprites-small/home/808.webp differ diff --git a/static/sprites-small/home/809.webp b/static/sprites-small/home/809.webp index 6a35279..40c0ffd 100644 Binary files a/static/sprites-small/home/809.webp and b/static/sprites-small/home/809.webp differ diff --git a/static/sprites-small/home/81.webp b/static/sprites-small/home/81.webp index 772f6b0..e1b7ee5 100644 Binary files a/static/sprites-small/home/81.webp and b/static/sprites-small/home/81.webp differ diff --git a/static/sprites-small/home/810.webp b/static/sprites-small/home/810.webp index c49527b..e0af8ff 100644 Binary files a/static/sprites-small/home/810.webp and b/static/sprites-small/home/810.webp differ diff --git a/static/sprites-small/home/811.webp b/static/sprites-small/home/811.webp index f0abc23..2ac8fea 100644 Binary files a/static/sprites-small/home/811.webp and b/static/sprites-small/home/811.webp differ diff --git a/static/sprites-small/home/812.webp b/static/sprites-small/home/812.webp index 466affe..026a1bd 100644 Binary files a/static/sprites-small/home/812.webp and b/static/sprites-small/home/812.webp differ diff --git a/static/sprites-small/home/813.webp b/static/sprites-small/home/813.webp index ac5b2d3..455151f 100644 Binary files a/static/sprites-small/home/813.webp and b/static/sprites-small/home/813.webp differ diff --git a/static/sprites-small/home/814.webp b/static/sprites-small/home/814.webp index 7c9035b..bbe9af4 100644 Binary files a/static/sprites-small/home/814.webp and b/static/sprites-small/home/814.webp differ diff --git a/static/sprites-small/home/815.webp b/static/sprites-small/home/815.webp index bbbfd90..70ebc2a 100644 Binary files a/static/sprites-small/home/815.webp and b/static/sprites-small/home/815.webp differ diff --git a/static/sprites-small/home/816.webp b/static/sprites-small/home/816.webp index af58085..b047c3d 100644 Binary files a/static/sprites-small/home/816.webp and b/static/sprites-small/home/816.webp differ diff --git a/static/sprites-small/home/817.webp b/static/sprites-small/home/817.webp index 18ce2c3..c1acd6e 100644 Binary files a/static/sprites-small/home/817.webp and b/static/sprites-small/home/817.webp differ diff --git a/static/sprites-small/home/818.webp b/static/sprites-small/home/818.webp index 87e0ca3..429fe63 100644 Binary files a/static/sprites-small/home/818.webp and b/static/sprites-small/home/818.webp differ diff --git a/static/sprites-small/home/819.webp b/static/sprites-small/home/819.webp index fca116e..00d9104 100644 Binary files a/static/sprites-small/home/819.webp and b/static/sprites-small/home/819.webp differ diff --git a/static/sprites-small/home/82.webp b/static/sprites-small/home/82.webp index adac8ef..4dc74df 100644 Binary files a/static/sprites-small/home/82.webp and b/static/sprites-small/home/82.webp differ diff --git a/static/sprites-small/home/820.webp b/static/sprites-small/home/820.webp index 9288a68..20ba0b4 100644 Binary files a/static/sprites-small/home/820.webp and b/static/sprites-small/home/820.webp differ diff --git a/static/sprites-small/home/821.webp b/static/sprites-small/home/821.webp index e25677e..1d9c019 100644 Binary files a/static/sprites-small/home/821.webp and b/static/sprites-small/home/821.webp differ diff --git a/static/sprites-small/home/822.webp b/static/sprites-small/home/822.webp index 21857c4..dc8b0fb 100644 Binary files a/static/sprites-small/home/822.webp and b/static/sprites-small/home/822.webp differ diff --git a/static/sprites-small/home/823.webp b/static/sprites-small/home/823.webp index 642e866..73ca8cd 100644 Binary files a/static/sprites-small/home/823.webp and b/static/sprites-small/home/823.webp differ diff --git a/static/sprites-small/home/824.webp b/static/sprites-small/home/824.webp index 47dcdaf..98311b4 100644 Binary files a/static/sprites-small/home/824.webp and b/static/sprites-small/home/824.webp differ diff --git a/static/sprites-small/home/825.webp b/static/sprites-small/home/825.webp index 4a0b8bc..c5e50bf 100644 Binary files a/static/sprites-small/home/825.webp and b/static/sprites-small/home/825.webp differ diff --git a/static/sprites-small/home/826.webp b/static/sprites-small/home/826.webp index 2de6c8c..a8be513 100644 Binary files a/static/sprites-small/home/826.webp and b/static/sprites-small/home/826.webp differ diff --git a/static/sprites-small/home/827.webp b/static/sprites-small/home/827.webp index 09581e5..bc03000 100644 Binary files a/static/sprites-small/home/827.webp and b/static/sprites-small/home/827.webp differ diff --git a/static/sprites-small/home/828.webp b/static/sprites-small/home/828.webp index 27205e1..fe55464 100644 Binary files a/static/sprites-small/home/828.webp and b/static/sprites-small/home/828.webp differ diff --git a/static/sprites-small/home/829.webp b/static/sprites-small/home/829.webp index 337f904..9cf0b3b 100644 Binary files a/static/sprites-small/home/829.webp and b/static/sprites-small/home/829.webp differ diff --git a/static/sprites-small/home/83.webp b/static/sprites-small/home/83.webp index 92693c4..9efe3e5 100644 Binary files a/static/sprites-small/home/83.webp and b/static/sprites-small/home/83.webp differ diff --git a/static/sprites-small/home/830.webp b/static/sprites-small/home/830.webp index 18633f1..11c15f6 100644 Binary files a/static/sprites-small/home/830.webp and b/static/sprites-small/home/830.webp differ diff --git a/static/sprites-small/home/831.webp b/static/sprites-small/home/831.webp index 10bf861..f0ce39c 100644 Binary files a/static/sprites-small/home/831.webp and b/static/sprites-small/home/831.webp differ diff --git a/static/sprites-small/home/832.webp b/static/sprites-small/home/832.webp index d1f6377..08192b3 100644 Binary files a/static/sprites-small/home/832.webp and b/static/sprites-small/home/832.webp differ diff --git a/static/sprites-small/home/833.webp b/static/sprites-small/home/833.webp index ad9c715..5501e94 100644 Binary files a/static/sprites-small/home/833.webp and b/static/sprites-small/home/833.webp differ diff --git a/static/sprites-small/home/834.webp b/static/sprites-small/home/834.webp index 155a350..c573c5c 100644 Binary files a/static/sprites-small/home/834.webp and b/static/sprites-small/home/834.webp differ diff --git a/static/sprites-small/home/835.webp b/static/sprites-small/home/835.webp index f419986..267bd07 100644 Binary files a/static/sprites-small/home/835.webp and b/static/sprites-small/home/835.webp differ diff --git a/static/sprites-small/home/836.webp b/static/sprites-small/home/836.webp index 80e32e3..9f7d3d0 100644 Binary files a/static/sprites-small/home/836.webp and b/static/sprites-small/home/836.webp differ diff --git a/static/sprites-small/home/837.webp b/static/sprites-small/home/837.webp index 690832a..eaa5fb8 100644 Binary files a/static/sprites-small/home/837.webp and b/static/sprites-small/home/837.webp differ diff --git a/static/sprites-small/home/838.webp b/static/sprites-small/home/838.webp index 05daae4..451220a 100644 Binary files a/static/sprites-small/home/838.webp and b/static/sprites-small/home/838.webp differ diff --git a/static/sprites-small/home/839.webp b/static/sprites-small/home/839.webp index 10c3238..c58efea 100644 Binary files a/static/sprites-small/home/839.webp and b/static/sprites-small/home/839.webp differ diff --git a/static/sprites-small/home/84.webp b/static/sprites-small/home/84.webp index 6833716..6378c14 100644 Binary files a/static/sprites-small/home/84.webp and b/static/sprites-small/home/84.webp differ diff --git a/static/sprites-small/home/840.webp b/static/sprites-small/home/840.webp index 023e0d8..b5b3975 100644 Binary files a/static/sprites-small/home/840.webp and b/static/sprites-small/home/840.webp differ diff --git a/static/sprites-small/home/841.webp b/static/sprites-small/home/841.webp index b26ee63..206dbc8 100644 Binary files a/static/sprites-small/home/841.webp and b/static/sprites-small/home/841.webp differ diff --git a/static/sprites-small/home/842.webp b/static/sprites-small/home/842.webp index f78bbcf..961c61f 100644 Binary files a/static/sprites-small/home/842.webp and b/static/sprites-small/home/842.webp differ diff --git a/static/sprites-small/home/843.webp b/static/sprites-small/home/843.webp index 7107013..65af104 100644 Binary files a/static/sprites-small/home/843.webp and b/static/sprites-small/home/843.webp differ diff --git a/static/sprites-small/home/844.webp b/static/sprites-small/home/844.webp index 2fc57eb..b8b528f 100644 Binary files a/static/sprites-small/home/844.webp and b/static/sprites-small/home/844.webp differ diff --git a/static/sprites-small/home/845-gorging.webp b/static/sprites-small/home/845-gorging.webp index e6bb08b..5584aa4 100644 Binary files a/static/sprites-small/home/845-gorging.webp and b/static/sprites-small/home/845-gorging.webp differ diff --git a/static/sprites-small/home/845-gulping.webp b/static/sprites-small/home/845-gulping.webp index bc972ba..0938f58 100644 Binary files a/static/sprites-small/home/845-gulping.webp and b/static/sprites-small/home/845-gulping.webp differ diff --git a/static/sprites-small/home/845.webp b/static/sprites-small/home/845.webp index e08b170..82b5f73 100644 Binary files a/static/sprites-small/home/845.webp and b/static/sprites-small/home/845.webp differ diff --git a/static/sprites-small/home/846.webp b/static/sprites-small/home/846.webp index aad1636..37b09a5 100644 Binary files a/static/sprites-small/home/846.webp and b/static/sprites-small/home/846.webp differ diff --git a/static/sprites-small/home/847.webp b/static/sprites-small/home/847.webp index 023f9dc..243d0e4 100644 Binary files a/static/sprites-small/home/847.webp and b/static/sprites-small/home/847.webp differ diff --git a/static/sprites-small/home/848.webp b/static/sprites-small/home/848.webp index d1deefc..fece19f 100644 Binary files a/static/sprites-small/home/848.webp and b/static/sprites-small/home/848.webp differ diff --git a/static/sprites-small/home/849.webp b/static/sprites-small/home/849.webp index b6f5462..7eb3e13 100644 Binary files a/static/sprites-small/home/849.webp and b/static/sprites-small/home/849.webp differ diff --git a/static/sprites-small/home/85.webp b/static/sprites-small/home/85.webp index c5c124a..e2d751b 100644 Binary files a/static/sprites-small/home/85.webp and b/static/sprites-small/home/85.webp differ diff --git a/static/sprites-small/home/850.webp b/static/sprites-small/home/850.webp index 97d8d42..25fe14c 100644 Binary files a/static/sprites-small/home/850.webp and b/static/sprites-small/home/850.webp differ diff --git a/static/sprites-small/home/851.webp b/static/sprites-small/home/851.webp index b0d0941..ed34028 100644 Binary files a/static/sprites-small/home/851.webp and b/static/sprites-small/home/851.webp differ diff --git a/static/sprites-small/home/852.webp b/static/sprites-small/home/852.webp index dd81699..f39727c 100644 Binary files a/static/sprites-small/home/852.webp and b/static/sprites-small/home/852.webp differ diff --git a/static/sprites-small/home/853.webp b/static/sprites-small/home/853.webp index d3a191d..7a35fac 100644 Binary files a/static/sprites-small/home/853.webp and b/static/sprites-small/home/853.webp differ diff --git a/static/sprites-small/home/854.webp b/static/sprites-small/home/854.webp index 93e30f6..8c9d1a9 100644 Binary files a/static/sprites-small/home/854.webp and b/static/sprites-small/home/854.webp differ diff --git a/static/sprites-small/home/855.webp b/static/sprites-small/home/855.webp index f1a3634..0f69f90 100644 Binary files a/static/sprites-small/home/855.webp and b/static/sprites-small/home/855.webp differ diff --git a/static/sprites-small/home/856.webp b/static/sprites-small/home/856.webp index 75e3d29..b62c262 100644 Binary files a/static/sprites-small/home/856.webp and b/static/sprites-small/home/856.webp differ diff --git a/static/sprites-small/home/857.webp b/static/sprites-small/home/857.webp index 2a2509a..c8c4290 100644 Binary files a/static/sprites-small/home/857.webp and b/static/sprites-small/home/857.webp differ diff --git a/static/sprites-small/home/858.webp b/static/sprites-small/home/858.webp index 9c31c83..6cca28d 100644 Binary files a/static/sprites-small/home/858.webp and b/static/sprites-small/home/858.webp differ diff --git a/static/sprites-small/home/859.webp b/static/sprites-small/home/859.webp index 83f0ca3..c0672c5 100644 Binary files a/static/sprites-small/home/859.webp and b/static/sprites-small/home/859.webp differ diff --git a/static/sprites-small/home/86.webp b/static/sprites-small/home/86.webp index e95e7cc..807c2b6 100644 Binary files a/static/sprites-small/home/86.webp and b/static/sprites-small/home/86.webp differ diff --git a/static/sprites-small/home/860.webp b/static/sprites-small/home/860.webp index 7397458..efcd30f 100644 Binary files a/static/sprites-small/home/860.webp and b/static/sprites-small/home/860.webp differ diff --git a/static/sprites-small/home/861.webp b/static/sprites-small/home/861.webp index ca1ed8e..17256b2 100644 Binary files a/static/sprites-small/home/861.webp and b/static/sprites-small/home/861.webp differ diff --git a/static/sprites-small/home/862.webp b/static/sprites-small/home/862.webp index 02304d0..4ab3a8a 100644 Binary files a/static/sprites-small/home/862.webp and b/static/sprites-small/home/862.webp differ diff --git a/static/sprites-small/home/863.webp b/static/sprites-small/home/863.webp index 4666dc5..9c4b134 100644 Binary files a/static/sprites-small/home/863.webp and b/static/sprites-small/home/863.webp differ diff --git a/static/sprites-small/home/864.webp b/static/sprites-small/home/864.webp index a70efc9..cb19b22 100644 Binary files a/static/sprites-small/home/864.webp and b/static/sprites-small/home/864.webp differ diff --git a/static/sprites-small/home/865.webp b/static/sprites-small/home/865.webp index 79f8a29..447fb2d 100644 Binary files a/static/sprites-small/home/865.webp and b/static/sprites-small/home/865.webp differ diff --git a/static/sprites-small/home/866.webp b/static/sprites-small/home/866.webp index a9dba49..645affc 100644 Binary files a/static/sprites-small/home/866.webp and b/static/sprites-small/home/866.webp differ diff --git a/static/sprites-small/home/867.webp b/static/sprites-small/home/867.webp index 3232f20..6a68cbc 100644 Binary files a/static/sprites-small/home/867.webp and b/static/sprites-small/home/867.webp differ diff --git a/static/sprites-small/home/868.webp b/static/sprites-small/home/868.webp index 326510f..f09ccdc 100644 Binary files a/static/sprites-small/home/868.webp and b/static/sprites-small/home/868.webp differ diff --git a/static/sprites-small/home/869-caramel-swirl-berry-sweet.webp b/static/sprites-small/home/869-caramel-swirl-berry-sweet.webp index b9af36c..560164b 100644 Binary files a/static/sprites-small/home/869-caramel-swirl-berry-sweet.webp and b/static/sprites-small/home/869-caramel-swirl-berry-sweet.webp differ diff --git a/static/sprites-small/home/869-caramel-swirl-clover-sweet.webp b/static/sprites-small/home/869-caramel-swirl-clover-sweet.webp index e80909e..6066bc7 100644 Binary files a/static/sprites-small/home/869-caramel-swirl-clover-sweet.webp and b/static/sprites-small/home/869-caramel-swirl-clover-sweet.webp differ diff --git a/static/sprites-small/home/869-caramel-swirl-flower-sweet.webp b/static/sprites-small/home/869-caramel-swirl-flower-sweet.webp index f51ff36..78bc36f 100644 Binary files a/static/sprites-small/home/869-caramel-swirl-flower-sweet.webp and b/static/sprites-small/home/869-caramel-swirl-flower-sweet.webp differ diff --git a/static/sprites-small/home/869-caramel-swirl-love-sweet.webp b/static/sprites-small/home/869-caramel-swirl-love-sweet.webp index cc99008..c916b3c 100644 Binary files a/static/sprites-small/home/869-caramel-swirl-love-sweet.webp and b/static/sprites-small/home/869-caramel-swirl-love-sweet.webp differ diff --git a/static/sprites-small/home/869-caramel-swirl-ribbon-sweet.webp b/static/sprites-small/home/869-caramel-swirl-ribbon-sweet.webp index 4f4f9c4..5f12b49 100644 Binary files a/static/sprites-small/home/869-caramel-swirl-ribbon-sweet.webp and b/static/sprites-small/home/869-caramel-swirl-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/869-caramel-swirl-star-sweet.webp b/static/sprites-small/home/869-caramel-swirl-star-sweet.webp index 6c3f545..82be0a5 100644 Binary files a/static/sprites-small/home/869-caramel-swirl-star-sweet.webp and b/static/sprites-small/home/869-caramel-swirl-star-sweet.webp differ diff --git a/static/sprites-small/home/869-caramel-swirl-strawberry-sweet.webp b/static/sprites-small/home/869-caramel-swirl-strawberry-sweet.webp index 3ea52c3..e5f7148 100644 Binary files a/static/sprites-small/home/869-caramel-swirl-strawberry-sweet.webp and b/static/sprites-small/home/869-caramel-swirl-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/869-lemon-cream-berry-sweet.webp b/static/sprites-small/home/869-lemon-cream-berry-sweet.webp index 6e18ed2..26712df 100644 Binary files a/static/sprites-small/home/869-lemon-cream-berry-sweet.webp and b/static/sprites-small/home/869-lemon-cream-berry-sweet.webp differ diff --git a/static/sprites-small/home/869-lemon-cream-clover-sweet.webp b/static/sprites-small/home/869-lemon-cream-clover-sweet.webp index f8e5672..cfd86b7 100644 Binary files a/static/sprites-small/home/869-lemon-cream-clover-sweet.webp and b/static/sprites-small/home/869-lemon-cream-clover-sweet.webp differ diff --git a/static/sprites-small/home/869-lemon-cream-flower-sweet.webp b/static/sprites-small/home/869-lemon-cream-flower-sweet.webp index 28a8a62..e2e531b 100644 Binary files a/static/sprites-small/home/869-lemon-cream-flower-sweet.webp and b/static/sprites-small/home/869-lemon-cream-flower-sweet.webp differ diff --git a/static/sprites-small/home/869-lemon-cream-love-sweet.webp b/static/sprites-small/home/869-lemon-cream-love-sweet.webp index 37f56f3..07f06d6 100644 Binary files a/static/sprites-small/home/869-lemon-cream-love-sweet.webp and b/static/sprites-small/home/869-lemon-cream-love-sweet.webp differ diff --git a/static/sprites-small/home/869-lemon-cream-ribbon-sweet.webp b/static/sprites-small/home/869-lemon-cream-ribbon-sweet.webp index b757f12..706f4dc 100644 Binary files a/static/sprites-small/home/869-lemon-cream-ribbon-sweet.webp and b/static/sprites-small/home/869-lemon-cream-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/869-lemon-cream-star-sweet.webp b/static/sprites-small/home/869-lemon-cream-star-sweet.webp index f6537d1..4bd4ebf 100644 Binary files a/static/sprites-small/home/869-lemon-cream-star-sweet.webp and b/static/sprites-small/home/869-lemon-cream-star-sweet.webp differ diff --git a/static/sprites-small/home/869-lemon-cream-strawberry-sweet.webp b/static/sprites-small/home/869-lemon-cream-strawberry-sweet.webp index 8d2dd35..54e6198 100644 Binary files a/static/sprites-small/home/869-lemon-cream-strawberry-sweet.webp and b/static/sprites-small/home/869-lemon-cream-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/869-matcha-cream-berry-sweet.webp b/static/sprites-small/home/869-matcha-cream-berry-sweet.webp index b4cc111..ebf64ab 100644 Binary files a/static/sprites-small/home/869-matcha-cream-berry-sweet.webp and b/static/sprites-small/home/869-matcha-cream-berry-sweet.webp differ diff --git a/static/sprites-small/home/869-matcha-cream-clover-sweet.webp b/static/sprites-small/home/869-matcha-cream-clover-sweet.webp index d0109ad..0415c2d 100644 Binary files a/static/sprites-small/home/869-matcha-cream-clover-sweet.webp and b/static/sprites-small/home/869-matcha-cream-clover-sweet.webp differ diff --git a/static/sprites-small/home/869-matcha-cream-flower-sweet.webp b/static/sprites-small/home/869-matcha-cream-flower-sweet.webp index 8c2bf21..8cbe89a 100644 Binary files a/static/sprites-small/home/869-matcha-cream-flower-sweet.webp and b/static/sprites-small/home/869-matcha-cream-flower-sweet.webp differ diff --git a/static/sprites-small/home/869-matcha-cream-love-sweet.webp b/static/sprites-small/home/869-matcha-cream-love-sweet.webp index 76fb846..7161b37 100644 Binary files a/static/sprites-small/home/869-matcha-cream-love-sweet.webp and b/static/sprites-small/home/869-matcha-cream-love-sweet.webp differ diff --git a/static/sprites-small/home/869-matcha-cream-ribbon-sweet.webp b/static/sprites-small/home/869-matcha-cream-ribbon-sweet.webp index b1f477d..8da5c7e 100644 Binary files a/static/sprites-small/home/869-matcha-cream-ribbon-sweet.webp and b/static/sprites-small/home/869-matcha-cream-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/869-matcha-cream-star-sweet.webp b/static/sprites-small/home/869-matcha-cream-star-sweet.webp index 246155a..cd5f455 100644 Binary files a/static/sprites-small/home/869-matcha-cream-star-sweet.webp and b/static/sprites-small/home/869-matcha-cream-star-sweet.webp differ diff --git a/static/sprites-small/home/869-matcha-cream-strawberry-sweet.webp b/static/sprites-small/home/869-matcha-cream-strawberry-sweet.webp index 08dcd86..213c100 100644 Binary files a/static/sprites-small/home/869-matcha-cream-strawberry-sweet.webp and b/static/sprites-small/home/869-matcha-cream-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/869-mint-cream-berry-sweet.webp b/static/sprites-small/home/869-mint-cream-berry-sweet.webp index 548ecac..ab6123f 100644 Binary files a/static/sprites-small/home/869-mint-cream-berry-sweet.webp and b/static/sprites-small/home/869-mint-cream-berry-sweet.webp differ diff --git a/static/sprites-small/home/869-mint-cream-clover-sweet.webp b/static/sprites-small/home/869-mint-cream-clover-sweet.webp index fdf8b73..e588e81 100644 Binary files a/static/sprites-small/home/869-mint-cream-clover-sweet.webp and b/static/sprites-small/home/869-mint-cream-clover-sweet.webp differ diff --git a/static/sprites-small/home/869-mint-cream-flower-sweet.webp b/static/sprites-small/home/869-mint-cream-flower-sweet.webp index 93f3617..062550e 100644 Binary files a/static/sprites-small/home/869-mint-cream-flower-sweet.webp and b/static/sprites-small/home/869-mint-cream-flower-sweet.webp differ diff --git a/static/sprites-small/home/869-mint-cream-love-sweet.webp b/static/sprites-small/home/869-mint-cream-love-sweet.webp index 75d6965..faaead8 100644 Binary files a/static/sprites-small/home/869-mint-cream-love-sweet.webp and b/static/sprites-small/home/869-mint-cream-love-sweet.webp differ diff --git a/static/sprites-small/home/869-mint-cream-ribbon-sweet.webp b/static/sprites-small/home/869-mint-cream-ribbon-sweet.webp index 5485f27..bd74b8b 100644 Binary files a/static/sprites-small/home/869-mint-cream-ribbon-sweet.webp and b/static/sprites-small/home/869-mint-cream-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/869-mint-cream-star-sweet.webp b/static/sprites-small/home/869-mint-cream-star-sweet.webp index 6dd164e..9ff89f2 100644 Binary files a/static/sprites-small/home/869-mint-cream-star-sweet.webp and b/static/sprites-small/home/869-mint-cream-star-sweet.webp differ diff --git a/static/sprites-small/home/869-mint-cream-strawberry-sweet.webp b/static/sprites-small/home/869-mint-cream-strawberry-sweet.webp index d84ba4e..3d93c1d 100644 Binary files a/static/sprites-small/home/869-mint-cream-strawberry-sweet.webp and b/static/sprites-small/home/869-mint-cream-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/869-rainbow-swirl-berry-sweet.webp b/static/sprites-small/home/869-rainbow-swirl-berry-sweet.webp index aa77419..82914f4 100644 Binary files a/static/sprites-small/home/869-rainbow-swirl-berry-sweet.webp and b/static/sprites-small/home/869-rainbow-swirl-berry-sweet.webp differ diff --git a/static/sprites-small/home/869-rainbow-swirl-clover-sweet.webp b/static/sprites-small/home/869-rainbow-swirl-clover-sweet.webp index 0061028..3deeadb 100644 Binary files a/static/sprites-small/home/869-rainbow-swirl-clover-sweet.webp and b/static/sprites-small/home/869-rainbow-swirl-clover-sweet.webp differ diff --git a/static/sprites-small/home/869-rainbow-swirl-flower-sweet.webp b/static/sprites-small/home/869-rainbow-swirl-flower-sweet.webp index 1bf0cec..7bc3cb9 100644 Binary files a/static/sprites-small/home/869-rainbow-swirl-flower-sweet.webp and b/static/sprites-small/home/869-rainbow-swirl-flower-sweet.webp differ diff --git a/static/sprites-small/home/869-rainbow-swirl-love-sweet.webp b/static/sprites-small/home/869-rainbow-swirl-love-sweet.webp index 0db8da8..fa34dfa 100644 Binary files a/static/sprites-small/home/869-rainbow-swirl-love-sweet.webp and b/static/sprites-small/home/869-rainbow-swirl-love-sweet.webp differ diff --git a/static/sprites-small/home/869-rainbow-swirl-ribbon-sweet.webp b/static/sprites-small/home/869-rainbow-swirl-ribbon-sweet.webp index b100820..548464f 100644 Binary files a/static/sprites-small/home/869-rainbow-swirl-ribbon-sweet.webp and b/static/sprites-small/home/869-rainbow-swirl-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/869-rainbow-swirl-star-sweet.webp b/static/sprites-small/home/869-rainbow-swirl-star-sweet.webp index 9b44540..45fa34b 100644 Binary files a/static/sprites-small/home/869-rainbow-swirl-star-sweet.webp and b/static/sprites-small/home/869-rainbow-swirl-star-sweet.webp differ diff --git a/static/sprites-small/home/869-rainbow-swirl-strawberry-sweet.webp b/static/sprites-small/home/869-rainbow-swirl-strawberry-sweet.webp index 8a8706c..2004a3d 100644 Binary files a/static/sprites-small/home/869-rainbow-swirl-strawberry-sweet.webp and b/static/sprites-small/home/869-rainbow-swirl-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/869-ruby-cream-berry-sweet.webp b/static/sprites-small/home/869-ruby-cream-berry-sweet.webp index aba90bf..20fab31 100644 Binary files a/static/sprites-small/home/869-ruby-cream-berry-sweet.webp and b/static/sprites-small/home/869-ruby-cream-berry-sweet.webp differ diff --git a/static/sprites-small/home/869-ruby-cream-clover-sweet.webp b/static/sprites-small/home/869-ruby-cream-clover-sweet.webp index cfe68ac..8f07efe 100644 Binary files a/static/sprites-small/home/869-ruby-cream-clover-sweet.webp and b/static/sprites-small/home/869-ruby-cream-clover-sweet.webp differ diff --git a/static/sprites-small/home/869-ruby-cream-flower-sweet.webp b/static/sprites-small/home/869-ruby-cream-flower-sweet.webp index a0fe0b3..0125619 100644 Binary files a/static/sprites-small/home/869-ruby-cream-flower-sweet.webp and b/static/sprites-small/home/869-ruby-cream-flower-sweet.webp differ diff --git a/static/sprites-small/home/869-ruby-cream-love-sweet.webp b/static/sprites-small/home/869-ruby-cream-love-sweet.webp index 58e0877..4ae40a4 100644 Binary files a/static/sprites-small/home/869-ruby-cream-love-sweet.webp and b/static/sprites-small/home/869-ruby-cream-love-sweet.webp differ diff --git a/static/sprites-small/home/869-ruby-cream-ribbon-sweet.webp b/static/sprites-small/home/869-ruby-cream-ribbon-sweet.webp index 47fabee..3cf2aa7 100644 Binary files a/static/sprites-small/home/869-ruby-cream-ribbon-sweet.webp and b/static/sprites-small/home/869-ruby-cream-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/869-ruby-cream-star-sweet.webp b/static/sprites-small/home/869-ruby-cream-star-sweet.webp index e1d1168..2cf6d25 100644 Binary files a/static/sprites-small/home/869-ruby-cream-star-sweet.webp and b/static/sprites-small/home/869-ruby-cream-star-sweet.webp differ diff --git a/static/sprites-small/home/869-ruby-cream-strawberry-sweet.webp b/static/sprites-small/home/869-ruby-cream-strawberry-sweet.webp index fcee878..b3b7387 100644 Binary files a/static/sprites-small/home/869-ruby-cream-strawberry-sweet.webp and b/static/sprites-small/home/869-ruby-cream-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/869-ruby-swirl-berry-sweet.webp b/static/sprites-small/home/869-ruby-swirl-berry-sweet.webp index 1dbb376..6a249ed 100644 Binary files a/static/sprites-small/home/869-ruby-swirl-berry-sweet.webp and b/static/sprites-small/home/869-ruby-swirl-berry-sweet.webp differ diff --git a/static/sprites-small/home/869-ruby-swirl-clover-sweet.webp b/static/sprites-small/home/869-ruby-swirl-clover-sweet.webp index 7ce6be0..25480f3 100644 Binary files a/static/sprites-small/home/869-ruby-swirl-clover-sweet.webp and b/static/sprites-small/home/869-ruby-swirl-clover-sweet.webp differ diff --git a/static/sprites-small/home/869-ruby-swirl-flower-sweet.webp b/static/sprites-small/home/869-ruby-swirl-flower-sweet.webp index b58a1c2..792362e 100644 Binary files a/static/sprites-small/home/869-ruby-swirl-flower-sweet.webp and b/static/sprites-small/home/869-ruby-swirl-flower-sweet.webp differ diff --git a/static/sprites-small/home/869-ruby-swirl-love-sweet.webp b/static/sprites-small/home/869-ruby-swirl-love-sweet.webp index d919826..5fefd44 100644 Binary files a/static/sprites-small/home/869-ruby-swirl-love-sweet.webp and b/static/sprites-small/home/869-ruby-swirl-love-sweet.webp differ diff --git a/static/sprites-small/home/869-ruby-swirl-ribbon-sweet.webp b/static/sprites-small/home/869-ruby-swirl-ribbon-sweet.webp index d5b9b9a..09c0ec8 100644 Binary files a/static/sprites-small/home/869-ruby-swirl-ribbon-sweet.webp and b/static/sprites-small/home/869-ruby-swirl-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/869-ruby-swirl-star-sweet.webp b/static/sprites-small/home/869-ruby-swirl-star-sweet.webp index 1caf03b..ba8f640 100644 Binary files a/static/sprites-small/home/869-ruby-swirl-star-sweet.webp and b/static/sprites-small/home/869-ruby-swirl-star-sweet.webp differ diff --git a/static/sprites-small/home/869-ruby-swirl-strawberry-sweet.webp b/static/sprites-small/home/869-ruby-swirl-strawberry-sweet.webp index 671f589..83a00b3 100644 Binary files a/static/sprites-small/home/869-ruby-swirl-strawberry-sweet.webp and b/static/sprites-small/home/869-ruby-swirl-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/869-salted-cream-berry-sweet.webp b/static/sprites-small/home/869-salted-cream-berry-sweet.webp index a841fc1..7d3ba2f 100644 Binary files a/static/sprites-small/home/869-salted-cream-berry-sweet.webp and b/static/sprites-small/home/869-salted-cream-berry-sweet.webp differ diff --git a/static/sprites-small/home/869-salted-cream-clover-sweet.webp b/static/sprites-small/home/869-salted-cream-clover-sweet.webp index 7c1b5bb..aa69172 100644 Binary files a/static/sprites-small/home/869-salted-cream-clover-sweet.webp and b/static/sprites-small/home/869-salted-cream-clover-sweet.webp differ diff --git a/static/sprites-small/home/869-salted-cream-flower-sweet.webp b/static/sprites-small/home/869-salted-cream-flower-sweet.webp index 4c85a63..7dc2d3e 100644 Binary files a/static/sprites-small/home/869-salted-cream-flower-sweet.webp and b/static/sprites-small/home/869-salted-cream-flower-sweet.webp differ diff --git a/static/sprites-small/home/869-salted-cream-love-sweet.webp b/static/sprites-small/home/869-salted-cream-love-sweet.webp index 133b8b9..44efebe 100644 Binary files a/static/sprites-small/home/869-salted-cream-love-sweet.webp and b/static/sprites-small/home/869-salted-cream-love-sweet.webp differ diff --git a/static/sprites-small/home/869-salted-cream-ribbon-sweet.webp b/static/sprites-small/home/869-salted-cream-ribbon-sweet.webp index e0bab2b..391dbb5 100644 Binary files a/static/sprites-small/home/869-salted-cream-ribbon-sweet.webp and b/static/sprites-small/home/869-salted-cream-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/869-salted-cream-star-sweet.webp b/static/sprites-small/home/869-salted-cream-star-sweet.webp index 0924396..f98bb15 100644 Binary files a/static/sprites-small/home/869-salted-cream-star-sweet.webp and b/static/sprites-small/home/869-salted-cream-star-sweet.webp differ diff --git a/static/sprites-small/home/869-salted-cream-strawberry-sweet.webp b/static/sprites-small/home/869-salted-cream-strawberry-sweet.webp index f4a15e4..6e150a0 100644 Binary files a/static/sprites-small/home/869-salted-cream-strawberry-sweet.webp and b/static/sprites-small/home/869-salted-cream-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/869-vanilla-cream-berry-sweet.webp b/static/sprites-small/home/869-vanilla-cream-berry-sweet.webp index e8b0f3f..4a30ec3 100644 Binary files a/static/sprites-small/home/869-vanilla-cream-berry-sweet.webp and b/static/sprites-small/home/869-vanilla-cream-berry-sweet.webp differ diff --git a/static/sprites-small/home/869-vanilla-cream-clover-sweet.webp b/static/sprites-small/home/869-vanilla-cream-clover-sweet.webp index a4fea1b..a5b8328 100644 Binary files a/static/sprites-small/home/869-vanilla-cream-clover-sweet.webp and b/static/sprites-small/home/869-vanilla-cream-clover-sweet.webp differ diff --git a/static/sprites-small/home/869-vanilla-cream-flower-sweet.webp b/static/sprites-small/home/869-vanilla-cream-flower-sweet.webp index e607db8..0326bfa 100644 Binary files a/static/sprites-small/home/869-vanilla-cream-flower-sweet.webp and b/static/sprites-small/home/869-vanilla-cream-flower-sweet.webp differ diff --git a/static/sprites-small/home/869-vanilla-cream-love-sweet.webp b/static/sprites-small/home/869-vanilla-cream-love-sweet.webp index 64f46e6..26867eb 100644 Binary files a/static/sprites-small/home/869-vanilla-cream-love-sweet.webp and b/static/sprites-small/home/869-vanilla-cream-love-sweet.webp differ diff --git a/static/sprites-small/home/869-vanilla-cream-ribbon-sweet.webp b/static/sprites-small/home/869-vanilla-cream-ribbon-sweet.webp index 28de814..1a5fc56 100644 Binary files a/static/sprites-small/home/869-vanilla-cream-ribbon-sweet.webp and b/static/sprites-small/home/869-vanilla-cream-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/869-vanilla-cream-star-sweet.webp b/static/sprites-small/home/869-vanilla-cream-star-sweet.webp index c1970d7..a0f7638 100644 Binary files a/static/sprites-small/home/869-vanilla-cream-star-sweet.webp and b/static/sprites-small/home/869-vanilla-cream-star-sweet.webp differ diff --git a/static/sprites-small/home/869-vanilla-cream-strawberry-sweet.webp b/static/sprites-small/home/869-vanilla-cream-strawberry-sweet.webp index 2b5b652..cdcca00 100644 Binary files a/static/sprites-small/home/869-vanilla-cream-strawberry-sweet.webp and b/static/sprites-small/home/869-vanilla-cream-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/869.webp b/static/sprites-small/home/869.webp index 2b5b652..cdcca00 100644 Binary files a/static/sprites-small/home/869.webp and b/static/sprites-small/home/869.webp differ diff --git a/static/sprites-small/home/87.webp b/static/sprites-small/home/87.webp index 22f1f11..1909013 100644 Binary files a/static/sprites-small/home/87.webp and b/static/sprites-small/home/87.webp differ diff --git a/static/sprites-small/home/870.webp b/static/sprites-small/home/870.webp index 7dad24a..6ccb88c 100644 Binary files a/static/sprites-small/home/870.webp and b/static/sprites-small/home/870.webp differ diff --git a/static/sprites-small/home/871.webp b/static/sprites-small/home/871.webp index a860511..8cd0b7c 100644 Binary files a/static/sprites-small/home/871.webp and b/static/sprites-small/home/871.webp differ diff --git a/static/sprites-small/home/872.webp b/static/sprites-small/home/872.webp index 8a60efc..3831ae0 100644 Binary files a/static/sprites-small/home/872.webp and b/static/sprites-small/home/872.webp differ diff --git a/static/sprites-small/home/873.webp b/static/sprites-small/home/873.webp index f46fb30..0a85385 100644 Binary files a/static/sprites-small/home/873.webp and b/static/sprites-small/home/873.webp differ diff --git a/static/sprites-small/home/874.webp b/static/sprites-small/home/874.webp index 6943ed2..92a0d8d 100644 Binary files a/static/sprites-small/home/874.webp and b/static/sprites-small/home/874.webp differ diff --git a/static/sprites-small/home/875.webp b/static/sprites-small/home/875.webp index 84c0c32..7eee46b 100644 Binary files a/static/sprites-small/home/875.webp and b/static/sprites-small/home/875.webp differ diff --git a/static/sprites-small/home/876.webp b/static/sprites-small/home/876.webp index 6f08a0e..6b0e13c 100644 Binary files a/static/sprites-small/home/876.webp and b/static/sprites-small/home/876.webp differ diff --git a/static/sprites-small/home/877-hangry.webp b/static/sprites-small/home/877-hangry.webp index de20c11..a957c1b 100644 Binary files a/static/sprites-small/home/877-hangry.webp and b/static/sprites-small/home/877-hangry.webp differ diff --git a/static/sprites-small/home/877.webp b/static/sprites-small/home/877.webp index 05ea1ec..37054b8 100644 Binary files a/static/sprites-small/home/877.webp and b/static/sprites-small/home/877.webp differ diff --git a/static/sprites-small/home/878.webp b/static/sprites-small/home/878.webp index cdafdc6..1763ecc 100644 Binary files a/static/sprites-small/home/878.webp and b/static/sprites-small/home/878.webp differ diff --git a/static/sprites-small/home/879.webp b/static/sprites-small/home/879.webp index b149eb0..afa8ba7 100644 Binary files a/static/sprites-small/home/879.webp and b/static/sprites-small/home/879.webp differ diff --git a/static/sprites-small/home/88.webp b/static/sprites-small/home/88.webp index 1341290..7e3f056 100644 Binary files a/static/sprites-small/home/88.webp and b/static/sprites-small/home/88.webp differ diff --git a/static/sprites-small/home/880.webp b/static/sprites-small/home/880.webp index b3205ff..1db5445 100644 Binary files a/static/sprites-small/home/880.webp and b/static/sprites-small/home/880.webp differ diff --git a/static/sprites-small/home/881.webp b/static/sprites-small/home/881.webp index 563de80..3c58b77 100644 Binary files a/static/sprites-small/home/881.webp and b/static/sprites-small/home/881.webp differ diff --git a/static/sprites-small/home/882.webp b/static/sprites-small/home/882.webp index e8e5193..a986469 100644 Binary files a/static/sprites-small/home/882.webp and b/static/sprites-small/home/882.webp differ diff --git a/static/sprites-small/home/883.webp b/static/sprites-small/home/883.webp index 9ffacd6..304788d 100644 Binary files a/static/sprites-small/home/883.webp and b/static/sprites-small/home/883.webp differ diff --git a/static/sprites-small/home/884.webp b/static/sprites-small/home/884.webp index 3feaffd..e8f1991 100644 Binary files a/static/sprites-small/home/884.webp and b/static/sprites-small/home/884.webp differ diff --git a/static/sprites-small/home/885.webp b/static/sprites-small/home/885.webp index 0f38b1d..12202bb 100644 Binary files a/static/sprites-small/home/885.webp and b/static/sprites-small/home/885.webp differ diff --git a/static/sprites-small/home/886.webp b/static/sprites-small/home/886.webp index 3437cd7..69ced91 100644 Binary files a/static/sprites-small/home/886.webp and b/static/sprites-small/home/886.webp differ diff --git a/static/sprites-small/home/887.webp b/static/sprites-small/home/887.webp index f81d745..73cd93a 100644 Binary files a/static/sprites-small/home/887.webp and b/static/sprites-small/home/887.webp differ diff --git a/static/sprites-small/home/888.webp b/static/sprites-small/home/888.webp index 7841fe9..79f45ce 100644 Binary files a/static/sprites-small/home/888.webp and b/static/sprites-small/home/888.webp differ diff --git a/static/sprites-small/home/889.webp b/static/sprites-small/home/889.webp index a4acbf1..4c69160 100644 Binary files a/static/sprites-small/home/889.webp and b/static/sprites-small/home/889.webp differ diff --git a/static/sprites-small/home/89.webp b/static/sprites-small/home/89.webp index c247c6b..1851796 100644 Binary files a/static/sprites-small/home/89.webp and b/static/sprites-small/home/89.webp differ diff --git a/static/sprites-small/home/890.webp b/static/sprites-small/home/890.webp index 3fc0bcb..c3b5365 100644 Binary files a/static/sprites-small/home/890.webp and b/static/sprites-small/home/890.webp differ diff --git a/static/sprites-small/home/891.webp b/static/sprites-small/home/891.webp index 775930b..8f1ddbb 100644 Binary files a/static/sprites-small/home/891.webp and b/static/sprites-small/home/891.webp differ diff --git a/static/sprites-small/home/892.webp b/static/sprites-small/home/892.webp index f0e3044..bc0c52c 100644 Binary files a/static/sprites-small/home/892.webp and b/static/sprites-small/home/892.webp differ diff --git a/static/sprites-small/home/893-dada.webp b/static/sprites-small/home/893-dada.webp index d022368..20467b1 100644 Binary files a/static/sprites-small/home/893-dada.webp and b/static/sprites-small/home/893-dada.webp differ diff --git a/static/sprites-small/home/893.webp b/static/sprites-small/home/893.webp index cff8468..3e29efe 100644 Binary files a/static/sprites-small/home/893.webp and b/static/sprites-small/home/893.webp differ diff --git a/static/sprites-small/home/894.webp b/static/sprites-small/home/894.webp index 940a162..b1e5aa8 100644 Binary files a/static/sprites-small/home/894.webp and b/static/sprites-small/home/894.webp differ diff --git a/static/sprites-small/home/895.webp b/static/sprites-small/home/895.webp index 230c6e2..2d749e8 100644 Binary files a/static/sprites-small/home/895.webp and b/static/sprites-small/home/895.webp differ diff --git a/static/sprites-small/home/896.webp b/static/sprites-small/home/896.webp index b5364d7..78bb296 100644 Binary files a/static/sprites-small/home/896.webp and b/static/sprites-small/home/896.webp differ diff --git a/static/sprites-small/home/897.webp b/static/sprites-small/home/897.webp index e287e3b..855d61c 100644 Binary files a/static/sprites-small/home/897.webp and b/static/sprites-small/home/897.webp differ diff --git a/static/sprites-small/home/898.webp b/static/sprites-small/home/898.webp index 6c6388f..e444ec6 100644 Binary files a/static/sprites-small/home/898.webp and b/static/sprites-small/home/898.webp differ diff --git a/static/sprites-small/home/899.webp b/static/sprites-small/home/899.webp index 599183c..c0f27f3 100644 Binary files a/static/sprites-small/home/899.webp and b/static/sprites-small/home/899.webp differ diff --git a/static/sprites-small/home/9.webp b/static/sprites-small/home/9.webp index 33d36bf..7cc1843 100644 Binary files a/static/sprites-small/home/9.webp and b/static/sprites-small/home/9.webp differ diff --git a/static/sprites-small/home/90.webp b/static/sprites-small/home/90.webp index fe5dc6e..42d82f1 100644 Binary files a/static/sprites-small/home/90.webp and b/static/sprites-small/home/90.webp differ diff --git a/static/sprites-small/home/900.webp b/static/sprites-small/home/900.webp index 2e19af0..fc252b3 100644 Binary files a/static/sprites-small/home/900.webp and b/static/sprites-small/home/900.webp differ diff --git a/static/sprites-small/home/901.webp b/static/sprites-small/home/901.webp index fd54d19..06a33ac 100644 Binary files a/static/sprites-small/home/901.webp and b/static/sprites-small/home/901.webp differ diff --git a/static/sprites-small/home/902.webp b/static/sprites-small/home/902.webp index 49b2787..4681764 100644 Binary files a/static/sprites-small/home/902.webp and b/static/sprites-small/home/902.webp differ diff --git a/static/sprites-small/home/903.webp b/static/sprites-small/home/903.webp index 6f524e1..1718aa4 100644 Binary files a/static/sprites-small/home/903.webp and b/static/sprites-small/home/903.webp differ diff --git a/static/sprites-small/home/904.webp b/static/sprites-small/home/904.webp index 9243f6d..0aaf314 100644 Binary files a/static/sprites-small/home/904.webp and b/static/sprites-small/home/904.webp differ diff --git a/static/sprites-small/home/905.webp b/static/sprites-small/home/905.webp index af6f748..47d5dfa 100644 Binary files a/static/sprites-small/home/905.webp and b/static/sprites-small/home/905.webp differ diff --git a/static/sprites-small/home/906.webp b/static/sprites-small/home/906.webp index 36ef8c5..df8980d 100644 Binary files a/static/sprites-small/home/906.webp and b/static/sprites-small/home/906.webp differ diff --git a/static/sprites-small/home/907.webp b/static/sprites-small/home/907.webp index f0ed990..7fbb82d 100644 Binary files a/static/sprites-small/home/907.webp and b/static/sprites-small/home/907.webp differ diff --git a/static/sprites-small/home/908.webp b/static/sprites-small/home/908.webp index 704a8b6..b1cda86 100644 Binary files a/static/sprites-small/home/908.webp and b/static/sprites-small/home/908.webp differ diff --git a/static/sprites-small/home/909.webp b/static/sprites-small/home/909.webp index a8e989f..f092a85 100644 Binary files a/static/sprites-small/home/909.webp and b/static/sprites-small/home/909.webp differ diff --git a/static/sprites-small/home/91.webp b/static/sprites-small/home/91.webp index ac68cef..f040b0f 100644 Binary files a/static/sprites-small/home/91.webp and b/static/sprites-small/home/91.webp differ diff --git a/static/sprites-small/home/910.webp b/static/sprites-small/home/910.webp index 95a669b..6d40499 100644 Binary files a/static/sprites-small/home/910.webp and b/static/sprites-small/home/910.webp differ diff --git a/static/sprites-small/home/911.webp b/static/sprites-small/home/911.webp index d870a77..1d43a0c 100644 Binary files a/static/sprites-small/home/911.webp and b/static/sprites-small/home/911.webp differ diff --git a/static/sprites-small/home/912.webp b/static/sprites-small/home/912.webp index b8548d9..3a146b0 100644 Binary files a/static/sprites-small/home/912.webp and b/static/sprites-small/home/912.webp differ diff --git a/static/sprites-small/home/913.webp b/static/sprites-small/home/913.webp index d31810d..781ddce 100644 Binary files a/static/sprites-small/home/913.webp and b/static/sprites-small/home/913.webp differ diff --git a/static/sprites-small/home/914.webp b/static/sprites-small/home/914.webp index b52a320..2807db3 100644 Binary files a/static/sprites-small/home/914.webp and b/static/sprites-small/home/914.webp differ diff --git a/static/sprites-small/home/915.webp b/static/sprites-small/home/915.webp index 8898105..7776b8d 100644 Binary files a/static/sprites-small/home/915.webp and b/static/sprites-small/home/915.webp differ diff --git a/static/sprites-small/home/916.webp b/static/sprites-small/home/916.webp index 5151fea..72bed4f 100644 Binary files a/static/sprites-small/home/916.webp and b/static/sprites-small/home/916.webp differ diff --git a/static/sprites-small/home/917.webp b/static/sprites-small/home/917.webp index f290297..2481690 100644 Binary files a/static/sprites-small/home/917.webp and b/static/sprites-small/home/917.webp differ diff --git a/static/sprites-small/home/918.webp b/static/sprites-small/home/918.webp index e422f40..4da06cf 100644 Binary files a/static/sprites-small/home/918.webp and b/static/sprites-small/home/918.webp differ diff --git a/static/sprites-small/home/919.webp b/static/sprites-small/home/919.webp index 5dce0ea..4f363b5 100644 Binary files a/static/sprites-small/home/919.webp and b/static/sprites-small/home/919.webp differ diff --git a/static/sprites-small/home/92.webp b/static/sprites-small/home/92.webp index 8c71ceb..b6262a9 100644 Binary files a/static/sprites-small/home/92.webp and b/static/sprites-small/home/92.webp differ diff --git a/static/sprites-small/home/920.webp b/static/sprites-small/home/920.webp index 972a43b..3a17bae 100644 Binary files a/static/sprites-small/home/920.webp and b/static/sprites-small/home/920.webp differ diff --git a/static/sprites-small/home/921.webp b/static/sprites-small/home/921.webp index 58212ea..72c0c49 100644 Binary files a/static/sprites-small/home/921.webp and b/static/sprites-small/home/921.webp differ diff --git a/static/sprites-small/home/922.webp b/static/sprites-small/home/922.webp index 8d69452..f93384c 100644 Binary files a/static/sprites-small/home/922.webp and b/static/sprites-small/home/922.webp differ diff --git a/static/sprites-small/home/923.webp b/static/sprites-small/home/923.webp index b4e583c..2b32ce6 100644 Binary files a/static/sprites-small/home/923.webp and b/static/sprites-small/home/923.webp differ diff --git a/static/sprites-small/home/924.webp b/static/sprites-small/home/924.webp index aec4a09..7a336bc 100644 Binary files a/static/sprites-small/home/924.webp and b/static/sprites-small/home/924.webp differ diff --git a/static/sprites-small/home/925.webp b/static/sprites-small/home/925.webp index 49de4d8..037455b 100644 Binary files a/static/sprites-small/home/925.webp and b/static/sprites-small/home/925.webp differ diff --git a/static/sprites-small/home/926.webp b/static/sprites-small/home/926.webp index 2e50c62..6243093 100644 Binary files a/static/sprites-small/home/926.webp and b/static/sprites-small/home/926.webp differ diff --git a/static/sprites-small/home/927.webp b/static/sprites-small/home/927.webp index 2b3a531..468ae9c 100644 Binary files a/static/sprites-small/home/927.webp and b/static/sprites-small/home/927.webp differ diff --git a/static/sprites-small/home/928.webp b/static/sprites-small/home/928.webp index 450e203..537a5fb 100644 Binary files a/static/sprites-small/home/928.webp and b/static/sprites-small/home/928.webp differ diff --git a/static/sprites-small/home/929.webp b/static/sprites-small/home/929.webp index d45901f..de5974e 100644 Binary files a/static/sprites-small/home/929.webp and b/static/sprites-small/home/929.webp differ diff --git a/static/sprites-small/home/93.webp b/static/sprites-small/home/93.webp index 36dd833..f63f791 100644 Binary files a/static/sprites-small/home/93.webp and b/static/sprites-small/home/93.webp differ diff --git a/static/sprites-small/home/930.webp b/static/sprites-small/home/930.webp index 5084955..7dddf2f 100644 Binary files a/static/sprites-small/home/930.webp and b/static/sprites-small/home/930.webp differ diff --git a/static/sprites-small/home/931.webp b/static/sprites-small/home/931.webp index 5d891e0..8ee7ba2 100644 Binary files a/static/sprites-small/home/931.webp and b/static/sprites-small/home/931.webp differ diff --git a/static/sprites-small/home/932.webp b/static/sprites-small/home/932.webp index 77a4bd9..bc9e59a 100644 Binary files a/static/sprites-small/home/932.webp and b/static/sprites-small/home/932.webp differ diff --git a/static/sprites-small/home/933.webp b/static/sprites-small/home/933.webp index 1a7c161..e04bdbd 100644 Binary files a/static/sprites-small/home/933.webp and b/static/sprites-small/home/933.webp differ diff --git a/static/sprites-small/home/934.webp b/static/sprites-small/home/934.webp index c799c47..634e1b4 100644 Binary files a/static/sprites-small/home/934.webp and b/static/sprites-small/home/934.webp differ diff --git a/static/sprites-small/home/935.webp b/static/sprites-small/home/935.webp index f548bd4..08c5b7e 100644 Binary files a/static/sprites-small/home/935.webp and b/static/sprites-small/home/935.webp differ diff --git a/static/sprites-small/home/936.webp b/static/sprites-small/home/936.webp index 0ce0eb9..5e10319 100644 Binary files a/static/sprites-small/home/936.webp and b/static/sprites-small/home/936.webp differ diff --git a/static/sprites-small/home/937.webp b/static/sprites-small/home/937.webp index be96635..d6be88c 100644 Binary files a/static/sprites-small/home/937.webp and b/static/sprites-small/home/937.webp differ diff --git a/static/sprites-small/home/938.webp b/static/sprites-small/home/938.webp index 6839d83..875d40a 100644 Binary files a/static/sprites-small/home/938.webp and b/static/sprites-small/home/938.webp differ diff --git a/static/sprites-small/home/939.webp b/static/sprites-small/home/939.webp index 030a31a..9ff7d0d 100644 Binary files a/static/sprites-small/home/939.webp and b/static/sprites-small/home/939.webp differ diff --git a/static/sprites-small/home/94.webp b/static/sprites-small/home/94.webp index 2974aef..36a659e 100644 Binary files a/static/sprites-small/home/94.webp and b/static/sprites-small/home/94.webp differ diff --git a/static/sprites-small/home/940.webp b/static/sprites-small/home/940.webp index b825766..8ca945e 100644 Binary files a/static/sprites-small/home/940.webp and b/static/sprites-small/home/940.webp differ diff --git a/static/sprites-small/home/941.webp b/static/sprites-small/home/941.webp index 1fc31fc..74cbddd 100644 Binary files a/static/sprites-small/home/941.webp and b/static/sprites-small/home/941.webp differ diff --git a/static/sprites-small/home/942.webp b/static/sprites-small/home/942.webp index 3e1a2cd..5770703 100644 Binary files a/static/sprites-small/home/942.webp and b/static/sprites-small/home/942.webp differ diff --git a/static/sprites-small/home/943.webp b/static/sprites-small/home/943.webp index 79d79a3..290f15b 100644 Binary files a/static/sprites-small/home/943.webp and b/static/sprites-small/home/943.webp differ diff --git a/static/sprites-small/home/944.webp b/static/sprites-small/home/944.webp index 7527549..b98f4a9 100644 Binary files a/static/sprites-small/home/944.webp and b/static/sprites-small/home/944.webp differ diff --git a/static/sprites-small/home/945.webp b/static/sprites-small/home/945.webp index 3630971..91a4d70 100644 Binary files a/static/sprites-small/home/945.webp and b/static/sprites-small/home/945.webp differ diff --git a/static/sprites-small/home/946.webp b/static/sprites-small/home/946.webp index ce3c483..f632d0a 100644 Binary files a/static/sprites-small/home/946.webp and b/static/sprites-small/home/946.webp differ diff --git a/static/sprites-small/home/947.webp b/static/sprites-small/home/947.webp index 64e0022..cb7c4e0 100644 Binary files a/static/sprites-small/home/947.webp and b/static/sprites-small/home/947.webp differ diff --git a/static/sprites-small/home/948.webp b/static/sprites-small/home/948.webp index 6636415..ccd5cb8 100644 Binary files a/static/sprites-small/home/948.webp and b/static/sprites-small/home/948.webp differ diff --git a/static/sprites-small/home/949.webp b/static/sprites-small/home/949.webp index a3fa142..2170f3e 100644 Binary files a/static/sprites-small/home/949.webp and b/static/sprites-small/home/949.webp differ diff --git a/static/sprites-small/home/95.webp b/static/sprites-small/home/95.webp index 5b77b03..eae5c06 100644 Binary files a/static/sprites-small/home/95.webp and b/static/sprites-small/home/95.webp differ diff --git a/static/sprites-small/home/950.webp b/static/sprites-small/home/950.webp index 0ca6722..69f1657 100644 Binary files a/static/sprites-small/home/950.webp and b/static/sprites-small/home/950.webp differ diff --git a/static/sprites-small/home/951.webp b/static/sprites-small/home/951.webp index 91b0820..2dd0857 100644 Binary files a/static/sprites-small/home/951.webp and b/static/sprites-small/home/951.webp differ diff --git a/static/sprites-small/home/952.webp b/static/sprites-small/home/952.webp index 0182f21..1b47a4f 100644 Binary files a/static/sprites-small/home/952.webp and b/static/sprites-small/home/952.webp differ diff --git a/static/sprites-small/home/953.webp b/static/sprites-small/home/953.webp index d2f88db..c93432f 100644 Binary files a/static/sprites-small/home/953.webp and b/static/sprites-small/home/953.webp differ diff --git a/static/sprites-small/home/954.webp b/static/sprites-small/home/954.webp index 9ca37fe..b3c11df 100644 Binary files a/static/sprites-small/home/954.webp and b/static/sprites-small/home/954.webp differ diff --git a/static/sprites-small/home/955.webp b/static/sprites-small/home/955.webp index ec690fb..6384382 100644 Binary files a/static/sprites-small/home/955.webp and b/static/sprites-small/home/955.webp differ diff --git a/static/sprites-small/home/956.webp b/static/sprites-small/home/956.webp index 842ad2d..403d9d0 100644 Binary files a/static/sprites-small/home/956.webp and b/static/sprites-small/home/956.webp differ diff --git a/static/sprites-small/home/957.webp b/static/sprites-small/home/957.webp index 7614163..c5c2b78 100644 Binary files a/static/sprites-small/home/957.webp and b/static/sprites-small/home/957.webp differ diff --git a/static/sprites-small/home/958.webp b/static/sprites-small/home/958.webp index 7ba20db..d4378db 100644 Binary files a/static/sprites-small/home/958.webp and b/static/sprites-small/home/958.webp differ diff --git a/static/sprites-small/home/959.webp b/static/sprites-small/home/959.webp index 09561d7..39f09c8 100644 Binary files a/static/sprites-small/home/959.webp and b/static/sprites-small/home/959.webp differ diff --git a/static/sprites-small/home/96.webp b/static/sprites-small/home/96.webp index 2007962..eb70f93 100644 Binary files a/static/sprites-small/home/96.webp and b/static/sprites-small/home/96.webp differ diff --git a/static/sprites-small/home/960.webp b/static/sprites-small/home/960.webp index be90227..9248465 100644 Binary files a/static/sprites-small/home/960.webp and b/static/sprites-small/home/960.webp differ diff --git a/static/sprites-small/home/961.webp b/static/sprites-small/home/961.webp index 5cf4547..71dea43 100644 Binary files a/static/sprites-small/home/961.webp and b/static/sprites-small/home/961.webp differ diff --git a/static/sprites-small/home/962.webp b/static/sprites-small/home/962.webp index 7bb8fa4..29f1082 100644 Binary files a/static/sprites-small/home/962.webp and b/static/sprites-small/home/962.webp differ diff --git a/static/sprites-small/home/963.webp b/static/sprites-small/home/963.webp index 468ae3a..e192c9d 100644 Binary files a/static/sprites-small/home/963.webp and b/static/sprites-small/home/963.webp differ diff --git a/static/sprites-small/home/964.webp b/static/sprites-small/home/964.webp index 289a88f..73d8f7f 100644 Binary files a/static/sprites-small/home/964.webp and b/static/sprites-small/home/964.webp differ diff --git a/static/sprites-small/home/965.webp b/static/sprites-small/home/965.webp index d37988d..315df64 100644 Binary files a/static/sprites-small/home/965.webp and b/static/sprites-small/home/965.webp differ diff --git a/static/sprites-small/home/966.webp b/static/sprites-small/home/966.webp index 5a25568..7ef8267 100644 Binary files a/static/sprites-small/home/966.webp and b/static/sprites-small/home/966.webp differ diff --git a/static/sprites-small/home/967.webp b/static/sprites-small/home/967.webp index b6026a1..fe71a50 100644 Binary files a/static/sprites-small/home/967.webp and b/static/sprites-small/home/967.webp differ diff --git a/static/sprites-small/home/968.webp b/static/sprites-small/home/968.webp index e0b2edb..adc0818 100644 Binary files a/static/sprites-small/home/968.webp and b/static/sprites-small/home/968.webp differ diff --git a/static/sprites-small/home/969.webp b/static/sprites-small/home/969.webp index f5e3824..14c2cf4 100644 Binary files a/static/sprites-small/home/969.webp and b/static/sprites-small/home/969.webp differ diff --git a/static/sprites-small/home/97.webp b/static/sprites-small/home/97.webp index 73e82a0..ae7bb4d 100644 Binary files a/static/sprites-small/home/97.webp and b/static/sprites-small/home/97.webp differ diff --git a/static/sprites-small/home/970.webp b/static/sprites-small/home/970.webp index f138a54..4b49949 100644 Binary files a/static/sprites-small/home/970.webp and b/static/sprites-small/home/970.webp differ diff --git a/static/sprites-small/home/971.webp b/static/sprites-small/home/971.webp index b891ef6..b31c38c 100644 Binary files a/static/sprites-small/home/971.webp and b/static/sprites-small/home/971.webp differ diff --git a/static/sprites-small/home/972.webp b/static/sprites-small/home/972.webp index bdb84fb..877f1a1 100644 Binary files a/static/sprites-small/home/972.webp and b/static/sprites-small/home/972.webp differ diff --git a/static/sprites-small/home/973.webp b/static/sprites-small/home/973.webp index 80831c7..717d22d 100644 Binary files a/static/sprites-small/home/973.webp and b/static/sprites-small/home/973.webp differ diff --git a/static/sprites-small/home/974.webp b/static/sprites-small/home/974.webp index 1f4e707..0080509 100644 Binary files a/static/sprites-small/home/974.webp and b/static/sprites-small/home/974.webp differ diff --git a/static/sprites-small/home/975.webp b/static/sprites-small/home/975.webp index 04e8f57..8f1b70f 100644 Binary files a/static/sprites-small/home/975.webp and b/static/sprites-small/home/975.webp differ diff --git a/static/sprites-small/home/976.webp b/static/sprites-small/home/976.webp index 55b4388..c645842 100644 Binary files a/static/sprites-small/home/976.webp and b/static/sprites-small/home/976.webp differ diff --git a/static/sprites-small/home/977.webp b/static/sprites-small/home/977.webp index 9ea9dcd..3d7be97 100644 Binary files a/static/sprites-small/home/977.webp and b/static/sprites-small/home/977.webp differ diff --git a/static/sprites-small/home/978.webp b/static/sprites-small/home/978.webp index eca7356..f454c48 100644 Binary files a/static/sprites-small/home/978.webp and b/static/sprites-small/home/978.webp differ diff --git a/static/sprites-small/home/979.webp b/static/sprites-small/home/979.webp index 4c9f8a3..5f64535 100644 Binary files a/static/sprites-small/home/979.webp and b/static/sprites-small/home/979.webp differ diff --git a/static/sprites-small/home/98.webp b/static/sprites-small/home/98.webp index 186383e..52497aa 100644 Binary files a/static/sprites-small/home/98.webp and b/static/sprites-small/home/98.webp differ diff --git a/static/sprites-small/home/980.webp b/static/sprites-small/home/980.webp index 65e1807..4adb6af 100644 Binary files a/static/sprites-small/home/980.webp and b/static/sprites-small/home/980.webp differ diff --git a/static/sprites-small/home/981.webp b/static/sprites-small/home/981.webp index 21e2268..34f112d 100644 Binary files a/static/sprites-small/home/981.webp and b/static/sprites-small/home/981.webp differ diff --git a/static/sprites-small/home/982.webp b/static/sprites-small/home/982.webp index 3c698c8..648580b 100644 Binary files a/static/sprites-small/home/982.webp and b/static/sprites-small/home/982.webp differ diff --git a/static/sprites-small/home/983.webp b/static/sprites-small/home/983.webp index 0ba2709..46a7af7 100644 Binary files a/static/sprites-small/home/983.webp and b/static/sprites-small/home/983.webp differ diff --git a/static/sprites-small/home/984.webp b/static/sprites-small/home/984.webp index bf4fbc7..2857c27 100644 Binary files a/static/sprites-small/home/984.webp and b/static/sprites-small/home/984.webp differ diff --git a/static/sprites-small/home/985.webp b/static/sprites-small/home/985.webp index 03963f4..aa9137d 100644 Binary files a/static/sprites-small/home/985.webp and b/static/sprites-small/home/985.webp differ diff --git a/static/sprites-small/home/986.webp b/static/sprites-small/home/986.webp index 5e368db..3f3814f 100644 Binary files a/static/sprites-small/home/986.webp and b/static/sprites-small/home/986.webp differ diff --git a/static/sprites-small/home/987.webp b/static/sprites-small/home/987.webp index 377f78d..46cc5e7 100644 Binary files a/static/sprites-small/home/987.webp and b/static/sprites-small/home/987.webp differ diff --git a/static/sprites-small/home/988.webp b/static/sprites-small/home/988.webp index f531004..e2638e4 100644 Binary files a/static/sprites-small/home/988.webp and b/static/sprites-small/home/988.webp differ diff --git a/static/sprites-small/home/989.webp b/static/sprites-small/home/989.webp index b8ab3da..3056215 100644 Binary files a/static/sprites-small/home/989.webp and b/static/sprites-small/home/989.webp differ diff --git a/static/sprites-small/home/99.webp b/static/sprites-small/home/99.webp index 4dbef4f..d2a0860 100644 Binary files a/static/sprites-small/home/99.webp and b/static/sprites-small/home/99.webp differ diff --git a/static/sprites-small/home/990.webp b/static/sprites-small/home/990.webp index ef59290..72c38b8 100644 Binary files a/static/sprites-small/home/990.webp and b/static/sprites-small/home/990.webp differ diff --git a/static/sprites-small/home/991.webp b/static/sprites-small/home/991.webp index 29da262..aeda26f 100644 Binary files a/static/sprites-small/home/991.webp and b/static/sprites-small/home/991.webp differ diff --git a/static/sprites-small/home/992.webp b/static/sprites-small/home/992.webp index 2fd375a..5a46ad8 100644 Binary files a/static/sprites-small/home/992.webp and b/static/sprites-small/home/992.webp differ diff --git a/static/sprites-small/home/993.webp b/static/sprites-small/home/993.webp index 4810839..412108f 100644 Binary files a/static/sprites-small/home/993.webp and b/static/sprites-small/home/993.webp differ diff --git a/static/sprites-small/home/994.webp b/static/sprites-small/home/994.webp index 8a59e4c..a3a9e4d 100644 Binary files a/static/sprites-small/home/994.webp and b/static/sprites-small/home/994.webp differ diff --git a/static/sprites-small/home/995.webp b/static/sprites-small/home/995.webp index 5d32268..30d161d 100644 Binary files a/static/sprites-small/home/995.webp and b/static/sprites-small/home/995.webp differ diff --git a/static/sprites-small/home/996.webp b/static/sprites-small/home/996.webp index 6205092..e2ca94a 100644 Binary files a/static/sprites-small/home/996.webp and b/static/sprites-small/home/996.webp differ diff --git a/static/sprites-small/home/997.webp b/static/sprites-small/home/997.webp index 8cb2e45..d648342 100644 Binary files a/static/sprites-small/home/997.webp and b/static/sprites-small/home/997.webp differ diff --git a/static/sprites-small/home/998.webp b/static/sprites-small/home/998.webp index ceb64f3..660fb6b 100644 Binary files a/static/sprites-small/home/998.webp and b/static/sprites-small/home/998.webp differ diff --git a/static/sprites-small/home/999.webp b/static/sprites-small/home/999.webp index f766e40..ea57b89 100644 Binary files a/static/sprites-small/home/999.webp and b/static/sprites-small/home/999.webp differ diff --git a/static/sprites-small/home/female/10235.webp b/static/sprites-small/home/female/10235.webp index 28c2127..b1d49b5 100644 Binary files a/static/sprites-small/home/female/10235.webp and b/static/sprites-small/home/female/10235.webp differ diff --git a/static/sprites-small/home/female/111.webp b/static/sprites-small/home/female/111.webp index 06e670b..8d8d2a0 100644 Binary files a/static/sprites-small/home/female/111.webp and b/static/sprites-small/home/female/111.webp differ diff --git a/static/sprites-small/home/female/112.webp b/static/sprites-small/home/female/112.webp index d53e852..e42bf33 100644 Binary files a/static/sprites-small/home/female/112.webp and b/static/sprites-small/home/female/112.webp differ diff --git a/static/sprites-small/home/female/118.webp b/static/sprites-small/home/female/118.webp index 540242f..5c7c438 100644 Binary files a/static/sprites-small/home/female/118.webp and b/static/sprites-small/home/female/118.webp differ diff --git a/static/sprites-small/home/female/119.webp b/static/sprites-small/home/female/119.webp index bbc674a..5848558 100644 Binary files a/static/sprites-small/home/female/119.webp and b/static/sprites-small/home/female/119.webp differ diff --git a/static/sprites-small/home/female/12.webp b/static/sprites-small/home/female/12.webp index d3837bd..34c0316 100644 Binary files a/static/sprites-small/home/female/12.webp and b/static/sprites-small/home/female/12.webp differ diff --git a/static/sprites-small/home/female/123.webp b/static/sprites-small/home/female/123.webp index 3ce3345..cab70cc 100644 Binary files a/static/sprites-small/home/female/123.webp and b/static/sprites-small/home/female/123.webp differ diff --git a/static/sprites-small/home/female/129.webp b/static/sprites-small/home/female/129.webp index 16cbd2a..1eac12a 100644 Binary files a/static/sprites-small/home/female/129.webp and b/static/sprites-small/home/female/129.webp differ diff --git a/static/sprites-small/home/female/130.webp b/static/sprites-small/home/female/130.webp index 9f47bec..e82d39c 100644 Binary files a/static/sprites-small/home/female/130.webp and b/static/sprites-small/home/female/130.webp differ diff --git a/static/sprites-small/home/female/133.webp b/static/sprites-small/home/female/133.webp index a622663..141ae2d 100644 Binary files a/static/sprites-small/home/female/133.webp and b/static/sprites-small/home/female/133.webp differ diff --git a/static/sprites-small/home/female/154.webp b/static/sprites-small/home/female/154.webp index a729577..a24cbcf 100644 Binary files a/static/sprites-small/home/female/154.webp and b/static/sprites-small/home/female/154.webp differ diff --git a/static/sprites-small/home/female/165.webp b/static/sprites-small/home/female/165.webp index 34e886b..3c752d1 100644 Binary files a/static/sprites-small/home/female/165.webp and b/static/sprites-small/home/female/165.webp differ diff --git a/static/sprites-small/home/female/166.webp b/static/sprites-small/home/female/166.webp index 81e776b..945f1f0 100644 Binary files a/static/sprites-small/home/female/166.webp and b/static/sprites-small/home/female/166.webp differ diff --git a/static/sprites-small/home/female/178.webp b/static/sprites-small/home/female/178.webp index 61e4354..3e88de2 100644 Binary files a/static/sprites-small/home/female/178.webp and b/static/sprites-small/home/female/178.webp differ diff --git a/static/sprites-small/home/female/185.webp b/static/sprites-small/home/female/185.webp index cc95d4d..ba9a03a 100644 Binary files a/static/sprites-small/home/female/185.webp and b/static/sprites-small/home/female/185.webp differ diff --git a/static/sprites-small/home/female/186.webp b/static/sprites-small/home/female/186.webp index ea07f5a..ba5a418 100644 Binary files a/static/sprites-small/home/female/186.webp and b/static/sprites-small/home/female/186.webp differ diff --git a/static/sprites-small/home/female/19.webp b/static/sprites-small/home/female/19.webp index 2820ca6..ac9c6f2 100644 Binary files a/static/sprites-small/home/female/19.webp and b/static/sprites-small/home/female/19.webp differ diff --git a/static/sprites-small/home/female/190.webp b/static/sprites-small/home/female/190.webp index 882095f..f68cff4 100644 Binary files a/static/sprites-small/home/female/190.webp and b/static/sprites-small/home/female/190.webp differ diff --git a/static/sprites-small/home/female/194.webp b/static/sprites-small/home/female/194.webp index a597179..81ca808 100644 Binary files a/static/sprites-small/home/female/194.webp and b/static/sprites-small/home/female/194.webp differ diff --git a/static/sprites-small/home/female/195.webp b/static/sprites-small/home/female/195.webp index 810f8e4..5fee020 100644 Binary files a/static/sprites-small/home/female/195.webp and b/static/sprites-small/home/female/195.webp differ diff --git a/static/sprites-small/home/female/198.webp b/static/sprites-small/home/female/198.webp index d48a15b..4393c2c 100644 Binary files a/static/sprites-small/home/female/198.webp and b/static/sprites-small/home/female/198.webp differ diff --git a/static/sprites-small/home/female/20.webp b/static/sprites-small/home/female/20.webp index 8adccbd..3367a7c 100644 Binary files a/static/sprites-small/home/female/20.webp and b/static/sprites-small/home/female/20.webp differ diff --git a/static/sprites-small/home/female/202.webp b/static/sprites-small/home/female/202.webp index ba9263e..7a7cd07 100644 Binary files a/static/sprites-small/home/female/202.webp and b/static/sprites-small/home/female/202.webp differ diff --git a/static/sprites-small/home/female/203.webp b/static/sprites-small/home/female/203.webp index ccc3c97..5859ef6 100644 Binary files a/static/sprites-small/home/female/203.webp and b/static/sprites-small/home/female/203.webp differ diff --git a/static/sprites-small/home/female/207.webp b/static/sprites-small/home/female/207.webp index bf0a084..cf17da4 100644 Binary files a/static/sprites-small/home/female/207.webp and b/static/sprites-small/home/female/207.webp differ diff --git a/static/sprites-small/home/female/208.webp b/static/sprites-small/home/female/208.webp index c41a7aa..b7c4271 100644 Binary files a/static/sprites-small/home/female/208.webp and b/static/sprites-small/home/female/208.webp differ diff --git a/static/sprites-small/home/female/212.webp b/static/sprites-small/home/female/212.webp index 4138fb2..b173827 100644 Binary files a/static/sprites-small/home/female/212.webp and b/static/sprites-small/home/female/212.webp differ diff --git a/static/sprites-small/home/female/214.webp b/static/sprites-small/home/female/214.webp index bd783ed..7cd4b81 100644 Binary files a/static/sprites-small/home/female/214.webp and b/static/sprites-small/home/female/214.webp differ diff --git a/static/sprites-small/home/female/215.webp b/static/sprites-small/home/female/215.webp index 457f921..e803a89 100644 Binary files a/static/sprites-small/home/female/215.webp and b/static/sprites-small/home/female/215.webp differ diff --git a/static/sprites-small/home/female/217.webp b/static/sprites-small/home/female/217.webp index 3117eb4..bd72bde 100644 Binary files a/static/sprites-small/home/female/217.webp and b/static/sprites-small/home/female/217.webp differ diff --git a/static/sprites-small/home/female/221.webp b/static/sprites-small/home/female/221.webp index 2730e2f..980ee8e 100644 Binary files a/static/sprites-small/home/female/221.webp and b/static/sprites-small/home/female/221.webp differ diff --git a/static/sprites-small/home/female/224.webp b/static/sprites-small/home/female/224.webp index 7c1fd40..dc3d484 100644 Binary files a/static/sprites-small/home/female/224.webp and b/static/sprites-small/home/female/224.webp differ diff --git a/static/sprites-small/home/female/229.webp b/static/sprites-small/home/female/229.webp index 9ad4022..b2d67a8 100644 Binary files a/static/sprites-small/home/female/229.webp and b/static/sprites-small/home/female/229.webp differ diff --git a/static/sprites-small/home/female/232.webp b/static/sprites-small/home/female/232.webp index 8301695..a98b20d 100644 Binary files a/static/sprites-small/home/female/232.webp and b/static/sprites-small/home/female/232.webp differ diff --git a/static/sprites-small/home/female/25.webp b/static/sprites-small/home/female/25.webp index 1ed095a..f699e65 100644 Binary files a/static/sprites-small/home/female/25.webp and b/static/sprites-small/home/female/25.webp differ diff --git a/static/sprites-small/home/female/255.webp b/static/sprites-small/home/female/255.webp index 77255e1..6178067 100644 Binary files a/static/sprites-small/home/female/255.webp and b/static/sprites-small/home/female/255.webp differ diff --git a/static/sprites-small/home/female/256.webp b/static/sprites-small/home/female/256.webp index ce9979f..7da4aa5 100644 Binary files a/static/sprites-small/home/female/256.webp and b/static/sprites-small/home/female/256.webp differ diff --git a/static/sprites-small/home/female/257.webp b/static/sprites-small/home/female/257.webp index ed8af15..7f32d5f 100644 Binary files a/static/sprites-small/home/female/257.webp and b/static/sprites-small/home/female/257.webp differ diff --git a/static/sprites-small/home/female/26.webp b/static/sprites-small/home/female/26.webp index 4c55be6..5407876 100644 Binary files a/static/sprites-small/home/female/26.webp and b/static/sprites-small/home/female/26.webp differ diff --git a/static/sprites-small/home/female/267.webp b/static/sprites-small/home/female/267.webp index 61ee391..9e0cadb 100644 Binary files a/static/sprites-small/home/female/267.webp and b/static/sprites-small/home/female/267.webp differ diff --git a/static/sprites-small/home/female/269.webp b/static/sprites-small/home/female/269.webp index 00c4d1e..771b62b 100644 Binary files a/static/sprites-small/home/female/269.webp and b/static/sprites-small/home/female/269.webp differ diff --git a/static/sprites-small/home/female/272.webp b/static/sprites-small/home/female/272.webp index cb2036f..3a7c751 100644 Binary files a/static/sprites-small/home/female/272.webp and b/static/sprites-small/home/female/272.webp differ diff --git a/static/sprites-small/home/female/274.webp b/static/sprites-small/home/female/274.webp index 07ec582..db0f458 100644 Binary files a/static/sprites-small/home/female/274.webp and b/static/sprites-small/home/female/274.webp differ diff --git a/static/sprites-small/home/female/275.webp b/static/sprites-small/home/female/275.webp index 60567f2..ea01190 100644 Binary files a/static/sprites-small/home/female/275.webp and b/static/sprites-small/home/female/275.webp differ diff --git a/static/sprites-small/home/female/3.webp b/static/sprites-small/home/female/3.webp index 76655f7..5405523 100644 Binary files a/static/sprites-small/home/female/3.webp and b/static/sprites-small/home/female/3.webp differ diff --git a/static/sprites-small/home/female/307.webp b/static/sprites-small/home/female/307.webp index aca86af..a43042d 100644 Binary files a/static/sprites-small/home/female/307.webp and b/static/sprites-small/home/female/307.webp differ diff --git a/static/sprites-small/home/female/308.webp b/static/sprites-small/home/female/308.webp index 057a551..3aba13d 100644 Binary files a/static/sprites-small/home/female/308.webp and b/static/sprites-small/home/female/308.webp differ diff --git a/static/sprites-small/home/female/315.webp b/static/sprites-small/home/female/315.webp index f47fc34..ee1aba5 100644 Binary files a/static/sprites-small/home/female/315.webp and b/static/sprites-small/home/female/315.webp differ diff --git a/static/sprites-small/home/female/316.webp b/static/sprites-small/home/female/316.webp index 6d57123..26e94b6 100644 Binary files a/static/sprites-small/home/female/316.webp and b/static/sprites-small/home/female/316.webp differ diff --git a/static/sprites-small/home/female/317.webp b/static/sprites-small/home/female/317.webp index b9f3339..8b9599c 100644 Binary files a/static/sprites-small/home/female/317.webp and b/static/sprites-small/home/female/317.webp differ diff --git a/static/sprites-small/home/female/322.webp b/static/sprites-small/home/female/322.webp index d23a2ee..d855cee 100644 Binary files a/static/sprites-small/home/female/322.webp and b/static/sprites-small/home/female/322.webp differ diff --git a/static/sprites-small/home/female/323.webp b/static/sprites-small/home/female/323.webp index eb7dc98..bf7535e 100644 Binary files a/static/sprites-small/home/female/323.webp and b/static/sprites-small/home/female/323.webp differ diff --git a/static/sprites-small/home/female/332.webp b/static/sprites-small/home/female/332.webp index e67c570..e88ab4c 100644 Binary files a/static/sprites-small/home/female/332.webp and b/static/sprites-small/home/female/332.webp differ diff --git a/static/sprites-small/home/female/350.webp b/static/sprites-small/home/female/350.webp index 20855db..56a92b1 100644 Binary files a/static/sprites-small/home/female/350.webp and b/static/sprites-small/home/female/350.webp differ diff --git a/static/sprites-small/home/female/369.webp b/static/sprites-small/home/female/369.webp index 6e11e9a..2a505d4 100644 Binary files a/static/sprites-small/home/female/369.webp and b/static/sprites-small/home/female/369.webp differ diff --git a/static/sprites-small/home/female/396.webp b/static/sprites-small/home/female/396.webp index e927bbd..89280ae 100644 Binary files a/static/sprites-small/home/female/396.webp and b/static/sprites-small/home/female/396.webp differ diff --git a/static/sprites-small/home/female/397.webp b/static/sprites-small/home/female/397.webp index 162b01f..05929ec 100644 Binary files a/static/sprites-small/home/female/397.webp and b/static/sprites-small/home/female/397.webp differ diff --git a/static/sprites-small/home/female/398.webp b/static/sprites-small/home/female/398.webp index fc36bc7..e7fabb1 100644 Binary files a/static/sprites-small/home/female/398.webp and b/static/sprites-small/home/female/398.webp differ diff --git a/static/sprites-small/home/female/399.webp b/static/sprites-small/home/female/399.webp index d559e20..1b71dbb 100644 Binary files a/static/sprites-small/home/female/399.webp and b/static/sprites-small/home/female/399.webp differ diff --git a/static/sprites-small/home/female/400.webp b/static/sprites-small/home/female/400.webp index ab1a2e4..f589869 100644 Binary files a/static/sprites-small/home/female/400.webp and b/static/sprites-small/home/female/400.webp differ diff --git a/static/sprites-small/home/female/401.webp b/static/sprites-small/home/female/401.webp index 4207a63..a3f5f55 100644 Binary files a/static/sprites-small/home/female/401.webp and b/static/sprites-small/home/female/401.webp differ diff --git a/static/sprites-small/home/female/402.webp b/static/sprites-small/home/female/402.webp index a8b3ca9..cde5d3d 100644 Binary files a/static/sprites-small/home/female/402.webp and b/static/sprites-small/home/female/402.webp differ diff --git a/static/sprites-small/home/female/403.webp b/static/sprites-small/home/female/403.webp index e794c64..ab0ba41 100644 Binary files a/static/sprites-small/home/female/403.webp and b/static/sprites-small/home/female/403.webp differ diff --git a/static/sprites-small/home/female/404.webp b/static/sprites-small/home/female/404.webp index b85c140..8acff2c 100644 Binary files a/static/sprites-small/home/female/404.webp and b/static/sprites-small/home/female/404.webp differ diff --git a/static/sprites-small/home/female/405.webp b/static/sprites-small/home/female/405.webp index af4bcdb..a37efff 100644 Binary files a/static/sprites-small/home/female/405.webp and b/static/sprites-small/home/female/405.webp differ diff --git a/static/sprites-small/home/female/407.webp b/static/sprites-small/home/female/407.webp index fa4a8d1..3da53e5 100644 Binary files a/static/sprites-small/home/female/407.webp and b/static/sprites-small/home/female/407.webp differ diff --git a/static/sprites-small/home/female/41.webp b/static/sprites-small/home/female/41.webp index 6ff9a84..6deb030 100644 Binary files a/static/sprites-small/home/female/41.webp and b/static/sprites-small/home/female/41.webp differ diff --git a/static/sprites-small/home/female/415.webp b/static/sprites-small/home/female/415.webp index 1ed65ee..f212a29 100644 Binary files a/static/sprites-small/home/female/415.webp and b/static/sprites-small/home/female/415.webp differ diff --git a/static/sprites-small/home/female/417.webp b/static/sprites-small/home/female/417.webp index fdf97fd..15a1abb 100644 Binary files a/static/sprites-small/home/female/417.webp and b/static/sprites-small/home/female/417.webp differ diff --git a/static/sprites-small/home/female/418.webp b/static/sprites-small/home/female/418.webp index cb18fd7..4f6f396 100644 Binary files a/static/sprites-small/home/female/418.webp and b/static/sprites-small/home/female/418.webp differ diff --git a/static/sprites-small/home/female/419.webp b/static/sprites-small/home/female/419.webp index 0620a0b..f39ef24 100644 Binary files a/static/sprites-small/home/female/419.webp and b/static/sprites-small/home/female/419.webp differ diff --git a/static/sprites-small/home/female/42.webp b/static/sprites-small/home/female/42.webp index 1e10921..9f61a20 100644 Binary files a/static/sprites-small/home/female/42.webp and b/static/sprites-small/home/female/42.webp differ diff --git a/static/sprites-small/home/female/424.webp b/static/sprites-small/home/female/424.webp index a83b702..e0cd806 100644 Binary files a/static/sprites-small/home/female/424.webp and b/static/sprites-small/home/female/424.webp differ diff --git a/static/sprites-small/home/female/44.webp b/static/sprites-small/home/female/44.webp index 32cf55e..5a288f0 100644 Binary files a/static/sprites-small/home/female/44.webp and b/static/sprites-small/home/female/44.webp differ diff --git a/static/sprites-small/home/female/443.webp b/static/sprites-small/home/female/443.webp index 251ab91..0730916 100644 Binary files a/static/sprites-small/home/female/443.webp and b/static/sprites-small/home/female/443.webp differ diff --git a/static/sprites-small/home/female/444.webp b/static/sprites-small/home/female/444.webp index 990d53a..4364ff3 100644 Binary files a/static/sprites-small/home/female/444.webp and b/static/sprites-small/home/female/444.webp differ diff --git a/static/sprites-small/home/female/445.webp b/static/sprites-small/home/female/445.webp index 96082f2..a2d8c8c 100644 Binary files a/static/sprites-small/home/female/445.webp and b/static/sprites-small/home/female/445.webp differ diff --git a/static/sprites-small/home/female/449.webp b/static/sprites-small/home/female/449.webp index f7373b8..fcc8125 100644 Binary files a/static/sprites-small/home/female/449.webp and b/static/sprites-small/home/female/449.webp differ diff --git a/static/sprites-small/home/female/45.webp b/static/sprites-small/home/female/45.webp index bf73197..82a12ff 100644 Binary files a/static/sprites-small/home/female/45.webp and b/static/sprites-small/home/female/45.webp differ diff --git a/static/sprites-small/home/female/450.webp b/static/sprites-small/home/female/450.webp index 96d9101..4fbaea2 100644 Binary files a/static/sprites-small/home/female/450.webp and b/static/sprites-small/home/female/450.webp differ diff --git a/static/sprites-small/home/female/453.webp b/static/sprites-small/home/female/453.webp index dfa6068..d5499eb 100644 Binary files a/static/sprites-small/home/female/453.webp and b/static/sprites-small/home/female/453.webp differ diff --git a/static/sprites-small/home/female/454.webp b/static/sprites-small/home/female/454.webp index 148877a..1040c50 100644 Binary files a/static/sprites-small/home/female/454.webp and b/static/sprites-small/home/female/454.webp differ diff --git a/static/sprites-small/home/female/456.webp b/static/sprites-small/home/female/456.webp index bb5257e..82d0c96 100644 Binary files a/static/sprites-small/home/female/456.webp and b/static/sprites-small/home/female/456.webp differ diff --git a/static/sprites-small/home/female/457.webp b/static/sprites-small/home/female/457.webp index 51241af..2062c56 100644 Binary files a/static/sprites-small/home/female/457.webp and b/static/sprites-small/home/female/457.webp differ diff --git a/static/sprites-small/home/female/459.webp b/static/sprites-small/home/female/459.webp index 7f7d3c1..3d5718c 100644 Binary files a/static/sprites-small/home/female/459.webp and b/static/sprites-small/home/female/459.webp differ diff --git a/static/sprites-small/home/female/460.webp b/static/sprites-small/home/female/460.webp index 30d6ade..d4c33b7 100644 Binary files a/static/sprites-small/home/female/460.webp and b/static/sprites-small/home/female/460.webp differ diff --git a/static/sprites-small/home/female/461.webp b/static/sprites-small/home/female/461.webp index f35598b..d5d406b 100644 Binary files a/static/sprites-small/home/female/461.webp and b/static/sprites-small/home/female/461.webp differ diff --git a/static/sprites-small/home/female/464.webp b/static/sprites-small/home/female/464.webp index 288c7ed..a234d0a 100644 Binary files a/static/sprites-small/home/female/464.webp and b/static/sprites-small/home/female/464.webp differ diff --git a/static/sprites-small/home/female/465.webp b/static/sprites-small/home/female/465.webp index 692eee3..c83f5a3 100644 Binary files a/static/sprites-small/home/female/465.webp and b/static/sprites-small/home/female/465.webp differ diff --git a/static/sprites-small/home/female/473.webp b/static/sprites-small/home/female/473.webp index 00ab0fd..afaedda 100644 Binary files a/static/sprites-small/home/female/473.webp and b/static/sprites-small/home/female/473.webp differ diff --git a/static/sprites-small/home/female/521.webp b/static/sprites-small/home/female/521.webp index d081732..73cb6a5 100644 Binary files a/static/sprites-small/home/female/521.webp and b/static/sprites-small/home/female/521.webp differ diff --git a/static/sprites-small/home/female/592.webp b/static/sprites-small/home/female/592.webp index 0386e36..145720c 100644 Binary files a/static/sprites-small/home/female/592.webp and b/static/sprites-small/home/female/592.webp differ diff --git a/static/sprites-small/home/female/593.webp b/static/sprites-small/home/female/593.webp index 556516f..4ba86e8 100644 Binary files a/static/sprites-small/home/female/593.webp and b/static/sprites-small/home/female/593.webp differ diff --git a/static/sprites-small/home/female/64.webp b/static/sprites-small/home/female/64.webp index 3469f50..0a20ad9 100644 Binary files a/static/sprites-small/home/female/64.webp and b/static/sprites-small/home/female/64.webp differ diff --git a/static/sprites-small/home/female/65.webp b/static/sprites-small/home/female/65.webp index a986d71..bf52a45 100644 Binary files a/static/sprites-small/home/female/65.webp and b/static/sprites-small/home/female/65.webp differ diff --git a/static/sprites-small/home/female/668.webp b/static/sprites-small/home/female/668.webp index 39b1da5..165f954 100644 Binary files a/static/sprites-small/home/female/668.webp and b/static/sprites-small/home/female/668.webp differ diff --git a/static/sprites-small/home/female/678.webp b/static/sprites-small/home/female/678.webp index af33a4f..6356e87 100644 Binary files a/static/sprites-small/home/female/678.webp and b/static/sprites-small/home/female/678.webp differ diff --git a/static/sprites-small/home/female/84.webp b/static/sprites-small/home/female/84.webp index 91f37be..37ba4b8 100644 Binary files a/static/sprites-small/home/female/84.webp and b/static/sprites-small/home/female/84.webp differ diff --git a/static/sprites-small/home/female/85.webp b/static/sprites-small/home/female/85.webp index 3a1cb0f..81b8d3f 100644 Binary files a/static/sprites-small/home/female/85.webp and b/static/sprites-small/home/female/85.webp differ diff --git a/static/sprites-small/home/female/876.webp b/static/sprites-small/home/female/876.webp index 4259276..25ebf52 100644 Binary files a/static/sprites-small/home/female/876.webp and b/static/sprites-small/home/female/876.webp differ diff --git a/static/sprites-small/home/female/902.webp b/static/sprites-small/home/female/902.webp index 330a122..c8825ae 100644 Binary files a/static/sprites-small/home/female/902.webp and b/static/sprites-small/home/female/902.webp differ diff --git a/static/sprites-small/home/female/916.webp b/static/sprites-small/home/female/916.webp index 17e7eaa..801093b 100644 Binary files a/static/sprites-small/home/female/916.webp and b/static/sprites-small/home/female/916.webp differ diff --git a/static/sprites-small/home/female/97.webp b/static/sprites-small/home/female/97.webp index 243ab33..ee5dd9f 100644 Binary files a/static/sprites-small/home/female/97.webp and b/static/sprites-small/home/female/97.webp differ diff --git a/static/sprites-small/home/shiny/1.webp b/static/sprites-small/home/shiny/1.webp index 192a0fb..d71607c 100644 Binary files a/static/sprites-small/home/shiny/1.webp and b/static/sprites-small/home/shiny/1.webp differ diff --git a/static/sprites-small/home/shiny/10.webp b/static/sprites-small/home/shiny/10.webp index f274b83..defd24f 100644 Binary files a/static/sprites-small/home/shiny/10.webp and b/static/sprites-small/home/shiny/10.webp differ diff --git a/static/sprites-small/home/shiny/100.webp b/static/sprites-small/home/shiny/100.webp index c7cde72..c3dbbd3 100644 Binary files a/static/sprites-small/home/shiny/100.webp and b/static/sprites-small/home/shiny/100.webp differ diff --git a/static/sprites-small/home/shiny/1000.webp b/static/sprites-small/home/shiny/1000.webp index 7a3e041..68b4726 100644 Binary files a/static/sprites-small/home/shiny/1000.webp and b/static/sprites-small/home/shiny/1000.webp differ diff --git a/static/sprites-small/home/shiny/10001.webp b/static/sprites-small/home/shiny/10001.webp index 19435d4..c4ce739 100644 Binary files a/static/sprites-small/home/shiny/10001.webp and b/static/sprites-small/home/shiny/10001.webp differ diff --git a/static/sprites-small/home/shiny/10002.webp b/static/sprites-small/home/shiny/10002.webp index badf9d4..a1c89e5 100644 Binary files a/static/sprites-small/home/shiny/10002.webp and b/static/sprites-small/home/shiny/10002.webp differ diff --git a/static/sprites-small/home/shiny/10003.webp b/static/sprites-small/home/shiny/10003.webp index 2af6567..e41cc11 100644 Binary files a/static/sprites-small/home/shiny/10003.webp and b/static/sprites-small/home/shiny/10003.webp differ diff --git a/static/sprites-small/home/shiny/10004.webp b/static/sprites-small/home/shiny/10004.webp index 31e04e7..5ed2f49 100644 Binary files a/static/sprites-small/home/shiny/10004.webp and b/static/sprites-small/home/shiny/10004.webp differ diff --git a/static/sprites-small/home/shiny/10005.webp b/static/sprites-small/home/shiny/10005.webp index 054c195..024a74b 100644 Binary files a/static/sprites-small/home/shiny/10005.webp and b/static/sprites-small/home/shiny/10005.webp differ diff --git a/static/sprites-small/home/shiny/10006.webp b/static/sprites-small/home/shiny/10006.webp index 31cd30d..3822712 100644 Binary files a/static/sprites-small/home/shiny/10006.webp and b/static/sprites-small/home/shiny/10006.webp differ diff --git a/static/sprites-small/home/shiny/10007.webp b/static/sprites-small/home/shiny/10007.webp index 8fb7b90..7e26aa1 100644 Binary files a/static/sprites-small/home/shiny/10007.webp and b/static/sprites-small/home/shiny/10007.webp differ diff --git a/static/sprites-small/home/shiny/10008.webp b/static/sprites-small/home/shiny/10008.webp index aad951b..691534d 100644 Binary files a/static/sprites-small/home/shiny/10008.webp and b/static/sprites-small/home/shiny/10008.webp differ diff --git a/static/sprites-small/home/shiny/10009.webp b/static/sprites-small/home/shiny/10009.webp index ed606fc..5cd93ae 100644 Binary files a/static/sprites-small/home/shiny/10009.webp and b/static/sprites-small/home/shiny/10009.webp differ diff --git a/static/sprites-small/home/shiny/1001.webp b/static/sprites-small/home/shiny/1001.webp index aba4b16..8748a70 100644 Binary files a/static/sprites-small/home/shiny/1001.webp and b/static/sprites-small/home/shiny/1001.webp differ diff --git a/static/sprites-small/home/shiny/10010.webp b/static/sprites-small/home/shiny/10010.webp index 46a145d..1a8acaf 100644 Binary files a/static/sprites-small/home/shiny/10010.webp and b/static/sprites-small/home/shiny/10010.webp differ diff --git a/static/sprites-small/home/shiny/10011.webp b/static/sprites-small/home/shiny/10011.webp index 46b2b8f..05bd157 100644 Binary files a/static/sprites-small/home/shiny/10011.webp and b/static/sprites-small/home/shiny/10011.webp differ diff --git a/static/sprites-small/home/shiny/10012.webp b/static/sprites-small/home/shiny/10012.webp index 85b9660..09cf881 100644 Binary files a/static/sprites-small/home/shiny/10012.webp and b/static/sprites-small/home/shiny/10012.webp differ diff --git a/static/sprites-small/home/shiny/10013.webp b/static/sprites-small/home/shiny/10013.webp index 7def7fd..a38a3e5 100644 Binary files a/static/sprites-small/home/shiny/10013.webp and b/static/sprites-small/home/shiny/10013.webp differ diff --git a/static/sprites-small/home/shiny/10014.webp b/static/sprites-small/home/shiny/10014.webp index 183e5f8..5705522 100644 Binary files a/static/sprites-small/home/shiny/10014.webp and b/static/sprites-small/home/shiny/10014.webp differ diff --git a/static/sprites-small/home/shiny/10015.webp b/static/sprites-small/home/shiny/10015.webp index 2f827a9..1f28b61 100644 Binary files a/static/sprites-small/home/shiny/10015.webp and b/static/sprites-small/home/shiny/10015.webp differ diff --git a/static/sprites-small/home/shiny/10016.webp b/static/sprites-small/home/shiny/10016.webp index d60db4b..2c35703 100644 Binary files a/static/sprites-small/home/shiny/10016.webp and b/static/sprites-small/home/shiny/10016.webp differ diff --git a/static/sprites-small/home/shiny/10017.webp b/static/sprites-small/home/shiny/10017.webp index 63c0426..920e273 100644 Binary files a/static/sprites-small/home/shiny/10017.webp and b/static/sprites-small/home/shiny/10017.webp differ diff --git a/static/sprites-small/home/shiny/10018.webp b/static/sprites-small/home/shiny/10018.webp index 1ab4fd3..12e9a82 100644 Binary files a/static/sprites-small/home/shiny/10018.webp and b/static/sprites-small/home/shiny/10018.webp differ diff --git a/static/sprites-small/home/shiny/10019.webp b/static/sprites-small/home/shiny/10019.webp index dc6a725..30607cc 100644 Binary files a/static/sprites-small/home/shiny/10019.webp and b/static/sprites-small/home/shiny/10019.webp differ diff --git a/static/sprites-small/home/shiny/1002.webp b/static/sprites-small/home/shiny/1002.webp index 28851fe..b41bb77 100644 Binary files a/static/sprites-small/home/shiny/1002.webp and b/static/sprites-small/home/shiny/1002.webp differ diff --git a/static/sprites-small/home/shiny/10020.webp b/static/sprites-small/home/shiny/10020.webp index 4357aac..e3b64f3 100644 Binary files a/static/sprites-small/home/shiny/10020.webp and b/static/sprites-small/home/shiny/10020.webp differ diff --git a/static/sprites-small/home/shiny/10021.webp b/static/sprites-small/home/shiny/10021.webp index c1906a2..3ba0e80 100644 Binary files a/static/sprites-small/home/shiny/10021.webp and b/static/sprites-small/home/shiny/10021.webp differ diff --git a/static/sprites-small/home/shiny/10022.webp b/static/sprites-small/home/shiny/10022.webp index f1173fd..723c9e0 100644 Binary files a/static/sprites-small/home/shiny/10022.webp and b/static/sprites-small/home/shiny/10022.webp differ diff --git a/static/sprites-small/home/shiny/10023.webp b/static/sprites-small/home/shiny/10023.webp index b5b1981..2f4e747 100644 Binary files a/static/sprites-small/home/shiny/10023.webp and b/static/sprites-small/home/shiny/10023.webp differ diff --git a/static/sprites-small/home/shiny/10024.webp b/static/sprites-small/home/shiny/10024.webp index 6c16159..0f24fed 100644 Binary files a/static/sprites-small/home/shiny/10024.webp and b/static/sprites-small/home/shiny/10024.webp differ diff --git a/static/sprites-small/home/shiny/10025.webp b/static/sprites-small/home/shiny/10025.webp index 2051009..1c9b65e 100644 Binary files a/static/sprites-small/home/shiny/10025.webp and b/static/sprites-small/home/shiny/10025.webp differ diff --git a/static/sprites-small/home/shiny/10026.webp b/static/sprites-small/home/shiny/10026.webp index ac04f6f..379f7c2 100644 Binary files a/static/sprites-small/home/shiny/10026.webp and b/static/sprites-small/home/shiny/10026.webp differ diff --git a/static/sprites-small/home/shiny/10027.webp b/static/sprites-small/home/shiny/10027.webp index b0ac388..f67dd01 100644 Binary files a/static/sprites-small/home/shiny/10027.webp and b/static/sprites-small/home/shiny/10027.webp differ diff --git a/static/sprites-small/home/shiny/10028.webp b/static/sprites-small/home/shiny/10028.webp index 2a46f8c..df6cf83 100644 Binary files a/static/sprites-small/home/shiny/10028.webp and b/static/sprites-small/home/shiny/10028.webp differ diff --git a/static/sprites-small/home/shiny/10029.webp b/static/sprites-small/home/shiny/10029.webp index 141c1b6..cdaea9e 100644 Binary files a/static/sprites-small/home/shiny/10029.webp and b/static/sprites-small/home/shiny/10029.webp differ diff --git a/static/sprites-small/home/shiny/1003.webp b/static/sprites-small/home/shiny/1003.webp index 8660d2b..d26788a 100644 Binary files a/static/sprites-small/home/shiny/1003.webp and b/static/sprites-small/home/shiny/1003.webp differ diff --git a/static/sprites-small/home/shiny/10030.webp b/static/sprites-small/home/shiny/10030.webp index 909cebb..fb6fe1b 100644 Binary files a/static/sprites-small/home/shiny/10030.webp and b/static/sprites-small/home/shiny/10030.webp differ diff --git a/static/sprites-small/home/shiny/10031.webp b/static/sprites-small/home/shiny/10031.webp index 277bfd9..24eba60 100644 Binary files a/static/sprites-small/home/shiny/10031.webp and b/static/sprites-small/home/shiny/10031.webp differ diff --git a/static/sprites-small/home/shiny/10032.webp b/static/sprites-small/home/shiny/10032.webp index 33620d9..47cc211 100644 Binary files a/static/sprites-small/home/shiny/10032.webp and b/static/sprites-small/home/shiny/10032.webp differ diff --git a/static/sprites-small/home/shiny/10033.webp b/static/sprites-small/home/shiny/10033.webp index 000e47f..4dfee17 100644 Binary files a/static/sprites-small/home/shiny/10033.webp and b/static/sprites-small/home/shiny/10033.webp differ diff --git a/static/sprites-small/home/shiny/10034.webp b/static/sprites-small/home/shiny/10034.webp index a1f3e3e..c09e41e 100644 Binary files a/static/sprites-small/home/shiny/10034.webp and b/static/sprites-small/home/shiny/10034.webp differ diff --git a/static/sprites-small/home/shiny/10035.webp b/static/sprites-small/home/shiny/10035.webp index 71d63a1..68680cc 100644 Binary files a/static/sprites-small/home/shiny/10035.webp and b/static/sprites-small/home/shiny/10035.webp differ diff --git a/static/sprites-small/home/shiny/10036.webp b/static/sprites-small/home/shiny/10036.webp index 500d399..7befe09 100644 Binary files a/static/sprites-small/home/shiny/10036.webp and b/static/sprites-small/home/shiny/10036.webp differ diff --git a/static/sprites-small/home/shiny/10037.webp b/static/sprites-small/home/shiny/10037.webp index 791f39b..e9dbcd4 100644 Binary files a/static/sprites-small/home/shiny/10037.webp and b/static/sprites-small/home/shiny/10037.webp differ diff --git a/static/sprites-small/home/shiny/10038.webp b/static/sprites-small/home/shiny/10038.webp index afb1852..bd80efd 100644 Binary files a/static/sprites-small/home/shiny/10038.webp and b/static/sprites-small/home/shiny/10038.webp differ diff --git a/static/sprites-small/home/shiny/10039.webp b/static/sprites-small/home/shiny/10039.webp index 2099d09..2ce8172 100644 Binary files a/static/sprites-small/home/shiny/10039.webp and b/static/sprites-small/home/shiny/10039.webp differ diff --git a/static/sprites-small/home/shiny/1004.webp b/static/sprites-small/home/shiny/1004.webp index 6a8f640..ecd856d 100644 Binary files a/static/sprites-small/home/shiny/1004.webp and b/static/sprites-small/home/shiny/1004.webp differ diff --git a/static/sprites-small/home/shiny/10040.webp b/static/sprites-small/home/shiny/10040.webp index 4a300ec..2187f32 100644 Binary files a/static/sprites-small/home/shiny/10040.webp and b/static/sprites-small/home/shiny/10040.webp differ diff --git a/static/sprites-small/home/shiny/10041.webp b/static/sprites-small/home/shiny/10041.webp index da584fc..6349306 100644 Binary files a/static/sprites-small/home/shiny/10041.webp and b/static/sprites-small/home/shiny/10041.webp differ diff --git a/static/sprites-small/home/shiny/10042.webp b/static/sprites-small/home/shiny/10042.webp index 2a399dc..2575666 100644 Binary files a/static/sprites-small/home/shiny/10042.webp and b/static/sprites-small/home/shiny/10042.webp differ diff --git a/static/sprites-small/home/shiny/10043.webp b/static/sprites-small/home/shiny/10043.webp index 4ad2814..dca5e4e 100644 Binary files a/static/sprites-small/home/shiny/10043.webp and b/static/sprites-small/home/shiny/10043.webp differ diff --git a/static/sprites-small/home/shiny/10044.webp b/static/sprites-small/home/shiny/10044.webp index 9c60dde..fae1aa1 100644 Binary files a/static/sprites-small/home/shiny/10044.webp and b/static/sprites-small/home/shiny/10044.webp differ diff --git a/static/sprites-small/home/shiny/10045.webp b/static/sprites-small/home/shiny/10045.webp index 686c41a..b31794f 100644 Binary files a/static/sprites-small/home/shiny/10045.webp and b/static/sprites-small/home/shiny/10045.webp differ diff --git a/static/sprites-small/home/shiny/10046.webp b/static/sprites-small/home/shiny/10046.webp index 7d1e284..5f2b8ff 100644 Binary files a/static/sprites-small/home/shiny/10046.webp and b/static/sprites-small/home/shiny/10046.webp differ diff --git a/static/sprites-small/home/shiny/10047.webp b/static/sprites-small/home/shiny/10047.webp index dd27731..3a7ceb5 100644 Binary files a/static/sprites-small/home/shiny/10047.webp and b/static/sprites-small/home/shiny/10047.webp differ diff --git a/static/sprites-small/home/shiny/10048.webp b/static/sprites-small/home/shiny/10048.webp index e829b81..18c6752 100644 Binary files a/static/sprites-small/home/shiny/10048.webp and b/static/sprites-small/home/shiny/10048.webp differ diff --git a/static/sprites-small/home/shiny/10049.webp b/static/sprites-small/home/shiny/10049.webp index 5b9e93a..b1edca3 100644 Binary files a/static/sprites-small/home/shiny/10049.webp and b/static/sprites-small/home/shiny/10049.webp differ diff --git a/static/sprites-small/home/shiny/1005.webp b/static/sprites-small/home/shiny/1005.webp index 0c91d16..36d57a1 100644 Binary files a/static/sprites-small/home/shiny/1005.webp and b/static/sprites-small/home/shiny/1005.webp differ diff --git a/static/sprites-small/home/shiny/10050.webp b/static/sprites-small/home/shiny/10050.webp index e77ac49..394159f 100644 Binary files a/static/sprites-small/home/shiny/10050.webp and b/static/sprites-small/home/shiny/10050.webp differ diff --git a/static/sprites-small/home/shiny/10051.webp b/static/sprites-small/home/shiny/10051.webp index 62c751d..c173064 100644 Binary files a/static/sprites-small/home/shiny/10051.webp and b/static/sprites-small/home/shiny/10051.webp differ diff --git a/static/sprites-small/home/shiny/10052.webp b/static/sprites-small/home/shiny/10052.webp index 2f2f12a..4e28308 100644 Binary files a/static/sprites-small/home/shiny/10052.webp and b/static/sprites-small/home/shiny/10052.webp differ diff --git a/static/sprites-small/home/shiny/10053.webp b/static/sprites-small/home/shiny/10053.webp index 95c3839..e81cf70 100644 Binary files a/static/sprites-small/home/shiny/10053.webp and b/static/sprites-small/home/shiny/10053.webp differ diff --git a/static/sprites-small/home/shiny/10054.webp b/static/sprites-small/home/shiny/10054.webp index cf70df9..bc63cd4 100644 Binary files a/static/sprites-small/home/shiny/10054.webp and b/static/sprites-small/home/shiny/10054.webp differ diff --git a/static/sprites-small/home/shiny/10055.webp b/static/sprites-small/home/shiny/10055.webp index d985cbf..e8b2f28 100644 Binary files a/static/sprites-small/home/shiny/10055.webp and b/static/sprites-small/home/shiny/10055.webp differ diff --git a/static/sprites-small/home/shiny/10056.webp b/static/sprites-small/home/shiny/10056.webp index e759083..678491e 100644 Binary files a/static/sprites-small/home/shiny/10056.webp and b/static/sprites-small/home/shiny/10056.webp differ diff --git a/static/sprites-small/home/shiny/10057.webp b/static/sprites-small/home/shiny/10057.webp index 6ccfce8..55f2ed5 100644 Binary files a/static/sprites-small/home/shiny/10057.webp and b/static/sprites-small/home/shiny/10057.webp differ diff --git a/static/sprites-small/home/shiny/10058.webp b/static/sprites-small/home/shiny/10058.webp index 659d330..5c1dd7f 100644 Binary files a/static/sprites-small/home/shiny/10058.webp and b/static/sprites-small/home/shiny/10058.webp differ diff --git a/static/sprites-small/home/shiny/10059.webp b/static/sprites-small/home/shiny/10059.webp index f5e774f..a7f050b 100644 Binary files a/static/sprites-small/home/shiny/10059.webp and b/static/sprites-small/home/shiny/10059.webp differ diff --git a/static/sprites-small/home/shiny/1006.webp b/static/sprites-small/home/shiny/1006.webp index e5ae39f..9ecc1ce 100644 Binary files a/static/sprites-small/home/shiny/1006.webp and b/static/sprites-small/home/shiny/1006.webp differ diff --git a/static/sprites-small/home/shiny/10060.webp b/static/sprites-small/home/shiny/10060.webp index e9f2086..32ea2b1 100644 Binary files a/static/sprites-small/home/shiny/10060.webp and b/static/sprites-small/home/shiny/10060.webp differ diff --git a/static/sprites-small/home/shiny/10062.webp b/static/sprites-small/home/shiny/10062.webp index 87f6ae8..69ae05e 100644 Binary files a/static/sprites-small/home/shiny/10062.webp and b/static/sprites-small/home/shiny/10062.webp differ diff --git a/static/sprites-small/home/shiny/10063.webp b/static/sprites-small/home/shiny/10063.webp index 265a3a6..e0d092d 100644 Binary files a/static/sprites-small/home/shiny/10063.webp and b/static/sprites-small/home/shiny/10063.webp differ diff --git a/static/sprites-small/home/shiny/10064.webp b/static/sprites-small/home/shiny/10064.webp index c3cae33..71b3d9d 100644 Binary files a/static/sprites-small/home/shiny/10064.webp and b/static/sprites-small/home/shiny/10064.webp differ diff --git a/static/sprites-small/home/shiny/10065.webp b/static/sprites-small/home/shiny/10065.webp index 340cab5..19f4fd4 100644 Binary files a/static/sprites-small/home/shiny/10065.webp and b/static/sprites-small/home/shiny/10065.webp differ diff --git a/static/sprites-small/home/shiny/10066.webp b/static/sprites-small/home/shiny/10066.webp index bec4eef..f1ec123 100644 Binary files a/static/sprites-small/home/shiny/10066.webp and b/static/sprites-small/home/shiny/10066.webp differ diff --git a/static/sprites-small/home/shiny/10067.webp b/static/sprites-small/home/shiny/10067.webp index 3ad4069..8c5410f 100644 Binary files a/static/sprites-small/home/shiny/10067.webp and b/static/sprites-small/home/shiny/10067.webp differ diff --git a/static/sprites-small/home/shiny/10068.webp b/static/sprites-small/home/shiny/10068.webp index 84e319a..057506d 100644 Binary files a/static/sprites-small/home/shiny/10068.webp and b/static/sprites-small/home/shiny/10068.webp differ diff --git a/static/sprites-small/home/shiny/10069.webp b/static/sprites-small/home/shiny/10069.webp index 7c664b7..0d8d766 100644 Binary files a/static/sprites-small/home/shiny/10069.webp and b/static/sprites-small/home/shiny/10069.webp differ diff --git a/static/sprites-small/home/shiny/1007.webp b/static/sprites-small/home/shiny/1007.webp index c133858..3ec6aa1 100644 Binary files a/static/sprites-small/home/shiny/1007.webp and b/static/sprites-small/home/shiny/1007.webp differ diff --git a/static/sprites-small/home/shiny/10070.webp b/static/sprites-small/home/shiny/10070.webp index 6130ed0..8e43459 100644 Binary files a/static/sprites-small/home/shiny/10070.webp and b/static/sprites-small/home/shiny/10070.webp differ diff --git a/static/sprites-small/home/shiny/10071.webp b/static/sprites-small/home/shiny/10071.webp index cba3b1a..2143ce7 100644 Binary files a/static/sprites-small/home/shiny/10071.webp and b/static/sprites-small/home/shiny/10071.webp differ diff --git a/static/sprites-small/home/shiny/10072.webp b/static/sprites-small/home/shiny/10072.webp index 14a782e..d8b684b 100644 Binary files a/static/sprites-small/home/shiny/10072.webp and b/static/sprites-small/home/shiny/10072.webp differ diff --git a/static/sprites-small/home/shiny/10073.webp b/static/sprites-small/home/shiny/10073.webp index ff516aa..bc4845b 100644 Binary files a/static/sprites-small/home/shiny/10073.webp and b/static/sprites-small/home/shiny/10073.webp differ diff --git a/static/sprites-small/home/shiny/10074.webp b/static/sprites-small/home/shiny/10074.webp index 6c70270..d1940c3 100644 Binary files a/static/sprites-small/home/shiny/10074.webp and b/static/sprites-small/home/shiny/10074.webp differ diff --git a/static/sprites-small/home/shiny/10075.webp b/static/sprites-small/home/shiny/10075.webp index c117353..cb7d13b 100644 Binary files a/static/sprites-small/home/shiny/10075.webp and b/static/sprites-small/home/shiny/10075.webp differ diff --git a/static/sprites-small/home/shiny/10076.webp b/static/sprites-small/home/shiny/10076.webp index 05fcdaa..93ed0a6 100644 Binary files a/static/sprites-small/home/shiny/10076.webp and b/static/sprites-small/home/shiny/10076.webp differ diff --git a/static/sprites-small/home/shiny/10077.webp b/static/sprites-small/home/shiny/10077.webp index 2c9b1f4..b4c6677 100644 Binary files a/static/sprites-small/home/shiny/10077.webp and b/static/sprites-small/home/shiny/10077.webp differ diff --git a/static/sprites-small/home/shiny/10078.webp b/static/sprites-small/home/shiny/10078.webp index eb5c11b..1815e07 100644 Binary files a/static/sprites-small/home/shiny/10078.webp and b/static/sprites-small/home/shiny/10078.webp differ diff --git a/static/sprites-small/home/shiny/10079.webp b/static/sprites-small/home/shiny/10079.webp index 53ce7b8..eb4e897 100644 Binary files a/static/sprites-small/home/shiny/10079.webp and b/static/sprites-small/home/shiny/10079.webp differ diff --git a/static/sprites-small/home/shiny/1008.webp b/static/sprites-small/home/shiny/1008.webp index 96d0d26..df1af9a 100644 Binary files a/static/sprites-small/home/shiny/1008.webp and b/static/sprites-small/home/shiny/1008.webp differ diff --git a/static/sprites-small/home/shiny/10086.webp b/static/sprites-small/home/shiny/10086.webp index a2cafb9..4c357a4 100644 Binary files a/static/sprites-small/home/shiny/10086.webp and b/static/sprites-small/home/shiny/10086.webp differ diff --git a/static/sprites-small/home/shiny/10087.webp b/static/sprites-small/home/shiny/10087.webp index 39fe4f1..36a4996 100644 Binary files a/static/sprites-small/home/shiny/10087.webp and b/static/sprites-small/home/shiny/10087.webp differ diff --git a/static/sprites-small/home/shiny/10088.webp b/static/sprites-small/home/shiny/10088.webp index 9cdd0e3..d4cd10e 100644 Binary files a/static/sprites-small/home/shiny/10088.webp and b/static/sprites-small/home/shiny/10088.webp differ diff --git a/static/sprites-small/home/shiny/10089.webp b/static/sprites-small/home/shiny/10089.webp index d295f31..28aad47 100644 Binary files a/static/sprites-small/home/shiny/10089.webp and b/static/sprites-small/home/shiny/10089.webp differ diff --git a/static/sprites-small/home/shiny/1009.webp b/static/sprites-small/home/shiny/1009.webp index c374e3c..dc167f2 100644 Binary files a/static/sprites-small/home/shiny/1009.webp and b/static/sprites-small/home/shiny/1009.webp differ diff --git a/static/sprites-small/home/shiny/10090.webp b/static/sprites-small/home/shiny/10090.webp index e160069..7c5a1e2 100644 Binary files a/static/sprites-small/home/shiny/10090.webp and b/static/sprites-small/home/shiny/10090.webp differ diff --git a/static/sprites-small/home/shiny/10091.webp b/static/sprites-small/home/shiny/10091.webp index 8739d16..f1d5605 100644 Binary files a/static/sprites-small/home/shiny/10091.webp and b/static/sprites-small/home/shiny/10091.webp differ diff --git a/static/sprites-small/home/shiny/10092.webp b/static/sprites-small/home/shiny/10092.webp index 6e0390b..e5b6dde 100644 Binary files a/static/sprites-small/home/shiny/10092.webp and b/static/sprites-small/home/shiny/10092.webp differ diff --git a/static/sprites-small/home/shiny/10093.webp b/static/sprites-small/home/shiny/10093.webp index 4f9d649..006e9a5 100644 Binary files a/static/sprites-small/home/shiny/10093.webp and b/static/sprites-small/home/shiny/10093.webp differ diff --git a/static/sprites-small/home/shiny/101.webp b/static/sprites-small/home/shiny/101.webp index 6330b63..38e3f2c 100644 Binary files a/static/sprites-small/home/shiny/101.webp and b/static/sprites-small/home/shiny/101.webp differ diff --git a/static/sprites-small/home/shiny/1010.webp b/static/sprites-small/home/shiny/1010.webp index 6145072..a92c375 100644 Binary files a/static/sprites-small/home/shiny/1010.webp and b/static/sprites-small/home/shiny/1010.webp differ diff --git a/static/sprites-small/home/shiny/10100.webp b/static/sprites-small/home/shiny/10100.webp index d892664..20c2ea3 100644 Binary files a/static/sprites-small/home/shiny/10100.webp and b/static/sprites-small/home/shiny/10100.webp differ diff --git a/static/sprites-small/home/shiny/10101.webp b/static/sprites-small/home/shiny/10101.webp index 94d0fcf..b9b2ef5 100644 Binary files a/static/sprites-small/home/shiny/10101.webp and b/static/sprites-small/home/shiny/10101.webp differ diff --git a/static/sprites-small/home/shiny/10102.webp b/static/sprites-small/home/shiny/10102.webp index a688895..aa6aec2 100644 Binary files a/static/sprites-small/home/shiny/10102.webp and b/static/sprites-small/home/shiny/10102.webp differ diff --git a/static/sprites-small/home/shiny/10103.webp b/static/sprites-small/home/shiny/10103.webp index 83ba6a5..fffca4a 100644 Binary files a/static/sprites-small/home/shiny/10103.webp and b/static/sprites-small/home/shiny/10103.webp differ diff --git a/static/sprites-small/home/shiny/10104.webp b/static/sprites-small/home/shiny/10104.webp index 84a4359..20ca669 100644 Binary files a/static/sprites-small/home/shiny/10104.webp and b/static/sprites-small/home/shiny/10104.webp differ diff --git a/static/sprites-small/home/shiny/10105.webp b/static/sprites-small/home/shiny/10105.webp index 55b3f42..244d8d2 100644 Binary files a/static/sprites-small/home/shiny/10105.webp and b/static/sprites-small/home/shiny/10105.webp differ diff --git a/static/sprites-small/home/shiny/10106.webp b/static/sprites-small/home/shiny/10106.webp index 65d859c..892d6a4 100644 Binary files a/static/sprites-small/home/shiny/10106.webp and b/static/sprites-small/home/shiny/10106.webp differ diff --git a/static/sprites-small/home/shiny/10107.webp b/static/sprites-small/home/shiny/10107.webp index 0257564..0dd1064 100644 Binary files a/static/sprites-small/home/shiny/10107.webp and b/static/sprites-small/home/shiny/10107.webp differ diff --git a/static/sprites-small/home/shiny/10108.webp b/static/sprites-small/home/shiny/10108.webp index c7ef342..962f7e5 100644 Binary files a/static/sprites-small/home/shiny/10108.webp and b/static/sprites-small/home/shiny/10108.webp differ diff --git a/static/sprites-small/home/shiny/10109.webp b/static/sprites-small/home/shiny/10109.webp index 7ae4359..b1b45f0 100644 Binary files a/static/sprites-small/home/shiny/10109.webp and b/static/sprites-small/home/shiny/10109.webp differ diff --git a/static/sprites-small/home/shiny/1011.webp b/static/sprites-small/home/shiny/1011.webp index 0bddde4..eb1cbf9 100644 Binary files a/static/sprites-small/home/shiny/1011.webp and b/static/sprites-small/home/shiny/1011.webp differ diff --git a/static/sprites-small/home/shiny/10110.webp b/static/sprites-small/home/shiny/10110.webp index c1fdad9..dc1d97e 100644 Binary files a/static/sprites-small/home/shiny/10110.webp and b/static/sprites-small/home/shiny/10110.webp differ diff --git a/static/sprites-small/home/shiny/10111.webp b/static/sprites-small/home/shiny/10111.webp index aaf23a6..ff091b3 100644 Binary files a/static/sprites-small/home/shiny/10111.webp and b/static/sprites-small/home/shiny/10111.webp differ diff --git a/static/sprites-small/home/shiny/10112.webp b/static/sprites-small/home/shiny/10112.webp index 1d1732f..c9df2ac 100644 Binary files a/static/sprites-small/home/shiny/10112.webp and b/static/sprites-small/home/shiny/10112.webp differ diff --git a/static/sprites-small/home/shiny/10113.webp b/static/sprites-small/home/shiny/10113.webp index da42b7c..b728d10 100644 Binary files a/static/sprites-small/home/shiny/10113.webp and b/static/sprites-small/home/shiny/10113.webp differ diff --git a/static/sprites-small/home/shiny/10114.webp b/static/sprites-small/home/shiny/10114.webp index 6ab337b..f62f7e7 100644 Binary files a/static/sprites-small/home/shiny/10114.webp and b/static/sprites-small/home/shiny/10114.webp differ diff --git a/static/sprites-small/home/shiny/10115.webp b/static/sprites-small/home/shiny/10115.webp index cf3c74a..9cb5bc4 100644 Binary files a/static/sprites-small/home/shiny/10115.webp and b/static/sprites-small/home/shiny/10115.webp differ diff --git a/static/sprites-small/home/shiny/10116.webp b/static/sprites-small/home/shiny/10116.webp index 0ebf14a..5eb8143 100644 Binary files a/static/sprites-small/home/shiny/10116.webp and b/static/sprites-small/home/shiny/10116.webp differ diff --git a/static/sprites-small/home/shiny/10117.webp b/static/sprites-small/home/shiny/10117.webp index 7d4bdff..8594f95 100644 Binary files a/static/sprites-small/home/shiny/10117.webp and b/static/sprites-small/home/shiny/10117.webp differ diff --git a/static/sprites-small/home/shiny/10118.webp b/static/sprites-small/home/shiny/10118.webp index f515798..d8963ce 100644 Binary files a/static/sprites-small/home/shiny/10118.webp and b/static/sprites-small/home/shiny/10118.webp differ diff --git a/static/sprites-small/home/shiny/10119.webp b/static/sprites-small/home/shiny/10119.webp index ac0db91..06d4677 100644 Binary files a/static/sprites-small/home/shiny/10119.webp and b/static/sprites-small/home/shiny/10119.webp differ diff --git a/static/sprites-small/home/shiny/1012.webp b/static/sprites-small/home/shiny/1012.webp index 3937e0c..a3305a8 100644 Binary files a/static/sprites-small/home/shiny/1012.webp and b/static/sprites-small/home/shiny/1012.webp differ diff --git a/static/sprites-small/home/shiny/10120.webp b/static/sprites-small/home/shiny/10120.webp index e8475a6..7ee7718 100644 Binary files a/static/sprites-small/home/shiny/10120.webp and b/static/sprites-small/home/shiny/10120.webp differ diff --git a/static/sprites-small/home/shiny/10121.webp b/static/sprites-small/home/shiny/10121.webp index 143b804..8e2927f 100644 Binary files a/static/sprites-small/home/shiny/10121.webp and b/static/sprites-small/home/shiny/10121.webp differ diff --git a/static/sprites-small/home/shiny/10122.webp b/static/sprites-small/home/shiny/10122.webp index 6f1eff7..883f6a0 100644 Binary files a/static/sprites-small/home/shiny/10122.webp and b/static/sprites-small/home/shiny/10122.webp differ diff --git a/static/sprites-small/home/shiny/10123.webp b/static/sprites-small/home/shiny/10123.webp index 478a4ff..51cdff2 100644 Binary files a/static/sprites-small/home/shiny/10123.webp and b/static/sprites-small/home/shiny/10123.webp differ diff --git a/static/sprites-small/home/shiny/10124.webp b/static/sprites-small/home/shiny/10124.webp index aa8de42..cfd8c2c 100644 Binary files a/static/sprites-small/home/shiny/10124.webp and b/static/sprites-small/home/shiny/10124.webp differ diff --git a/static/sprites-small/home/shiny/10125.webp b/static/sprites-small/home/shiny/10125.webp index b07cce6..b844687 100644 Binary files a/static/sprites-small/home/shiny/10125.webp and b/static/sprites-small/home/shiny/10125.webp differ diff --git a/static/sprites-small/home/shiny/10126.webp b/static/sprites-small/home/shiny/10126.webp index b7a172e..d2dbd11 100644 Binary files a/static/sprites-small/home/shiny/10126.webp and b/static/sprites-small/home/shiny/10126.webp differ diff --git a/static/sprites-small/home/shiny/10127.webp b/static/sprites-small/home/shiny/10127.webp index fda120b..9d56f2d 100644 Binary files a/static/sprites-small/home/shiny/10127.webp and b/static/sprites-small/home/shiny/10127.webp differ diff --git a/static/sprites-small/home/shiny/10128.webp b/static/sprites-small/home/shiny/10128.webp index 55db507..fe5aec0 100644 Binary files a/static/sprites-small/home/shiny/10128.webp and b/static/sprites-small/home/shiny/10128.webp differ diff --git a/static/sprites-small/home/shiny/10129.webp b/static/sprites-small/home/shiny/10129.webp index 66d7246..df7fe3c 100644 Binary files a/static/sprites-small/home/shiny/10129.webp and b/static/sprites-small/home/shiny/10129.webp differ diff --git a/static/sprites-small/home/shiny/1013.webp b/static/sprites-small/home/shiny/1013.webp index 007b436..c161155 100644 Binary files a/static/sprites-small/home/shiny/1013.webp and b/static/sprites-small/home/shiny/1013.webp differ diff --git a/static/sprites-small/home/shiny/10130.webp b/static/sprites-small/home/shiny/10130.webp index e127bfd..5948764 100644 Binary files a/static/sprites-small/home/shiny/10130.webp and b/static/sprites-small/home/shiny/10130.webp differ diff --git a/static/sprites-small/home/shiny/10131.webp b/static/sprites-small/home/shiny/10131.webp index e127bfd..5948764 100644 Binary files a/static/sprites-small/home/shiny/10131.webp and b/static/sprites-small/home/shiny/10131.webp differ diff --git a/static/sprites-small/home/shiny/10132.webp b/static/sprites-small/home/shiny/10132.webp index e127bfd..5948764 100644 Binary files a/static/sprites-small/home/shiny/10132.webp and b/static/sprites-small/home/shiny/10132.webp differ diff --git a/static/sprites-small/home/shiny/10133.webp b/static/sprites-small/home/shiny/10133.webp index e127bfd..5948764 100644 Binary files a/static/sprites-small/home/shiny/10133.webp and b/static/sprites-small/home/shiny/10133.webp differ diff --git a/static/sprites-small/home/shiny/10134.webp b/static/sprites-small/home/shiny/10134.webp index e127bfd..5948764 100644 Binary files a/static/sprites-small/home/shiny/10134.webp and b/static/sprites-small/home/shiny/10134.webp differ diff --git a/static/sprites-small/home/shiny/10135.webp b/static/sprites-small/home/shiny/10135.webp index e127bfd..5948764 100644 Binary files a/static/sprites-small/home/shiny/10135.webp and b/static/sprites-small/home/shiny/10135.webp differ diff --git a/static/sprites-small/home/shiny/10136.webp b/static/sprites-small/home/shiny/10136.webp index 5956896..2ffcd17 100644 Binary files a/static/sprites-small/home/shiny/10136.webp and b/static/sprites-small/home/shiny/10136.webp differ diff --git a/static/sprites-small/home/shiny/10137.webp b/static/sprites-small/home/shiny/10137.webp index 572872f..193e6bb 100644 Binary files a/static/sprites-small/home/shiny/10137.webp and b/static/sprites-small/home/shiny/10137.webp differ diff --git a/static/sprites-small/home/shiny/10138.webp b/static/sprites-small/home/shiny/10138.webp index 572872f..193e6bb 100644 Binary files a/static/sprites-small/home/shiny/10138.webp and b/static/sprites-small/home/shiny/10138.webp differ diff --git a/static/sprites-small/home/shiny/10139.webp b/static/sprites-small/home/shiny/10139.webp index 572872f..193e6bb 100644 Binary files a/static/sprites-small/home/shiny/10139.webp and b/static/sprites-small/home/shiny/10139.webp differ diff --git a/static/sprites-small/home/shiny/1014.webp b/static/sprites-small/home/shiny/1014.webp index e12cc5d..ed031c3 100644 Binary files a/static/sprites-small/home/shiny/1014.webp and b/static/sprites-small/home/shiny/1014.webp differ diff --git a/static/sprites-small/home/shiny/10140.webp b/static/sprites-small/home/shiny/10140.webp index 572872f..193e6bb 100644 Binary files a/static/sprites-small/home/shiny/10140.webp and b/static/sprites-small/home/shiny/10140.webp differ diff --git a/static/sprites-small/home/shiny/10141.webp b/static/sprites-small/home/shiny/10141.webp index 572872f..193e6bb 100644 Binary files a/static/sprites-small/home/shiny/10141.webp and b/static/sprites-small/home/shiny/10141.webp differ diff --git a/static/sprites-small/home/shiny/10142.webp b/static/sprites-small/home/shiny/10142.webp index 572872f..193e6bb 100644 Binary files a/static/sprites-small/home/shiny/10142.webp and b/static/sprites-small/home/shiny/10142.webp differ diff --git a/static/sprites-small/home/shiny/10143.webp b/static/sprites-small/home/shiny/10143.webp index 59bb665..4268f17 100644 Binary files a/static/sprites-small/home/shiny/10143.webp and b/static/sprites-small/home/shiny/10143.webp differ diff --git a/static/sprites-small/home/shiny/10145.webp b/static/sprites-small/home/shiny/10145.webp index d3790c7..db67718 100644 Binary files a/static/sprites-small/home/shiny/10145.webp and b/static/sprites-small/home/shiny/10145.webp differ diff --git a/static/sprites-small/home/shiny/10146.webp b/static/sprites-small/home/shiny/10146.webp index 0d6d723..173769d 100644 Binary files a/static/sprites-small/home/shiny/10146.webp and b/static/sprites-small/home/shiny/10146.webp differ diff --git a/static/sprites-small/home/shiny/10147.webp b/static/sprites-small/home/shiny/10147.webp index 9dd0b24..dc01b13 100644 Binary files a/static/sprites-small/home/shiny/10147.webp and b/static/sprites-small/home/shiny/10147.webp differ diff --git a/static/sprites-small/home/shiny/10149.webp b/static/sprites-small/home/shiny/10149.webp index 78de3e6..a841c2b 100644 Binary files a/static/sprites-small/home/shiny/10149.webp and b/static/sprites-small/home/shiny/10149.webp differ diff --git a/static/sprites-small/home/shiny/1015.webp b/static/sprites-small/home/shiny/1015.webp index 68181e9..009b1b0 100644 Binary files a/static/sprites-small/home/shiny/1015.webp and b/static/sprites-small/home/shiny/1015.webp differ diff --git a/static/sprites-small/home/shiny/10150.webp b/static/sprites-small/home/shiny/10150.webp index 6ed3085..f5b204d 100644 Binary files a/static/sprites-small/home/shiny/10150.webp and b/static/sprites-small/home/shiny/10150.webp differ diff --git a/static/sprites-small/home/shiny/10152.webp b/static/sprites-small/home/shiny/10152.webp index 2d0b852..cc7c8b9 100644 Binary files a/static/sprites-small/home/shiny/10152.webp and b/static/sprites-small/home/shiny/10152.webp differ diff --git a/static/sprites-small/home/shiny/10153.webp b/static/sprites-small/home/shiny/10153.webp index 0e9fbf0..b34b8a5 100644 Binary files a/static/sprites-small/home/shiny/10153.webp and b/static/sprites-small/home/shiny/10153.webp differ diff --git a/static/sprites-small/home/shiny/10154.webp b/static/sprites-small/home/shiny/10154.webp index 2a28366..19baa81 100644 Binary files a/static/sprites-small/home/shiny/10154.webp and b/static/sprites-small/home/shiny/10154.webp differ diff --git a/static/sprites-small/home/shiny/10155.webp b/static/sprites-small/home/shiny/10155.webp index ba2edd0..46e5685 100644 Binary files a/static/sprites-small/home/shiny/10155.webp and b/static/sprites-small/home/shiny/10155.webp differ diff --git a/static/sprites-small/home/shiny/10156.webp b/static/sprites-small/home/shiny/10156.webp index dc8a8b3..155ee90 100644 Binary files a/static/sprites-small/home/shiny/10156.webp and b/static/sprites-small/home/shiny/10156.webp differ diff --git a/static/sprites-small/home/shiny/10157.webp b/static/sprites-small/home/shiny/10157.webp index 3d776d5..8298e22 100644 Binary files a/static/sprites-small/home/shiny/10157.webp and b/static/sprites-small/home/shiny/10157.webp differ diff --git a/static/sprites-small/home/shiny/1016.webp b/static/sprites-small/home/shiny/1016.webp index df85912..4117a0a 100644 Binary files a/static/sprites-small/home/shiny/1016.webp and b/static/sprites-small/home/shiny/1016.webp differ diff --git a/static/sprites-small/home/shiny/10161.webp b/static/sprites-small/home/shiny/10161.webp index 3e8e089..5baff5f 100644 Binary files a/static/sprites-small/home/shiny/10161.webp and b/static/sprites-small/home/shiny/10161.webp differ diff --git a/static/sprites-small/home/shiny/10162.webp b/static/sprites-small/home/shiny/10162.webp index 60e66a3..a70874c 100644 Binary files a/static/sprites-small/home/shiny/10162.webp and b/static/sprites-small/home/shiny/10162.webp differ diff --git a/static/sprites-small/home/shiny/10163.webp b/static/sprites-small/home/shiny/10163.webp index 0dc766e..12a28ac 100644 Binary files a/static/sprites-small/home/shiny/10163.webp and b/static/sprites-small/home/shiny/10163.webp differ diff --git a/static/sprites-small/home/shiny/10164.webp b/static/sprites-small/home/shiny/10164.webp index a7382a6..745d74e 100644 Binary files a/static/sprites-small/home/shiny/10164.webp and b/static/sprites-small/home/shiny/10164.webp differ diff --git a/static/sprites-small/home/shiny/10165.webp b/static/sprites-small/home/shiny/10165.webp index 7c37424..d7c4dee 100644 Binary files a/static/sprites-small/home/shiny/10165.webp and b/static/sprites-small/home/shiny/10165.webp differ diff --git a/static/sprites-small/home/shiny/10166.webp b/static/sprites-small/home/shiny/10166.webp index 3a54d21..69f00d3 100644 Binary files a/static/sprites-small/home/shiny/10166.webp and b/static/sprites-small/home/shiny/10166.webp differ diff --git a/static/sprites-small/home/shiny/10167.webp b/static/sprites-small/home/shiny/10167.webp index 713cef1..cf36320 100644 Binary files a/static/sprites-small/home/shiny/10167.webp and b/static/sprites-small/home/shiny/10167.webp differ diff --git a/static/sprites-small/home/shiny/10168.webp b/static/sprites-small/home/shiny/10168.webp index 77f4c0e..0bf70c4 100644 Binary files a/static/sprites-small/home/shiny/10168.webp and b/static/sprites-small/home/shiny/10168.webp differ diff --git a/static/sprites-small/home/shiny/10169.webp b/static/sprites-small/home/shiny/10169.webp index 65deb14..9b65f20 100644 Binary files a/static/sprites-small/home/shiny/10169.webp and b/static/sprites-small/home/shiny/10169.webp differ diff --git a/static/sprites-small/home/shiny/1017.webp b/static/sprites-small/home/shiny/1017.webp index 5558ac7..f71c3b7 100644 Binary files a/static/sprites-small/home/shiny/1017.webp and b/static/sprites-small/home/shiny/1017.webp differ diff --git a/static/sprites-small/home/shiny/10170.webp b/static/sprites-small/home/shiny/10170.webp index 80f4749..5cdfe1c 100644 Binary files a/static/sprites-small/home/shiny/10170.webp and b/static/sprites-small/home/shiny/10170.webp differ diff --git a/static/sprites-small/home/shiny/10171.webp b/static/sprites-small/home/shiny/10171.webp index 6766a6c..e069de7 100644 Binary files a/static/sprites-small/home/shiny/10171.webp and b/static/sprites-small/home/shiny/10171.webp differ diff --git a/static/sprites-small/home/shiny/10172.webp b/static/sprites-small/home/shiny/10172.webp index fbed6dd..485480d 100644 Binary files a/static/sprites-small/home/shiny/10172.webp and b/static/sprites-small/home/shiny/10172.webp differ diff --git a/static/sprites-small/home/shiny/10173.webp b/static/sprites-small/home/shiny/10173.webp index 1393014..6e43138 100644 Binary files a/static/sprites-small/home/shiny/10173.webp and b/static/sprites-small/home/shiny/10173.webp differ diff --git a/static/sprites-small/home/shiny/10174.webp b/static/sprites-small/home/shiny/10174.webp index ebc3884..5f06ad9 100644 Binary files a/static/sprites-small/home/shiny/10174.webp and b/static/sprites-small/home/shiny/10174.webp differ diff --git a/static/sprites-small/home/shiny/10175.webp b/static/sprites-small/home/shiny/10175.webp index 59450e1..9bd6576 100644 Binary files a/static/sprites-small/home/shiny/10175.webp and b/static/sprites-small/home/shiny/10175.webp differ diff --git a/static/sprites-small/home/shiny/10176.webp b/static/sprites-small/home/shiny/10176.webp index 5d70c7d..bb494a7 100644 Binary files a/static/sprites-small/home/shiny/10176.webp and b/static/sprites-small/home/shiny/10176.webp differ diff --git a/static/sprites-small/home/shiny/10177.webp b/static/sprites-small/home/shiny/10177.webp index f3a616f..97d5863 100644 Binary files a/static/sprites-small/home/shiny/10177.webp and b/static/sprites-small/home/shiny/10177.webp differ diff --git a/static/sprites-small/home/shiny/10178.webp b/static/sprites-small/home/shiny/10178.webp index 1114491..164a54a 100644 Binary files a/static/sprites-small/home/shiny/10178.webp and b/static/sprites-small/home/shiny/10178.webp differ diff --git a/static/sprites-small/home/shiny/10179.webp b/static/sprites-small/home/shiny/10179.webp index a1bacfd..90dc5e7 100644 Binary files a/static/sprites-small/home/shiny/10179.webp and b/static/sprites-small/home/shiny/10179.webp differ diff --git a/static/sprites-small/home/shiny/1018.webp b/static/sprites-small/home/shiny/1018.webp index e37d811..3af10b4 100644 Binary files a/static/sprites-small/home/shiny/1018.webp and b/static/sprites-small/home/shiny/1018.webp differ diff --git a/static/sprites-small/home/shiny/10180.webp b/static/sprites-small/home/shiny/10180.webp index 716a69a..6306585 100644 Binary files a/static/sprites-small/home/shiny/10180.webp and b/static/sprites-small/home/shiny/10180.webp differ diff --git a/static/sprites-small/home/shiny/10181.webp b/static/sprites-small/home/shiny/10181.webp index 048d570..72c8a0d 100644 Binary files a/static/sprites-small/home/shiny/10181.webp and b/static/sprites-small/home/shiny/10181.webp differ diff --git a/static/sprites-small/home/shiny/10184.webp b/static/sprites-small/home/shiny/10184.webp index cf4e194..50a36fe 100644 Binary files a/static/sprites-small/home/shiny/10184.webp and b/static/sprites-small/home/shiny/10184.webp differ diff --git a/static/sprites-small/home/shiny/10185.webp b/static/sprites-small/home/shiny/10185.webp index 616df85..37981a7 100644 Binary files a/static/sprites-small/home/shiny/10185.webp and b/static/sprites-small/home/shiny/10185.webp differ diff --git a/static/sprites-small/home/shiny/10186.webp b/static/sprites-small/home/shiny/10186.webp index 3f7ab46..abe3c69 100644 Binary files a/static/sprites-small/home/shiny/10186.webp and b/static/sprites-small/home/shiny/10186.webp differ diff --git a/static/sprites-small/home/shiny/10188.webp b/static/sprites-small/home/shiny/10188.webp index 8abb21f..50d501f 100644 Binary files a/static/sprites-small/home/shiny/10188.webp and b/static/sprites-small/home/shiny/10188.webp differ diff --git a/static/sprites-small/home/shiny/10189.webp b/static/sprites-small/home/shiny/10189.webp index 536e3fa..96031bf 100644 Binary files a/static/sprites-small/home/shiny/10189.webp and b/static/sprites-small/home/shiny/10189.webp differ diff --git a/static/sprites-small/home/shiny/1019.webp b/static/sprites-small/home/shiny/1019.webp index 406371c..0c7a3de 100644 Binary files a/static/sprites-small/home/shiny/1019.webp and b/static/sprites-small/home/shiny/1019.webp differ diff --git a/static/sprites-small/home/shiny/10190.webp b/static/sprites-small/home/shiny/10190.webp index 1930391..2c93fda 100644 Binary files a/static/sprites-small/home/shiny/10190.webp and b/static/sprites-small/home/shiny/10190.webp differ diff --git a/static/sprites-small/home/shiny/10191.webp b/static/sprites-small/home/shiny/10191.webp index bd4dbec..2bab70e 100644 Binary files a/static/sprites-small/home/shiny/10191.webp and b/static/sprites-small/home/shiny/10191.webp differ diff --git a/static/sprites-small/home/shiny/10192.webp b/static/sprites-small/home/shiny/10192.webp index 8761ab5..2d7872c 100644 Binary files a/static/sprites-small/home/shiny/10192.webp and b/static/sprites-small/home/shiny/10192.webp differ diff --git a/static/sprites-small/home/shiny/10193.webp b/static/sprites-small/home/shiny/10193.webp index 8a9012b..4ebc2bd 100644 Binary files a/static/sprites-small/home/shiny/10193.webp and b/static/sprites-small/home/shiny/10193.webp differ diff --git a/static/sprites-small/home/shiny/10194.webp b/static/sprites-small/home/shiny/10194.webp index ca38ae6..f4d2eb1 100644 Binary files a/static/sprites-small/home/shiny/10194.webp and b/static/sprites-small/home/shiny/10194.webp differ diff --git a/static/sprites-small/home/shiny/10195.webp b/static/sprites-small/home/shiny/10195.webp index e6f8cb7..d09673e 100644 Binary files a/static/sprites-small/home/shiny/10195.webp and b/static/sprites-small/home/shiny/10195.webp differ diff --git a/static/sprites-small/home/shiny/10196.webp b/static/sprites-small/home/shiny/10196.webp index 67fd8d0..e691881 100644 Binary files a/static/sprites-small/home/shiny/10196.webp and b/static/sprites-small/home/shiny/10196.webp differ diff --git a/static/sprites-small/home/shiny/10197.webp b/static/sprites-small/home/shiny/10197.webp index 42341cf..cc5b438 100644 Binary files a/static/sprites-small/home/shiny/10197.webp and b/static/sprites-small/home/shiny/10197.webp differ diff --git a/static/sprites-small/home/shiny/10198.webp b/static/sprites-small/home/shiny/10198.webp index 3d0b8a7..bb3845f 100644 Binary files a/static/sprites-small/home/shiny/10198.webp and b/static/sprites-small/home/shiny/10198.webp differ diff --git a/static/sprites-small/home/shiny/10199.webp b/static/sprites-small/home/shiny/10199.webp index c9b3441..31a838c 100644 Binary files a/static/sprites-small/home/shiny/10199.webp and b/static/sprites-small/home/shiny/10199.webp differ diff --git a/static/sprites-small/home/shiny/102.webp b/static/sprites-small/home/shiny/102.webp index cc0855a..159274c 100644 Binary files a/static/sprites-small/home/shiny/102.webp and b/static/sprites-small/home/shiny/102.webp differ diff --git a/static/sprites-small/home/shiny/1020.webp b/static/sprites-small/home/shiny/1020.webp index 7b53467..a014978 100644 Binary files a/static/sprites-small/home/shiny/1020.webp and b/static/sprites-small/home/shiny/1020.webp differ diff --git a/static/sprites-small/home/shiny/10200.webp b/static/sprites-small/home/shiny/10200.webp index c6144b7..dfa53bb 100644 Binary files a/static/sprites-small/home/shiny/10200.webp and b/static/sprites-small/home/shiny/10200.webp differ diff --git a/static/sprites-small/home/shiny/10201.webp b/static/sprites-small/home/shiny/10201.webp index a86b384..2f7c273 100644 Binary files a/static/sprites-small/home/shiny/10201.webp and b/static/sprites-small/home/shiny/10201.webp differ diff --git a/static/sprites-small/home/shiny/10202.webp b/static/sprites-small/home/shiny/10202.webp index 5685d87..435dadf 100644 Binary files a/static/sprites-small/home/shiny/10202.webp and b/static/sprites-small/home/shiny/10202.webp differ diff --git a/static/sprites-small/home/shiny/10203.webp b/static/sprites-small/home/shiny/10203.webp index 6502410..bcae16b 100644 Binary files a/static/sprites-small/home/shiny/10203.webp and b/static/sprites-small/home/shiny/10203.webp differ diff --git a/static/sprites-small/home/shiny/10204.webp b/static/sprites-small/home/shiny/10204.webp index bd0b519..ebacd6e 100644 Binary files a/static/sprites-small/home/shiny/10204.webp and b/static/sprites-small/home/shiny/10204.webp differ diff --git a/static/sprites-small/home/shiny/10205.webp b/static/sprites-small/home/shiny/10205.webp index d99b69b..a1494b1 100644 Binary files a/static/sprites-small/home/shiny/10205.webp and b/static/sprites-small/home/shiny/10205.webp differ diff --git a/static/sprites-small/home/shiny/10206.webp b/static/sprites-small/home/shiny/10206.webp index bd53b36..6810364 100644 Binary files a/static/sprites-small/home/shiny/10206.webp and b/static/sprites-small/home/shiny/10206.webp differ diff --git a/static/sprites-small/home/shiny/10207.webp b/static/sprites-small/home/shiny/10207.webp index 3830407..e71c81a 100644 Binary files a/static/sprites-small/home/shiny/10207.webp and b/static/sprites-small/home/shiny/10207.webp differ diff --git a/static/sprites-small/home/shiny/10208.webp b/static/sprites-small/home/shiny/10208.webp index 7dfb9db..ef37066 100644 Binary files a/static/sprites-small/home/shiny/10208.webp and b/static/sprites-small/home/shiny/10208.webp differ diff --git a/static/sprites-small/home/shiny/10209.webp b/static/sprites-small/home/shiny/10209.webp index b445751..20150bc 100644 Binary files a/static/sprites-small/home/shiny/10209.webp and b/static/sprites-small/home/shiny/10209.webp differ diff --git a/static/sprites-small/home/shiny/1021.webp b/static/sprites-small/home/shiny/1021.webp index a92a7b9..6022ce0 100644 Binary files a/static/sprites-small/home/shiny/1021.webp and b/static/sprites-small/home/shiny/1021.webp differ diff --git a/static/sprites-small/home/shiny/10210.webp b/static/sprites-small/home/shiny/10210.webp index 0dc15d4..4121d05 100644 Binary files a/static/sprites-small/home/shiny/10210.webp and b/static/sprites-small/home/shiny/10210.webp differ diff --git a/static/sprites-small/home/shiny/10211.webp b/static/sprites-small/home/shiny/10211.webp index 0ad737d..a62d71e 100644 Binary files a/static/sprites-small/home/shiny/10211.webp and b/static/sprites-small/home/shiny/10211.webp differ diff --git a/static/sprites-small/home/shiny/10212.webp b/static/sprites-small/home/shiny/10212.webp index df7e365..889897a 100644 Binary files a/static/sprites-small/home/shiny/10212.webp and b/static/sprites-small/home/shiny/10212.webp differ diff --git a/static/sprites-small/home/shiny/10213.webp b/static/sprites-small/home/shiny/10213.webp index 0dbdc4e..4a144cb 100644 Binary files a/static/sprites-small/home/shiny/10213.webp and b/static/sprites-small/home/shiny/10213.webp differ diff --git a/static/sprites-small/home/shiny/10214.webp b/static/sprites-small/home/shiny/10214.webp index aebf872..c1971a5 100644 Binary files a/static/sprites-small/home/shiny/10214.webp and b/static/sprites-small/home/shiny/10214.webp differ diff --git a/static/sprites-small/home/shiny/10215.webp b/static/sprites-small/home/shiny/10215.webp index f42e1b6..9633639 100644 Binary files a/static/sprites-small/home/shiny/10215.webp and b/static/sprites-small/home/shiny/10215.webp differ diff --git a/static/sprites-small/home/shiny/10216.webp b/static/sprites-small/home/shiny/10216.webp index a400c01..a76713b 100644 Binary files a/static/sprites-small/home/shiny/10216.webp and b/static/sprites-small/home/shiny/10216.webp differ diff --git a/static/sprites-small/home/shiny/10217.webp b/static/sprites-small/home/shiny/10217.webp index b70d92e..b308aec 100644 Binary files a/static/sprites-small/home/shiny/10217.webp and b/static/sprites-small/home/shiny/10217.webp differ diff --git a/static/sprites-small/home/shiny/10218.webp b/static/sprites-small/home/shiny/10218.webp index 2c0865d..2fb0285 100644 Binary files a/static/sprites-small/home/shiny/10218.webp and b/static/sprites-small/home/shiny/10218.webp differ diff --git a/static/sprites-small/home/shiny/10219.webp b/static/sprites-small/home/shiny/10219.webp index 2ad332c..3c41eed 100644 Binary files a/static/sprites-small/home/shiny/10219.webp and b/static/sprites-small/home/shiny/10219.webp differ diff --git a/static/sprites-small/home/shiny/1022.webp b/static/sprites-small/home/shiny/1022.webp index daacab6..32bb1ed 100644 Binary files a/static/sprites-small/home/shiny/1022.webp and b/static/sprites-small/home/shiny/1022.webp differ diff --git a/static/sprites-small/home/shiny/10220.webp b/static/sprites-small/home/shiny/10220.webp index 8ff8e96..ce3078a 100644 Binary files a/static/sprites-small/home/shiny/10220.webp and b/static/sprites-small/home/shiny/10220.webp differ diff --git a/static/sprites-small/home/shiny/10221.webp b/static/sprites-small/home/shiny/10221.webp index a8e5c6e..62ffc8d 100644 Binary files a/static/sprites-small/home/shiny/10221.webp and b/static/sprites-small/home/shiny/10221.webp differ diff --git a/static/sprites-small/home/shiny/10222.webp b/static/sprites-small/home/shiny/10222.webp index 7cc8023..ca7f9d1 100644 Binary files a/static/sprites-small/home/shiny/10222.webp and b/static/sprites-small/home/shiny/10222.webp differ diff --git a/static/sprites-small/home/shiny/10223.webp b/static/sprites-small/home/shiny/10223.webp index f79c704..a2d0af9 100644 Binary files a/static/sprites-small/home/shiny/10223.webp and b/static/sprites-small/home/shiny/10223.webp differ diff --git a/static/sprites-small/home/shiny/10224.webp b/static/sprites-small/home/shiny/10224.webp index 5691649..9a8c1b8 100644 Binary files a/static/sprites-small/home/shiny/10224.webp and b/static/sprites-small/home/shiny/10224.webp differ diff --git a/static/sprites-small/home/shiny/10225.webp b/static/sprites-small/home/shiny/10225.webp index a272754..a7f4492 100644 Binary files a/static/sprites-small/home/shiny/10225.webp and b/static/sprites-small/home/shiny/10225.webp differ diff --git a/static/sprites-small/home/shiny/10226.webp b/static/sprites-small/home/shiny/10226.webp index ae3c28b..bb63cd7 100644 Binary files a/static/sprites-small/home/shiny/10226.webp and b/static/sprites-small/home/shiny/10226.webp differ diff --git a/static/sprites-small/home/shiny/10227.webp b/static/sprites-small/home/shiny/10227.webp index 5120546..34986ef 100644 Binary files a/static/sprites-small/home/shiny/10227.webp and b/static/sprites-small/home/shiny/10227.webp differ diff --git a/static/sprites-small/home/shiny/10228.webp b/static/sprites-small/home/shiny/10228.webp index 277974b..f05cf1c 100644 Binary files a/static/sprites-small/home/shiny/10228.webp and b/static/sprites-small/home/shiny/10228.webp differ diff --git a/static/sprites-small/home/shiny/10229.webp b/static/sprites-small/home/shiny/10229.webp index 486c943..5394034 100644 Binary files a/static/sprites-small/home/shiny/10229.webp and b/static/sprites-small/home/shiny/10229.webp differ diff --git a/static/sprites-small/home/shiny/1023.webp b/static/sprites-small/home/shiny/1023.webp index ba7ba0f..d5b49a5 100644 Binary files a/static/sprites-small/home/shiny/1023.webp and b/static/sprites-small/home/shiny/1023.webp differ diff --git a/static/sprites-small/home/shiny/10230.webp b/static/sprites-small/home/shiny/10230.webp index 0a0624a..7239d09 100644 Binary files a/static/sprites-small/home/shiny/10230.webp and b/static/sprites-small/home/shiny/10230.webp differ diff --git a/static/sprites-small/home/shiny/10231.webp b/static/sprites-small/home/shiny/10231.webp index d3f111c..83ba480 100644 Binary files a/static/sprites-small/home/shiny/10231.webp and b/static/sprites-small/home/shiny/10231.webp differ diff --git a/static/sprites-small/home/shiny/10232.webp b/static/sprites-small/home/shiny/10232.webp index 4014d47..7c3f3b4 100644 Binary files a/static/sprites-small/home/shiny/10232.webp and b/static/sprites-small/home/shiny/10232.webp differ diff --git a/static/sprites-small/home/shiny/10233.webp b/static/sprites-small/home/shiny/10233.webp index 8b06253..e4d9d14 100644 Binary files a/static/sprites-small/home/shiny/10233.webp and b/static/sprites-small/home/shiny/10233.webp differ diff --git a/static/sprites-small/home/shiny/10234.webp b/static/sprites-small/home/shiny/10234.webp index 21620f4..566fb95 100644 Binary files a/static/sprites-small/home/shiny/10234.webp and b/static/sprites-small/home/shiny/10234.webp differ diff --git a/static/sprites-small/home/shiny/10235.webp b/static/sprites-small/home/shiny/10235.webp index 964ac0d..3270beb 100644 Binary files a/static/sprites-small/home/shiny/10235.webp and b/static/sprites-small/home/shiny/10235.webp differ diff --git a/static/sprites-small/home/shiny/10236.webp b/static/sprites-small/home/shiny/10236.webp index de60e31..ac51e11 100644 Binary files a/static/sprites-small/home/shiny/10236.webp and b/static/sprites-small/home/shiny/10236.webp differ diff --git a/static/sprites-small/home/shiny/10237.webp b/static/sprites-small/home/shiny/10237.webp index 9a173fa..10b254d 100644 Binary files a/static/sprites-small/home/shiny/10237.webp and b/static/sprites-small/home/shiny/10237.webp differ diff --git a/static/sprites-small/home/shiny/10238.webp b/static/sprites-small/home/shiny/10238.webp index 18d1fb9..88f0c04 100644 Binary files a/static/sprites-small/home/shiny/10238.webp and b/static/sprites-small/home/shiny/10238.webp differ diff --git a/static/sprites-small/home/shiny/10239.webp b/static/sprites-small/home/shiny/10239.webp index 1fd1d55..3172767 100644 Binary files a/static/sprites-small/home/shiny/10239.webp and b/static/sprites-small/home/shiny/10239.webp differ diff --git a/static/sprites-small/home/shiny/1024.webp b/static/sprites-small/home/shiny/1024.webp index c89c7d9..63b2e09 100644 Binary files a/static/sprites-small/home/shiny/1024.webp and b/static/sprites-small/home/shiny/1024.webp differ diff --git a/static/sprites-small/home/shiny/10240.webp b/static/sprites-small/home/shiny/10240.webp index 7ded47d..409aaf8 100644 Binary files a/static/sprites-small/home/shiny/10240.webp and b/static/sprites-small/home/shiny/10240.webp differ diff --git a/static/sprites-small/home/shiny/10241.webp b/static/sprites-small/home/shiny/10241.webp index d7cd040..85fc8d7 100644 Binary files a/static/sprites-small/home/shiny/10241.webp and b/static/sprites-small/home/shiny/10241.webp differ diff --git a/static/sprites-small/home/shiny/10242.webp b/static/sprites-small/home/shiny/10242.webp index 7d2bebb..e4f7e39 100644 Binary files a/static/sprites-small/home/shiny/10242.webp and b/static/sprites-small/home/shiny/10242.webp differ diff --git a/static/sprites-small/home/shiny/10243.webp b/static/sprites-small/home/shiny/10243.webp index a6de0fa..4d20b9d 100644 Binary files a/static/sprites-small/home/shiny/10243.webp and b/static/sprites-small/home/shiny/10243.webp differ diff --git a/static/sprites-small/home/shiny/10244.webp b/static/sprites-small/home/shiny/10244.webp index 6590d76..1b0cff8 100644 Binary files a/static/sprites-small/home/shiny/10244.webp and b/static/sprites-small/home/shiny/10244.webp differ diff --git a/static/sprites-small/home/shiny/10245.webp b/static/sprites-small/home/shiny/10245.webp index d243ade..badabc8 100644 Binary files a/static/sprites-small/home/shiny/10245.webp and b/static/sprites-small/home/shiny/10245.webp differ diff --git a/static/sprites-small/home/shiny/10246.webp b/static/sprites-small/home/shiny/10246.webp index fc391a7..7d98f2a 100644 Binary files a/static/sprites-small/home/shiny/10246.webp and b/static/sprites-small/home/shiny/10246.webp differ diff --git a/static/sprites-small/home/shiny/10247.webp b/static/sprites-small/home/shiny/10247.webp index 7e35bd4..08aea07 100644 Binary files a/static/sprites-small/home/shiny/10247.webp and b/static/sprites-small/home/shiny/10247.webp differ diff --git a/static/sprites-small/home/shiny/10248.webp b/static/sprites-small/home/shiny/10248.webp index 14763ad..fa74c46 100644 Binary files a/static/sprites-small/home/shiny/10248.webp and b/static/sprites-small/home/shiny/10248.webp differ diff --git a/static/sprites-small/home/shiny/10249.webp b/static/sprites-small/home/shiny/10249.webp index 174e1c6..b6b436f 100644 Binary files a/static/sprites-small/home/shiny/10249.webp and b/static/sprites-small/home/shiny/10249.webp differ diff --git a/static/sprites-small/home/shiny/1025.webp b/static/sprites-small/home/shiny/1025.webp index a69c6fb..20f7c6e 100644 Binary files a/static/sprites-small/home/shiny/1025.webp and b/static/sprites-small/home/shiny/1025.webp differ diff --git a/static/sprites-small/home/shiny/10250.webp b/static/sprites-small/home/shiny/10250.webp index 1c16974..3fdc5fb 100644 Binary files a/static/sprites-small/home/shiny/10250.webp and b/static/sprites-small/home/shiny/10250.webp differ diff --git a/static/sprites-small/home/shiny/10251.webp b/static/sprites-small/home/shiny/10251.webp index 29e47d8..455fb20 100644 Binary files a/static/sprites-small/home/shiny/10251.webp and b/static/sprites-small/home/shiny/10251.webp differ diff --git a/static/sprites-small/home/shiny/10252.webp b/static/sprites-small/home/shiny/10252.webp index b3e01a9..0ac9f4c 100644 Binary files a/static/sprites-small/home/shiny/10252.webp and b/static/sprites-small/home/shiny/10252.webp differ diff --git a/static/sprites-small/home/shiny/10253.webp b/static/sprites-small/home/shiny/10253.webp index b9332a1..b686f65 100644 Binary files a/static/sprites-small/home/shiny/10253.webp and b/static/sprites-small/home/shiny/10253.webp differ diff --git a/static/sprites-small/home/shiny/10254.webp b/static/sprites-small/home/shiny/10254.webp index 2f189b0..d69ad9a 100644 Binary files a/static/sprites-small/home/shiny/10254.webp and b/static/sprites-small/home/shiny/10254.webp differ diff --git a/static/sprites-small/home/shiny/10255.webp b/static/sprites-small/home/shiny/10255.webp index bc3ca8b..9980abb 100644 Binary files a/static/sprites-small/home/shiny/10255.webp and b/static/sprites-small/home/shiny/10255.webp differ diff --git a/static/sprites-small/home/shiny/10256.webp b/static/sprites-small/home/shiny/10256.webp index ee9feab..5f6ddb1 100644 Binary files a/static/sprites-small/home/shiny/10256.webp and b/static/sprites-small/home/shiny/10256.webp differ diff --git a/static/sprites-small/home/shiny/10257.webp b/static/sprites-small/home/shiny/10257.webp index 233ab51..5542126 100644 Binary files a/static/sprites-small/home/shiny/10257.webp and b/static/sprites-small/home/shiny/10257.webp differ diff --git a/static/sprites-small/home/shiny/10258.webp b/static/sprites-small/home/shiny/10258.webp index f2afd65..fe70e8d 100644 Binary files a/static/sprites-small/home/shiny/10258.webp and b/static/sprites-small/home/shiny/10258.webp differ diff --git a/static/sprites-small/home/shiny/10259.webp b/static/sprites-small/home/shiny/10259.webp index 36ae904..ab8d1c6 100644 Binary files a/static/sprites-small/home/shiny/10259.webp and b/static/sprites-small/home/shiny/10259.webp differ diff --git a/static/sprites-small/home/shiny/10260.webp b/static/sprites-small/home/shiny/10260.webp index 213209a..6d737b4 100644 Binary files a/static/sprites-small/home/shiny/10260.webp and b/static/sprites-small/home/shiny/10260.webp differ diff --git a/static/sprites-small/home/shiny/10261.webp b/static/sprites-small/home/shiny/10261.webp index 319e1d2..fc104ad 100644 Binary files a/static/sprites-small/home/shiny/10261.webp and b/static/sprites-small/home/shiny/10261.webp differ diff --git a/static/sprites-small/home/shiny/10262.webp b/static/sprites-small/home/shiny/10262.webp index 8982e31..3cba33e 100644 Binary files a/static/sprites-small/home/shiny/10262.webp and b/static/sprites-small/home/shiny/10262.webp differ diff --git a/static/sprites-small/home/shiny/10263.webp b/static/sprites-small/home/shiny/10263.webp index 2886fba..b5ada0a 100644 Binary files a/static/sprites-small/home/shiny/10263.webp and b/static/sprites-small/home/shiny/10263.webp differ diff --git a/static/sprites-small/home/shiny/10272.webp b/static/sprites-small/home/shiny/10272.webp index 105b2cc..3d6807b 100644 Binary files a/static/sprites-small/home/shiny/10272.webp and b/static/sprites-small/home/shiny/10272.webp differ diff --git a/static/sprites-small/home/shiny/10273.webp b/static/sprites-small/home/shiny/10273.webp index 97d5c8c..c7735ac 100644 Binary files a/static/sprites-small/home/shiny/10273.webp and b/static/sprites-small/home/shiny/10273.webp differ diff --git a/static/sprites-small/home/shiny/10274.webp b/static/sprites-small/home/shiny/10274.webp index 49618d0..fe6d278 100644 Binary files a/static/sprites-small/home/shiny/10274.webp and b/static/sprites-small/home/shiny/10274.webp differ diff --git a/static/sprites-small/home/shiny/10275.webp b/static/sprites-small/home/shiny/10275.webp index a2e2d7c..d49d57f 100644 Binary files a/static/sprites-small/home/shiny/10275.webp and b/static/sprites-small/home/shiny/10275.webp differ diff --git a/static/sprites-small/home/shiny/10276.webp b/static/sprites-small/home/shiny/10276.webp index 700053b..3ed309f 100644 Binary files a/static/sprites-small/home/shiny/10276.webp and b/static/sprites-small/home/shiny/10276.webp differ diff --git a/static/sprites-small/home/shiny/10277.webp b/static/sprites-small/home/shiny/10277.webp index 15c4112..5afe9b6 100644 Binary files a/static/sprites-small/home/shiny/10277.webp and b/static/sprites-small/home/shiny/10277.webp differ diff --git a/static/sprites-small/home/shiny/103.webp b/static/sprites-small/home/shiny/103.webp index bd5080d..09cd234 100644 Binary files a/static/sprites-small/home/shiny/103.webp and b/static/sprites-small/home/shiny/103.webp differ diff --git a/static/sprites-small/home/shiny/104.webp b/static/sprites-small/home/shiny/104.webp index ff99c97..8c01004 100644 Binary files a/static/sprites-small/home/shiny/104.webp and b/static/sprites-small/home/shiny/104.webp differ diff --git a/static/sprites-small/home/shiny/105.webp b/static/sprites-small/home/shiny/105.webp index b775abc..2127153 100644 Binary files a/static/sprites-small/home/shiny/105.webp and b/static/sprites-small/home/shiny/105.webp differ diff --git a/static/sprites-small/home/shiny/106.webp b/static/sprites-small/home/shiny/106.webp index 257e597..cb0767e 100644 Binary files a/static/sprites-small/home/shiny/106.webp and b/static/sprites-small/home/shiny/106.webp differ diff --git a/static/sprites-small/home/shiny/107.webp b/static/sprites-small/home/shiny/107.webp index 4d47dc8..e1e3880 100644 Binary files a/static/sprites-small/home/shiny/107.webp and b/static/sprites-small/home/shiny/107.webp differ diff --git a/static/sprites-small/home/shiny/108.webp b/static/sprites-small/home/shiny/108.webp index cdbf553..62703a2 100644 Binary files a/static/sprites-small/home/shiny/108.webp and b/static/sprites-small/home/shiny/108.webp differ diff --git a/static/sprites-small/home/shiny/109.webp b/static/sprites-small/home/shiny/109.webp index f63679e..883c1d8 100644 Binary files a/static/sprites-small/home/shiny/109.webp and b/static/sprites-small/home/shiny/109.webp differ diff --git a/static/sprites-small/home/shiny/11.webp b/static/sprites-small/home/shiny/11.webp index 5763b40..1411e9a 100644 Binary files a/static/sprites-small/home/shiny/11.webp and b/static/sprites-small/home/shiny/11.webp differ diff --git a/static/sprites-small/home/shiny/110.webp b/static/sprites-small/home/shiny/110.webp index 23672ba..6e843e0 100644 Binary files a/static/sprites-small/home/shiny/110.webp and b/static/sprites-small/home/shiny/110.webp differ diff --git a/static/sprites-small/home/shiny/111.webp b/static/sprites-small/home/shiny/111.webp index 206da11..c09daed 100644 Binary files a/static/sprites-small/home/shiny/111.webp and b/static/sprites-small/home/shiny/111.webp differ diff --git a/static/sprites-small/home/shiny/112.webp b/static/sprites-small/home/shiny/112.webp index 756c54f..591cf7d 100644 Binary files a/static/sprites-small/home/shiny/112.webp and b/static/sprites-small/home/shiny/112.webp differ diff --git a/static/sprites-small/home/shiny/113.webp b/static/sprites-small/home/shiny/113.webp index d80e8fe..6da1718 100644 Binary files a/static/sprites-small/home/shiny/113.webp and b/static/sprites-small/home/shiny/113.webp differ diff --git a/static/sprites-small/home/shiny/114.webp b/static/sprites-small/home/shiny/114.webp index 35c2f02..8fae94d 100644 Binary files a/static/sprites-small/home/shiny/114.webp and b/static/sprites-small/home/shiny/114.webp differ diff --git a/static/sprites-small/home/shiny/115.webp b/static/sprites-small/home/shiny/115.webp index 64b7a4d..61a58e2 100644 Binary files a/static/sprites-small/home/shiny/115.webp and b/static/sprites-small/home/shiny/115.webp differ diff --git a/static/sprites-small/home/shiny/116.webp b/static/sprites-small/home/shiny/116.webp index 5c53b64..96353ab 100644 Binary files a/static/sprites-small/home/shiny/116.webp and b/static/sprites-small/home/shiny/116.webp differ diff --git a/static/sprites-small/home/shiny/117.webp b/static/sprites-small/home/shiny/117.webp index b18e2c3..e171d03 100644 Binary files a/static/sprites-small/home/shiny/117.webp and b/static/sprites-small/home/shiny/117.webp differ diff --git a/static/sprites-small/home/shiny/118.webp b/static/sprites-small/home/shiny/118.webp index 2aa1025..09c65c6 100644 Binary files a/static/sprites-small/home/shiny/118.webp and b/static/sprites-small/home/shiny/118.webp differ diff --git a/static/sprites-small/home/shiny/119.webp b/static/sprites-small/home/shiny/119.webp index f10e2f9..636ea88 100644 Binary files a/static/sprites-small/home/shiny/119.webp and b/static/sprites-small/home/shiny/119.webp differ diff --git a/static/sprites-small/home/shiny/12.webp b/static/sprites-small/home/shiny/12.webp index 1301259..a12d41e 100644 Binary files a/static/sprites-small/home/shiny/12.webp and b/static/sprites-small/home/shiny/12.webp differ diff --git a/static/sprites-small/home/shiny/120.webp b/static/sprites-small/home/shiny/120.webp index 29de5dc..39f8b4b 100644 Binary files a/static/sprites-small/home/shiny/120.webp and b/static/sprites-small/home/shiny/120.webp differ diff --git a/static/sprites-small/home/shiny/121.webp b/static/sprites-small/home/shiny/121.webp index b91b610..3d391c7 100644 Binary files a/static/sprites-small/home/shiny/121.webp and b/static/sprites-small/home/shiny/121.webp differ diff --git a/static/sprites-small/home/shiny/122.webp b/static/sprites-small/home/shiny/122.webp index 42e5d5a..3d9e68f 100644 Binary files a/static/sprites-small/home/shiny/122.webp and b/static/sprites-small/home/shiny/122.webp differ diff --git a/static/sprites-small/home/shiny/123.webp b/static/sprites-small/home/shiny/123.webp index 90e7f12..b01c78f 100644 Binary files a/static/sprites-small/home/shiny/123.webp and b/static/sprites-small/home/shiny/123.webp differ diff --git a/static/sprites-small/home/shiny/124.webp b/static/sprites-small/home/shiny/124.webp index b188f4d..60b0906 100644 Binary files a/static/sprites-small/home/shiny/124.webp and b/static/sprites-small/home/shiny/124.webp differ diff --git a/static/sprites-small/home/shiny/125.webp b/static/sprites-small/home/shiny/125.webp index 7dd3e95..2bedad8 100644 Binary files a/static/sprites-small/home/shiny/125.webp and b/static/sprites-small/home/shiny/125.webp differ diff --git a/static/sprites-small/home/shiny/126.webp b/static/sprites-small/home/shiny/126.webp index dc75792..254aebb 100644 Binary files a/static/sprites-small/home/shiny/126.webp and b/static/sprites-small/home/shiny/126.webp differ diff --git a/static/sprites-small/home/shiny/127.webp b/static/sprites-small/home/shiny/127.webp index 6b5098a..1640c07 100644 Binary files a/static/sprites-small/home/shiny/127.webp and b/static/sprites-small/home/shiny/127.webp differ diff --git a/static/sprites-small/home/shiny/128.webp b/static/sprites-small/home/shiny/128.webp index 1492b20..84ed4a3 100644 Binary files a/static/sprites-small/home/shiny/128.webp and b/static/sprites-small/home/shiny/128.webp differ diff --git a/static/sprites-small/home/shiny/129.webp b/static/sprites-small/home/shiny/129.webp index b177dc4..827092e 100644 Binary files a/static/sprites-small/home/shiny/129.webp and b/static/sprites-small/home/shiny/129.webp differ diff --git a/static/sprites-small/home/shiny/13.webp b/static/sprites-small/home/shiny/13.webp index 3ee1601..932961a 100644 Binary files a/static/sprites-small/home/shiny/13.webp and b/static/sprites-small/home/shiny/13.webp differ diff --git a/static/sprites-small/home/shiny/130.webp b/static/sprites-small/home/shiny/130.webp index 91e0c63..fad0f53 100644 Binary files a/static/sprites-small/home/shiny/130.webp and b/static/sprites-small/home/shiny/130.webp differ diff --git a/static/sprites-small/home/shiny/131.webp b/static/sprites-small/home/shiny/131.webp index c756aa9..bfce8db 100644 Binary files a/static/sprites-small/home/shiny/131.webp and b/static/sprites-small/home/shiny/131.webp differ diff --git a/static/sprites-small/home/shiny/132.webp b/static/sprites-small/home/shiny/132.webp index 663a44a..552be94 100644 Binary files a/static/sprites-small/home/shiny/132.webp and b/static/sprites-small/home/shiny/132.webp differ diff --git a/static/sprites-small/home/shiny/133.webp b/static/sprites-small/home/shiny/133.webp index ea8be5c..f04812f 100644 Binary files a/static/sprites-small/home/shiny/133.webp and b/static/sprites-small/home/shiny/133.webp differ diff --git a/static/sprites-small/home/shiny/134.webp b/static/sprites-small/home/shiny/134.webp index 037ae4c..c3c9aaa 100644 Binary files a/static/sprites-small/home/shiny/134.webp and b/static/sprites-small/home/shiny/134.webp differ diff --git a/static/sprites-small/home/shiny/135.webp b/static/sprites-small/home/shiny/135.webp index bedc614..9d0912f 100644 Binary files a/static/sprites-small/home/shiny/135.webp and b/static/sprites-small/home/shiny/135.webp differ diff --git a/static/sprites-small/home/shiny/136.webp b/static/sprites-small/home/shiny/136.webp index 4b68e1f..06b9692 100644 Binary files a/static/sprites-small/home/shiny/136.webp and b/static/sprites-small/home/shiny/136.webp differ diff --git a/static/sprites-small/home/shiny/137.webp b/static/sprites-small/home/shiny/137.webp index 34f9159..7a360f8 100644 Binary files a/static/sprites-small/home/shiny/137.webp and b/static/sprites-small/home/shiny/137.webp differ diff --git a/static/sprites-small/home/shiny/138.webp b/static/sprites-small/home/shiny/138.webp index 33f002d..c1e247c 100644 Binary files a/static/sprites-small/home/shiny/138.webp and b/static/sprites-small/home/shiny/138.webp differ diff --git a/static/sprites-small/home/shiny/139.webp b/static/sprites-small/home/shiny/139.webp index 6c8a79c..b3549e3 100644 Binary files a/static/sprites-small/home/shiny/139.webp and b/static/sprites-small/home/shiny/139.webp differ diff --git a/static/sprites-small/home/shiny/14.webp b/static/sprites-small/home/shiny/14.webp index 9e6d5a0..662c4c8 100644 Binary files a/static/sprites-small/home/shiny/14.webp and b/static/sprites-small/home/shiny/14.webp differ diff --git a/static/sprites-small/home/shiny/140.webp b/static/sprites-small/home/shiny/140.webp index 77931fc..9d842c8 100644 Binary files a/static/sprites-small/home/shiny/140.webp and b/static/sprites-small/home/shiny/140.webp differ diff --git a/static/sprites-small/home/shiny/141.webp b/static/sprites-small/home/shiny/141.webp index f52c7f4..8cb22c0 100644 Binary files a/static/sprites-small/home/shiny/141.webp and b/static/sprites-small/home/shiny/141.webp differ diff --git a/static/sprites-small/home/shiny/142.webp b/static/sprites-small/home/shiny/142.webp index 2813ae4..fb3cdaf 100644 Binary files a/static/sprites-small/home/shiny/142.webp and b/static/sprites-small/home/shiny/142.webp differ diff --git a/static/sprites-small/home/shiny/143.webp b/static/sprites-small/home/shiny/143.webp index dba9651..3365ff5 100644 Binary files a/static/sprites-small/home/shiny/143.webp and b/static/sprites-small/home/shiny/143.webp differ diff --git a/static/sprites-small/home/shiny/144.webp b/static/sprites-small/home/shiny/144.webp index 1ad5a00..21869ff 100644 Binary files a/static/sprites-small/home/shiny/144.webp and b/static/sprites-small/home/shiny/144.webp differ diff --git a/static/sprites-small/home/shiny/145.webp b/static/sprites-small/home/shiny/145.webp index 27a1223..241775c 100644 Binary files a/static/sprites-small/home/shiny/145.webp and b/static/sprites-small/home/shiny/145.webp differ diff --git a/static/sprites-small/home/shiny/146.webp b/static/sprites-small/home/shiny/146.webp index e3d3e2f..3d3638d 100644 Binary files a/static/sprites-small/home/shiny/146.webp and b/static/sprites-small/home/shiny/146.webp differ diff --git a/static/sprites-small/home/shiny/147.webp b/static/sprites-small/home/shiny/147.webp index 6917b53..db965e1 100644 Binary files a/static/sprites-small/home/shiny/147.webp and b/static/sprites-small/home/shiny/147.webp differ diff --git a/static/sprites-small/home/shiny/148.webp b/static/sprites-small/home/shiny/148.webp index a7cd425..f2ccd68 100644 Binary files a/static/sprites-small/home/shiny/148.webp and b/static/sprites-small/home/shiny/148.webp differ diff --git a/static/sprites-small/home/shiny/149.webp b/static/sprites-small/home/shiny/149.webp index ff1cc63..28d79ea 100644 Binary files a/static/sprites-small/home/shiny/149.webp and b/static/sprites-small/home/shiny/149.webp differ diff --git a/static/sprites-small/home/shiny/15.webp b/static/sprites-small/home/shiny/15.webp index 3e5e78e..4b2b0e7 100644 Binary files a/static/sprites-small/home/shiny/15.webp and b/static/sprites-small/home/shiny/15.webp differ diff --git a/static/sprites-small/home/shiny/150.webp b/static/sprites-small/home/shiny/150.webp index 58a2a64..ac427d0 100644 Binary files a/static/sprites-small/home/shiny/150.webp and b/static/sprites-small/home/shiny/150.webp differ diff --git a/static/sprites-small/home/shiny/151.webp b/static/sprites-small/home/shiny/151.webp index 7eb4270..cfff290 100644 Binary files a/static/sprites-small/home/shiny/151.webp and b/static/sprites-small/home/shiny/151.webp differ diff --git a/static/sprites-small/home/shiny/152.webp b/static/sprites-small/home/shiny/152.webp index 1bb41c5..587828d 100644 Binary files a/static/sprites-small/home/shiny/152.webp and b/static/sprites-small/home/shiny/152.webp differ diff --git a/static/sprites-small/home/shiny/153.webp b/static/sprites-small/home/shiny/153.webp index d77c069..bb85448 100644 Binary files a/static/sprites-small/home/shiny/153.webp and b/static/sprites-small/home/shiny/153.webp differ diff --git a/static/sprites-small/home/shiny/154.webp b/static/sprites-small/home/shiny/154.webp index 061cab8..c121f27 100644 Binary files a/static/sprites-small/home/shiny/154.webp and b/static/sprites-small/home/shiny/154.webp differ diff --git a/static/sprites-small/home/shiny/155.webp b/static/sprites-small/home/shiny/155.webp index 595b297..9066000 100644 Binary files a/static/sprites-small/home/shiny/155.webp and b/static/sprites-small/home/shiny/155.webp differ diff --git a/static/sprites-small/home/shiny/156.webp b/static/sprites-small/home/shiny/156.webp index d201da5..5ea0047 100644 Binary files a/static/sprites-small/home/shiny/156.webp and b/static/sprites-small/home/shiny/156.webp differ diff --git a/static/sprites-small/home/shiny/157.webp b/static/sprites-small/home/shiny/157.webp index 48d0859..03956f1 100644 Binary files a/static/sprites-small/home/shiny/157.webp and b/static/sprites-small/home/shiny/157.webp differ diff --git a/static/sprites-small/home/shiny/158.webp b/static/sprites-small/home/shiny/158.webp index b2f3232..aa2298b 100644 Binary files a/static/sprites-small/home/shiny/158.webp and b/static/sprites-small/home/shiny/158.webp differ diff --git a/static/sprites-small/home/shiny/159.webp b/static/sprites-small/home/shiny/159.webp index 8f5fd13..046a04f 100644 Binary files a/static/sprites-small/home/shiny/159.webp and b/static/sprites-small/home/shiny/159.webp differ diff --git a/static/sprites-small/home/shiny/16.webp b/static/sprites-small/home/shiny/16.webp index 35cc8b4..1d6e9d6 100644 Binary files a/static/sprites-small/home/shiny/16.webp and b/static/sprites-small/home/shiny/16.webp differ diff --git a/static/sprites-small/home/shiny/160.webp b/static/sprites-small/home/shiny/160.webp index c45a0ee..b248108 100644 Binary files a/static/sprites-small/home/shiny/160.webp and b/static/sprites-small/home/shiny/160.webp differ diff --git a/static/sprites-small/home/shiny/161.webp b/static/sprites-small/home/shiny/161.webp index 387a947..dab7a91 100644 Binary files a/static/sprites-small/home/shiny/161.webp and b/static/sprites-small/home/shiny/161.webp differ diff --git a/static/sprites-small/home/shiny/162.webp b/static/sprites-small/home/shiny/162.webp index 2e0dabf..cf93780 100644 Binary files a/static/sprites-small/home/shiny/162.webp and b/static/sprites-small/home/shiny/162.webp differ diff --git a/static/sprites-small/home/shiny/163.webp b/static/sprites-small/home/shiny/163.webp index ac08d93..f188ac8 100644 Binary files a/static/sprites-small/home/shiny/163.webp and b/static/sprites-small/home/shiny/163.webp differ diff --git a/static/sprites-small/home/shiny/164.webp b/static/sprites-small/home/shiny/164.webp index b683c16..821944e 100644 Binary files a/static/sprites-small/home/shiny/164.webp and b/static/sprites-small/home/shiny/164.webp differ diff --git a/static/sprites-small/home/shiny/165.webp b/static/sprites-small/home/shiny/165.webp index c20da1d..cd00d08 100644 Binary files a/static/sprites-small/home/shiny/165.webp and b/static/sprites-small/home/shiny/165.webp differ diff --git a/static/sprites-small/home/shiny/166.webp b/static/sprites-small/home/shiny/166.webp index 747bcc9..2f8b871 100644 Binary files a/static/sprites-small/home/shiny/166.webp and b/static/sprites-small/home/shiny/166.webp differ diff --git a/static/sprites-small/home/shiny/167.webp b/static/sprites-small/home/shiny/167.webp index 25f2c80..81db8e0 100644 Binary files a/static/sprites-small/home/shiny/167.webp and b/static/sprites-small/home/shiny/167.webp differ diff --git a/static/sprites-small/home/shiny/168.webp b/static/sprites-small/home/shiny/168.webp index 072632f..2eddcbb 100644 Binary files a/static/sprites-small/home/shiny/168.webp and b/static/sprites-small/home/shiny/168.webp differ diff --git a/static/sprites-small/home/shiny/169.webp b/static/sprites-small/home/shiny/169.webp index e816009..8b02f37 100644 Binary files a/static/sprites-small/home/shiny/169.webp and b/static/sprites-small/home/shiny/169.webp differ diff --git a/static/sprites-small/home/shiny/17.webp b/static/sprites-small/home/shiny/17.webp index 96dc577..7f9dc44 100644 Binary files a/static/sprites-small/home/shiny/17.webp and b/static/sprites-small/home/shiny/17.webp differ diff --git a/static/sprites-small/home/shiny/170.webp b/static/sprites-small/home/shiny/170.webp index a08261c..6142ffe 100644 Binary files a/static/sprites-small/home/shiny/170.webp and b/static/sprites-small/home/shiny/170.webp differ diff --git a/static/sprites-small/home/shiny/171.webp b/static/sprites-small/home/shiny/171.webp index f57df53..78517fb 100644 Binary files a/static/sprites-small/home/shiny/171.webp and b/static/sprites-small/home/shiny/171.webp differ diff --git a/static/sprites-small/home/shiny/172.webp b/static/sprites-small/home/shiny/172.webp index 1bca6ee..13cd31f 100644 Binary files a/static/sprites-small/home/shiny/172.webp and b/static/sprites-small/home/shiny/172.webp differ diff --git a/static/sprites-small/home/shiny/173.webp b/static/sprites-small/home/shiny/173.webp index 280dd57..62be90e 100644 Binary files a/static/sprites-small/home/shiny/173.webp and b/static/sprites-small/home/shiny/173.webp differ diff --git a/static/sprites-small/home/shiny/174.webp b/static/sprites-small/home/shiny/174.webp index 3e94433..b3ded1f 100644 Binary files a/static/sprites-small/home/shiny/174.webp and b/static/sprites-small/home/shiny/174.webp differ diff --git a/static/sprites-small/home/shiny/175.webp b/static/sprites-small/home/shiny/175.webp index de37f9a..6e768fb 100644 Binary files a/static/sprites-small/home/shiny/175.webp and b/static/sprites-small/home/shiny/175.webp differ diff --git a/static/sprites-small/home/shiny/176.webp b/static/sprites-small/home/shiny/176.webp index 348d8cc..d2ed823 100644 Binary files a/static/sprites-small/home/shiny/176.webp and b/static/sprites-small/home/shiny/176.webp differ diff --git a/static/sprites-small/home/shiny/177.webp b/static/sprites-small/home/shiny/177.webp index 2840e98..44fb006 100644 Binary files a/static/sprites-small/home/shiny/177.webp and b/static/sprites-small/home/shiny/177.webp differ diff --git a/static/sprites-small/home/shiny/178.webp b/static/sprites-small/home/shiny/178.webp index f4b3eb5..48c3e6a 100644 Binary files a/static/sprites-small/home/shiny/178.webp and b/static/sprites-small/home/shiny/178.webp differ diff --git a/static/sprites-small/home/shiny/179.webp b/static/sprites-small/home/shiny/179.webp index 5a0b906..be81ba1 100644 Binary files a/static/sprites-small/home/shiny/179.webp and b/static/sprites-small/home/shiny/179.webp differ diff --git a/static/sprites-small/home/shiny/18.webp b/static/sprites-small/home/shiny/18.webp index 3f68205..2d588ab 100644 Binary files a/static/sprites-small/home/shiny/18.webp and b/static/sprites-small/home/shiny/18.webp differ diff --git a/static/sprites-small/home/shiny/180.webp b/static/sprites-small/home/shiny/180.webp index 9f49d67..10f9dc6 100644 Binary files a/static/sprites-small/home/shiny/180.webp and b/static/sprites-small/home/shiny/180.webp differ diff --git a/static/sprites-small/home/shiny/181.webp b/static/sprites-small/home/shiny/181.webp index 5393a35..1ba9738 100644 Binary files a/static/sprites-small/home/shiny/181.webp and b/static/sprites-small/home/shiny/181.webp differ diff --git a/static/sprites-small/home/shiny/182.webp b/static/sprites-small/home/shiny/182.webp index d8fd1d3..16f0618 100644 Binary files a/static/sprites-small/home/shiny/182.webp and b/static/sprites-small/home/shiny/182.webp differ diff --git a/static/sprites-small/home/shiny/183.webp b/static/sprites-small/home/shiny/183.webp index bf993e8..e653110 100644 Binary files a/static/sprites-small/home/shiny/183.webp and b/static/sprites-small/home/shiny/183.webp differ diff --git a/static/sprites-small/home/shiny/184.webp b/static/sprites-small/home/shiny/184.webp index b8f973e..035af45 100644 Binary files a/static/sprites-small/home/shiny/184.webp and b/static/sprites-small/home/shiny/184.webp differ diff --git a/static/sprites-small/home/shiny/185.webp b/static/sprites-small/home/shiny/185.webp index cfbac1b..0eebf30 100644 Binary files a/static/sprites-small/home/shiny/185.webp and b/static/sprites-small/home/shiny/185.webp differ diff --git a/static/sprites-small/home/shiny/186.webp b/static/sprites-small/home/shiny/186.webp index 889e480..1dee791 100644 Binary files a/static/sprites-small/home/shiny/186.webp and b/static/sprites-small/home/shiny/186.webp differ diff --git a/static/sprites-small/home/shiny/187.webp b/static/sprites-small/home/shiny/187.webp index 9a85b4e..06e4cb8 100644 Binary files a/static/sprites-small/home/shiny/187.webp and b/static/sprites-small/home/shiny/187.webp differ diff --git a/static/sprites-small/home/shiny/188.webp b/static/sprites-small/home/shiny/188.webp index 120a6c8..405b8f1 100644 Binary files a/static/sprites-small/home/shiny/188.webp and b/static/sprites-small/home/shiny/188.webp differ diff --git a/static/sprites-small/home/shiny/189.webp b/static/sprites-small/home/shiny/189.webp index 463f0ff..a52f243 100644 Binary files a/static/sprites-small/home/shiny/189.webp and b/static/sprites-small/home/shiny/189.webp differ diff --git a/static/sprites-small/home/shiny/19.webp b/static/sprites-small/home/shiny/19.webp index eb451de..2ad0de3 100644 Binary files a/static/sprites-small/home/shiny/19.webp and b/static/sprites-small/home/shiny/19.webp differ diff --git a/static/sprites-small/home/shiny/190.webp b/static/sprites-small/home/shiny/190.webp index 6b41bad..b92084c 100644 Binary files a/static/sprites-small/home/shiny/190.webp and b/static/sprites-small/home/shiny/190.webp differ diff --git a/static/sprites-small/home/shiny/191.webp b/static/sprites-small/home/shiny/191.webp index 6e823b0..dcd4726 100644 Binary files a/static/sprites-small/home/shiny/191.webp and b/static/sprites-small/home/shiny/191.webp differ diff --git a/static/sprites-small/home/shiny/192.webp b/static/sprites-small/home/shiny/192.webp index 11b329b..3a30749 100644 Binary files a/static/sprites-small/home/shiny/192.webp and b/static/sprites-small/home/shiny/192.webp differ diff --git a/static/sprites-small/home/shiny/193.webp b/static/sprites-small/home/shiny/193.webp index 3cdf845..92239be 100644 Binary files a/static/sprites-small/home/shiny/193.webp and b/static/sprites-small/home/shiny/193.webp differ diff --git a/static/sprites-small/home/shiny/194.webp b/static/sprites-small/home/shiny/194.webp index 3257791..d430ab5 100644 Binary files a/static/sprites-small/home/shiny/194.webp and b/static/sprites-small/home/shiny/194.webp differ diff --git a/static/sprites-small/home/shiny/195.webp b/static/sprites-small/home/shiny/195.webp index 6ac8e9d..9531f6b 100644 Binary files a/static/sprites-small/home/shiny/195.webp and b/static/sprites-small/home/shiny/195.webp differ diff --git a/static/sprites-small/home/shiny/196.webp b/static/sprites-small/home/shiny/196.webp index 68e2301..a81348f 100644 Binary files a/static/sprites-small/home/shiny/196.webp and b/static/sprites-small/home/shiny/196.webp differ diff --git a/static/sprites-small/home/shiny/197.webp b/static/sprites-small/home/shiny/197.webp index f68bce1..94c3611 100644 Binary files a/static/sprites-small/home/shiny/197.webp and b/static/sprites-small/home/shiny/197.webp differ diff --git a/static/sprites-small/home/shiny/198.webp b/static/sprites-small/home/shiny/198.webp index 446728d..fa5009a 100644 Binary files a/static/sprites-small/home/shiny/198.webp and b/static/sprites-small/home/shiny/198.webp differ diff --git a/static/sprites-small/home/shiny/199.webp b/static/sprites-small/home/shiny/199.webp index 9bf977f..72641fd 100644 Binary files a/static/sprites-small/home/shiny/199.webp and b/static/sprites-small/home/shiny/199.webp differ diff --git a/static/sprites-small/home/shiny/2.webp b/static/sprites-small/home/shiny/2.webp index ef73096..644986a 100644 Binary files a/static/sprites-small/home/shiny/2.webp and b/static/sprites-small/home/shiny/2.webp differ diff --git a/static/sprites-small/home/shiny/20.webp b/static/sprites-small/home/shiny/20.webp index ac06440..9b80355 100644 Binary files a/static/sprites-small/home/shiny/20.webp and b/static/sprites-small/home/shiny/20.webp differ diff --git a/static/sprites-small/home/shiny/200.webp b/static/sprites-small/home/shiny/200.webp index 9db3632..635fd4b 100644 Binary files a/static/sprites-small/home/shiny/200.webp and b/static/sprites-small/home/shiny/200.webp differ diff --git a/static/sprites-small/home/shiny/201-a.webp b/static/sprites-small/home/shiny/201-a.webp index 695d66f..d60b022 100644 Binary files a/static/sprites-small/home/shiny/201-a.webp and b/static/sprites-small/home/shiny/201-a.webp differ diff --git a/static/sprites-small/home/shiny/201-b.webp b/static/sprites-small/home/shiny/201-b.webp index 1232503..8018d98 100644 Binary files a/static/sprites-small/home/shiny/201-b.webp and b/static/sprites-small/home/shiny/201-b.webp differ diff --git a/static/sprites-small/home/shiny/201-c.webp b/static/sprites-small/home/shiny/201-c.webp index 4d18161..34d456f 100644 Binary files a/static/sprites-small/home/shiny/201-c.webp and b/static/sprites-small/home/shiny/201-c.webp differ diff --git a/static/sprites-small/home/shiny/201-d.webp b/static/sprites-small/home/shiny/201-d.webp index 4038554..d43d533 100644 Binary files a/static/sprites-small/home/shiny/201-d.webp and b/static/sprites-small/home/shiny/201-d.webp differ diff --git a/static/sprites-small/home/shiny/201-e.webp b/static/sprites-small/home/shiny/201-e.webp index 6820029..7ba1486 100644 Binary files a/static/sprites-small/home/shiny/201-e.webp and b/static/sprites-small/home/shiny/201-e.webp differ diff --git a/static/sprites-small/home/shiny/201-exclamation.webp b/static/sprites-small/home/shiny/201-exclamation.webp index a8a2e17..d88e5b0 100644 Binary files a/static/sprites-small/home/shiny/201-exclamation.webp and b/static/sprites-small/home/shiny/201-exclamation.webp differ diff --git a/static/sprites-small/home/shiny/201-f.webp b/static/sprites-small/home/shiny/201-f.webp index e7d15b5..253a89b 100644 Binary files a/static/sprites-small/home/shiny/201-f.webp and b/static/sprites-small/home/shiny/201-f.webp differ diff --git a/static/sprites-small/home/shiny/201-g.webp b/static/sprites-small/home/shiny/201-g.webp index b9e47d5..4643e96 100644 Binary files a/static/sprites-small/home/shiny/201-g.webp and b/static/sprites-small/home/shiny/201-g.webp differ diff --git a/static/sprites-small/home/shiny/201-h.webp b/static/sprites-small/home/shiny/201-h.webp index 721c399..994ae96 100644 Binary files a/static/sprites-small/home/shiny/201-h.webp and b/static/sprites-small/home/shiny/201-h.webp differ diff --git a/static/sprites-small/home/shiny/201-i.webp b/static/sprites-small/home/shiny/201-i.webp index abe6dc7..7177de4 100644 Binary files a/static/sprites-small/home/shiny/201-i.webp and b/static/sprites-small/home/shiny/201-i.webp differ diff --git a/static/sprites-small/home/shiny/201-j.webp b/static/sprites-small/home/shiny/201-j.webp index 2e2ea11..c8abb12 100644 Binary files a/static/sprites-small/home/shiny/201-j.webp and b/static/sprites-small/home/shiny/201-j.webp differ diff --git a/static/sprites-small/home/shiny/201-k.webp b/static/sprites-small/home/shiny/201-k.webp index e301035..f7fb2e8 100644 Binary files a/static/sprites-small/home/shiny/201-k.webp and b/static/sprites-small/home/shiny/201-k.webp differ diff --git a/static/sprites-small/home/shiny/201-l.webp b/static/sprites-small/home/shiny/201-l.webp index bc67f0e..553b57c 100644 Binary files a/static/sprites-small/home/shiny/201-l.webp and b/static/sprites-small/home/shiny/201-l.webp differ diff --git a/static/sprites-small/home/shiny/201-m.webp b/static/sprites-small/home/shiny/201-m.webp index e92d145..272b3ed 100644 Binary files a/static/sprites-small/home/shiny/201-m.webp and b/static/sprites-small/home/shiny/201-m.webp differ diff --git a/static/sprites-small/home/shiny/201-n.webp b/static/sprites-small/home/shiny/201-n.webp index 8c64a6d..176e038 100644 Binary files a/static/sprites-small/home/shiny/201-n.webp and b/static/sprites-small/home/shiny/201-n.webp differ diff --git a/static/sprites-small/home/shiny/201-o.webp b/static/sprites-small/home/shiny/201-o.webp index e0cf7ee..9ddc5f3 100644 Binary files a/static/sprites-small/home/shiny/201-o.webp and b/static/sprites-small/home/shiny/201-o.webp differ diff --git a/static/sprites-small/home/shiny/201-p.webp b/static/sprites-small/home/shiny/201-p.webp index 8a55119..e77028c 100644 Binary files a/static/sprites-small/home/shiny/201-p.webp and b/static/sprites-small/home/shiny/201-p.webp differ diff --git a/static/sprites-small/home/shiny/201-q.webp b/static/sprites-small/home/shiny/201-q.webp index 66adbf9..6ff8645 100644 Binary files a/static/sprites-small/home/shiny/201-q.webp and b/static/sprites-small/home/shiny/201-q.webp differ diff --git a/static/sprites-small/home/shiny/201-question.webp b/static/sprites-small/home/shiny/201-question.webp index f788275..60464e0 100644 Binary files a/static/sprites-small/home/shiny/201-question.webp and b/static/sprites-small/home/shiny/201-question.webp differ diff --git a/static/sprites-small/home/shiny/201-r.webp b/static/sprites-small/home/shiny/201-r.webp index 53e1e9a..a2f6893 100644 Binary files a/static/sprites-small/home/shiny/201-r.webp and b/static/sprites-small/home/shiny/201-r.webp differ diff --git a/static/sprites-small/home/shiny/201-s.webp b/static/sprites-small/home/shiny/201-s.webp index 0e3b17f..d19be6a 100644 Binary files a/static/sprites-small/home/shiny/201-s.webp and b/static/sprites-small/home/shiny/201-s.webp differ diff --git a/static/sprites-small/home/shiny/201-t.webp b/static/sprites-small/home/shiny/201-t.webp index 5658b46..83e0521 100644 Binary files a/static/sprites-small/home/shiny/201-t.webp and b/static/sprites-small/home/shiny/201-t.webp differ diff --git a/static/sprites-small/home/shiny/201-u.webp b/static/sprites-small/home/shiny/201-u.webp index d4c32a8..846277a 100644 Binary files a/static/sprites-small/home/shiny/201-u.webp and b/static/sprites-small/home/shiny/201-u.webp differ diff --git a/static/sprites-small/home/shiny/201-v.webp b/static/sprites-small/home/shiny/201-v.webp index ebcc672..ad9c04e 100644 Binary files a/static/sprites-small/home/shiny/201-v.webp and b/static/sprites-small/home/shiny/201-v.webp differ diff --git a/static/sprites-small/home/shiny/201-w.webp b/static/sprites-small/home/shiny/201-w.webp index 8168f94..1f6dd67 100644 Binary files a/static/sprites-small/home/shiny/201-w.webp and b/static/sprites-small/home/shiny/201-w.webp differ diff --git a/static/sprites-small/home/shiny/201-x.webp b/static/sprites-small/home/shiny/201-x.webp index e2e5726..f8a6028 100644 Binary files a/static/sprites-small/home/shiny/201-x.webp and b/static/sprites-small/home/shiny/201-x.webp differ diff --git a/static/sprites-small/home/shiny/201-y.webp b/static/sprites-small/home/shiny/201-y.webp index 3efd680..e7ddaa1 100644 Binary files a/static/sprites-small/home/shiny/201-y.webp and b/static/sprites-small/home/shiny/201-y.webp differ diff --git a/static/sprites-small/home/shiny/201-z.webp b/static/sprites-small/home/shiny/201-z.webp index 6e04474..da5be82 100644 Binary files a/static/sprites-small/home/shiny/201-z.webp and b/static/sprites-small/home/shiny/201-z.webp differ diff --git a/static/sprites-small/home/shiny/201.webp b/static/sprites-small/home/shiny/201.webp index 695d66f..d60b022 100644 Binary files a/static/sprites-small/home/shiny/201.webp and b/static/sprites-small/home/shiny/201.webp differ diff --git a/static/sprites-small/home/shiny/202.webp b/static/sprites-small/home/shiny/202.webp index 87ac6c8..ccf871d 100644 Binary files a/static/sprites-small/home/shiny/202.webp and b/static/sprites-small/home/shiny/202.webp differ diff --git a/static/sprites-small/home/shiny/203.webp b/static/sprites-small/home/shiny/203.webp index 50a1601..d77b9cb 100644 Binary files a/static/sprites-small/home/shiny/203.webp and b/static/sprites-small/home/shiny/203.webp differ diff --git a/static/sprites-small/home/shiny/204.webp b/static/sprites-small/home/shiny/204.webp index 124d7d6..4ed6552 100644 Binary files a/static/sprites-small/home/shiny/204.webp and b/static/sprites-small/home/shiny/204.webp differ diff --git a/static/sprites-small/home/shiny/205.webp b/static/sprites-small/home/shiny/205.webp index a26f5dd..9661406 100644 Binary files a/static/sprites-small/home/shiny/205.webp and b/static/sprites-small/home/shiny/205.webp differ diff --git a/static/sprites-small/home/shiny/206.webp b/static/sprites-small/home/shiny/206.webp index 8351ba6..007f284 100644 Binary files a/static/sprites-small/home/shiny/206.webp and b/static/sprites-small/home/shiny/206.webp differ diff --git a/static/sprites-small/home/shiny/207.webp b/static/sprites-small/home/shiny/207.webp index 4312420..14fe2b8 100644 Binary files a/static/sprites-small/home/shiny/207.webp and b/static/sprites-small/home/shiny/207.webp differ diff --git a/static/sprites-small/home/shiny/208.webp b/static/sprites-small/home/shiny/208.webp index b92b351..8c9242d 100644 Binary files a/static/sprites-small/home/shiny/208.webp and b/static/sprites-small/home/shiny/208.webp differ diff --git a/static/sprites-small/home/shiny/209.webp b/static/sprites-small/home/shiny/209.webp index 635fd96..6d260a5 100644 Binary files a/static/sprites-small/home/shiny/209.webp and b/static/sprites-small/home/shiny/209.webp differ diff --git a/static/sprites-small/home/shiny/21.webp b/static/sprites-small/home/shiny/21.webp index 5548d98..f7c99f4 100644 Binary files a/static/sprites-small/home/shiny/21.webp and b/static/sprites-small/home/shiny/21.webp differ diff --git a/static/sprites-small/home/shiny/210.webp b/static/sprites-small/home/shiny/210.webp index f5a41c2..f6ffb40 100644 Binary files a/static/sprites-small/home/shiny/210.webp and b/static/sprites-small/home/shiny/210.webp differ diff --git a/static/sprites-small/home/shiny/211.webp b/static/sprites-small/home/shiny/211.webp index 333fe7e..c5399b3 100644 Binary files a/static/sprites-small/home/shiny/211.webp and b/static/sprites-small/home/shiny/211.webp differ diff --git a/static/sprites-small/home/shiny/212.webp b/static/sprites-small/home/shiny/212.webp index b088350..6000eac 100644 Binary files a/static/sprites-small/home/shiny/212.webp and b/static/sprites-small/home/shiny/212.webp differ diff --git a/static/sprites-small/home/shiny/213.webp b/static/sprites-small/home/shiny/213.webp index 4456c7a..b420e01 100644 Binary files a/static/sprites-small/home/shiny/213.webp and b/static/sprites-small/home/shiny/213.webp differ diff --git a/static/sprites-small/home/shiny/214.webp b/static/sprites-small/home/shiny/214.webp index 5f15900..4c7aa85 100644 Binary files a/static/sprites-small/home/shiny/214.webp and b/static/sprites-small/home/shiny/214.webp differ diff --git a/static/sprites-small/home/shiny/215.webp b/static/sprites-small/home/shiny/215.webp index facd3e1..9471316 100644 Binary files a/static/sprites-small/home/shiny/215.webp and b/static/sprites-small/home/shiny/215.webp differ diff --git a/static/sprites-small/home/shiny/216.webp b/static/sprites-small/home/shiny/216.webp index 8544201..f04bd2a 100644 Binary files a/static/sprites-small/home/shiny/216.webp and b/static/sprites-small/home/shiny/216.webp differ diff --git a/static/sprites-small/home/shiny/217.webp b/static/sprites-small/home/shiny/217.webp index ee16961..8674bee 100644 Binary files a/static/sprites-small/home/shiny/217.webp and b/static/sprites-small/home/shiny/217.webp differ diff --git a/static/sprites-small/home/shiny/218.webp b/static/sprites-small/home/shiny/218.webp index a02f317..93aaf88 100644 Binary files a/static/sprites-small/home/shiny/218.webp and b/static/sprites-small/home/shiny/218.webp differ diff --git a/static/sprites-small/home/shiny/219.webp b/static/sprites-small/home/shiny/219.webp index 3d8712b..a3b6112 100644 Binary files a/static/sprites-small/home/shiny/219.webp and b/static/sprites-small/home/shiny/219.webp differ diff --git a/static/sprites-small/home/shiny/22.webp b/static/sprites-small/home/shiny/22.webp index e473e65..47fabe3 100644 Binary files a/static/sprites-small/home/shiny/22.webp and b/static/sprites-small/home/shiny/22.webp differ diff --git a/static/sprites-small/home/shiny/220.webp b/static/sprites-small/home/shiny/220.webp index d5421cc..40f1b93 100644 Binary files a/static/sprites-small/home/shiny/220.webp and b/static/sprites-small/home/shiny/220.webp differ diff --git a/static/sprites-small/home/shiny/221.webp b/static/sprites-small/home/shiny/221.webp index a690802..247b954 100644 Binary files a/static/sprites-small/home/shiny/221.webp and b/static/sprites-small/home/shiny/221.webp differ diff --git a/static/sprites-small/home/shiny/222.webp b/static/sprites-small/home/shiny/222.webp index 5f5eed2..93e2e96 100644 Binary files a/static/sprites-small/home/shiny/222.webp and b/static/sprites-small/home/shiny/222.webp differ diff --git a/static/sprites-small/home/shiny/223.webp b/static/sprites-small/home/shiny/223.webp index a68fe2b..4f71446 100644 Binary files a/static/sprites-small/home/shiny/223.webp and b/static/sprites-small/home/shiny/223.webp differ diff --git a/static/sprites-small/home/shiny/224.webp b/static/sprites-small/home/shiny/224.webp index 67f3ff5..9b921f0 100644 Binary files a/static/sprites-small/home/shiny/224.webp and b/static/sprites-small/home/shiny/224.webp differ diff --git a/static/sprites-small/home/shiny/225.webp b/static/sprites-small/home/shiny/225.webp index 00cac19..f0f7038 100644 Binary files a/static/sprites-small/home/shiny/225.webp and b/static/sprites-small/home/shiny/225.webp differ diff --git a/static/sprites-small/home/shiny/226.webp b/static/sprites-small/home/shiny/226.webp index 2f0a7fc..7613401 100644 Binary files a/static/sprites-small/home/shiny/226.webp and b/static/sprites-small/home/shiny/226.webp differ diff --git a/static/sprites-small/home/shiny/227.webp b/static/sprites-small/home/shiny/227.webp index 45df5b5..d2e3c4a 100644 Binary files a/static/sprites-small/home/shiny/227.webp and b/static/sprites-small/home/shiny/227.webp differ diff --git a/static/sprites-small/home/shiny/228.webp b/static/sprites-small/home/shiny/228.webp index 6c219c6..4eb4a41 100644 Binary files a/static/sprites-small/home/shiny/228.webp and b/static/sprites-small/home/shiny/228.webp differ diff --git a/static/sprites-small/home/shiny/229.webp b/static/sprites-small/home/shiny/229.webp index 0642f95..90f4a21 100644 Binary files a/static/sprites-small/home/shiny/229.webp and b/static/sprites-small/home/shiny/229.webp differ diff --git a/static/sprites-small/home/shiny/23.webp b/static/sprites-small/home/shiny/23.webp index 916f705..68dcc66 100644 Binary files a/static/sprites-small/home/shiny/23.webp and b/static/sprites-small/home/shiny/23.webp differ diff --git a/static/sprites-small/home/shiny/230.webp b/static/sprites-small/home/shiny/230.webp index 67e52a7..4e9053a 100644 Binary files a/static/sprites-small/home/shiny/230.webp and b/static/sprites-small/home/shiny/230.webp differ diff --git a/static/sprites-small/home/shiny/231.webp b/static/sprites-small/home/shiny/231.webp index 417d2e8..2bbf900 100644 Binary files a/static/sprites-small/home/shiny/231.webp and b/static/sprites-small/home/shiny/231.webp differ diff --git a/static/sprites-small/home/shiny/232.webp b/static/sprites-small/home/shiny/232.webp index 4e5d28c..d5c23fc 100644 Binary files a/static/sprites-small/home/shiny/232.webp and b/static/sprites-small/home/shiny/232.webp differ diff --git a/static/sprites-small/home/shiny/233.webp b/static/sprites-small/home/shiny/233.webp index 8a833fd..e76dfd8 100644 Binary files a/static/sprites-small/home/shiny/233.webp and b/static/sprites-small/home/shiny/233.webp differ diff --git a/static/sprites-small/home/shiny/234.webp b/static/sprites-small/home/shiny/234.webp index 97171dd..7cf02f9 100644 Binary files a/static/sprites-small/home/shiny/234.webp and b/static/sprites-small/home/shiny/234.webp differ diff --git a/static/sprites-small/home/shiny/235.webp b/static/sprites-small/home/shiny/235.webp index 2c57da9..6c53b55 100644 Binary files a/static/sprites-small/home/shiny/235.webp and b/static/sprites-small/home/shiny/235.webp differ diff --git a/static/sprites-small/home/shiny/236.webp b/static/sprites-small/home/shiny/236.webp index 0ec3edd..5884471 100644 Binary files a/static/sprites-small/home/shiny/236.webp and b/static/sprites-small/home/shiny/236.webp differ diff --git a/static/sprites-small/home/shiny/237.webp b/static/sprites-small/home/shiny/237.webp index 9c17a23..0c754c9 100644 Binary files a/static/sprites-small/home/shiny/237.webp and b/static/sprites-small/home/shiny/237.webp differ diff --git a/static/sprites-small/home/shiny/238.webp b/static/sprites-small/home/shiny/238.webp index b4aee28..f6f4f3c 100644 Binary files a/static/sprites-small/home/shiny/238.webp and b/static/sprites-small/home/shiny/238.webp differ diff --git a/static/sprites-small/home/shiny/239.webp b/static/sprites-small/home/shiny/239.webp index c527f63..16b1178 100644 Binary files a/static/sprites-small/home/shiny/239.webp and b/static/sprites-small/home/shiny/239.webp differ diff --git a/static/sprites-small/home/shiny/24.webp b/static/sprites-small/home/shiny/24.webp index 097e58a..187854f 100644 Binary files a/static/sprites-small/home/shiny/24.webp and b/static/sprites-small/home/shiny/24.webp differ diff --git a/static/sprites-small/home/shiny/240.webp b/static/sprites-small/home/shiny/240.webp index e08d1bc..4a9f758 100644 Binary files a/static/sprites-small/home/shiny/240.webp and b/static/sprites-small/home/shiny/240.webp differ diff --git a/static/sprites-small/home/shiny/241.webp b/static/sprites-small/home/shiny/241.webp index 7435da1..495a468 100644 Binary files a/static/sprites-small/home/shiny/241.webp and b/static/sprites-small/home/shiny/241.webp differ diff --git a/static/sprites-small/home/shiny/242.webp b/static/sprites-small/home/shiny/242.webp index a2304c4..00bec75 100644 Binary files a/static/sprites-small/home/shiny/242.webp and b/static/sprites-small/home/shiny/242.webp differ diff --git a/static/sprites-small/home/shiny/243.webp b/static/sprites-small/home/shiny/243.webp index 6026979..3af8a54 100644 Binary files a/static/sprites-small/home/shiny/243.webp and b/static/sprites-small/home/shiny/243.webp differ diff --git a/static/sprites-small/home/shiny/244.webp b/static/sprites-small/home/shiny/244.webp index f1c7797..7c358e9 100644 Binary files a/static/sprites-small/home/shiny/244.webp and b/static/sprites-small/home/shiny/244.webp differ diff --git a/static/sprites-small/home/shiny/245.webp b/static/sprites-small/home/shiny/245.webp index 9afc907..52118e6 100644 Binary files a/static/sprites-small/home/shiny/245.webp and b/static/sprites-small/home/shiny/245.webp differ diff --git a/static/sprites-small/home/shiny/246.webp b/static/sprites-small/home/shiny/246.webp index d58c1e0..3656502 100644 Binary files a/static/sprites-small/home/shiny/246.webp and b/static/sprites-small/home/shiny/246.webp differ diff --git a/static/sprites-small/home/shiny/247.webp b/static/sprites-small/home/shiny/247.webp index c3e2de9..c976cb2 100644 Binary files a/static/sprites-small/home/shiny/247.webp and b/static/sprites-small/home/shiny/247.webp differ diff --git a/static/sprites-small/home/shiny/248.webp b/static/sprites-small/home/shiny/248.webp index 3d03b92..9120d15 100644 Binary files a/static/sprites-small/home/shiny/248.webp and b/static/sprites-small/home/shiny/248.webp differ diff --git a/static/sprites-small/home/shiny/249.webp b/static/sprites-small/home/shiny/249.webp index 99de7e3..c0dd93c 100644 Binary files a/static/sprites-small/home/shiny/249.webp and b/static/sprites-small/home/shiny/249.webp differ diff --git a/static/sprites-small/home/shiny/25.webp b/static/sprites-small/home/shiny/25.webp index c3c9d3c..a7fc9a4 100644 Binary files a/static/sprites-small/home/shiny/25.webp and b/static/sprites-small/home/shiny/25.webp differ diff --git a/static/sprites-small/home/shiny/250.webp b/static/sprites-small/home/shiny/250.webp index 09a2cd9..4e5c7ea 100644 Binary files a/static/sprites-small/home/shiny/250.webp and b/static/sprites-small/home/shiny/250.webp differ diff --git a/static/sprites-small/home/shiny/251.webp b/static/sprites-small/home/shiny/251.webp index 8273db2..3b97a35 100644 Binary files a/static/sprites-small/home/shiny/251.webp and b/static/sprites-small/home/shiny/251.webp differ diff --git a/static/sprites-small/home/shiny/252.webp b/static/sprites-small/home/shiny/252.webp index 79da70c..d0ff3fa 100644 Binary files a/static/sprites-small/home/shiny/252.webp and b/static/sprites-small/home/shiny/252.webp differ diff --git a/static/sprites-small/home/shiny/253.webp b/static/sprites-small/home/shiny/253.webp index a8f3f49..b46c629 100644 Binary files a/static/sprites-small/home/shiny/253.webp and b/static/sprites-small/home/shiny/253.webp differ diff --git a/static/sprites-small/home/shiny/254.webp b/static/sprites-small/home/shiny/254.webp index 1dcce30..7f4a69b 100644 Binary files a/static/sprites-small/home/shiny/254.webp and b/static/sprites-small/home/shiny/254.webp differ diff --git a/static/sprites-small/home/shiny/255.webp b/static/sprites-small/home/shiny/255.webp index ba6bed2..1ccc5ba 100644 Binary files a/static/sprites-small/home/shiny/255.webp and b/static/sprites-small/home/shiny/255.webp differ diff --git a/static/sprites-small/home/shiny/256.webp b/static/sprites-small/home/shiny/256.webp index 5b2dbae..993f239 100644 Binary files a/static/sprites-small/home/shiny/256.webp and b/static/sprites-small/home/shiny/256.webp differ diff --git a/static/sprites-small/home/shiny/257.webp b/static/sprites-small/home/shiny/257.webp index 8e59826..507fcdb 100644 Binary files a/static/sprites-small/home/shiny/257.webp and b/static/sprites-small/home/shiny/257.webp differ diff --git a/static/sprites-small/home/shiny/258.webp b/static/sprites-small/home/shiny/258.webp index 631f027..5d715d3 100644 Binary files a/static/sprites-small/home/shiny/258.webp and b/static/sprites-small/home/shiny/258.webp differ diff --git a/static/sprites-small/home/shiny/259.webp b/static/sprites-small/home/shiny/259.webp index aeb9540..dc9470b 100644 Binary files a/static/sprites-small/home/shiny/259.webp and b/static/sprites-small/home/shiny/259.webp differ diff --git a/static/sprites-small/home/shiny/26.webp b/static/sprites-small/home/shiny/26.webp index 3cfffc7..befc049 100644 Binary files a/static/sprites-small/home/shiny/26.webp and b/static/sprites-small/home/shiny/26.webp differ diff --git a/static/sprites-small/home/shiny/260.webp b/static/sprites-small/home/shiny/260.webp index 751536a..0e066b0 100644 Binary files a/static/sprites-small/home/shiny/260.webp and b/static/sprites-small/home/shiny/260.webp differ diff --git a/static/sprites-small/home/shiny/261.webp b/static/sprites-small/home/shiny/261.webp index febce37..1fd5c03 100644 Binary files a/static/sprites-small/home/shiny/261.webp and b/static/sprites-small/home/shiny/261.webp differ diff --git a/static/sprites-small/home/shiny/262.webp b/static/sprites-small/home/shiny/262.webp index 13bad77..d2ba2db 100644 Binary files a/static/sprites-small/home/shiny/262.webp and b/static/sprites-small/home/shiny/262.webp differ diff --git a/static/sprites-small/home/shiny/263.webp b/static/sprites-small/home/shiny/263.webp index c21f06e..3834380 100644 Binary files a/static/sprites-small/home/shiny/263.webp and b/static/sprites-small/home/shiny/263.webp differ diff --git a/static/sprites-small/home/shiny/264.webp b/static/sprites-small/home/shiny/264.webp index ffb6f36..5bdc5b9 100644 Binary files a/static/sprites-small/home/shiny/264.webp and b/static/sprites-small/home/shiny/264.webp differ diff --git a/static/sprites-small/home/shiny/265.webp b/static/sprites-small/home/shiny/265.webp index 35b7c5d..5913d22 100644 Binary files a/static/sprites-small/home/shiny/265.webp and b/static/sprites-small/home/shiny/265.webp differ diff --git a/static/sprites-small/home/shiny/266.webp b/static/sprites-small/home/shiny/266.webp index b7ba84f..5f3cff7 100644 Binary files a/static/sprites-small/home/shiny/266.webp and b/static/sprites-small/home/shiny/266.webp differ diff --git a/static/sprites-small/home/shiny/267.webp b/static/sprites-small/home/shiny/267.webp index fb649a7..bcd99cd 100644 Binary files a/static/sprites-small/home/shiny/267.webp and b/static/sprites-small/home/shiny/267.webp differ diff --git a/static/sprites-small/home/shiny/268.webp b/static/sprites-small/home/shiny/268.webp index 61af105..987c8ac 100644 Binary files a/static/sprites-small/home/shiny/268.webp and b/static/sprites-small/home/shiny/268.webp differ diff --git a/static/sprites-small/home/shiny/269.webp b/static/sprites-small/home/shiny/269.webp index 0f393f5..012d883 100644 Binary files a/static/sprites-small/home/shiny/269.webp and b/static/sprites-small/home/shiny/269.webp differ diff --git a/static/sprites-small/home/shiny/27.webp b/static/sprites-small/home/shiny/27.webp index 9422ff3..6ac352a 100644 Binary files a/static/sprites-small/home/shiny/27.webp and b/static/sprites-small/home/shiny/27.webp differ diff --git a/static/sprites-small/home/shiny/270.webp b/static/sprites-small/home/shiny/270.webp index e48f3d0..8cb4887 100644 Binary files a/static/sprites-small/home/shiny/270.webp and b/static/sprites-small/home/shiny/270.webp differ diff --git a/static/sprites-small/home/shiny/271.webp b/static/sprites-small/home/shiny/271.webp index e676480..a7c784c 100644 Binary files a/static/sprites-small/home/shiny/271.webp and b/static/sprites-small/home/shiny/271.webp differ diff --git a/static/sprites-small/home/shiny/272.webp b/static/sprites-small/home/shiny/272.webp index 8c0dc16..0fea1e7 100644 Binary files a/static/sprites-small/home/shiny/272.webp and b/static/sprites-small/home/shiny/272.webp differ diff --git a/static/sprites-small/home/shiny/273.webp b/static/sprites-small/home/shiny/273.webp index a5cfec3..1927141 100644 Binary files a/static/sprites-small/home/shiny/273.webp and b/static/sprites-small/home/shiny/273.webp differ diff --git a/static/sprites-small/home/shiny/274.webp b/static/sprites-small/home/shiny/274.webp index 09512d6..158af4a 100644 Binary files a/static/sprites-small/home/shiny/274.webp and b/static/sprites-small/home/shiny/274.webp differ diff --git a/static/sprites-small/home/shiny/275.webp b/static/sprites-small/home/shiny/275.webp index 95a0288..2c3f8ed 100644 Binary files a/static/sprites-small/home/shiny/275.webp and b/static/sprites-small/home/shiny/275.webp differ diff --git a/static/sprites-small/home/shiny/276.webp b/static/sprites-small/home/shiny/276.webp index a2faed0..8a7cac6 100644 Binary files a/static/sprites-small/home/shiny/276.webp and b/static/sprites-small/home/shiny/276.webp differ diff --git a/static/sprites-small/home/shiny/277.webp b/static/sprites-small/home/shiny/277.webp index ca6d610..9c3cde3 100644 Binary files a/static/sprites-small/home/shiny/277.webp and b/static/sprites-small/home/shiny/277.webp differ diff --git a/static/sprites-small/home/shiny/278.webp b/static/sprites-small/home/shiny/278.webp index 580b552..f3a1829 100644 Binary files a/static/sprites-small/home/shiny/278.webp and b/static/sprites-small/home/shiny/278.webp differ diff --git a/static/sprites-small/home/shiny/279.webp b/static/sprites-small/home/shiny/279.webp index 8c3c379..dd2b399 100644 Binary files a/static/sprites-small/home/shiny/279.webp and b/static/sprites-small/home/shiny/279.webp differ diff --git a/static/sprites-small/home/shiny/28.webp b/static/sprites-small/home/shiny/28.webp index 95b9d61..447c581 100644 Binary files a/static/sprites-small/home/shiny/28.webp and b/static/sprites-small/home/shiny/28.webp differ diff --git a/static/sprites-small/home/shiny/280.webp b/static/sprites-small/home/shiny/280.webp index d093c00..cf730c0 100644 Binary files a/static/sprites-small/home/shiny/280.webp and b/static/sprites-small/home/shiny/280.webp differ diff --git a/static/sprites-small/home/shiny/281.webp b/static/sprites-small/home/shiny/281.webp index 02cc568..f1f07fc 100644 Binary files a/static/sprites-small/home/shiny/281.webp and b/static/sprites-small/home/shiny/281.webp differ diff --git a/static/sprites-small/home/shiny/282.webp b/static/sprites-small/home/shiny/282.webp index 6561148..b09da3e 100644 Binary files a/static/sprites-small/home/shiny/282.webp and b/static/sprites-small/home/shiny/282.webp differ diff --git a/static/sprites-small/home/shiny/283.webp b/static/sprites-small/home/shiny/283.webp index 58df4be..689accf 100644 Binary files a/static/sprites-small/home/shiny/283.webp and b/static/sprites-small/home/shiny/283.webp differ diff --git a/static/sprites-small/home/shiny/284.webp b/static/sprites-small/home/shiny/284.webp index 3e770fb..15b59bb 100644 Binary files a/static/sprites-small/home/shiny/284.webp and b/static/sprites-small/home/shiny/284.webp differ diff --git a/static/sprites-small/home/shiny/285.webp b/static/sprites-small/home/shiny/285.webp index cce933f..f6777ec 100644 Binary files a/static/sprites-small/home/shiny/285.webp and b/static/sprites-small/home/shiny/285.webp differ diff --git a/static/sprites-small/home/shiny/286.webp b/static/sprites-small/home/shiny/286.webp index e187e15..b77acb0 100644 Binary files a/static/sprites-small/home/shiny/286.webp and b/static/sprites-small/home/shiny/286.webp differ diff --git a/static/sprites-small/home/shiny/287.webp b/static/sprites-small/home/shiny/287.webp index 3958b89..49620ab 100644 Binary files a/static/sprites-small/home/shiny/287.webp and b/static/sprites-small/home/shiny/287.webp differ diff --git a/static/sprites-small/home/shiny/288.webp b/static/sprites-small/home/shiny/288.webp index e77b300..5660e9d 100644 Binary files a/static/sprites-small/home/shiny/288.webp and b/static/sprites-small/home/shiny/288.webp differ diff --git a/static/sprites-small/home/shiny/289.webp b/static/sprites-small/home/shiny/289.webp index 501c1ac..6ea643d 100644 Binary files a/static/sprites-small/home/shiny/289.webp and b/static/sprites-small/home/shiny/289.webp differ diff --git a/static/sprites-small/home/shiny/29.webp b/static/sprites-small/home/shiny/29.webp index 2c4b474..9225456 100644 Binary files a/static/sprites-small/home/shiny/29.webp and b/static/sprites-small/home/shiny/29.webp differ diff --git a/static/sprites-small/home/shiny/290.webp b/static/sprites-small/home/shiny/290.webp index a44196f..db5f0d2 100644 Binary files a/static/sprites-small/home/shiny/290.webp and b/static/sprites-small/home/shiny/290.webp differ diff --git a/static/sprites-small/home/shiny/291.webp b/static/sprites-small/home/shiny/291.webp index 53724e2..7b6f6c7 100644 Binary files a/static/sprites-small/home/shiny/291.webp and b/static/sprites-small/home/shiny/291.webp differ diff --git a/static/sprites-small/home/shiny/292.webp b/static/sprites-small/home/shiny/292.webp index 2323369..262073f 100644 Binary files a/static/sprites-small/home/shiny/292.webp and b/static/sprites-small/home/shiny/292.webp differ diff --git a/static/sprites-small/home/shiny/293.webp b/static/sprites-small/home/shiny/293.webp index 99a2e24..28e6751 100644 Binary files a/static/sprites-small/home/shiny/293.webp and b/static/sprites-small/home/shiny/293.webp differ diff --git a/static/sprites-small/home/shiny/294.webp b/static/sprites-small/home/shiny/294.webp index 2d4400e..530a9d8 100644 Binary files a/static/sprites-small/home/shiny/294.webp and b/static/sprites-small/home/shiny/294.webp differ diff --git a/static/sprites-small/home/shiny/295.webp b/static/sprites-small/home/shiny/295.webp index 7f0fb1f..a93ed93 100644 Binary files a/static/sprites-small/home/shiny/295.webp and b/static/sprites-small/home/shiny/295.webp differ diff --git a/static/sprites-small/home/shiny/296.webp b/static/sprites-small/home/shiny/296.webp index 09d61b2..6737ba1 100644 Binary files a/static/sprites-small/home/shiny/296.webp and b/static/sprites-small/home/shiny/296.webp differ diff --git a/static/sprites-small/home/shiny/297.webp b/static/sprites-small/home/shiny/297.webp index f3f6268..40a5b05 100644 Binary files a/static/sprites-small/home/shiny/297.webp and b/static/sprites-small/home/shiny/297.webp differ diff --git a/static/sprites-small/home/shiny/298.webp b/static/sprites-small/home/shiny/298.webp index 145e106..5e6588e 100644 Binary files a/static/sprites-small/home/shiny/298.webp and b/static/sprites-small/home/shiny/298.webp differ diff --git a/static/sprites-small/home/shiny/299.webp b/static/sprites-small/home/shiny/299.webp index 2e3f6e7..e2a3034 100644 Binary files a/static/sprites-small/home/shiny/299.webp and b/static/sprites-small/home/shiny/299.webp differ diff --git a/static/sprites-small/home/shiny/3.webp b/static/sprites-small/home/shiny/3.webp index 3c3d599..fee3afb 100644 Binary files a/static/sprites-small/home/shiny/3.webp and b/static/sprites-small/home/shiny/3.webp differ diff --git a/static/sprites-small/home/shiny/30.webp b/static/sprites-small/home/shiny/30.webp index 724c2fc..98efcef 100644 Binary files a/static/sprites-small/home/shiny/30.webp and b/static/sprites-small/home/shiny/30.webp differ diff --git a/static/sprites-small/home/shiny/300.webp b/static/sprites-small/home/shiny/300.webp index bdb1a56..b134d11 100644 Binary files a/static/sprites-small/home/shiny/300.webp and b/static/sprites-small/home/shiny/300.webp differ diff --git a/static/sprites-small/home/shiny/301.webp b/static/sprites-small/home/shiny/301.webp index 14a658f..99a5881 100644 Binary files a/static/sprites-small/home/shiny/301.webp and b/static/sprites-small/home/shiny/301.webp differ diff --git a/static/sprites-small/home/shiny/302.webp b/static/sprites-small/home/shiny/302.webp index 82cf0a4..9ce2b37 100644 Binary files a/static/sprites-small/home/shiny/302.webp and b/static/sprites-small/home/shiny/302.webp differ diff --git a/static/sprites-small/home/shiny/303.webp b/static/sprites-small/home/shiny/303.webp index cc21aa0..74b13cd 100644 Binary files a/static/sprites-small/home/shiny/303.webp and b/static/sprites-small/home/shiny/303.webp differ diff --git a/static/sprites-small/home/shiny/304.webp b/static/sprites-small/home/shiny/304.webp index ffdf53a..64184bd 100644 Binary files a/static/sprites-small/home/shiny/304.webp and b/static/sprites-small/home/shiny/304.webp differ diff --git a/static/sprites-small/home/shiny/305.webp b/static/sprites-small/home/shiny/305.webp index 08477cc..e112e15 100644 Binary files a/static/sprites-small/home/shiny/305.webp and b/static/sprites-small/home/shiny/305.webp differ diff --git a/static/sprites-small/home/shiny/306.webp b/static/sprites-small/home/shiny/306.webp index 1ec10f0..3fc69b3 100644 Binary files a/static/sprites-small/home/shiny/306.webp and b/static/sprites-small/home/shiny/306.webp differ diff --git a/static/sprites-small/home/shiny/307.webp b/static/sprites-small/home/shiny/307.webp index 8dda350..beee31f 100644 Binary files a/static/sprites-small/home/shiny/307.webp and b/static/sprites-small/home/shiny/307.webp differ diff --git a/static/sprites-small/home/shiny/308.webp b/static/sprites-small/home/shiny/308.webp index ea77271..389edf0 100644 Binary files a/static/sprites-small/home/shiny/308.webp and b/static/sprites-small/home/shiny/308.webp differ diff --git a/static/sprites-small/home/shiny/309.webp b/static/sprites-small/home/shiny/309.webp index b048627..2d6d301 100644 Binary files a/static/sprites-small/home/shiny/309.webp and b/static/sprites-small/home/shiny/309.webp differ diff --git a/static/sprites-small/home/shiny/31.webp b/static/sprites-small/home/shiny/31.webp index 0cfbcf6..d630bd1 100644 Binary files a/static/sprites-small/home/shiny/31.webp and b/static/sprites-small/home/shiny/31.webp differ diff --git a/static/sprites-small/home/shiny/310.webp b/static/sprites-small/home/shiny/310.webp index 6f34a22..177211d 100644 Binary files a/static/sprites-small/home/shiny/310.webp and b/static/sprites-small/home/shiny/310.webp differ diff --git a/static/sprites-small/home/shiny/311.webp b/static/sprites-small/home/shiny/311.webp index f17b389..3093881 100644 Binary files a/static/sprites-small/home/shiny/311.webp and b/static/sprites-small/home/shiny/311.webp differ diff --git a/static/sprites-small/home/shiny/312.webp b/static/sprites-small/home/shiny/312.webp index 2a117d9..0148686 100644 Binary files a/static/sprites-small/home/shiny/312.webp and b/static/sprites-small/home/shiny/312.webp differ diff --git a/static/sprites-small/home/shiny/313.webp b/static/sprites-small/home/shiny/313.webp index 5db1916..4803e38 100644 Binary files a/static/sprites-small/home/shiny/313.webp and b/static/sprites-small/home/shiny/313.webp differ diff --git a/static/sprites-small/home/shiny/314.webp b/static/sprites-small/home/shiny/314.webp index 5bfe358..bb42b84 100644 Binary files a/static/sprites-small/home/shiny/314.webp and b/static/sprites-small/home/shiny/314.webp differ diff --git a/static/sprites-small/home/shiny/315.webp b/static/sprites-small/home/shiny/315.webp index c1ba68e..e2b01a6 100644 Binary files a/static/sprites-small/home/shiny/315.webp and b/static/sprites-small/home/shiny/315.webp differ diff --git a/static/sprites-small/home/shiny/316.webp b/static/sprites-small/home/shiny/316.webp index 438771e..0f7db77 100644 Binary files a/static/sprites-small/home/shiny/316.webp and b/static/sprites-small/home/shiny/316.webp differ diff --git a/static/sprites-small/home/shiny/317.webp b/static/sprites-small/home/shiny/317.webp index ef20d68..5c3ab15 100644 Binary files a/static/sprites-small/home/shiny/317.webp and b/static/sprites-small/home/shiny/317.webp differ diff --git a/static/sprites-small/home/shiny/318.webp b/static/sprites-small/home/shiny/318.webp index 80d500e..1739622 100644 Binary files a/static/sprites-small/home/shiny/318.webp and b/static/sprites-small/home/shiny/318.webp differ diff --git a/static/sprites-small/home/shiny/319.webp b/static/sprites-small/home/shiny/319.webp index b534e7f..a65e6d8 100644 Binary files a/static/sprites-small/home/shiny/319.webp and b/static/sprites-small/home/shiny/319.webp differ diff --git a/static/sprites-small/home/shiny/32.webp b/static/sprites-small/home/shiny/32.webp index 1e16dd9..edfbd88 100644 Binary files a/static/sprites-small/home/shiny/32.webp and b/static/sprites-small/home/shiny/32.webp differ diff --git a/static/sprites-small/home/shiny/320.webp b/static/sprites-small/home/shiny/320.webp index 993864f..ce53f55 100644 Binary files a/static/sprites-small/home/shiny/320.webp and b/static/sprites-small/home/shiny/320.webp differ diff --git a/static/sprites-small/home/shiny/321.webp b/static/sprites-small/home/shiny/321.webp index 7d08012..80f7150 100644 Binary files a/static/sprites-small/home/shiny/321.webp and b/static/sprites-small/home/shiny/321.webp differ diff --git a/static/sprites-small/home/shiny/322.webp b/static/sprites-small/home/shiny/322.webp index e572b76..1c754b8 100644 Binary files a/static/sprites-small/home/shiny/322.webp and b/static/sprites-small/home/shiny/322.webp differ diff --git a/static/sprites-small/home/shiny/323.webp b/static/sprites-small/home/shiny/323.webp index 3c50888..f3f5ae2 100644 Binary files a/static/sprites-small/home/shiny/323.webp and b/static/sprites-small/home/shiny/323.webp differ diff --git a/static/sprites-small/home/shiny/324.webp b/static/sprites-small/home/shiny/324.webp index 6aa9aca..bff7914 100644 Binary files a/static/sprites-small/home/shiny/324.webp and b/static/sprites-small/home/shiny/324.webp differ diff --git a/static/sprites-small/home/shiny/325.webp b/static/sprites-small/home/shiny/325.webp index 6f7a173..57c3625 100644 Binary files a/static/sprites-small/home/shiny/325.webp and b/static/sprites-small/home/shiny/325.webp differ diff --git a/static/sprites-small/home/shiny/326.webp b/static/sprites-small/home/shiny/326.webp index 6df39b8..5683086 100644 Binary files a/static/sprites-small/home/shiny/326.webp and b/static/sprites-small/home/shiny/326.webp differ diff --git a/static/sprites-small/home/shiny/327.webp b/static/sprites-small/home/shiny/327.webp index 7d28c3c..821e819 100644 Binary files a/static/sprites-small/home/shiny/327.webp and b/static/sprites-small/home/shiny/327.webp differ diff --git a/static/sprites-small/home/shiny/328.webp b/static/sprites-small/home/shiny/328.webp index 178ca82..b6b198d 100644 Binary files a/static/sprites-small/home/shiny/328.webp and b/static/sprites-small/home/shiny/328.webp differ diff --git a/static/sprites-small/home/shiny/329.webp b/static/sprites-small/home/shiny/329.webp index fb74972..cba8dc3 100644 Binary files a/static/sprites-small/home/shiny/329.webp and b/static/sprites-small/home/shiny/329.webp differ diff --git a/static/sprites-small/home/shiny/33.webp b/static/sprites-small/home/shiny/33.webp index 1c6dad8..4e93441 100644 Binary files a/static/sprites-small/home/shiny/33.webp and b/static/sprites-small/home/shiny/33.webp differ diff --git a/static/sprites-small/home/shiny/330.webp b/static/sprites-small/home/shiny/330.webp index fb8901f..ad34186 100644 Binary files a/static/sprites-small/home/shiny/330.webp and b/static/sprites-small/home/shiny/330.webp differ diff --git a/static/sprites-small/home/shiny/331.webp b/static/sprites-small/home/shiny/331.webp index 68b45bb..3fa4a81 100644 Binary files a/static/sprites-small/home/shiny/331.webp and b/static/sprites-small/home/shiny/331.webp differ diff --git a/static/sprites-small/home/shiny/332.webp b/static/sprites-small/home/shiny/332.webp index 880a3cd..d084a25 100644 Binary files a/static/sprites-small/home/shiny/332.webp and b/static/sprites-small/home/shiny/332.webp differ diff --git a/static/sprites-small/home/shiny/333.webp b/static/sprites-small/home/shiny/333.webp index 8aded50..838ca29 100644 Binary files a/static/sprites-small/home/shiny/333.webp and b/static/sprites-small/home/shiny/333.webp differ diff --git a/static/sprites-small/home/shiny/334.webp b/static/sprites-small/home/shiny/334.webp index a231817..2c32ddf 100644 Binary files a/static/sprites-small/home/shiny/334.webp and b/static/sprites-small/home/shiny/334.webp differ diff --git a/static/sprites-small/home/shiny/335.webp b/static/sprites-small/home/shiny/335.webp index b86d6ff..661ef37 100644 Binary files a/static/sprites-small/home/shiny/335.webp and b/static/sprites-small/home/shiny/335.webp differ diff --git a/static/sprites-small/home/shiny/336.webp b/static/sprites-small/home/shiny/336.webp index c59bc55..cddbf5e 100644 Binary files a/static/sprites-small/home/shiny/336.webp and b/static/sprites-small/home/shiny/336.webp differ diff --git a/static/sprites-small/home/shiny/337.webp b/static/sprites-small/home/shiny/337.webp index 2773052..6d8f349 100644 Binary files a/static/sprites-small/home/shiny/337.webp and b/static/sprites-small/home/shiny/337.webp differ diff --git a/static/sprites-small/home/shiny/338.webp b/static/sprites-small/home/shiny/338.webp index 9b349d3..8e25622 100644 Binary files a/static/sprites-small/home/shiny/338.webp and b/static/sprites-small/home/shiny/338.webp differ diff --git a/static/sprites-small/home/shiny/339.webp b/static/sprites-small/home/shiny/339.webp index 8123071..d6fa331 100644 Binary files a/static/sprites-small/home/shiny/339.webp and b/static/sprites-small/home/shiny/339.webp differ diff --git a/static/sprites-small/home/shiny/34.webp b/static/sprites-small/home/shiny/34.webp index 2b7b687..11fb824 100644 Binary files a/static/sprites-small/home/shiny/34.webp and b/static/sprites-small/home/shiny/34.webp differ diff --git a/static/sprites-small/home/shiny/340.webp b/static/sprites-small/home/shiny/340.webp index fffdbe9..43ef04b 100644 Binary files a/static/sprites-small/home/shiny/340.webp and b/static/sprites-small/home/shiny/340.webp differ diff --git a/static/sprites-small/home/shiny/341.webp b/static/sprites-small/home/shiny/341.webp index f14165b..f21fe9a 100644 Binary files a/static/sprites-small/home/shiny/341.webp and b/static/sprites-small/home/shiny/341.webp differ diff --git a/static/sprites-small/home/shiny/342.webp b/static/sprites-small/home/shiny/342.webp index 360a440..b5758bf 100644 Binary files a/static/sprites-small/home/shiny/342.webp and b/static/sprites-small/home/shiny/342.webp differ diff --git a/static/sprites-small/home/shiny/343.webp b/static/sprites-small/home/shiny/343.webp index 3d7e658..3fc7a50 100644 Binary files a/static/sprites-small/home/shiny/343.webp and b/static/sprites-small/home/shiny/343.webp differ diff --git a/static/sprites-small/home/shiny/344.webp b/static/sprites-small/home/shiny/344.webp index f8170d6..90f8eed 100644 Binary files a/static/sprites-small/home/shiny/344.webp and b/static/sprites-small/home/shiny/344.webp differ diff --git a/static/sprites-small/home/shiny/345.webp b/static/sprites-small/home/shiny/345.webp index 536ac08..6e9a676 100644 Binary files a/static/sprites-small/home/shiny/345.webp and b/static/sprites-small/home/shiny/345.webp differ diff --git a/static/sprites-small/home/shiny/346.webp b/static/sprites-small/home/shiny/346.webp index 1d33a13..ef3cdaa 100644 Binary files a/static/sprites-small/home/shiny/346.webp and b/static/sprites-small/home/shiny/346.webp differ diff --git a/static/sprites-small/home/shiny/347.webp b/static/sprites-small/home/shiny/347.webp index dd3729a..2c04c27 100644 Binary files a/static/sprites-small/home/shiny/347.webp and b/static/sprites-small/home/shiny/347.webp differ diff --git a/static/sprites-small/home/shiny/348.webp b/static/sprites-small/home/shiny/348.webp index 7181b21..2ecb4c5 100644 Binary files a/static/sprites-small/home/shiny/348.webp and b/static/sprites-small/home/shiny/348.webp differ diff --git a/static/sprites-small/home/shiny/349.webp b/static/sprites-small/home/shiny/349.webp index edd6c0b..73b5eae 100644 Binary files a/static/sprites-small/home/shiny/349.webp and b/static/sprites-small/home/shiny/349.webp differ diff --git a/static/sprites-small/home/shiny/35.webp b/static/sprites-small/home/shiny/35.webp index 80831a9..6238634 100644 Binary files a/static/sprites-small/home/shiny/35.webp and b/static/sprites-small/home/shiny/35.webp differ diff --git a/static/sprites-small/home/shiny/350.webp b/static/sprites-small/home/shiny/350.webp index e73c936..83295ea 100644 Binary files a/static/sprites-small/home/shiny/350.webp and b/static/sprites-small/home/shiny/350.webp differ diff --git a/static/sprites-small/home/shiny/351.webp b/static/sprites-small/home/shiny/351.webp index 9dd6f82..ed083bb 100644 Binary files a/static/sprites-small/home/shiny/351.webp and b/static/sprites-small/home/shiny/351.webp differ diff --git a/static/sprites-small/home/shiny/352.webp b/static/sprites-small/home/shiny/352.webp index a1271a4..f5c4654 100644 Binary files a/static/sprites-small/home/shiny/352.webp and b/static/sprites-small/home/shiny/352.webp differ diff --git a/static/sprites-small/home/shiny/353.webp b/static/sprites-small/home/shiny/353.webp index ba18105..db11aa7 100644 Binary files a/static/sprites-small/home/shiny/353.webp and b/static/sprites-small/home/shiny/353.webp differ diff --git a/static/sprites-small/home/shiny/354.webp b/static/sprites-small/home/shiny/354.webp index a8ac050..cfea43c 100644 Binary files a/static/sprites-small/home/shiny/354.webp and b/static/sprites-small/home/shiny/354.webp differ diff --git a/static/sprites-small/home/shiny/355.webp b/static/sprites-small/home/shiny/355.webp index d27b25c..fcd6d08 100644 Binary files a/static/sprites-small/home/shiny/355.webp and b/static/sprites-small/home/shiny/355.webp differ diff --git a/static/sprites-small/home/shiny/356.webp b/static/sprites-small/home/shiny/356.webp index a961488..3e0a2de 100644 Binary files a/static/sprites-small/home/shiny/356.webp and b/static/sprites-small/home/shiny/356.webp differ diff --git a/static/sprites-small/home/shiny/357.webp b/static/sprites-small/home/shiny/357.webp index d049d8b..8a03438 100644 Binary files a/static/sprites-small/home/shiny/357.webp and b/static/sprites-small/home/shiny/357.webp differ diff --git a/static/sprites-small/home/shiny/358.webp b/static/sprites-small/home/shiny/358.webp index 44f0e83..9718fa4 100644 Binary files a/static/sprites-small/home/shiny/358.webp and b/static/sprites-small/home/shiny/358.webp differ diff --git a/static/sprites-small/home/shiny/359.webp b/static/sprites-small/home/shiny/359.webp index 5e1c41b..6a51465 100644 Binary files a/static/sprites-small/home/shiny/359.webp and b/static/sprites-small/home/shiny/359.webp differ diff --git a/static/sprites-small/home/shiny/36.webp b/static/sprites-small/home/shiny/36.webp index fbdfb16..bc33df1 100644 Binary files a/static/sprites-small/home/shiny/36.webp and b/static/sprites-small/home/shiny/36.webp differ diff --git a/static/sprites-small/home/shiny/360.webp b/static/sprites-small/home/shiny/360.webp index decf23a..7b3a6db 100644 Binary files a/static/sprites-small/home/shiny/360.webp and b/static/sprites-small/home/shiny/360.webp differ diff --git a/static/sprites-small/home/shiny/361.webp b/static/sprites-small/home/shiny/361.webp index e14b7fb..2963355 100644 Binary files a/static/sprites-small/home/shiny/361.webp and b/static/sprites-small/home/shiny/361.webp differ diff --git a/static/sprites-small/home/shiny/362.webp b/static/sprites-small/home/shiny/362.webp index 7aa1df1..4c70597 100644 Binary files a/static/sprites-small/home/shiny/362.webp and b/static/sprites-small/home/shiny/362.webp differ diff --git a/static/sprites-small/home/shiny/363.webp b/static/sprites-small/home/shiny/363.webp index 2b5192d..93e9c7c 100644 Binary files a/static/sprites-small/home/shiny/363.webp and b/static/sprites-small/home/shiny/363.webp differ diff --git a/static/sprites-small/home/shiny/364.webp b/static/sprites-small/home/shiny/364.webp index 47dd0fa..ec9ebc9 100644 Binary files a/static/sprites-small/home/shiny/364.webp and b/static/sprites-small/home/shiny/364.webp differ diff --git a/static/sprites-small/home/shiny/365.webp b/static/sprites-small/home/shiny/365.webp index 644951d..2fa7d32 100644 Binary files a/static/sprites-small/home/shiny/365.webp and b/static/sprites-small/home/shiny/365.webp differ diff --git a/static/sprites-small/home/shiny/366.webp b/static/sprites-small/home/shiny/366.webp index 13f5f03..34321c1 100644 Binary files a/static/sprites-small/home/shiny/366.webp and b/static/sprites-small/home/shiny/366.webp differ diff --git a/static/sprites-small/home/shiny/367.webp b/static/sprites-small/home/shiny/367.webp index b37e5ad..21eb1d2 100644 Binary files a/static/sprites-small/home/shiny/367.webp and b/static/sprites-small/home/shiny/367.webp differ diff --git a/static/sprites-small/home/shiny/368.webp b/static/sprites-small/home/shiny/368.webp index cc9f60b..a540463 100644 Binary files a/static/sprites-small/home/shiny/368.webp and b/static/sprites-small/home/shiny/368.webp differ diff --git a/static/sprites-small/home/shiny/369.webp b/static/sprites-small/home/shiny/369.webp index 235271a..6a5552a 100644 Binary files a/static/sprites-small/home/shiny/369.webp and b/static/sprites-small/home/shiny/369.webp differ diff --git a/static/sprites-small/home/shiny/37.webp b/static/sprites-small/home/shiny/37.webp index ebe7eab..fd9ebe2 100644 Binary files a/static/sprites-small/home/shiny/37.webp and b/static/sprites-small/home/shiny/37.webp differ diff --git a/static/sprites-small/home/shiny/370.webp b/static/sprites-small/home/shiny/370.webp index 0c88f77..2138715 100644 Binary files a/static/sprites-small/home/shiny/370.webp and b/static/sprites-small/home/shiny/370.webp differ diff --git a/static/sprites-small/home/shiny/371.webp b/static/sprites-small/home/shiny/371.webp index 864ed73..3e96453 100644 Binary files a/static/sprites-small/home/shiny/371.webp and b/static/sprites-small/home/shiny/371.webp differ diff --git a/static/sprites-small/home/shiny/372.webp b/static/sprites-small/home/shiny/372.webp index 84c0e36..f6c078e 100644 Binary files a/static/sprites-small/home/shiny/372.webp and b/static/sprites-small/home/shiny/372.webp differ diff --git a/static/sprites-small/home/shiny/373.webp b/static/sprites-small/home/shiny/373.webp index ff690c2..09955a8 100644 Binary files a/static/sprites-small/home/shiny/373.webp and b/static/sprites-small/home/shiny/373.webp differ diff --git a/static/sprites-small/home/shiny/374.webp b/static/sprites-small/home/shiny/374.webp index 9180c17..9d3d740 100644 Binary files a/static/sprites-small/home/shiny/374.webp and b/static/sprites-small/home/shiny/374.webp differ diff --git a/static/sprites-small/home/shiny/375.webp b/static/sprites-small/home/shiny/375.webp index 6779403..4960d8a 100644 Binary files a/static/sprites-small/home/shiny/375.webp and b/static/sprites-small/home/shiny/375.webp differ diff --git a/static/sprites-small/home/shiny/376.webp b/static/sprites-small/home/shiny/376.webp index 10a971b..b8d6182 100644 Binary files a/static/sprites-small/home/shiny/376.webp and b/static/sprites-small/home/shiny/376.webp differ diff --git a/static/sprites-small/home/shiny/377.webp b/static/sprites-small/home/shiny/377.webp index 5931bc4..4ba74a7 100644 Binary files a/static/sprites-small/home/shiny/377.webp and b/static/sprites-small/home/shiny/377.webp differ diff --git a/static/sprites-small/home/shiny/378.webp b/static/sprites-small/home/shiny/378.webp index 56c9ced..97c924d 100644 Binary files a/static/sprites-small/home/shiny/378.webp and b/static/sprites-small/home/shiny/378.webp differ diff --git a/static/sprites-small/home/shiny/379.webp b/static/sprites-small/home/shiny/379.webp index 1db62ac..e674c92 100644 Binary files a/static/sprites-small/home/shiny/379.webp and b/static/sprites-small/home/shiny/379.webp differ diff --git a/static/sprites-small/home/shiny/38.webp b/static/sprites-small/home/shiny/38.webp index cd4ceda..1d1213d 100644 Binary files a/static/sprites-small/home/shiny/38.webp and b/static/sprites-small/home/shiny/38.webp differ diff --git a/static/sprites-small/home/shiny/380.webp b/static/sprites-small/home/shiny/380.webp index 0b9551a..cb68a26 100644 Binary files a/static/sprites-small/home/shiny/380.webp and b/static/sprites-small/home/shiny/380.webp differ diff --git a/static/sprites-small/home/shiny/381.webp b/static/sprites-small/home/shiny/381.webp index 84c28a3..6cc4254 100644 Binary files a/static/sprites-small/home/shiny/381.webp and b/static/sprites-small/home/shiny/381.webp differ diff --git a/static/sprites-small/home/shiny/382.webp b/static/sprites-small/home/shiny/382.webp index d8db701..07b14b2 100644 Binary files a/static/sprites-small/home/shiny/382.webp and b/static/sprites-small/home/shiny/382.webp differ diff --git a/static/sprites-small/home/shiny/383.webp b/static/sprites-small/home/shiny/383.webp index 6a7ce1f..6a0dfe1 100644 Binary files a/static/sprites-small/home/shiny/383.webp and b/static/sprites-small/home/shiny/383.webp differ diff --git a/static/sprites-small/home/shiny/384.webp b/static/sprites-small/home/shiny/384.webp index a330895..59318f1 100644 Binary files a/static/sprites-small/home/shiny/384.webp and b/static/sprites-small/home/shiny/384.webp differ diff --git a/static/sprites-small/home/shiny/385.webp b/static/sprites-small/home/shiny/385.webp index ac97b93..1d5a77b 100644 Binary files a/static/sprites-small/home/shiny/385.webp and b/static/sprites-small/home/shiny/385.webp differ diff --git a/static/sprites-small/home/shiny/386.webp b/static/sprites-small/home/shiny/386.webp index 5a3e8cd..5bccdd6 100644 Binary files a/static/sprites-small/home/shiny/386.webp and b/static/sprites-small/home/shiny/386.webp differ diff --git a/static/sprites-small/home/shiny/387.webp b/static/sprites-small/home/shiny/387.webp index 5231df3..bc473ab 100644 Binary files a/static/sprites-small/home/shiny/387.webp and b/static/sprites-small/home/shiny/387.webp differ diff --git a/static/sprites-small/home/shiny/388.webp b/static/sprites-small/home/shiny/388.webp index 71254af..8775699 100644 Binary files a/static/sprites-small/home/shiny/388.webp and b/static/sprites-small/home/shiny/388.webp differ diff --git a/static/sprites-small/home/shiny/389.webp b/static/sprites-small/home/shiny/389.webp index 6c909a4..aad64f9 100644 Binary files a/static/sprites-small/home/shiny/389.webp and b/static/sprites-small/home/shiny/389.webp differ diff --git a/static/sprites-small/home/shiny/39.webp b/static/sprites-small/home/shiny/39.webp index 1b5776f..8ba3b29 100644 Binary files a/static/sprites-small/home/shiny/39.webp and b/static/sprites-small/home/shiny/39.webp differ diff --git a/static/sprites-small/home/shiny/390.webp b/static/sprites-small/home/shiny/390.webp index f0c745e..720389e 100644 Binary files a/static/sprites-small/home/shiny/390.webp and b/static/sprites-small/home/shiny/390.webp differ diff --git a/static/sprites-small/home/shiny/391.webp b/static/sprites-small/home/shiny/391.webp index 00853f1..a8737c4 100644 Binary files a/static/sprites-small/home/shiny/391.webp and b/static/sprites-small/home/shiny/391.webp differ diff --git a/static/sprites-small/home/shiny/392.webp b/static/sprites-small/home/shiny/392.webp index fd4893a..bc08d49 100644 Binary files a/static/sprites-small/home/shiny/392.webp and b/static/sprites-small/home/shiny/392.webp differ diff --git a/static/sprites-small/home/shiny/393.webp b/static/sprites-small/home/shiny/393.webp index 0b59e5f..9eeeaef 100644 Binary files a/static/sprites-small/home/shiny/393.webp and b/static/sprites-small/home/shiny/393.webp differ diff --git a/static/sprites-small/home/shiny/394.webp b/static/sprites-small/home/shiny/394.webp index b371d79..1b078be 100644 Binary files a/static/sprites-small/home/shiny/394.webp and b/static/sprites-small/home/shiny/394.webp differ diff --git a/static/sprites-small/home/shiny/395.webp b/static/sprites-small/home/shiny/395.webp index 2d16b22..b169ccc 100644 Binary files a/static/sprites-small/home/shiny/395.webp and b/static/sprites-small/home/shiny/395.webp differ diff --git a/static/sprites-small/home/shiny/396.webp b/static/sprites-small/home/shiny/396.webp index 271c775..2d85f1e 100644 Binary files a/static/sprites-small/home/shiny/396.webp and b/static/sprites-small/home/shiny/396.webp differ diff --git a/static/sprites-small/home/shiny/397.webp b/static/sprites-small/home/shiny/397.webp index b45a8ba..9d5e00f 100644 Binary files a/static/sprites-small/home/shiny/397.webp and b/static/sprites-small/home/shiny/397.webp differ diff --git a/static/sprites-small/home/shiny/398.webp b/static/sprites-small/home/shiny/398.webp index dc95289..bd00d77 100644 Binary files a/static/sprites-small/home/shiny/398.webp and b/static/sprites-small/home/shiny/398.webp differ diff --git a/static/sprites-small/home/shiny/399.webp b/static/sprites-small/home/shiny/399.webp index e07fe8f..e5c88c5 100644 Binary files a/static/sprites-small/home/shiny/399.webp and b/static/sprites-small/home/shiny/399.webp differ diff --git a/static/sprites-small/home/shiny/4.webp b/static/sprites-small/home/shiny/4.webp index 52cce86..a19a417 100644 Binary files a/static/sprites-small/home/shiny/4.webp and b/static/sprites-small/home/shiny/4.webp differ diff --git a/static/sprites-small/home/shiny/40.webp b/static/sprites-small/home/shiny/40.webp index 24755e4..2d6aed4 100644 Binary files a/static/sprites-small/home/shiny/40.webp and b/static/sprites-small/home/shiny/40.webp differ diff --git a/static/sprites-small/home/shiny/400.webp b/static/sprites-small/home/shiny/400.webp index e900cd6..46a4cfe 100644 Binary files a/static/sprites-small/home/shiny/400.webp and b/static/sprites-small/home/shiny/400.webp differ diff --git a/static/sprites-small/home/shiny/401.webp b/static/sprites-small/home/shiny/401.webp index 2ad7611..3e99627 100644 Binary files a/static/sprites-small/home/shiny/401.webp and b/static/sprites-small/home/shiny/401.webp differ diff --git a/static/sprites-small/home/shiny/402.webp b/static/sprites-small/home/shiny/402.webp index 5e23323..b5e0d71 100644 Binary files a/static/sprites-small/home/shiny/402.webp and b/static/sprites-small/home/shiny/402.webp differ diff --git a/static/sprites-small/home/shiny/403.webp b/static/sprites-small/home/shiny/403.webp index 16cbdac..6dcef21 100644 Binary files a/static/sprites-small/home/shiny/403.webp and b/static/sprites-small/home/shiny/403.webp differ diff --git a/static/sprites-small/home/shiny/404.webp b/static/sprites-small/home/shiny/404.webp index dd14be7..282c396 100644 Binary files a/static/sprites-small/home/shiny/404.webp and b/static/sprites-small/home/shiny/404.webp differ diff --git a/static/sprites-small/home/shiny/405.webp b/static/sprites-small/home/shiny/405.webp index 60ba98d..aa91f0b 100644 Binary files a/static/sprites-small/home/shiny/405.webp and b/static/sprites-small/home/shiny/405.webp differ diff --git a/static/sprites-small/home/shiny/406.webp b/static/sprites-small/home/shiny/406.webp index adc8aec..fe23fa5 100644 Binary files a/static/sprites-small/home/shiny/406.webp and b/static/sprites-small/home/shiny/406.webp differ diff --git a/static/sprites-small/home/shiny/407.webp b/static/sprites-small/home/shiny/407.webp index 5addb75..ab230cd 100644 Binary files a/static/sprites-small/home/shiny/407.webp and b/static/sprites-small/home/shiny/407.webp differ diff --git a/static/sprites-small/home/shiny/408.webp b/static/sprites-small/home/shiny/408.webp index ca35c25..9ab0c03 100644 Binary files a/static/sprites-small/home/shiny/408.webp and b/static/sprites-small/home/shiny/408.webp differ diff --git a/static/sprites-small/home/shiny/409.webp b/static/sprites-small/home/shiny/409.webp index 472f61f..4af2d6d 100644 Binary files a/static/sprites-small/home/shiny/409.webp and b/static/sprites-small/home/shiny/409.webp differ diff --git a/static/sprites-small/home/shiny/41.webp b/static/sprites-small/home/shiny/41.webp index 20da5c5..ab0a81b 100644 Binary files a/static/sprites-small/home/shiny/41.webp and b/static/sprites-small/home/shiny/41.webp differ diff --git a/static/sprites-small/home/shiny/410.webp b/static/sprites-small/home/shiny/410.webp index 9aed0cf..f4aa0de 100644 Binary files a/static/sprites-small/home/shiny/410.webp and b/static/sprites-small/home/shiny/410.webp differ diff --git a/static/sprites-small/home/shiny/411.webp b/static/sprites-small/home/shiny/411.webp index a6bed5f..67e6813 100644 Binary files a/static/sprites-small/home/shiny/411.webp and b/static/sprites-small/home/shiny/411.webp differ diff --git a/static/sprites-small/home/shiny/412-plant.webp b/static/sprites-small/home/shiny/412-plant.webp index db65b9f..1a8bf2c 100644 Binary files a/static/sprites-small/home/shiny/412-plant.webp and b/static/sprites-small/home/shiny/412-plant.webp differ diff --git a/static/sprites-small/home/shiny/412-sandy.webp b/static/sprites-small/home/shiny/412-sandy.webp index aa22a2b..fd69887 100644 Binary files a/static/sprites-small/home/shiny/412-sandy.webp and b/static/sprites-small/home/shiny/412-sandy.webp differ diff --git a/static/sprites-small/home/shiny/412-trash.webp b/static/sprites-small/home/shiny/412-trash.webp index 7c45085..008acd4 100644 Binary files a/static/sprites-small/home/shiny/412-trash.webp and b/static/sprites-small/home/shiny/412-trash.webp differ diff --git a/static/sprites-small/home/shiny/412.webp b/static/sprites-small/home/shiny/412.webp index db65b9f..1a8bf2c 100644 Binary files a/static/sprites-small/home/shiny/412.webp and b/static/sprites-small/home/shiny/412.webp differ diff --git a/static/sprites-small/home/shiny/413-plant.webp b/static/sprites-small/home/shiny/413-plant.webp index 3b4ae92..2837cd9 100644 Binary files a/static/sprites-small/home/shiny/413-plant.webp and b/static/sprites-small/home/shiny/413-plant.webp differ diff --git a/static/sprites-small/home/shiny/413-sandy.webp b/static/sprites-small/home/shiny/413-sandy.webp index 31e04e7..5ed2f49 100644 Binary files a/static/sprites-small/home/shiny/413-sandy.webp and b/static/sprites-small/home/shiny/413-sandy.webp differ diff --git a/static/sprites-small/home/shiny/413-trash.webp b/static/sprites-small/home/shiny/413-trash.webp index 054c195..024a74b 100644 Binary files a/static/sprites-small/home/shiny/413-trash.webp and b/static/sprites-small/home/shiny/413-trash.webp differ diff --git a/static/sprites-small/home/shiny/413.webp b/static/sprites-small/home/shiny/413.webp index 3b4ae92..2837cd9 100644 Binary files a/static/sprites-small/home/shiny/413.webp and b/static/sprites-small/home/shiny/413.webp differ diff --git a/static/sprites-small/home/shiny/414.webp b/static/sprites-small/home/shiny/414.webp index 3016132..e17a2d9 100644 Binary files a/static/sprites-small/home/shiny/414.webp and b/static/sprites-small/home/shiny/414.webp differ diff --git a/static/sprites-small/home/shiny/415.webp b/static/sprites-small/home/shiny/415.webp index 2293b94..0fc738d 100644 Binary files a/static/sprites-small/home/shiny/415.webp and b/static/sprites-small/home/shiny/415.webp differ diff --git a/static/sprites-small/home/shiny/416.webp b/static/sprites-small/home/shiny/416.webp index ecebafc..0dec707 100644 Binary files a/static/sprites-small/home/shiny/416.webp and b/static/sprites-small/home/shiny/416.webp differ diff --git a/static/sprites-small/home/shiny/417.webp b/static/sprites-small/home/shiny/417.webp index 2cde90f..aed5939 100644 Binary files a/static/sprites-small/home/shiny/417.webp and b/static/sprites-small/home/shiny/417.webp differ diff --git a/static/sprites-small/home/shiny/418.webp b/static/sprites-small/home/shiny/418.webp index cd6372e..d5a439d 100644 Binary files a/static/sprites-small/home/shiny/418.webp and b/static/sprites-small/home/shiny/418.webp differ diff --git a/static/sprites-small/home/shiny/419.webp b/static/sprites-small/home/shiny/419.webp index 65cfb57..f944ce9 100644 Binary files a/static/sprites-small/home/shiny/419.webp and b/static/sprites-small/home/shiny/419.webp differ diff --git a/static/sprites-small/home/shiny/42.webp b/static/sprites-small/home/shiny/42.webp index 719d60c..6758895 100644 Binary files a/static/sprites-small/home/shiny/42.webp and b/static/sprites-small/home/shiny/42.webp differ diff --git a/static/sprites-small/home/shiny/420.webp b/static/sprites-small/home/shiny/420.webp index 3aaff1f..251416c 100644 Binary files a/static/sprites-small/home/shiny/420.webp and b/static/sprites-small/home/shiny/420.webp differ diff --git a/static/sprites-small/home/shiny/421-overcast.webp b/static/sprites-small/home/shiny/421-overcast.webp index 4be9b02..123fb5a 100644 Binary files a/static/sprites-small/home/shiny/421-overcast.webp and b/static/sprites-small/home/shiny/421-overcast.webp differ diff --git a/static/sprites-small/home/shiny/421-sunshine.webp b/static/sprites-small/home/shiny/421-sunshine.webp index e8c127c..1a894c6 100644 Binary files a/static/sprites-small/home/shiny/421-sunshine.webp and b/static/sprites-small/home/shiny/421-sunshine.webp differ diff --git a/static/sprites-small/home/shiny/421.webp b/static/sprites-small/home/shiny/421.webp index 4be9b02..123fb5a 100644 Binary files a/static/sprites-small/home/shiny/421.webp and b/static/sprites-small/home/shiny/421.webp differ diff --git a/static/sprites-small/home/shiny/422-east.webp b/static/sprites-small/home/shiny/422-east.webp index 338f6f3..7129d7f 100644 Binary files a/static/sprites-small/home/shiny/422-east.webp and b/static/sprites-small/home/shiny/422-east.webp differ diff --git a/static/sprites-small/home/shiny/422-west.webp b/static/sprites-small/home/shiny/422-west.webp index d0d7951..a1ba5c0 100644 Binary files a/static/sprites-small/home/shiny/422-west.webp and b/static/sprites-small/home/shiny/422-west.webp differ diff --git a/static/sprites-small/home/shiny/422.webp b/static/sprites-small/home/shiny/422.webp index d0d7951..a1ba5c0 100644 Binary files a/static/sprites-small/home/shiny/422.webp and b/static/sprites-small/home/shiny/422.webp differ diff --git a/static/sprites-small/home/shiny/423-east.webp b/static/sprites-small/home/shiny/423-east.webp index b86f905..0d7f5a9 100644 Binary files a/static/sprites-small/home/shiny/423-east.webp and b/static/sprites-small/home/shiny/423-east.webp differ diff --git a/static/sprites-small/home/shiny/423-west.webp b/static/sprites-small/home/shiny/423-west.webp index ea73d1c..0e0af51 100644 Binary files a/static/sprites-small/home/shiny/423-west.webp and b/static/sprites-small/home/shiny/423-west.webp differ diff --git a/static/sprites-small/home/shiny/423.webp b/static/sprites-small/home/shiny/423.webp index ea73d1c..0e0af51 100644 Binary files a/static/sprites-small/home/shiny/423.webp and b/static/sprites-small/home/shiny/423.webp differ diff --git a/static/sprites-small/home/shiny/424.webp b/static/sprites-small/home/shiny/424.webp index 97e3235..6249202 100644 Binary files a/static/sprites-small/home/shiny/424.webp and b/static/sprites-small/home/shiny/424.webp differ diff --git a/static/sprites-small/home/shiny/425.webp b/static/sprites-small/home/shiny/425.webp index 2317745..9c10a25 100644 Binary files a/static/sprites-small/home/shiny/425.webp and b/static/sprites-small/home/shiny/425.webp differ diff --git a/static/sprites-small/home/shiny/426.webp b/static/sprites-small/home/shiny/426.webp index bb660bb..09aaaa6 100644 Binary files a/static/sprites-small/home/shiny/426.webp and b/static/sprites-small/home/shiny/426.webp differ diff --git a/static/sprites-small/home/shiny/427.webp b/static/sprites-small/home/shiny/427.webp index 4989bbc..0765d73 100644 Binary files a/static/sprites-small/home/shiny/427.webp and b/static/sprites-small/home/shiny/427.webp differ diff --git a/static/sprites-small/home/shiny/428.webp b/static/sprites-small/home/shiny/428.webp index fc31170..2a90829 100644 Binary files a/static/sprites-small/home/shiny/428.webp and b/static/sprites-small/home/shiny/428.webp differ diff --git a/static/sprites-small/home/shiny/429.webp b/static/sprites-small/home/shiny/429.webp index fb17ca5..6e697af 100644 Binary files a/static/sprites-small/home/shiny/429.webp and b/static/sprites-small/home/shiny/429.webp differ diff --git a/static/sprites-small/home/shiny/43.webp b/static/sprites-small/home/shiny/43.webp index aa2450d..8723d85 100644 Binary files a/static/sprites-small/home/shiny/43.webp and b/static/sprites-small/home/shiny/43.webp differ diff --git a/static/sprites-small/home/shiny/430.webp b/static/sprites-small/home/shiny/430.webp index 3052b12..e9378cb 100644 Binary files a/static/sprites-small/home/shiny/430.webp and b/static/sprites-small/home/shiny/430.webp differ diff --git a/static/sprites-small/home/shiny/431.webp b/static/sprites-small/home/shiny/431.webp index 5b393b2..88185e5 100644 Binary files a/static/sprites-small/home/shiny/431.webp and b/static/sprites-small/home/shiny/431.webp differ diff --git a/static/sprites-small/home/shiny/432.webp b/static/sprites-small/home/shiny/432.webp index 641f37e..28641d5 100644 Binary files a/static/sprites-small/home/shiny/432.webp and b/static/sprites-small/home/shiny/432.webp differ diff --git a/static/sprites-small/home/shiny/433.webp b/static/sprites-small/home/shiny/433.webp index 412413a..f2032a6 100644 Binary files a/static/sprites-small/home/shiny/433.webp and b/static/sprites-small/home/shiny/433.webp differ diff --git a/static/sprites-small/home/shiny/434.webp b/static/sprites-small/home/shiny/434.webp index 7bbead1..65b82bc 100644 Binary files a/static/sprites-small/home/shiny/434.webp and b/static/sprites-small/home/shiny/434.webp differ diff --git a/static/sprites-small/home/shiny/435.webp b/static/sprites-small/home/shiny/435.webp index 8cb9a95..6da9712 100644 Binary files a/static/sprites-small/home/shiny/435.webp and b/static/sprites-small/home/shiny/435.webp differ diff --git a/static/sprites-small/home/shiny/436.webp b/static/sprites-small/home/shiny/436.webp index 822b8cf..262f83a 100644 Binary files a/static/sprites-small/home/shiny/436.webp and b/static/sprites-small/home/shiny/436.webp differ diff --git a/static/sprites-small/home/shiny/437.webp b/static/sprites-small/home/shiny/437.webp index e0584b5..3e7ddd1 100644 Binary files a/static/sprites-small/home/shiny/437.webp and b/static/sprites-small/home/shiny/437.webp differ diff --git a/static/sprites-small/home/shiny/438.webp b/static/sprites-small/home/shiny/438.webp index 47e3cae..ffbff1a 100644 Binary files a/static/sprites-small/home/shiny/438.webp and b/static/sprites-small/home/shiny/438.webp differ diff --git a/static/sprites-small/home/shiny/439.webp b/static/sprites-small/home/shiny/439.webp index 5d4232a..41a3423 100644 Binary files a/static/sprites-small/home/shiny/439.webp and b/static/sprites-small/home/shiny/439.webp differ diff --git a/static/sprites-small/home/shiny/44.webp b/static/sprites-small/home/shiny/44.webp index 4e3e1dc..07d1ab2 100644 Binary files a/static/sprites-small/home/shiny/44.webp and b/static/sprites-small/home/shiny/44.webp differ diff --git a/static/sprites-small/home/shiny/440.webp b/static/sprites-small/home/shiny/440.webp index db24a22..c5f3eba 100644 Binary files a/static/sprites-small/home/shiny/440.webp and b/static/sprites-small/home/shiny/440.webp differ diff --git a/static/sprites-small/home/shiny/441.webp b/static/sprites-small/home/shiny/441.webp index 7e0e331..acc75c9 100644 Binary files a/static/sprites-small/home/shiny/441.webp and b/static/sprites-small/home/shiny/441.webp differ diff --git a/static/sprites-small/home/shiny/442.webp b/static/sprites-small/home/shiny/442.webp index 1d6483f..2b11117 100644 Binary files a/static/sprites-small/home/shiny/442.webp and b/static/sprites-small/home/shiny/442.webp differ diff --git a/static/sprites-small/home/shiny/443.webp b/static/sprites-small/home/shiny/443.webp index f79b0fe..9875e94 100644 Binary files a/static/sprites-small/home/shiny/443.webp and b/static/sprites-small/home/shiny/443.webp differ diff --git a/static/sprites-small/home/shiny/444.webp b/static/sprites-small/home/shiny/444.webp index b3f4bff..b9112ab 100644 Binary files a/static/sprites-small/home/shiny/444.webp and b/static/sprites-small/home/shiny/444.webp differ diff --git a/static/sprites-small/home/shiny/445.webp b/static/sprites-small/home/shiny/445.webp index 396794a..d60c195 100644 Binary files a/static/sprites-small/home/shiny/445.webp and b/static/sprites-small/home/shiny/445.webp differ diff --git a/static/sprites-small/home/shiny/446.webp b/static/sprites-small/home/shiny/446.webp index 1d2d0f3..0dde786 100644 Binary files a/static/sprites-small/home/shiny/446.webp and b/static/sprites-small/home/shiny/446.webp differ diff --git a/static/sprites-small/home/shiny/447.webp b/static/sprites-small/home/shiny/447.webp index 587eb88..78b3970 100644 Binary files a/static/sprites-small/home/shiny/447.webp and b/static/sprites-small/home/shiny/447.webp differ diff --git a/static/sprites-small/home/shiny/448.webp b/static/sprites-small/home/shiny/448.webp index b928e1c..6689888 100644 Binary files a/static/sprites-small/home/shiny/448.webp and b/static/sprites-small/home/shiny/448.webp differ diff --git a/static/sprites-small/home/shiny/449.webp b/static/sprites-small/home/shiny/449.webp index 035ca23..a7a3a02 100644 Binary files a/static/sprites-small/home/shiny/449.webp and b/static/sprites-small/home/shiny/449.webp differ diff --git a/static/sprites-small/home/shiny/45.webp b/static/sprites-small/home/shiny/45.webp index c624e45..92cc5fb 100644 Binary files a/static/sprites-small/home/shiny/45.webp and b/static/sprites-small/home/shiny/45.webp differ diff --git a/static/sprites-small/home/shiny/450.webp b/static/sprites-small/home/shiny/450.webp index 0862982..bc44363 100644 Binary files a/static/sprites-small/home/shiny/450.webp and b/static/sprites-small/home/shiny/450.webp differ diff --git a/static/sprites-small/home/shiny/451.webp b/static/sprites-small/home/shiny/451.webp index 10f17f3..fa0b7ba 100644 Binary files a/static/sprites-small/home/shiny/451.webp and b/static/sprites-small/home/shiny/451.webp differ diff --git a/static/sprites-small/home/shiny/452.webp b/static/sprites-small/home/shiny/452.webp index 433a496..cb434fc 100644 Binary files a/static/sprites-small/home/shiny/452.webp and b/static/sprites-small/home/shiny/452.webp differ diff --git a/static/sprites-small/home/shiny/453.webp b/static/sprites-small/home/shiny/453.webp index f0672d1..b268914 100644 Binary files a/static/sprites-small/home/shiny/453.webp and b/static/sprites-small/home/shiny/453.webp differ diff --git a/static/sprites-small/home/shiny/454.webp b/static/sprites-small/home/shiny/454.webp index 5ec7729..30421ea 100644 Binary files a/static/sprites-small/home/shiny/454.webp and b/static/sprites-small/home/shiny/454.webp differ diff --git a/static/sprites-small/home/shiny/455.webp b/static/sprites-small/home/shiny/455.webp index fe4098c..9dd8710 100644 Binary files a/static/sprites-small/home/shiny/455.webp and b/static/sprites-small/home/shiny/455.webp differ diff --git a/static/sprites-small/home/shiny/456.webp b/static/sprites-small/home/shiny/456.webp index 9274514..540b980 100644 Binary files a/static/sprites-small/home/shiny/456.webp and b/static/sprites-small/home/shiny/456.webp differ diff --git a/static/sprites-small/home/shiny/457.webp b/static/sprites-small/home/shiny/457.webp index 7373369..d17de53 100644 Binary files a/static/sprites-small/home/shiny/457.webp and b/static/sprites-small/home/shiny/457.webp differ diff --git a/static/sprites-small/home/shiny/458.webp b/static/sprites-small/home/shiny/458.webp index b8875e0..a5a8c9c 100644 Binary files a/static/sprites-small/home/shiny/458.webp and b/static/sprites-small/home/shiny/458.webp differ diff --git a/static/sprites-small/home/shiny/459.webp b/static/sprites-small/home/shiny/459.webp index 7cd69b9..e740c8f 100644 Binary files a/static/sprites-small/home/shiny/459.webp and b/static/sprites-small/home/shiny/459.webp differ diff --git a/static/sprites-small/home/shiny/46.webp b/static/sprites-small/home/shiny/46.webp index c115b57..28a8510 100644 Binary files a/static/sprites-small/home/shiny/46.webp and b/static/sprites-small/home/shiny/46.webp differ diff --git a/static/sprites-small/home/shiny/460.webp b/static/sprites-small/home/shiny/460.webp index 1c2f367..8094406 100644 Binary files a/static/sprites-small/home/shiny/460.webp and b/static/sprites-small/home/shiny/460.webp differ diff --git a/static/sprites-small/home/shiny/461.webp b/static/sprites-small/home/shiny/461.webp index 9d18aaf..4ab56e0 100644 Binary files a/static/sprites-small/home/shiny/461.webp and b/static/sprites-small/home/shiny/461.webp differ diff --git a/static/sprites-small/home/shiny/462.webp b/static/sprites-small/home/shiny/462.webp index 83657a6..21afbdf 100644 Binary files a/static/sprites-small/home/shiny/462.webp and b/static/sprites-small/home/shiny/462.webp differ diff --git a/static/sprites-small/home/shiny/463.webp b/static/sprites-small/home/shiny/463.webp index a8de10b..586fc57 100644 Binary files a/static/sprites-small/home/shiny/463.webp and b/static/sprites-small/home/shiny/463.webp differ diff --git a/static/sprites-small/home/shiny/464.webp b/static/sprites-small/home/shiny/464.webp index ea8bf80..16fd19c 100644 Binary files a/static/sprites-small/home/shiny/464.webp and b/static/sprites-small/home/shiny/464.webp differ diff --git a/static/sprites-small/home/shiny/465.webp b/static/sprites-small/home/shiny/465.webp index 926e972..f3ed1c4 100644 Binary files a/static/sprites-small/home/shiny/465.webp and b/static/sprites-small/home/shiny/465.webp differ diff --git a/static/sprites-small/home/shiny/466.webp b/static/sprites-small/home/shiny/466.webp index 638cd71..6101044 100644 Binary files a/static/sprites-small/home/shiny/466.webp and b/static/sprites-small/home/shiny/466.webp differ diff --git a/static/sprites-small/home/shiny/467.webp b/static/sprites-small/home/shiny/467.webp index bc7e909..98a342c 100644 Binary files a/static/sprites-small/home/shiny/467.webp and b/static/sprites-small/home/shiny/467.webp differ diff --git a/static/sprites-small/home/shiny/468.webp b/static/sprites-small/home/shiny/468.webp index 9c9b8e4..70901a3 100644 Binary files a/static/sprites-small/home/shiny/468.webp and b/static/sprites-small/home/shiny/468.webp differ diff --git a/static/sprites-small/home/shiny/469.webp b/static/sprites-small/home/shiny/469.webp index 3c9be78..bc548ea 100644 Binary files a/static/sprites-small/home/shiny/469.webp and b/static/sprites-small/home/shiny/469.webp differ diff --git a/static/sprites-small/home/shiny/47.webp b/static/sprites-small/home/shiny/47.webp index f2cd368..5a8a23e 100644 Binary files a/static/sprites-small/home/shiny/47.webp and b/static/sprites-small/home/shiny/47.webp differ diff --git a/static/sprites-small/home/shiny/470.webp b/static/sprites-small/home/shiny/470.webp index 3ff60ef..0522d77 100644 Binary files a/static/sprites-small/home/shiny/470.webp and b/static/sprites-small/home/shiny/470.webp differ diff --git a/static/sprites-small/home/shiny/471.webp b/static/sprites-small/home/shiny/471.webp index 03a4846..4270c7d 100644 Binary files a/static/sprites-small/home/shiny/471.webp and b/static/sprites-small/home/shiny/471.webp differ diff --git a/static/sprites-small/home/shiny/472.webp b/static/sprites-small/home/shiny/472.webp index 2890210..9d25d5a 100644 Binary files a/static/sprites-small/home/shiny/472.webp and b/static/sprites-small/home/shiny/472.webp differ diff --git a/static/sprites-small/home/shiny/473.webp b/static/sprites-small/home/shiny/473.webp index 551408f..a1af42b 100644 Binary files a/static/sprites-small/home/shiny/473.webp and b/static/sprites-small/home/shiny/473.webp differ diff --git a/static/sprites-small/home/shiny/474.webp b/static/sprites-small/home/shiny/474.webp index 2b7e3f3..a94f0d3 100644 Binary files a/static/sprites-small/home/shiny/474.webp and b/static/sprites-small/home/shiny/474.webp differ diff --git a/static/sprites-small/home/shiny/475.webp b/static/sprites-small/home/shiny/475.webp index 152366b..179b72d 100644 Binary files a/static/sprites-small/home/shiny/475.webp and b/static/sprites-small/home/shiny/475.webp differ diff --git a/static/sprites-small/home/shiny/476.webp b/static/sprites-small/home/shiny/476.webp index 1c767e7..c33fc19 100644 Binary files a/static/sprites-small/home/shiny/476.webp and b/static/sprites-small/home/shiny/476.webp differ diff --git a/static/sprites-small/home/shiny/477.webp b/static/sprites-small/home/shiny/477.webp index 6bcb561..e2b5395 100644 Binary files a/static/sprites-small/home/shiny/477.webp and b/static/sprites-small/home/shiny/477.webp differ diff --git a/static/sprites-small/home/shiny/478.webp b/static/sprites-small/home/shiny/478.webp index c0f5439..89b3d8d 100644 Binary files a/static/sprites-small/home/shiny/478.webp and b/static/sprites-small/home/shiny/478.webp differ diff --git a/static/sprites-small/home/shiny/479.webp b/static/sprites-small/home/shiny/479.webp index 0fc2c38..dafb293 100644 Binary files a/static/sprites-small/home/shiny/479.webp and b/static/sprites-small/home/shiny/479.webp differ diff --git a/static/sprites-small/home/shiny/48.webp b/static/sprites-small/home/shiny/48.webp index 7496f0a..3125401 100644 Binary files a/static/sprites-small/home/shiny/48.webp and b/static/sprites-small/home/shiny/48.webp differ diff --git a/static/sprites-small/home/shiny/480.webp b/static/sprites-small/home/shiny/480.webp index 8cb6e5e..a9ba4c1 100644 Binary files a/static/sprites-small/home/shiny/480.webp and b/static/sprites-small/home/shiny/480.webp differ diff --git a/static/sprites-small/home/shiny/481.webp b/static/sprites-small/home/shiny/481.webp index b384a79..4aa0aea 100644 Binary files a/static/sprites-small/home/shiny/481.webp and b/static/sprites-small/home/shiny/481.webp differ diff --git a/static/sprites-small/home/shiny/482.webp b/static/sprites-small/home/shiny/482.webp index 5449cf8..56f90b6 100644 Binary files a/static/sprites-small/home/shiny/482.webp and b/static/sprites-small/home/shiny/482.webp differ diff --git a/static/sprites-small/home/shiny/483.webp b/static/sprites-small/home/shiny/483.webp index 90f96b8..916d9b4 100644 Binary files a/static/sprites-small/home/shiny/483.webp and b/static/sprites-small/home/shiny/483.webp differ diff --git a/static/sprites-small/home/shiny/484.webp b/static/sprites-small/home/shiny/484.webp index 4afd123..3fdc4d2 100644 Binary files a/static/sprites-small/home/shiny/484.webp and b/static/sprites-small/home/shiny/484.webp differ diff --git a/static/sprites-small/home/shiny/485.webp b/static/sprites-small/home/shiny/485.webp index f62ff39..6cff263 100644 Binary files a/static/sprites-small/home/shiny/485.webp and b/static/sprites-small/home/shiny/485.webp differ diff --git a/static/sprites-small/home/shiny/486.webp b/static/sprites-small/home/shiny/486.webp index 0999751..6216a8f 100644 Binary files a/static/sprites-small/home/shiny/486.webp and b/static/sprites-small/home/shiny/486.webp differ diff --git a/static/sprites-small/home/shiny/487.webp b/static/sprites-small/home/shiny/487.webp index fd83610..a3ff77a 100644 Binary files a/static/sprites-small/home/shiny/487.webp and b/static/sprites-small/home/shiny/487.webp differ diff --git a/static/sprites-small/home/shiny/488.webp b/static/sprites-small/home/shiny/488.webp index 666d2fa..81aa09c 100644 Binary files a/static/sprites-small/home/shiny/488.webp and b/static/sprites-small/home/shiny/488.webp differ diff --git a/static/sprites-small/home/shiny/489.webp b/static/sprites-small/home/shiny/489.webp index 79762a9..d9fdcac 100644 Binary files a/static/sprites-small/home/shiny/489.webp and b/static/sprites-small/home/shiny/489.webp differ diff --git a/static/sprites-small/home/shiny/49.webp b/static/sprites-small/home/shiny/49.webp index 9496184..d3430a0 100644 Binary files a/static/sprites-small/home/shiny/49.webp and b/static/sprites-small/home/shiny/49.webp differ diff --git a/static/sprites-small/home/shiny/490.webp b/static/sprites-small/home/shiny/490.webp index 089f2f8..1272f5c 100644 Binary files a/static/sprites-small/home/shiny/490.webp and b/static/sprites-small/home/shiny/490.webp differ diff --git a/static/sprites-small/home/shiny/491.webp b/static/sprites-small/home/shiny/491.webp index e01f6a9..0837dee 100644 Binary files a/static/sprites-small/home/shiny/491.webp and b/static/sprites-small/home/shiny/491.webp differ diff --git a/static/sprites-small/home/shiny/492.webp b/static/sprites-small/home/shiny/492.webp index b27316d..dcdc1b1 100644 Binary files a/static/sprites-small/home/shiny/492.webp and b/static/sprites-small/home/shiny/492.webp differ diff --git a/static/sprites-small/home/shiny/493-bug.webp b/static/sprites-small/home/shiny/493-bug.webp index 8a3dc1a..e96d7ff 100644 Binary files a/static/sprites-small/home/shiny/493-bug.webp and b/static/sprites-small/home/shiny/493-bug.webp differ diff --git a/static/sprites-small/home/shiny/493-dark.webp b/static/sprites-small/home/shiny/493-dark.webp index 5eb2acb..53c8b84 100644 Binary files a/static/sprites-small/home/shiny/493-dark.webp and b/static/sprites-small/home/shiny/493-dark.webp differ diff --git a/static/sprites-small/home/shiny/493-dragon.webp b/static/sprites-small/home/shiny/493-dragon.webp index 222649b..797fa40 100644 Binary files a/static/sprites-small/home/shiny/493-dragon.webp and b/static/sprites-small/home/shiny/493-dragon.webp differ diff --git a/static/sprites-small/home/shiny/493-electric.webp b/static/sprites-small/home/shiny/493-electric.webp index 95bf6c3..d83b36e 100644 Binary files a/static/sprites-small/home/shiny/493-electric.webp and b/static/sprites-small/home/shiny/493-electric.webp differ diff --git a/static/sprites-small/home/shiny/493-fairy.webp b/static/sprites-small/home/shiny/493-fairy.webp index e0e4b56..7fb900b 100644 Binary files a/static/sprites-small/home/shiny/493-fairy.webp and b/static/sprites-small/home/shiny/493-fairy.webp differ diff --git a/static/sprites-small/home/shiny/493-fighting.webp b/static/sprites-small/home/shiny/493-fighting.webp index 5192361..689d21f 100644 Binary files a/static/sprites-small/home/shiny/493-fighting.webp and b/static/sprites-small/home/shiny/493-fighting.webp differ diff --git a/static/sprites-small/home/shiny/493-fire.webp b/static/sprites-small/home/shiny/493-fire.webp index 8595595..0c74681 100644 Binary files a/static/sprites-small/home/shiny/493-fire.webp and b/static/sprites-small/home/shiny/493-fire.webp differ diff --git a/static/sprites-small/home/shiny/493-flying.webp b/static/sprites-small/home/shiny/493-flying.webp index f2c8220..73ddabf 100644 Binary files a/static/sprites-small/home/shiny/493-flying.webp and b/static/sprites-small/home/shiny/493-flying.webp differ diff --git a/static/sprites-small/home/shiny/493-ghost.webp b/static/sprites-small/home/shiny/493-ghost.webp index b1ceba8..90aafdd 100644 Binary files a/static/sprites-small/home/shiny/493-ghost.webp and b/static/sprites-small/home/shiny/493-ghost.webp differ diff --git a/static/sprites-small/home/shiny/493-grass.webp b/static/sprites-small/home/shiny/493-grass.webp index 480c705..d57a1d0 100644 Binary files a/static/sprites-small/home/shiny/493-grass.webp and b/static/sprites-small/home/shiny/493-grass.webp differ diff --git a/static/sprites-small/home/shiny/493-ground.webp b/static/sprites-small/home/shiny/493-ground.webp index 518c690..d3f9e2b 100644 Binary files a/static/sprites-small/home/shiny/493-ground.webp and b/static/sprites-small/home/shiny/493-ground.webp differ diff --git a/static/sprites-small/home/shiny/493-ice.webp b/static/sprites-small/home/shiny/493-ice.webp index 3e2368e..69d3e20 100644 Binary files a/static/sprites-small/home/shiny/493-ice.webp and b/static/sprites-small/home/shiny/493-ice.webp differ diff --git a/static/sprites-small/home/shiny/493-poison.webp b/static/sprites-small/home/shiny/493-poison.webp index 0cbc81d..9ee9a8e 100644 Binary files a/static/sprites-small/home/shiny/493-poison.webp and b/static/sprites-small/home/shiny/493-poison.webp differ diff --git a/static/sprites-small/home/shiny/493-psychic.webp b/static/sprites-small/home/shiny/493-psychic.webp index a9c96b1..72eea99 100644 Binary files a/static/sprites-small/home/shiny/493-psychic.webp and b/static/sprites-small/home/shiny/493-psychic.webp differ diff --git a/static/sprites-small/home/shiny/493-rock.webp b/static/sprites-small/home/shiny/493-rock.webp index 5c2df39..de35615 100644 Binary files a/static/sprites-small/home/shiny/493-rock.webp and b/static/sprites-small/home/shiny/493-rock.webp differ diff --git a/static/sprites-small/home/shiny/493-steel.webp b/static/sprites-small/home/shiny/493-steel.webp index 5dad5b5..867aaa8 100644 Binary files a/static/sprites-small/home/shiny/493-steel.webp and b/static/sprites-small/home/shiny/493-steel.webp differ diff --git a/static/sprites-small/home/shiny/493-unknown.webp b/static/sprites-small/home/shiny/493-unknown.webp index f806eae..09ecc2b 100644 Binary files a/static/sprites-small/home/shiny/493-unknown.webp and b/static/sprites-small/home/shiny/493-unknown.webp differ diff --git a/static/sprites-small/home/shiny/493-water.webp b/static/sprites-small/home/shiny/493-water.webp index 93f097f..dc1e2c2 100644 Binary files a/static/sprites-small/home/shiny/493-water.webp and b/static/sprites-small/home/shiny/493-water.webp differ diff --git a/static/sprites-small/home/shiny/493.webp b/static/sprites-small/home/shiny/493.webp index f806eae..09ecc2b 100644 Binary files a/static/sprites-small/home/shiny/493.webp and b/static/sprites-small/home/shiny/493.webp differ diff --git a/static/sprites-small/home/shiny/494.webp b/static/sprites-small/home/shiny/494.webp index e51f19c..355b8d2 100644 Binary files a/static/sprites-small/home/shiny/494.webp and b/static/sprites-small/home/shiny/494.webp differ diff --git a/static/sprites-small/home/shiny/495.webp b/static/sprites-small/home/shiny/495.webp index fa4b329..0715d3f 100644 Binary files a/static/sprites-small/home/shiny/495.webp and b/static/sprites-small/home/shiny/495.webp differ diff --git a/static/sprites-small/home/shiny/496.webp b/static/sprites-small/home/shiny/496.webp index aa39b3a..d28664b 100644 Binary files a/static/sprites-small/home/shiny/496.webp and b/static/sprites-small/home/shiny/496.webp differ diff --git a/static/sprites-small/home/shiny/497.webp b/static/sprites-small/home/shiny/497.webp index f596461..75764c4 100644 Binary files a/static/sprites-small/home/shiny/497.webp and b/static/sprites-small/home/shiny/497.webp differ diff --git a/static/sprites-small/home/shiny/498.webp b/static/sprites-small/home/shiny/498.webp index 64d89f6..ae35a8e 100644 Binary files a/static/sprites-small/home/shiny/498.webp and b/static/sprites-small/home/shiny/498.webp differ diff --git a/static/sprites-small/home/shiny/499.webp b/static/sprites-small/home/shiny/499.webp index 449e23b..4a9a408 100644 Binary files a/static/sprites-small/home/shiny/499.webp and b/static/sprites-small/home/shiny/499.webp differ diff --git a/static/sprites-small/home/shiny/5.webp b/static/sprites-small/home/shiny/5.webp index 0f2ce48..8e5ffdd 100644 Binary files a/static/sprites-small/home/shiny/5.webp and b/static/sprites-small/home/shiny/5.webp differ diff --git a/static/sprites-small/home/shiny/50.webp b/static/sprites-small/home/shiny/50.webp index 6c42dd5..0ca8572 100644 Binary files a/static/sprites-small/home/shiny/50.webp and b/static/sprites-small/home/shiny/50.webp differ diff --git a/static/sprites-small/home/shiny/500.webp b/static/sprites-small/home/shiny/500.webp index e720675..ff85c36 100644 Binary files a/static/sprites-small/home/shiny/500.webp and b/static/sprites-small/home/shiny/500.webp differ diff --git a/static/sprites-small/home/shiny/501.webp b/static/sprites-small/home/shiny/501.webp index 408d9da..8d05ac9 100644 Binary files a/static/sprites-small/home/shiny/501.webp and b/static/sprites-small/home/shiny/501.webp differ diff --git a/static/sprites-small/home/shiny/502.webp b/static/sprites-small/home/shiny/502.webp index 80e6827..03ecbb6 100644 Binary files a/static/sprites-small/home/shiny/502.webp and b/static/sprites-small/home/shiny/502.webp differ diff --git a/static/sprites-small/home/shiny/503.webp b/static/sprites-small/home/shiny/503.webp index 6c6d944..6218add 100644 Binary files a/static/sprites-small/home/shiny/503.webp and b/static/sprites-small/home/shiny/503.webp differ diff --git a/static/sprites-small/home/shiny/504.webp b/static/sprites-small/home/shiny/504.webp index 115d60c..5d400a9 100644 Binary files a/static/sprites-small/home/shiny/504.webp and b/static/sprites-small/home/shiny/504.webp differ diff --git a/static/sprites-small/home/shiny/505.webp b/static/sprites-small/home/shiny/505.webp index b0ae190..409670b 100644 Binary files a/static/sprites-small/home/shiny/505.webp and b/static/sprites-small/home/shiny/505.webp differ diff --git a/static/sprites-small/home/shiny/506.webp b/static/sprites-small/home/shiny/506.webp index 293bcc3..5f20bfc 100644 Binary files a/static/sprites-small/home/shiny/506.webp and b/static/sprites-small/home/shiny/506.webp differ diff --git a/static/sprites-small/home/shiny/507.webp b/static/sprites-small/home/shiny/507.webp index 630c203..686fe40 100644 Binary files a/static/sprites-small/home/shiny/507.webp and b/static/sprites-small/home/shiny/507.webp differ diff --git a/static/sprites-small/home/shiny/508.webp b/static/sprites-small/home/shiny/508.webp index 44c6314..c6c0331 100644 Binary files a/static/sprites-small/home/shiny/508.webp and b/static/sprites-small/home/shiny/508.webp differ diff --git a/static/sprites-small/home/shiny/509.webp b/static/sprites-small/home/shiny/509.webp index 0ebb1df..c6a25c9 100644 Binary files a/static/sprites-small/home/shiny/509.webp and b/static/sprites-small/home/shiny/509.webp differ diff --git a/static/sprites-small/home/shiny/51.webp b/static/sprites-small/home/shiny/51.webp index ee448ab..6b5f040 100644 Binary files a/static/sprites-small/home/shiny/51.webp and b/static/sprites-small/home/shiny/51.webp differ diff --git a/static/sprites-small/home/shiny/510.webp b/static/sprites-small/home/shiny/510.webp index 180c210..e92abf2 100644 Binary files a/static/sprites-small/home/shiny/510.webp and b/static/sprites-small/home/shiny/510.webp differ diff --git a/static/sprites-small/home/shiny/511.webp b/static/sprites-small/home/shiny/511.webp index a6f5236..0bc2f2d 100644 Binary files a/static/sprites-small/home/shiny/511.webp and b/static/sprites-small/home/shiny/511.webp differ diff --git a/static/sprites-small/home/shiny/512.webp b/static/sprites-small/home/shiny/512.webp index 9bdf09a..2b7ccf2 100644 Binary files a/static/sprites-small/home/shiny/512.webp and b/static/sprites-small/home/shiny/512.webp differ diff --git a/static/sprites-small/home/shiny/513.webp b/static/sprites-small/home/shiny/513.webp index 9d66228..616cc83 100644 Binary files a/static/sprites-small/home/shiny/513.webp and b/static/sprites-small/home/shiny/513.webp differ diff --git a/static/sprites-small/home/shiny/514.webp b/static/sprites-small/home/shiny/514.webp index be0c196..e7767d6 100644 Binary files a/static/sprites-small/home/shiny/514.webp and b/static/sprites-small/home/shiny/514.webp differ diff --git a/static/sprites-small/home/shiny/515.webp b/static/sprites-small/home/shiny/515.webp index c1e226e..d85eee2 100644 Binary files a/static/sprites-small/home/shiny/515.webp and b/static/sprites-small/home/shiny/515.webp differ diff --git a/static/sprites-small/home/shiny/516.webp b/static/sprites-small/home/shiny/516.webp index 1960723..e99c8ab 100644 Binary files a/static/sprites-small/home/shiny/516.webp and b/static/sprites-small/home/shiny/516.webp differ diff --git a/static/sprites-small/home/shiny/517.webp b/static/sprites-small/home/shiny/517.webp index 70f7238..8780bf3 100644 Binary files a/static/sprites-small/home/shiny/517.webp and b/static/sprites-small/home/shiny/517.webp differ diff --git a/static/sprites-small/home/shiny/518.webp b/static/sprites-small/home/shiny/518.webp index a7a4c1b..f65675c 100644 Binary files a/static/sprites-small/home/shiny/518.webp and b/static/sprites-small/home/shiny/518.webp differ diff --git a/static/sprites-small/home/shiny/519.webp b/static/sprites-small/home/shiny/519.webp index 3907d6c..239dcd3 100644 Binary files a/static/sprites-small/home/shiny/519.webp and b/static/sprites-small/home/shiny/519.webp differ diff --git a/static/sprites-small/home/shiny/52.webp b/static/sprites-small/home/shiny/52.webp index 50bf5e5..e1596a5 100644 Binary files a/static/sprites-small/home/shiny/52.webp and b/static/sprites-small/home/shiny/52.webp differ diff --git a/static/sprites-small/home/shiny/520.webp b/static/sprites-small/home/shiny/520.webp index d5b2411..725ac02 100644 Binary files a/static/sprites-small/home/shiny/520.webp and b/static/sprites-small/home/shiny/520.webp differ diff --git a/static/sprites-small/home/shiny/521.webp b/static/sprites-small/home/shiny/521.webp index d918f41..e6bb07d 100644 Binary files a/static/sprites-small/home/shiny/521.webp and b/static/sprites-small/home/shiny/521.webp differ diff --git a/static/sprites-small/home/shiny/522.webp b/static/sprites-small/home/shiny/522.webp index b0475b5..eb4ec0a 100644 Binary files a/static/sprites-small/home/shiny/522.webp and b/static/sprites-small/home/shiny/522.webp differ diff --git a/static/sprites-small/home/shiny/523.webp b/static/sprites-small/home/shiny/523.webp index a85dd55..7315d07 100644 Binary files a/static/sprites-small/home/shiny/523.webp and b/static/sprites-small/home/shiny/523.webp differ diff --git a/static/sprites-small/home/shiny/524.webp b/static/sprites-small/home/shiny/524.webp index d88f21d..b3a607b 100644 Binary files a/static/sprites-small/home/shiny/524.webp and b/static/sprites-small/home/shiny/524.webp differ diff --git a/static/sprites-small/home/shiny/525.webp b/static/sprites-small/home/shiny/525.webp index 98dcc60..444a519 100644 Binary files a/static/sprites-small/home/shiny/525.webp and b/static/sprites-small/home/shiny/525.webp differ diff --git a/static/sprites-small/home/shiny/526.webp b/static/sprites-small/home/shiny/526.webp index 495becc..a89feae 100644 Binary files a/static/sprites-small/home/shiny/526.webp and b/static/sprites-small/home/shiny/526.webp differ diff --git a/static/sprites-small/home/shiny/527.webp b/static/sprites-small/home/shiny/527.webp index ac35c64..21c6023 100644 Binary files a/static/sprites-small/home/shiny/527.webp and b/static/sprites-small/home/shiny/527.webp differ diff --git a/static/sprites-small/home/shiny/528.webp b/static/sprites-small/home/shiny/528.webp index a3a64c6..cb4c41b 100644 Binary files a/static/sprites-small/home/shiny/528.webp and b/static/sprites-small/home/shiny/528.webp differ diff --git a/static/sprites-small/home/shiny/529.webp b/static/sprites-small/home/shiny/529.webp index 053fa22..a9fcc77 100644 Binary files a/static/sprites-small/home/shiny/529.webp and b/static/sprites-small/home/shiny/529.webp differ diff --git a/static/sprites-small/home/shiny/53.webp b/static/sprites-small/home/shiny/53.webp index 7372bbd..bedf2bc 100644 Binary files a/static/sprites-small/home/shiny/53.webp and b/static/sprites-small/home/shiny/53.webp differ diff --git a/static/sprites-small/home/shiny/530.webp b/static/sprites-small/home/shiny/530.webp index 3021daa..1d7ef5a 100644 Binary files a/static/sprites-small/home/shiny/530.webp and b/static/sprites-small/home/shiny/530.webp differ diff --git a/static/sprites-small/home/shiny/531.webp b/static/sprites-small/home/shiny/531.webp index c44083f..298e4d2 100644 Binary files a/static/sprites-small/home/shiny/531.webp and b/static/sprites-small/home/shiny/531.webp differ diff --git a/static/sprites-small/home/shiny/532.webp b/static/sprites-small/home/shiny/532.webp index 8e2097c..d99f0b1 100644 Binary files a/static/sprites-small/home/shiny/532.webp and b/static/sprites-small/home/shiny/532.webp differ diff --git a/static/sprites-small/home/shiny/533.webp b/static/sprites-small/home/shiny/533.webp index 547c6fe..334be3e 100644 Binary files a/static/sprites-small/home/shiny/533.webp and b/static/sprites-small/home/shiny/533.webp differ diff --git a/static/sprites-small/home/shiny/534.webp b/static/sprites-small/home/shiny/534.webp index 19409a0..73ce50b 100644 Binary files a/static/sprites-small/home/shiny/534.webp and b/static/sprites-small/home/shiny/534.webp differ diff --git a/static/sprites-small/home/shiny/535.webp b/static/sprites-small/home/shiny/535.webp index 8db6420..04c2cc6 100644 Binary files a/static/sprites-small/home/shiny/535.webp and b/static/sprites-small/home/shiny/535.webp differ diff --git a/static/sprites-small/home/shiny/536.webp b/static/sprites-small/home/shiny/536.webp index 318f1ee..c306430 100644 Binary files a/static/sprites-small/home/shiny/536.webp and b/static/sprites-small/home/shiny/536.webp differ diff --git a/static/sprites-small/home/shiny/537.webp b/static/sprites-small/home/shiny/537.webp index 845397f..6c61baf 100644 Binary files a/static/sprites-small/home/shiny/537.webp and b/static/sprites-small/home/shiny/537.webp differ diff --git a/static/sprites-small/home/shiny/538.webp b/static/sprites-small/home/shiny/538.webp index e1701a5..124f7bc 100644 Binary files a/static/sprites-small/home/shiny/538.webp and b/static/sprites-small/home/shiny/538.webp differ diff --git a/static/sprites-small/home/shiny/539.webp b/static/sprites-small/home/shiny/539.webp index b963bf2..59cd0c2 100644 Binary files a/static/sprites-small/home/shiny/539.webp and b/static/sprites-small/home/shiny/539.webp differ diff --git a/static/sprites-small/home/shiny/54.webp b/static/sprites-small/home/shiny/54.webp index 14ff626..81567b0 100644 Binary files a/static/sprites-small/home/shiny/54.webp and b/static/sprites-small/home/shiny/54.webp differ diff --git a/static/sprites-small/home/shiny/540.webp b/static/sprites-small/home/shiny/540.webp index 8419e1a..9a91890 100644 Binary files a/static/sprites-small/home/shiny/540.webp and b/static/sprites-small/home/shiny/540.webp differ diff --git a/static/sprites-small/home/shiny/541.webp b/static/sprites-small/home/shiny/541.webp index c275251..e66c948 100644 Binary files a/static/sprites-small/home/shiny/541.webp and b/static/sprites-small/home/shiny/541.webp differ diff --git a/static/sprites-small/home/shiny/542.webp b/static/sprites-small/home/shiny/542.webp index 5111697..7748bc9 100644 Binary files a/static/sprites-small/home/shiny/542.webp and b/static/sprites-small/home/shiny/542.webp differ diff --git a/static/sprites-small/home/shiny/543.webp b/static/sprites-small/home/shiny/543.webp index 6126fb1..045dfe1 100644 Binary files a/static/sprites-small/home/shiny/543.webp and b/static/sprites-small/home/shiny/543.webp differ diff --git a/static/sprites-small/home/shiny/544.webp b/static/sprites-small/home/shiny/544.webp index d1b28b0..c389b5a 100644 Binary files a/static/sprites-small/home/shiny/544.webp and b/static/sprites-small/home/shiny/544.webp differ diff --git a/static/sprites-small/home/shiny/545.webp b/static/sprites-small/home/shiny/545.webp index 5d9c198..d1bcefb 100644 Binary files a/static/sprites-small/home/shiny/545.webp and b/static/sprites-small/home/shiny/545.webp differ diff --git a/static/sprites-small/home/shiny/546.webp b/static/sprites-small/home/shiny/546.webp index 6c00dd1..289b61a 100644 Binary files a/static/sprites-small/home/shiny/546.webp and b/static/sprites-small/home/shiny/546.webp differ diff --git a/static/sprites-small/home/shiny/547.webp b/static/sprites-small/home/shiny/547.webp index 3cdbb3d..fec3510 100644 Binary files a/static/sprites-small/home/shiny/547.webp and b/static/sprites-small/home/shiny/547.webp differ diff --git a/static/sprites-small/home/shiny/548.webp b/static/sprites-small/home/shiny/548.webp index 81eda3d..a99d7cc 100644 Binary files a/static/sprites-small/home/shiny/548.webp and b/static/sprites-small/home/shiny/548.webp differ diff --git a/static/sprites-small/home/shiny/549.webp b/static/sprites-small/home/shiny/549.webp index e83bcb1..1be7496 100644 Binary files a/static/sprites-small/home/shiny/549.webp and b/static/sprites-small/home/shiny/549.webp differ diff --git a/static/sprites-small/home/shiny/55.webp b/static/sprites-small/home/shiny/55.webp index 69d0c01..58eec1a 100644 Binary files a/static/sprites-small/home/shiny/55.webp and b/static/sprites-small/home/shiny/55.webp differ diff --git a/static/sprites-small/home/shiny/550.webp b/static/sprites-small/home/shiny/550.webp index 29b07a2..2e8cf7d 100644 Binary files a/static/sprites-small/home/shiny/550.webp and b/static/sprites-small/home/shiny/550.webp differ diff --git a/static/sprites-small/home/shiny/551.webp b/static/sprites-small/home/shiny/551.webp index fa9c6f7..89b1eca 100644 Binary files a/static/sprites-small/home/shiny/551.webp and b/static/sprites-small/home/shiny/551.webp differ diff --git a/static/sprites-small/home/shiny/552.webp b/static/sprites-small/home/shiny/552.webp index 2622343..aaf333d 100644 Binary files a/static/sprites-small/home/shiny/552.webp and b/static/sprites-small/home/shiny/552.webp differ diff --git a/static/sprites-small/home/shiny/553.webp b/static/sprites-small/home/shiny/553.webp index 6b878ad..a5cbcb3 100644 Binary files a/static/sprites-small/home/shiny/553.webp and b/static/sprites-small/home/shiny/553.webp differ diff --git a/static/sprites-small/home/shiny/554.webp b/static/sprites-small/home/shiny/554.webp index bbe0c41..1b88d82 100644 Binary files a/static/sprites-small/home/shiny/554.webp and b/static/sprites-small/home/shiny/554.webp differ diff --git a/static/sprites-small/home/shiny/555.webp b/static/sprites-small/home/shiny/555.webp index d83db8b..14fb6d7 100644 Binary files a/static/sprites-small/home/shiny/555.webp and b/static/sprites-small/home/shiny/555.webp differ diff --git a/static/sprites-small/home/shiny/556.webp b/static/sprites-small/home/shiny/556.webp index 81f3fbb..0239f7e 100644 Binary files a/static/sprites-small/home/shiny/556.webp and b/static/sprites-small/home/shiny/556.webp differ diff --git a/static/sprites-small/home/shiny/557.webp b/static/sprites-small/home/shiny/557.webp index cf63d52..c8a80aa 100644 Binary files a/static/sprites-small/home/shiny/557.webp and b/static/sprites-small/home/shiny/557.webp differ diff --git a/static/sprites-small/home/shiny/558.webp b/static/sprites-small/home/shiny/558.webp index ce02f90..728d064 100644 Binary files a/static/sprites-small/home/shiny/558.webp and b/static/sprites-small/home/shiny/558.webp differ diff --git a/static/sprites-small/home/shiny/559.webp b/static/sprites-small/home/shiny/559.webp index fa67311..8844150 100644 Binary files a/static/sprites-small/home/shiny/559.webp and b/static/sprites-small/home/shiny/559.webp differ diff --git a/static/sprites-small/home/shiny/56.webp b/static/sprites-small/home/shiny/56.webp index 5d9dfb7..7f16981 100644 Binary files a/static/sprites-small/home/shiny/56.webp and b/static/sprites-small/home/shiny/56.webp differ diff --git a/static/sprites-small/home/shiny/560.webp b/static/sprites-small/home/shiny/560.webp index 73d3f46..e1c51c4 100644 Binary files a/static/sprites-small/home/shiny/560.webp and b/static/sprites-small/home/shiny/560.webp differ diff --git a/static/sprites-small/home/shiny/561.webp b/static/sprites-small/home/shiny/561.webp index f44759f..f3d8a21 100644 Binary files a/static/sprites-small/home/shiny/561.webp and b/static/sprites-small/home/shiny/561.webp differ diff --git a/static/sprites-small/home/shiny/562.webp b/static/sprites-small/home/shiny/562.webp index 7bff754..e2e5e24 100644 Binary files a/static/sprites-small/home/shiny/562.webp and b/static/sprites-small/home/shiny/562.webp differ diff --git a/static/sprites-small/home/shiny/563.webp b/static/sprites-small/home/shiny/563.webp index 3b940d1..d576dc0 100644 Binary files a/static/sprites-small/home/shiny/563.webp and b/static/sprites-small/home/shiny/563.webp differ diff --git a/static/sprites-small/home/shiny/564.webp b/static/sprites-small/home/shiny/564.webp index cc916b4..3afff2c 100644 Binary files a/static/sprites-small/home/shiny/564.webp and b/static/sprites-small/home/shiny/564.webp differ diff --git a/static/sprites-small/home/shiny/565.webp b/static/sprites-small/home/shiny/565.webp index 0f663d2..811a5a3 100644 Binary files a/static/sprites-small/home/shiny/565.webp and b/static/sprites-small/home/shiny/565.webp differ diff --git a/static/sprites-small/home/shiny/566.webp b/static/sprites-small/home/shiny/566.webp index eed1cbf..750dedf 100644 Binary files a/static/sprites-small/home/shiny/566.webp and b/static/sprites-small/home/shiny/566.webp differ diff --git a/static/sprites-small/home/shiny/567.webp b/static/sprites-small/home/shiny/567.webp index e33568c..f6fefe0 100644 Binary files a/static/sprites-small/home/shiny/567.webp and b/static/sprites-small/home/shiny/567.webp differ diff --git a/static/sprites-small/home/shiny/568.webp b/static/sprites-small/home/shiny/568.webp index d6e066b..b89baac 100644 Binary files a/static/sprites-small/home/shiny/568.webp and b/static/sprites-small/home/shiny/568.webp differ diff --git a/static/sprites-small/home/shiny/569.webp b/static/sprites-small/home/shiny/569.webp index 441ae1a..7deaec3 100644 Binary files a/static/sprites-small/home/shiny/569.webp and b/static/sprites-small/home/shiny/569.webp differ diff --git a/static/sprites-small/home/shiny/57.webp b/static/sprites-small/home/shiny/57.webp index 2395db6..76be141 100644 Binary files a/static/sprites-small/home/shiny/57.webp and b/static/sprites-small/home/shiny/57.webp differ diff --git a/static/sprites-small/home/shiny/570.webp b/static/sprites-small/home/shiny/570.webp index fed1ec8..5ef7e27 100644 Binary files a/static/sprites-small/home/shiny/570.webp and b/static/sprites-small/home/shiny/570.webp differ diff --git a/static/sprites-small/home/shiny/571.webp b/static/sprites-small/home/shiny/571.webp index bfe0613..8894aaf 100644 Binary files a/static/sprites-small/home/shiny/571.webp and b/static/sprites-small/home/shiny/571.webp differ diff --git a/static/sprites-small/home/shiny/572.webp b/static/sprites-small/home/shiny/572.webp index 21239ad..b685543 100644 Binary files a/static/sprites-small/home/shiny/572.webp and b/static/sprites-small/home/shiny/572.webp differ diff --git a/static/sprites-small/home/shiny/573.webp b/static/sprites-small/home/shiny/573.webp index 15afeb4..926054e 100644 Binary files a/static/sprites-small/home/shiny/573.webp and b/static/sprites-small/home/shiny/573.webp differ diff --git a/static/sprites-small/home/shiny/574.webp b/static/sprites-small/home/shiny/574.webp index 4f294b0..9768901 100644 Binary files a/static/sprites-small/home/shiny/574.webp and b/static/sprites-small/home/shiny/574.webp differ diff --git a/static/sprites-small/home/shiny/575.webp b/static/sprites-small/home/shiny/575.webp index 0d7a8e7..f5c851f 100644 Binary files a/static/sprites-small/home/shiny/575.webp and b/static/sprites-small/home/shiny/575.webp differ diff --git a/static/sprites-small/home/shiny/576.webp b/static/sprites-small/home/shiny/576.webp index 1b4395e..8c55d5e 100644 Binary files a/static/sprites-small/home/shiny/576.webp and b/static/sprites-small/home/shiny/576.webp differ diff --git a/static/sprites-small/home/shiny/577.webp b/static/sprites-small/home/shiny/577.webp index 0a3fbd5..6fed8b6 100644 Binary files a/static/sprites-small/home/shiny/577.webp and b/static/sprites-small/home/shiny/577.webp differ diff --git a/static/sprites-small/home/shiny/578.webp b/static/sprites-small/home/shiny/578.webp index ccf8ec3..a119152 100644 Binary files a/static/sprites-small/home/shiny/578.webp and b/static/sprites-small/home/shiny/578.webp differ diff --git a/static/sprites-small/home/shiny/579.webp b/static/sprites-small/home/shiny/579.webp index 92203c1..04d00c4 100644 Binary files a/static/sprites-small/home/shiny/579.webp and b/static/sprites-small/home/shiny/579.webp differ diff --git a/static/sprites-small/home/shiny/58.webp b/static/sprites-small/home/shiny/58.webp index 2a7800a..2060926 100644 Binary files a/static/sprites-small/home/shiny/58.webp and b/static/sprites-small/home/shiny/58.webp differ diff --git a/static/sprites-small/home/shiny/580.webp b/static/sprites-small/home/shiny/580.webp index 6b537b4..45548f4 100644 Binary files a/static/sprites-small/home/shiny/580.webp and b/static/sprites-small/home/shiny/580.webp differ diff --git a/static/sprites-small/home/shiny/581.webp b/static/sprites-small/home/shiny/581.webp index 1dbfbf3..277e83d 100644 Binary files a/static/sprites-small/home/shiny/581.webp and b/static/sprites-small/home/shiny/581.webp differ diff --git a/static/sprites-small/home/shiny/582.webp b/static/sprites-small/home/shiny/582.webp index af5f461..0179e59 100644 Binary files a/static/sprites-small/home/shiny/582.webp and b/static/sprites-small/home/shiny/582.webp differ diff --git a/static/sprites-small/home/shiny/583.webp b/static/sprites-small/home/shiny/583.webp index 2f660b1..eb708a4 100644 Binary files a/static/sprites-small/home/shiny/583.webp and b/static/sprites-small/home/shiny/583.webp differ diff --git a/static/sprites-small/home/shiny/584.webp b/static/sprites-small/home/shiny/584.webp index aea8e78..c27aaa2 100644 Binary files a/static/sprites-small/home/shiny/584.webp and b/static/sprites-small/home/shiny/584.webp differ diff --git a/static/sprites-small/home/shiny/585-autumn.webp b/static/sprites-small/home/shiny/585-autumn.webp index 5b1a896..130a18a 100644 Binary files a/static/sprites-small/home/shiny/585-autumn.webp and b/static/sprites-small/home/shiny/585-autumn.webp differ diff --git a/static/sprites-small/home/shiny/585-spring.webp b/static/sprites-small/home/shiny/585-spring.webp index 75beac6..b5502dc 100644 Binary files a/static/sprites-small/home/shiny/585-spring.webp and b/static/sprites-small/home/shiny/585-spring.webp differ diff --git a/static/sprites-small/home/shiny/585-summer.webp b/static/sprites-small/home/shiny/585-summer.webp index bbe80bb..83d8ca2 100644 Binary files a/static/sprites-small/home/shiny/585-summer.webp and b/static/sprites-small/home/shiny/585-summer.webp differ diff --git a/static/sprites-small/home/shiny/585-winter.webp b/static/sprites-small/home/shiny/585-winter.webp index 9598966..4a5d162 100644 Binary files a/static/sprites-small/home/shiny/585-winter.webp and b/static/sprites-small/home/shiny/585-winter.webp differ diff --git a/static/sprites-small/home/shiny/585.webp b/static/sprites-small/home/shiny/585.webp index 75beac6..b5502dc 100644 Binary files a/static/sprites-small/home/shiny/585.webp and b/static/sprites-small/home/shiny/585.webp differ diff --git a/static/sprites-small/home/shiny/586-autumn.webp b/static/sprites-small/home/shiny/586-autumn.webp index dfb3332..43b19f6 100644 Binary files a/static/sprites-small/home/shiny/586-autumn.webp and b/static/sprites-small/home/shiny/586-autumn.webp differ diff --git a/static/sprites-small/home/shiny/586-spring.webp b/static/sprites-small/home/shiny/586-spring.webp index ea194ab..5549922 100644 Binary files a/static/sprites-small/home/shiny/586-spring.webp and b/static/sprites-small/home/shiny/586-spring.webp differ diff --git a/static/sprites-small/home/shiny/586-summer.webp b/static/sprites-small/home/shiny/586-summer.webp index 13690eb..3a3057e 100644 Binary files a/static/sprites-small/home/shiny/586-summer.webp and b/static/sprites-small/home/shiny/586-summer.webp differ diff --git a/static/sprites-small/home/shiny/586-winter.webp b/static/sprites-small/home/shiny/586-winter.webp index bc85513..dc4ba35 100644 Binary files a/static/sprites-small/home/shiny/586-winter.webp and b/static/sprites-small/home/shiny/586-winter.webp differ diff --git a/static/sprites-small/home/shiny/586.webp b/static/sprites-small/home/shiny/586.webp index ea194ab..5549922 100644 Binary files a/static/sprites-small/home/shiny/586.webp and b/static/sprites-small/home/shiny/586.webp differ diff --git a/static/sprites-small/home/shiny/587.webp b/static/sprites-small/home/shiny/587.webp index c0cf219..4a06184 100644 Binary files a/static/sprites-small/home/shiny/587.webp and b/static/sprites-small/home/shiny/587.webp differ diff --git a/static/sprites-small/home/shiny/588.webp b/static/sprites-small/home/shiny/588.webp index 8ab9e7b..c2f8d88 100644 Binary files a/static/sprites-small/home/shiny/588.webp and b/static/sprites-small/home/shiny/588.webp differ diff --git a/static/sprites-small/home/shiny/589.webp b/static/sprites-small/home/shiny/589.webp index d116e56..249684d 100644 Binary files a/static/sprites-small/home/shiny/589.webp and b/static/sprites-small/home/shiny/589.webp differ diff --git a/static/sprites-small/home/shiny/59.webp b/static/sprites-small/home/shiny/59.webp index 02ba9de..fedd17c 100644 Binary files a/static/sprites-small/home/shiny/59.webp and b/static/sprites-small/home/shiny/59.webp differ diff --git a/static/sprites-small/home/shiny/590.webp b/static/sprites-small/home/shiny/590.webp index e6f08a4..c02e680 100644 Binary files a/static/sprites-small/home/shiny/590.webp and b/static/sprites-small/home/shiny/590.webp differ diff --git a/static/sprites-small/home/shiny/591.webp b/static/sprites-small/home/shiny/591.webp index 474e257..24b5584 100644 Binary files a/static/sprites-small/home/shiny/591.webp and b/static/sprites-small/home/shiny/591.webp differ diff --git a/static/sprites-small/home/shiny/592.webp b/static/sprites-small/home/shiny/592.webp index 0a7b372..51673dc 100644 Binary files a/static/sprites-small/home/shiny/592.webp and b/static/sprites-small/home/shiny/592.webp differ diff --git a/static/sprites-small/home/shiny/593.webp b/static/sprites-small/home/shiny/593.webp index cd14ac7..0e29ca6 100644 Binary files a/static/sprites-small/home/shiny/593.webp and b/static/sprites-small/home/shiny/593.webp differ diff --git a/static/sprites-small/home/shiny/594.webp b/static/sprites-small/home/shiny/594.webp index e73b6cb..bdd55f3 100644 Binary files a/static/sprites-small/home/shiny/594.webp and b/static/sprites-small/home/shiny/594.webp differ diff --git a/static/sprites-small/home/shiny/595.webp b/static/sprites-small/home/shiny/595.webp index 8812083..42adc96 100644 Binary files a/static/sprites-small/home/shiny/595.webp and b/static/sprites-small/home/shiny/595.webp differ diff --git a/static/sprites-small/home/shiny/596.webp b/static/sprites-small/home/shiny/596.webp index 6694321..0709416 100644 Binary files a/static/sprites-small/home/shiny/596.webp and b/static/sprites-small/home/shiny/596.webp differ diff --git a/static/sprites-small/home/shiny/597.webp b/static/sprites-small/home/shiny/597.webp index de033cb..23804f4 100644 Binary files a/static/sprites-small/home/shiny/597.webp and b/static/sprites-small/home/shiny/597.webp differ diff --git a/static/sprites-small/home/shiny/598.webp b/static/sprites-small/home/shiny/598.webp index 5bcc086..605a0f5 100644 Binary files a/static/sprites-small/home/shiny/598.webp and b/static/sprites-small/home/shiny/598.webp differ diff --git a/static/sprites-small/home/shiny/599.webp b/static/sprites-small/home/shiny/599.webp index f026016..9028396 100644 Binary files a/static/sprites-small/home/shiny/599.webp and b/static/sprites-small/home/shiny/599.webp differ diff --git a/static/sprites-small/home/shiny/6.webp b/static/sprites-small/home/shiny/6.webp index 621b9ff..d31c4d4 100644 Binary files a/static/sprites-small/home/shiny/6.webp and b/static/sprites-small/home/shiny/6.webp differ diff --git a/static/sprites-small/home/shiny/60.webp b/static/sprites-small/home/shiny/60.webp index 7e18415..6f3d6d6 100644 Binary files a/static/sprites-small/home/shiny/60.webp and b/static/sprites-small/home/shiny/60.webp differ diff --git a/static/sprites-small/home/shiny/600.webp b/static/sprites-small/home/shiny/600.webp index 1e4c5f7..e838d5a 100644 Binary files a/static/sprites-small/home/shiny/600.webp and b/static/sprites-small/home/shiny/600.webp differ diff --git a/static/sprites-small/home/shiny/601.webp b/static/sprites-small/home/shiny/601.webp index 4093a6e..b67c7e6 100644 Binary files a/static/sprites-small/home/shiny/601.webp and b/static/sprites-small/home/shiny/601.webp differ diff --git a/static/sprites-small/home/shiny/602.webp b/static/sprites-small/home/shiny/602.webp index aa2c245..38e90ca 100644 Binary files a/static/sprites-small/home/shiny/602.webp and b/static/sprites-small/home/shiny/602.webp differ diff --git a/static/sprites-small/home/shiny/603.webp b/static/sprites-small/home/shiny/603.webp index 428ac04..b22a5ba 100644 Binary files a/static/sprites-small/home/shiny/603.webp and b/static/sprites-small/home/shiny/603.webp differ diff --git a/static/sprites-small/home/shiny/604.webp b/static/sprites-small/home/shiny/604.webp index b0c6838..2966c15 100644 Binary files a/static/sprites-small/home/shiny/604.webp and b/static/sprites-small/home/shiny/604.webp differ diff --git a/static/sprites-small/home/shiny/605.webp b/static/sprites-small/home/shiny/605.webp index 6a6e281..0ca8b92 100644 Binary files a/static/sprites-small/home/shiny/605.webp and b/static/sprites-small/home/shiny/605.webp differ diff --git a/static/sprites-small/home/shiny/606.webp b/static/sprites-small/home/shiny/606.webp index a44b4d0..193a233 100644 Binary files a/static/sprites-small/home/shiny/606.webp and b/static/sprites-small/home/shiny/606.webp differ diff --git a/static/sprites-small/home/shiny/607.webp b/static/sprites-small/home/shiny/607.webp index 1d02caa..6e04e8b 100644 Binary files a/static/sprites-small/home/shiny/607.webp and b/static/sprites-small/home/shiny/607.webp differ diff --git a/static/sprites-small/home/shiny/608.webp b/static/sprites-small/home/shiny/608.webp index 610517a..ec4d628 100644 Binary files a/static/sprites-small/home/shiny/608.webp and b/static/sprites-small/home/shiny/608.webp differ diff --git a/static/sprites-small/home/shiny/609.webp b/static/sprites-small/home/shiny/609.webp index 61fef98..985b14a 100644 Binary files a/static/sprites-small/home/shiny/609.webp and b/static/sprites-small/home/shiny/609.webp differ diff --git a/static/sprites-small/home/shiny/61.webp b/static/sprites-small/home/shiny/61.webp index e635f1f..7b9f2ea 100644 Binary files a/static/sprites-small/home/shiny/61.webp and b/static/sprites-small/home/shiny/61.webp differ diff --git a/static/sprites-small/home/shiny/610.webp b/static/sprites-small/home/shiny/610.webp index 2e9fac8..4ceea25 100644 Binary files a/static/sprites-small/home/shiny/610.webp and b/static/sprites-small/home/shiny/610.webp differ diff --git a/static/sprites-small/home/shiny/611.webp b/static/sprites-small/home/shiny/611.webp index c2835a1..89d09a0 100644 Binary files a/static/sprites-small/home/shiny/611.webp and b/static/sprites-small/home/shiny/611.webp differ diff --git a/static/sprites-small/home/shiny/612.webp b/static/sprites-small/home/shiny/612.webp index 50b6049..d645951 100644 Binary files a/static/sprites-small/home/shiny/612.webp and b/static/sprites-small/home/shiny/612.webp differ diff --git a/static/sprites-small/home/shiny/613.webp b/static/sprites-small/home/shiny/613.webp index 3c39c64..183dc2b 100644 Binary files a/static/sprites-small/home/shiny/613.webp and b/static/sprites-small/home/shiny/613.webp differ diff --git a/static/sprites-small/home/shiny/614.webp b/static/sprites-small/home/shiny/614.webp index 645a167..eb76cb9 100644 Binary files a/static/sprites-small/home/shiny/614.webp and b/static/sprites-small/home/shiny/614.webp differ diff --git a/static/sprites-small/home/shiny/615.webp b/static/sprites-small/home/shiny/615.webp index a5336cf..17d40cd 100644 Binary files a/static/sprites-small/home/shiny/615.webp and b/static/sprites-small/home/shiny/615.webp differ diff --git a/static/sprites-small/home/shiny/616.webp b/static/sprites-small/home/shiny/616.webp index ad8a7d0..6a689ed 100644 Binary files a/static/sprites-small/home/shiny/616.webp and b/static/sprites-small/home/shiny/616.webp differ diff --git a/static/sprites-small/home/shiny/617.webp b/static/sprites-small/home/shiny/617.webp index 5a3d08f..33a914e 100644 Binary files a/static/sprites-small/home/shiny/617.webp and b/static/sprites-small/home/shiny/617.webp differ diff --git a/static/sprites-small/home/shiny/618.webp b/static/sprites-small/home/shiny/618.webp index 18cf5f3..1515c2b 100644 Binary files a/static/sprites-small/home/shiny/618.webp and b/static/sprites-small/home/shiny/618.webp differ diff --git a/static/sprites-small/home/shiny/619.webp b/static/sprites-small/home/shiny/619.webp index 9484f7e..a9bcf94 100644 Binary files a/static/sprites-small/home/shiny/619.webp and b/static/sprites-small/home/shiny/619.webp differ diff --git a/static/sprites-small/home/shiny/62.webp b/static/sprites-small/home/shiny/62.webp index 44c5503..ac0b07b 100644 Binary files a/static/sprites-small/home/shiny/62.webp and b/static/sprites-small/home/shiny/62.webp differ diff --git a/static/sprites-small/home/shiny/620.webp b/static/sprites-small/home/shiny/620.webp index 9b99e72..d6a60b7 100644 Binary files a/static/sprites-small/home/shiny/620.webp and b/static/sprites-small/home/shiny/620.webp differ diff --git a/static/sprites-small/home/shiny/621.webp b/static/sprites-small/home/shiny/621.webp index 7661f46..fc27767 100644 Binary files a/static/sprites-small/home/shiny/621.webp and b/static/sprites-small/home/shiny/621.webp differ diff --git a/static/sprites-small/home/shiny/622.webp b/static/sprites-small/home/shiny/622.webp index 670aa34..078f123 100644 Binary files a/static/sprites-small/home/shiny/622.webp and b/static/sprites-small/home/shiny/622.webp differ diff --git a/static/sprites-small/home/shiny/623.webp b/static/sprites-small/home/shiny/623.webp index 6288279..3f9d439 100644 Binary files a/static/sprites-small/home/shiny/623.webp and b/static/sprites-small/home/shiny/623.webp differ diff --git a/static/sprites-small/home/shiny/624.webp b/static/sprites-small/home/shiny/624.webp index 986c967..5e23237 100644 Binary files a/static/sprites-small/home/shiny/624.webp and b/static/sprites-small/home/shiny/624.webp differ diff --git a/static/sprites-small/home/shiny/625.webp b/static/sprites-small/home/shiny/625.webp index af92e8d..84da04c 100644 Binary files a/static/sprites-small/home/shiny/625.webp and b/static/sprites-small/home/shiny/625.webp differ diff --git a/static/sprites-small/home/shiny/626.webp b/static/sprites-small/home/shiny/626.webp index d4c926e..34406fe 100644 Binary files a/static/sprites-small/home/shiny/626.webp and b/static/sprites-small/home/shiny/626.webp differ diff --git a/static/sprites-small/home/shiny/627.webp b/static/sprites-small/home/shiny/627.webp index 272e97c..00cd38c 100644 Binary files a/static/sprites-small/home/shiny/627.webp and b/static/sprites-small/home/shiny/627.webp differ diff --git a/static/sprites-small/home/shiny/628.webp b/static/sprites-small/home/shiny/628.webp index 78f8c61..78b2274 100644 Binary files a/static/sprites-small/home/shiny/628.webp and b/static/sprites-small/home/shiny/628.webp differ diff --git a/static/sprites-small/home/shiny/629.webp b/static/sprites-small/home/shiny/629.webp index 83f8125..e5a97c4 100644 Binary files a/static/sprites-small/home/shiny/629.webp and b/static/sprites-small/home/shiny/629.webp differ diff --git a/static/sprites-small/home/shiny/63.webp b/static/sprites-small/home/shiny/63.webp index 68409d4..09cf470 100644 Binary files a/static/sprites-small/home/shiny/63.webp and b/static/sprites-small/home/shiny/63.webp differ diff --git a/static/sprites-small/home/shiny/630.webp b/static/sprites-small/home/shiny/630.webp index 687414f..ed5f47b 100644 Binary files a/static/sprites-small/home/shiny/630.webp and b/static/sprites-small/home/shiny/630.webp differ diff --git a/static/sprites-small/home/shiny/631.webp b/static/sprites-small/home/shiny/631.webp index 8df0ce4..9adb700 100644 Binary files a/static/sprites-small/home/shiny/631.webp and b/static/sprites-small/home/shiny/631.webp differ diff --git a/static/sprites-small/home/shiny/632.webp b/static/sprites-small/home/shiny/632.webp index 3db2372..ed55002 100644 Binary files a/static/sprites-small/home/shiny/632.webp and b/static/sprites-small/home/shiny/632.webp differ diff --git a/static/sprites-small/home/shiny/633.webp b/static/sprites-small/home/shiny/633.webp index d070b63..ec45b44 100644 Binary files a/static/sprites-small/home/shiny/633.webp and b/static/sprites-small/home/shiny/633.webp differ diff --git a/static/sprites-small/home/shiny/634.webp b/static/sprites-small/home/shiny/634.webp index cf974a0..f3fc98c 100644 Binary files a/static/sprites-small/home/shiny/634.webp and b/static/sprites-small/home/shiny/634.webp differ diff --git a/static/sprites-small/home/shiny/635.webp b/static/sprites-small/home/shiny/635.webp index 8b35fc0..20cbf0a 100644 Binary files a/static/sprites-small/home/shiny/635.webp and b/static/sprites-small/home/shiny/635.webp differ diff --git a/static/sprites-small/home/shiny/636.webp b/static/sprites-small/home/shiny/636.webp index 544f5fc..611929b 100644 Binary files a/static/sprites-small/home/shiny/636.webp and b/static/sprites-small/home/shiny/636.webp differ diff --git a/static/sprites-small/home/shiny/637.webp b/static/sprites-small/home/shiny/637.webp index e2949da..ec0f969 100644 Binary files a/static/sprites-small/home/shiny/637.webp and b/static/sprites-small/home/shiny/637.webp differ diff --git a/static/sprites-small/home/shiny/638.webp b/static/sprites-small/home/shiny/638.webp index 9986069..4f3409b 100644 Binary files a/static/sprites-small/home/shiny/638.webp and b/static/sprites-small/home/shiny/638.webp differ diff --git a/static/sprites-small/home/shiny/639.webp b/static/sprites-small/home/shiny/639.webp index 0337f70..3c99fce 100644 Binary files a/static/sprites-small/home/shiny/639.webp and b/static/sprites-small/home/shiny/639.webp differ diff --git a/static/sprites-small/home/shiny/64.webp b/static/sprites-small/home/shiny/64.webp index 85665ea..8f7120c 100644 Binary files a/static/sprites-small/home/shiny/64.webp and b/static/sprites-small/home/shiny/64.webp differ diff --git a/static/sprites-small/home/shiny/640.webp b/static/sprites-small/home/shiny/640.webp index 33af262..25a6a92 100644 Binary files a/static/sprites-small/home/shiny/640.webp and b/static/sprites-small/home/shiny/640.webp differ diff --git a/static/sprites-small/home/shiny/641.webp b/static/sprites-small/home/shiny/641.webp index 7dfe091..0484e47 100644 Binary files a/static/sprites-small/home/shiny/641.webp and b/static/sprites-small/home/shiny/641.webp differ diff --git a/static/sprites-small/home/shiny/642.webp b/static/sprites-small/home/shiny/642.webp index cd8ac93..688b46a 100644 Binary files a/static/sprites-small/home/shiny/642.webp and b/static/sprites-small/home/shiny/642.webp differ diff --git a/static/sprites-small/home/shiny/643.webp b/static/sprites-small/home/shiny/643.webp index 41971f2..d653f57 100644 Binary files a/static/sprites-small/home/shiny/643.webp and b/static/sprites-small/home/shiny/643.webp differ diff --git a/static/sprites-small/home/shiny/644.webp b/static/sprites-small/home/shiny/644.webp index 6019b5b..62b45b5 100644 Binary files a/static/sprites-small/home/shiny/644.webp and b/static/sprites-small/home/shiny/644.webp differ diff --git a/static/sprites-small/home/shiny/645.webp b/static/sprites-small/home/shiny/645.webp index 81e6abd..c694bc2 100644 Binary files a/static/sprites-small/home/shiny/645.webp and b/static/sprites-small/home/shiny/645.webp differ diff --git a/static/sprites-small/home/shiny/646.webp b/static/sprites-small/home/shiny/646.webp index 010522f..d7da303 100644 Binary files a/static/sprites-small/home/shiny/646.webp and b/static/sprites-small/home/shiny/646.webp differ diff --git a/static/sprites-small/home/shiny/647.webp b/static/sprites-small/home/shiny/647.webp index 5874591..321affc 100644 Binary files a/static/sprites-small/home/shiny/647.webp and b/static/sprites-small/home/shiny/647.webp differ diff --git a/static/sprites-small/home/shiny/648.webp b/static/sprites-small/home/shiny/648.webp index 35940ce..e716557 100644 Binary files a/static/sprites-small/home/shiny/648.webp and b/static/sprites-small/home/shiny/648.webp differ diff --git a/static/sprites-small/home/shiny/649-burn.webp b/static/sprites-small/home/shiny/649-burn.webp index 3a053cb..7ec2d3d 100644 Binary files a/static/sprites-small/home/shiny/649-burn.webp and b/static/sprites-small/home/shiny/649-burn.webp differ diff --git a/static/sprites-small/home/shiny/649-chill.webp b/static/sprites-small/home/shiny/649-chill.webp index 59f46b4..7b9a59b 100644 Binary files a/static/sprites-small/home/shiny/649-chill.webp and b/static/sprites-small/home/shiny/649-chill.webp differ diff --git a/static/sprites-small/home/shiny/649-douse.webp b/static/sprites-small/home/shiny/649-douse.webp index 954dd8f..67ee84e 100644 Binary files a/static/sprites-small/home/shiny/649-douse.webp and b/static/sprites-small/home/shiny/649-douse.webp differ diff --git a/static/sprites-small/home/shiny/649-shock.webp b/static/sprites-small/home/shiny/649-shock.webp index 1b44ecf..2a93875 100644 Binary files a/static/sprites-small/home/shiny/649-shock.webp and b/static/sprites-small/home/shiny/649-shock.webp differ diff --git a/static/sprites-small/home/shiny/649.webp b/static/sprites-small/home/shiny/649.webp index 838bd98..ccae896 100644 Binary files a/static/sprites-small/home/shiny/649.webp and b/static/sprites-small/home/shiny/649.webp differ diff --git a/static/sprites-small/home/shiny/65.webp b/static/sprites-small/home/shiny/65.webp index e19051e..3467130 100644 Binary files a/static/sprites-small/home/shiny/65.webp and b/static/sprites-small/home/shiny/65.webp differ diff --git a/static/sprites-small/home/shiny/650.webp b/static/sprites-small/home/shiny/650.webp index dfc373d..5bd2b1d 100644 Binary files a/static/sprites-small/home/shiny/650.webp and b/static/sprites-small/home/shiny/650.webp differ diff --git a/static/sprites-small/home/shiny/651.webp b/static/sprites-small/home/shiny/651.webp index 668778b..9e7dbdb 100644 Binary files a/static/sprites-small/home/shiny/651.webp and b/static/sprites-small/home/shiny/651.webp differ diff --git a/static/sprites-small/home/shiny/652.webp b/static/sprites-small/home/shiny/652.webp index 4c23e83..445b9ee 100644 Binary files a/static/sprites-small/home/shiny/652.webp and b/static/sprites-small/home/shiny/652.webp differ diff --git a/static/sprites-small/home/shiny/653.webp b/static/sprites-small/home/shiny/653.webp index 445fc29..39b1938 100644 Binary files a/static/sprites-small/home/shiny/653.webp and b/static/sprites-small/home/shiny/653.webp differ diff --git a/static/sprites-small/home/shiny/654.webp b/static/sprites-small/home/shiny/654.webp index 57c1e2e..c6d010d 100644 Binary files a/static/sprites-small/home/shiny/654.webp and b/static/sprites-small/home/shiny/654.webp differ diff --git a/static/sprites-small/home/shiny/655.webp b/static/sprites-small/home/shiny/655.webp index 31f9272..67f4398 100644 Binary files a/static/sprites-small/home/shiny/655.webp and b/static/sprites-small/home/shiny/655.webp differ diff --git a/static/sprites-small/home/shiny/656.webp b/static/sprites-small/home/shiny/656.webp index b990038..a9fab54 100644 Binary files a/static/sprites-small/home/shiny/656.webp and b/static/sprites-small/home/shiny/656.webp differ diff --git a/static/sprites-small/home/shiny/657.webp b/static/sprites-small/home/shiny/657.webp index c8d1a5b..01c8162 100644 Binary files a/static/sprites-small/home/shiny/657.webp and b/static/sprites-small/home/shiny/657.webp differ diff --git a/static/sprites-small/home/shiny/658.webp b/static/sprites-small/home/shiny/658.webp index 1b0b190..ac90e73 100644 Binary files a/static/sprites-small/home/shiny/658.webp and b/static/sprites-small/home/shiny/658.webp differ diff --git a/static/sprites-small/home/shiny/659.webp b/static/sprites-small/home/shiny/659.webp index 872e286..231bfc9 100644 Binary files a/static/sprites-small/home/shiny/659.webp and b/static/sprites-small/home/shiny/659.webp differ diff --git a/static/sprites-small/home/shiny/66.webp b/static/sprites-small/home/shiny/66.webp index 7327826..68c8c8d 100644 Binary files a/static/sprites-small/home/shiny/66.webp and b/static/sprites-small/home/shiny/66.webp differ diff --git a/static/sprites-small/home/shiny/660.webp b/static/sprites-small/home/shiny/660.webp index 53a1f43..7f3ad9e 100644 Binary files a/static/sprites-small/home/shiny/660.webp and b/static/sprites-small/home/shiny/660.webp differ diff --git a/static/sprites-small/home/shiny/661.webp b/static/sprites-small/home/shiny/661.webp index b0cf6c0..43ea49b 100644 Binary files a/static/sprites-small/home/shiny/661.webp and b/static/sprites-small/home/shiny/661.webp differ diff --git a/static/sprites-small/home/shiny/662.webp b/static/sprites-small/home/shiny/662.webp index e049915..597f482 100644 Binary files a/static/sprites-small/home/shiny/662.webp and b/static/sprites-small/home/shiny/662.webp differ diff --git a/static/sprites-small/home/shiny/663.webp b/static/sprites-small/home/shiny/663.webp index 0950a22..74ce949 100644 Binary files a/static/sprites-small/home/shiny/663.webp and b/static/sprites-small/home/shiny/663.webp differ diff --git a/static/sprites-small/home/shiny/664.webp b/static/sprites-small/home/shiny/664.webp index 19931a7..0dfd2cf 100644 Binary files a/static/sprites-small/home/shiny/664.webp and b/static/sprites-small/home/shiny/664.webp differ diff --git a/static/sprites-small/home/shiny/665.webp b/static/sprites-small/home/shiny/665.webp index 4871e82..7149a5c 100644 Binary files a/static/sprites-small/home/shiny/665.webp and b/static/sprites-small/home/shiny/665.webp differ diff --git a/static/sprites-small/home/shiny/666-archipelago.webp b/static/sprites-small/home/shiny/666-archipelago.webp index cd8a455..13c1d48 100644 Binary files a/static/sprites-small/home/shiny/666-archipelago.webp and b/static/sprites-small/home/shiny/666-archipelago.webp differ diff --git a/static/sprites-small/home/shiny/666-continental.webp b/static/sprites-small/home/shiny/666-continental.webp index ba9fb40..b52622d 100644 Binary files a/static/sprites-small/home/shiny/666-continental.webp and b/static/sprites-small/home/shiny/666-continental.webp differ diff --git a/static/sprites-small/home/shiny/666-elegant.webp b/static/sprites-small/home/shiny/666-elegant.webp index 7e51208..d2a737c 100644 Binary files a/static/sprites-small/home/shiny/666-elegant.webp and b/static/sprites-small/home/shiny/666-elegant.webp differ diff --git a/static/sprites-small/home/shiny/666-fancy.webp b/static/sprites-small/home/shiny/666-fancy.webp index 18f4fec..2d61e04 100644 Binary files a/static/sprites-small/home/shiny/666-fancy.webp and b/static/sprites-small/home/shiny/666-fancy.webp differ diff --git a/static/sprites-small/home/shiny/666-garden.webp b/static/sprites-small/home/shiny/666-garden.webp index a079417..de06e75 100644 Binary files a/static/sprites-small/home/shiny/666-garden.webp and b/static/sprites-small/home/shiny/666-garden.webp differ diff --git a/static/sprites-small/home/shiny/666-high-plains.webp b/static/sprites-small/home/shiny/666-high-plains.webp index f2a0c0e..8a99c12 100644 Binary files a/static/sprites-small/home/shiny/666-high-plains.webp and b/static/sprites-small/home/shiny/666-high-plains.webp differ diff --git a/static/sprites-small/home/shiny/666-icy-snow.webp b/static/sprites-small/home/shiny/666-icy-snow.webp index f56cbde..7045a3e 100644 Binary files a/static/sprites-small/home/shiny/666-icy-snow.webp and b/static/sprites-small/home/shiny/666-icy-snow.webp differ diff --git a/static/sprites-small/home/shiny/666-jungle.webp b/static/sprites-small/home/shiny/666-jungle.webp index 49e3f66..ee9486a 100644 Binary files a/static/sprites-small/home/shiny/666-jungle.webp and b/static/sprites-small/home/shiny/666-jungle.webp differ diff --git a/static/sprites-small/home/shiny/666-marine.webp b/static/sprites-small/home/shiny/666-marine.webp index c53e83f..6f13e0a 100644 Binary files a/static/sprites-small/home/shiny/666-marine.webp and b/static/sprites-small/home/shiny/666-marine.webp differ diff --git a/static/sprites-small/home/shiny/666-meadow.webp b/static/sprites-small/home/shiny/666-meadow.webp index 945770d..d31cd50 100644 Binary files a/static/sprites-small/home/shiny/666-meadow.webp and b/static/sprites-small/home/shiny/666-meadow.webp differ diff --git a/static/sprites-small/home/shiny/666-modern.webp b/static/sprites-small/home/shiny/666-modern.webp index 7421344..781a4e4 100644 Binary files a/static/sprites-small/home/shiny/666-modern.webp and b/static/sprites-small/home/shiny/666-modern.webp differ diff --git a/static/sprites-small/home/shiny/666-monsoon.webp b/static/sprites-small/home/shiny/666-monsoon.webp index 6c64dd8..60a1fbf 100644 Binary files a/static/sprites-small/home/shiny/666-monsoon.webp and b/static/sprites-small/home/shiny/666-monsoon.webp differ diff --git a/static/sprites-small/home/shiny/666-ocean.webp b/static/sprites-small/home/shiny/666-ocean.webp index 09ece18..6c52982 100644 Binary files a/static/sprites-small/home/shiny/666-ocean.webp and b/static/sprites-small/home/shiny/666-ocean.webp differ diff --git a/static/sprites-small/home/shiny/666-poke-ball.webp b/static/sprites-small/home/shiny/666-poke-ball.webp index 95ff263..5162711 100644 Binary files a/static/sprites-small/home/shiny/666-poke-ball.webp and b/static/sprites-small/home/shiny/666-poke-ball.webp differ diff --git a/static/sprites-small/home/shiny/666-polar.webp b/static/sprites-small/home/shiny/666-polar.webp index 720e81c..eaa56c1 100644 Binary files a/static/sprites-small/home/shiny/666-polar.webp and b/static/sprites-small/home/shiny/666-polar.webp differ diff --git a/static/sprites-small/home/shiny/666-river.webp b/static/sprites-small/home/shiny/666-river.webp index 9321400..ca09d90 100644 Binary files a/static/sprites-small/home/shiny/666-river.webp and b/static/sprites-small/home/shiny/666-river.webp differ diff --git a/static/sprites-small/home/shiny/666-sandstorm.webp b/static/sprites-small/home/shiny/666-sandstorm.webp index d10d90a..5c171e1 100644 Binary files a/static/sprites-small/home/shiny/666-sandstorm.webp and b/static/sprites-small/home/shiny/666-sandstorm.webp differ diff --git a/static/sprites-small/home/shiny/666-savanna.webp b/static/sprites-small/home/shiny/666-savanna.webp index 1a69cc1..240572c 100644 Binary files a/static/sprites-small/home/shiny/666-savanna.webp and b/static/sprites-small/home/shiny/666-savanna.webp differ diff --git a/static/sprites-small/home/shiny/666-sun.webp b/static/sprites-small/home/shiny/666-sun.webp index 24dde1f..28419cc 100644 Binary files a/static/sprites-small/home/shiny/666-sun.webp and b/static/sprites-small/home/shiny/666-sun.webp differ diff --git a/static/sprites-small/home/shiny/666-tundra.webp b/static/sprites-small/home/shiny/666-tundra.webp index 23f1d81..089297c 100644 Binary files a/static/sprites-small/home/shiny/666-tundra.webp and b/static/sprites-small/home/shiny/666-tundra.webp differ diff --git a/static/sprites-small/home/shiny/666.webp b/static/sprites-small/home/shiny/666.webp index 945770d..d31cd50 100644 Binary files a/static/sprites-small/home/shiny/666.webp and b/static/sprites-small/home/shiny/666.webp differ diff --git a/static/sprites-small/home/shiny/667.webp b/static/sprites-small/home/shiny/667.webp index 47e6d09..56aaa11 100644 Binary files a/static/sprites-small/home/shiny/667.webp and b/static/sprites-small/home/shiny/667.webp differ diff --git a/static/sprites-small/home/shiny/668.webp b/static/sprites-small/home/shiny/668.webp index 1134a06..a354380 100644 Binary files a/static/sprites-small/home/shiny/668.webp and b/static/sprites-small/home/shiny/668.webp differ diff --git a/static/sprites-small/home/shiny/669-blue.webp b/static/sprites-small/home/shiny/669-blue.webp index 96f5a72..e7e4dee 100644 Binary files a/static/sprites-small/home/shiny/669-blue.webp and b/static/sprites-small/home/shiny/669-blue.webp differ diff --git a/static/sprites-small/home/shiny/669-orange.webp b/static/sprites-small/home/shiny/669-orange.webp index f49dd88..9245f95 100644 Binary files a/static/sprites-small/home/shiny/669-orange.webp and b/static/sprites-small/home/shiny/669-orange.webp differ diff --git a/static/sprites-small/home/shiny/669-red.webp b/static/sprites-small/home/shiny/669-red.webp index 9f49ba9..96deb5d 100644 Binary files a/static/sprites-small/home/shiny/669-red.webp and b/static/sprites-small/home/shiny/669-red.webp differ diff --git a/static/sprites-small/home/shiny/669-white.webp b/static/sprites-small/home/shiny/669-white.webp index be50fdc..01f4c4b 100644 Binary files a/static/sprites-small/home/shiny/669-white.webp and b/static/sprites-small/home/shiny/669-white.webp differ diff --git a/static/sprites-small/home/shiny/669-yellow.webp b/static/sprites-small/home/shiny/669-yellow.webp index dd0539e..753ef33 100644 Binary files a/static/sprites-small/home/shiny/669-yellow.webp and b/static/sprites-small/home/shiny/669-yellow.webp differ diff --git a/static/sprites-small/home/shiny/669.webp b/static/sprites-small/home/shiny/669.webp index 9f49ba9..96deb5d 100644 Binary files a/static/sprites-small/home/shiny/669.webp and b/static/sprites-small/home/shiny/669.webp differ diff --git a/static/sprites-small/home/shiny/67.webp b/static/sprites-small/home/shiny/67.webp index 3c5f099..bca414f 100644 Binary files a/static/sprites-small/home/shiny/67.webp and b/static/sprites-small/home/shiny/67.webp differ diff --git a/static/sprites-small/home/shiny/670-blue.webp b/static/sprites-small/home/shiny/670-blue.webp index fb66bc9..fc914a3 100644 Binary files a/static/sprites-small/home/shiny/670-blue.webp and b/static/sprites-small/home/shiny/670-blue.webp differ diff --git a/static/sprites-small/home/shiny/670-orange.webp b/static/sprites-small/home/shiny/670-orange.webp index e1b58cb..294d780 100644 Binary files a/static/sprites-small/home/shiny/670-orange.webp and b/static/sprites-small/home/shiny/670-orange.webp differ diff --git a/static/sprites-small/home/shiny/670-red.webp b/static/sprites-small/home/shiny/670-red.webp index c330f1f..5fe8e9d 100644 Binary files a/static/sprites-small/home/shiny/670-red.webp and b/static/sprites-small/home/shiny/670-red.webp differ diff --git a/static/sprites-small/home/shiny/670-white.webp b/static/sprites-small/home/shiny/670-white.webp index 38570b4..4c12b15 100644 Binary files a/static/sprites-small/home/shiny/670-white.webp and b/static/sprites-small/home/shiny/670-white.webp differ diff --git a/static/sprites-small/home/shiny/670-yellow.webp b/static/sprites-small/home/shiny/670-yellow.webp index 29c66ec..7b8060d 100644 Binary files a/static/sprites-small/home/shiny/670-yellow.webp and b/static/sprites-small/home/shiny/670-yellow.webp differ diff --git a/static/sprites-small/home/shiny/670.webp b/static/sprites-small/home/shiny/670.webp index c330f1f..5fe8e9d 100644 Binary files a/static/sprites-small/home/shiny/670.webp and b/static/sprites-small/home/shiny/670.webp differ diff --git a/static/sprites-small/home/shiny/671-blue.webp b/static/sprites-small/home/shiny/671-blue.webp index ccd205f..769110f 100644 Binary files a/static/sprites-small/home/shiny/671-blue.webp and b/static/sprites-small/home/shiny/671-blue.webp differ diff --git a/static/sprites-small/home/shiny/671-orange.webp b/static/sprites-small/home/shiny/671-orange.webp index a1b6a18..6a6bb5e 100644 Binary files a/static/sprites-small/home/shiny/671-orange.webp and b/static/sprites-small/home/shiny/671-orange.webp differ diff --git a/static/sprites-small/home/shiny/671-red.webp b/static/sprites-small/home/shiny/671-red.webp index 780ce62..c630a2f 100644 Binary files a/static/sprites-small/home/shiny/671-red.webp and b/static/sprites-small/home/shiny/671-red.webp differ diff --git a/static/sprites-small/home/shiny/671-white.webp b/static/sprites-small/home/shiny/671-white.webp index 9fc3f09..97a2c50 100644 Binary files a/static/sprites-small/home/shiny/671-white.webp and b/static/sprites-small/home/shiny/671-white.webp differ diff --git a/static/sprites-small/home/shiny/671-yellow.webp b/static/sprites-small/home/shiny/671-yellow.webp index 908fbf2..0a4fbb6 100644 Binary files a/static/sprites-small/home/shiny/671-yellow.webp and b/static/sprites-small/home/shiny/671-yellow.webp differ diff --git a/static/sprites-small/home/shiny/671.webp b/static/sprites-small/home/shiny/671.webp index 780ce62..c630a2f 100644 Binary files a/static/sprites-small/home/shiny/671.webp and b/static/sprites-small/home/shiny/671.webp differ diff --git a/static/sprites-small/home/shiny/672.webp b/static/sprites-small/home/shiny/672.webp index 90a1b8a..c87432d 100644 Binary files a/static/sprites-small/home/shiny/672.webp and b/static/sprites-small/home/shiny/672.webp differ diff --git a/static/sprites-small/home/shiny/673.webp b/static/sprites-small/home/shiny/673.webp index 8906d82..85222da 100644 Binary files a/static/sprites-small/home/shiny/673.webp and b/static/sprites-small/home/shiny/673.webp differ diff --git a/static/sprites-small/home/shiny/674.webp b/static/sprites-small/home/shiny/674.webp index 94db0c9..e077d87 100644 Binary files a/static/sprites-small/home/shiny/674.webp and b/static/sprites-small/home/shiny/674.webp differ diff --git a/static/sprites-small/home/shiny/675.webp b/static/sprites-small/home/shiny/675.webp index d23fbcd..56b3259 100644 Binary files a/static/sprites-small/home/shiny/675.webp and b/static/sprites-small/home/shiny/675.webp differ diff --git a/static/sprites-small/home/shiny/676-dandy.webp b/static/sprites-small/home/shiny/676-dandy.webp index f4ad0cb..402b65f 100644 Binary files a/static/sprites-small/home/shiny/676-dandy.webp and b/static/sprites-small/home/shiny/676-dandy.webp differ diff --git a/static/sprites-small/home/shiny/676-debutante.webp b/static/sprites-small/home/shiny/676-debutante.webp index 3325209..6c66882 100644 Binary files a/static/sprites-small/home/shiny/676-debutante.webp and b/static/sprites-small/home/shiny/676-debutante.webp differ diff --git a/static/sprites-small/home/shiny/676-diamond.webp b/static/sprites-small/home/shiny/676-diamond.webp index 6bca5ae..f526d65 100644 Binary files a/static/sprites-small/home/shiny/676-diamond.webp and b/static/sprites-small/home/shiny/676-diamond.webp differ diff --git a/static/sprites-small/home/shiny/676-heart.webp b/static/sprites-small/home/shiny/676-heart.webp index d88e9df..35147fa 100644 Binary files a/static/sprites-small/home/shiny/676-heart.webp and b/static/sprites-small/home/shiny/676-heart.webp differ diff --git a/static/sprites-small/home/shiny/676-kabuki.webp b/static/sprites-small/home/shiny/676-kabuki.webp index 35c760b..c3307d6 100644 Binary files a/static/sprites-small/home/shiny/676-kabuki.webp and b/static/sprites-small/home/shiny/676-kabuki.webp differ diff --git a/static/sprites-small/home/shiny/676-la-reine.webp b/static/sprites-small/home/shiny/676-la-reine.webp index 49fd118..8fa84fd 100644 Binary files a/static/sprites-small/home/shiny/676-la-reine.webp and b/static/sprites-small/home/shiny/676-la-reine.webp differ diff --git a/static/sprites-small/home/shiny/676-matron.webp b/static/sprites-small/home/shiny/676-matron.webp index 6ba69fc..3b4982b 100644 Binary files a/static/sprites-small/home/shiny/676-matron.webp and b/static/sprites-small/home/shiny/676-matron.webp differ diff --git a/static/sprites-small/home/shiny/676-natural.webp b/static/sprites-small/home/shiny/676-natural.webp index eb0c730..e4cd360 100644 Binary files a/static/sprites-small/home/shiny/676-natural.webp and b/static/sprites-small/home/shiny/676-natural.webp differ diff --git a/static/sprites-small/home/shiny/676-pharaoh.webp b/static/sprites-small/home/shiny/676-pharaoh.webp index 288dd0f..a3dd982 100644 Binary files a/static/sprites-small/home/shiny/676-pharaoh.webp and b/static/sprites-small/home/shiny/676-pharaoh.webp differ diff --git a/static/sprites-small/home/shiny/676-star.webp b/static/sprites-small/home/shiny/676-star.webp index f0bbba5..82f792f 100644 Binary files a/static/sprites-small/home/shiny/676-star.webp and b/static/sprites-small/home/shiny/676-star.webp differ diff --git a/static/sprites-small/home/shiny/676.webp b/static/sprites-small/home/shiny/676.webp index eb0c730..e4cd360 100644 Binary files a/static/sprites-small/home/shiny/676.webp and b/static/sprites-small/home/shiny/676.webp differ diff --git a/static/sprites-small/home/shiny/677.webp b/static/sprites-small/home/shiny/677.webp index 5a612b3..087ca89 100644 Binary files a/static/sprites-small/home/shiny/677.webp and b/static/sprites-small/home/shiny/677.webp differ diff --git a/static/sprites-small/home/shiny/678.webp b/static/sprites-small/home/shiny/678.webp index 42b927f..85c8df2 100644 Binary files a/static/sprites-small/home/shiny/678.webp and b/static/sprites-small/home/shiny/678.webp differ diff --git a/static/sprites-small/home/shiny/679.webp b/static/sprites-small/home/shiny/679.webp index efd6417..79dfe03 100644 Binary files a/static/sprites-small/home/shiny/679.webp and b/static/sprites-small/home/shiny/679.webp differ diff --git a/static/sprites-small/home/shiny/68.webp b/static/sprites-small/home/shiny/68.webp index d7531e3..5cf715c 100644 Binary files a/static/sprites-small/home/shiny/68.webp and b/static/sprites-small/home/shiny/68.webp differ diff --git a/static/sprites-small/home/shiny/680.webp b/static/sprites-small/home/shiny/680.webp index 6cd934f..c372eca 100644 Binary files a/static/sprites-small/home/shiny/680.webp and b/static/sprites-small/home/shiny/680.webp differ diff --git a/static/sprites-small/home/shiny/681.webp b/static/sprites-small/home/shiny/681.webp index 9930800..a819f4a 100644 Binary files a/static/sprites-small/home/shiny/681.webp and b/static/sprites-small/home/shiny/681.webp differ diff --git a/static/sprites-small/home/shiny/682.webp b/static/sprites-small/home/shiny/682.webp index c71c7df..b411f46 100644 Binary files a/static/sprites-small/home/shiny/682.webp and b/static/sprites-small/home/shiny/682.webp differ diff --git a/static/sprites-small/home/shiny/683.webp b/static/sprites-small/home/shiny/683.webp index 41a6c3f..0862ff9 100644 Binary files a/static/sprites-small/home/shiny/683.webp and b/static/sprites-small/home/shiny/683.webp differ diff --git a/static/sprites-small/home/shiny/684.webp b/static/sprites-small/home/shiny/684.webp index 7b1ee92..1c3fc82 100644 Binary files a/static/sprites-small/home/shiny/684.webp and b/static/sprites-small/home/shiny/684.webp differ diff --git a/static/sprites-small/home/shiny/685.webp b/static/sprites-small/home/shiny/685.webp index cfc31c7..596225a 100644 Binary files a/static/sprites-small/home/shiny/685.webp and b/static/sprites-small/home/shiny/685.webp differ diff --git a/static/sprites-small/home/shiny/686.webp b/static/sprites-small/home/shiny/686.webp index b89fc43..260c196 100644 Binary files a/static/sprites-small/home/shiny/686.webp and b/static/sprites-small/home/shiny/686.webp differ diff --git a/static/sprites-small/home/shiny/687.webp b/static/sprites-small/home/shiny/687.webp index 01e89d0..b95bc0e 100644 Binary files a/static/sprites-small/home/shiny/687.webp and b/static/sprites-small/home/shiny/687.webp differ diff --git a/static/sprites-small/home/shiny/688.webp b/static/sprites-small/home/shiny/688.webp index f64b596..c64d657 100644 Binary files a/static/sprites-small/home/shiny/688.webp and b/static/sprites-small/home/shiny/688.webp differ diff --git a/static/sprites-small/home/shiny/689.webp b/static/sprites-small/home/shiny/689.webp index 1671a26..7d41426 100644 Binary files a/static/sprites-small/home/shiny/689.webp and b/static/sprites-small/home/shiny/689.webp differ diff --git a/static/sprites-small/home/shiny/69.webp b/static/sprites-small/home/shiny/69.webp index b5fabbd..26ce267 100644 Binary files a/static/sprites-small/home/shiny/69.webp and b/static/sprites-small/home/shiny/69.webp differ diff --git a/static/sprites-small/home/shiny/690.webp b/static/sprites-small/home/shiny/690.webp index 461c39c..3ff79ce 100644 Binary files a/static/sprites-small/home/shiny/690.webp and b/static/sprites-small/home/shiny/690.webp differ diff --git a/static/sprites-small/home/shiny/691.webp b/static/sprites-small/home/shiny/691.webp index 193cdce..d54998e 100644 Binary files a/static/sprites-small/home/shiny/691.webp and b/static/sprites-small/home/shiny/691.webp differ diff --git a/static/sprites-small/home/shiny/692.webp b/static/sprites-small/home/shiny/692.webp index 5a4eb11..ffa4fab 100644 Binary files a/static/sprites-small/home/shiny/692.webp and b/static/sprites-small/home/shiny/692.webp differ diff --git a/static/sprites-small/home/shiny/693.webp b/static/sprites-small/home/shiny/693.webp index e33ea9f..ff37b3a 100644 Binary files a/static/sprites-small/home/shiny/693.webp and b/static/sprites-small/home/shiny/693.webp differ diff --git a/static/sprites-small/home/shiny/694.webp b/static/sprites-small/home/shiny/694.webp index 98a8828..8c65dc5 100644 Binary files a/static/sprites-small/home/shiny/694.webp and b/static/sprites-small/home/shiny/694.webp differ diff --git a/static/sprites-small/home/shiny/695.webp b/static/sprites-small/home/shiny/695.webp index 061ff9e..3c2e744 100644 Binary files a/static/sprites-small/home/shiny/695.webp and b/static/sprites-small/home/shiny/695.webp differ diff --git a/static/sprites-small/home/shiny/696.webp b/static/sprites-small/home/shiny/696.webp index 04695b4..b66d7da 100644 Binary files a/static/sprites-small/home/shiny/696.webp and b/static/sprites-small/home/shiny/696.webp differ diff --git a/static/sprites-small/home/shiny/697.webp b/static/sprites-small/home/shiny/697.webp index 35c6a30..99dcbb8 100644 Binary files a/static/sprites-small/home/shiny/697.webp and b/static/sprites-small/home/shiny/697.webp differ diff --git a/static/sprites-small/home/shiny/698.webp b/static/sprites-small/home/shiny/698.webp index 8391fcd..d0a4730 100644 Binary files a/static/sprites-small/home/shiny/698.webp and b/static/sprites-small/home/shiny/698.webp differ diff --git a/static/sprites-small/home/shiny/699.webp b/static/sprites-small/home/shiny/699.webp index 2656cba..71391de 100644 Binary files a/static/sprites-small/home/shiny/699.webp and b/static/sprites-small/home/shiny/699.webp differ diff --git a/static/sprites-small/home/shiny/7.webp b/static/sprites-small/home/shiny/7.webp index 8e7275a..bc75705 100644 Binary files a/static/sprites-small/home/shiny/7.webp and b/static/sprites-small/home/shiny/7.webp differ diff --git a/static/sprites-small/home/shiny/70.webp b/static/sprites-small/home/shiny/70.webp index 2e82296..f68a1b1 100644 Binary files a/static/sprites-small/home/shiny/70.webp and b/static/sprites-small/home/shiny/70.webp differ diff --git a/static/sprites-small/home/shiny/700.webp b/static/sprites-small/home/shiny/700.webp index 3c357b5..c5ad51d 100644 Binary files a/static/sprites-small/home/shiny/700.webp and b/static/sprites-small/home/shiny/700.webp differ diff --git a/static/sprites-small/home/shiny/701.webp b/static/sprites-small/home/shiny/701.webp index 7a57e6a..e4ffeac 100644 Binary files a/static/sprites-small/home/shiny/701.webp and b/static/sprites-small/home/shiny/701.webp differ diff --git a/static/sprites-small/home/shiny/702.webp b/static/sprites-small/home/shiny/702.webp index 81f1ca9..bfd77b9 100644 Binary files a/static/sprites-small/home/shiny/702.webp and b/static/sprites-small/home/shiny/702.webp differ diff --git a/static/sprites-small/home/shiny/703.webp b/static/sprites-small/home/shiny/703.webp index 119e1d6..e67eda6 100644 Binary files a/static/sprites-small/home/shiny/703.webp and b/static/sprites-small/home/shiny/703.webp differ diff --git a/static/sprites-small/home/shiny/704.webp b/static/sprites-small/home/shiny/704.webp index 081f715..bd4d37f 100644 Binary files a/static/sprites-small/home/shiny/704.webp and b/static/sprites-small/home/shiny/704.webp differ diff --git a/static/sprites-small/home/shiny/705.webp b/static/sprites-small/home/shiny/705.webp index 5cc5c9d..e7724c6 100644 Binary files a/static/sprites-small/home/shiny/705.webp and b/static/sprites-small/home/shiny/705.webp differ diff --git a/static/sprites-small/home/shiny/706.webp b/static/sprites-small/home/shiny/706.webp index 276ce77..a80af2e 100644 Binary files a/static/sprites-small/home/shiny/706.webp and b/static/sprites-small/home/shiny/706.webp differ diff --git a/static/sprites-small/home/shiny/707.webp b/static/sprites-small/home/shiny/707.webp index b6ac206..56d579c 100644 Binary files a/static/sprites-small/home/shiny/707.webp and b/static/sprites-small/home/shiny/707.webp differ diff --git a/static/sprites-small/home/shiny/708.webp b/static/sprites-small/home/shiny/708.webp index 1b52a22..f35dd4a 100644 Binary files a/static/sprites-small/home/shiny/708.webp and b/static/sprites-small/home/shiny/708.webp differ diff --git a/static/sprites-small/home/shiny/709.webp b/static/sprites-small/home/shiny/709.webp index 9b4c939..d6540c0 100644 Binary files a/static/sprites-small/home/shiny/709.webp and b/static/sprites-small/home/shiny/709.webp differ diff --git a/static/sprites-small/home/shiny/71.webp b/static/sprites-small/home/shiny/71.webp index 8602cd3..a4ef72a 100644 Binary files a/static/sprites-small/home/shiny/71.webp and b/static/sprites-small/home/shiny/71.webp differ diff --git a/static/sprites-small/home/shiny/710.webp b/static/sprites-small/home/shiny/710.webp index 1fb1806..714a523 100644 Binary files a/static/sprites-small/home/shiny/710.webp and b/static/sprites-small/home/shiny/710.webp differ diff --git a/static/sprites-small/home/shiny/711.webp b/static/sprites-small/home/shiny/711.webp index efd55d8..e1fada6 100644 Binary files a/static/sprites-small/home/shiny/711.webp and b/static/sprites-small/home/shiny/711.webp differ diff --git a/static/sprites-small/home/shiny/712.webp b/static/sprites-small/home/shiny/712.webp index c2d14af..107b5ba 100644 Binary files a/static/sprites-small/home/shiny/712.webp and b/static/sprites-small/home/shiny/712.webp differ diff --git a/static/sprites-small/home/shiny/713.webp b/static/sprites-small/home/shiny/713.webp index bb35e2b..d73bde6 100644 Binary files a/static/sprites-small/home/shiny/713.webp and b/static/sprites-small/home/shiny/713.webp differ diff --git a/static/sprites-small/home/shiny/714.webp b/static/sprites-small/home/shiny/714.webp index dd70d1a..092be4f 100644 Binary files a/static/sprites-small/home/shiny/714.webp and b/static/sprites-small/home/shiny/714.webp differ diff --git a/static/sprites-small/home/shiny/715.webp b/static/sprites-small/home/shiny/715.webp index bc559f5..a964706 100644 Binary files a/static/sprites-small/home/shiny/715.webp and b/static/sprites-small/home/shiny/715.webp differ diff --git a/static/sprites-small/home/shiny/716-active.webp b/static/sprites-small/home/shiny/716-active.webp index 6c6c389..d38727a 100644 Binary files a/static/sprites-small/home/shiny/716-active.webp and b/static/sprites-small/home/shiny/716-active.webp differ diff --git a/static/sprites-small/home/shiny/716-neutral.webp b/static/sprites-small/home/shiny/716-neutral.webp index 55050ad..3fa5cba 100644 Binary files a/static/sprites-small/home/shiny/716-neutral.webp and b/static/sprites-small/home/shiny/716-neutral.webp differ diff --git a/static/sprites-small/home/shiny/716.webp b/static/sprites-small/home/shiny/716.webp index 55050ad..3fa5cba 100644 Binary files a/static/sprites-small/home/shiny/716.webp and b/static/sprites-small/home/shiny/716.webp differ diff --git a/static/sprites-small/home/shiny/717.webp b/static/sprites-small/home/shiny/717.webp index 6c012ee..09420c1 100644 Binary files a/static/sprites-small/home/shiny/717.webp and b/static/sprites-small/home/shiny/717.webp differ diff --git a/static/sprites-small/home/shiny/718.webp b/static/sprites-small/home/shiny/718.webp index a38452a..92be540 100644 Binary files a/static/sprites-small/home/shiny/718.webp and b/static/sprites-small/home/shiny/718.webp differ diff --git a/static/sprites-small/home/shiny/719.webp b/static/sprites-small/home/shiny/719.webp index 044b7b7..1b927a2 100644 Binary files a/static/sprites-small/home/shiny/719.webp and b/static/sprites-small/home/shiny/719.webp differ diff --git a/static/sprites-small/home/shiny/72.webp b/static/sprites-small/home/shiny/72.webp index 1a87739..c5f63ee 100644 Binary files a/static/sprites-small/home/shiny/72.webp and b/static/sprites-small/home/shiny/72.webp differ diff --git a/static/sprites-small/home/shiny/720.webp b/static/sprites-small/home/shiny/720.webp index 9628ddf..8d87bc3 100644 Binary files a/static/sprites-small/home/shiny/720.webp and b/static/sprites-small/home/shiny/720.webp differ diff --git a/static/sprites-small/home/shiny/721.webp b/static/sprites-small/home/shiny/721.webp index de4d01d..73c6ad9 100644 Binary files a/static/sprites-small/home/shiny/721.webp and b/static/sprites-small/home/shiny/721.webp differ diff --git a/static/sprites-small/home/shiny/722.webp b/static/sprites-small/home/shiny/722.webp index d8b7653..779d62f 100644 Binary files a/static/sprites-small/home/shiny/722.webp and b/static/sprites-small/home/shiny/722.webp differ diff --git a/static/sprites-small/home/shiny/723.webp b/static/sprites-small/home/shiny/723.webp index 1e5f09c..740c3d1 100644 Binary files a/static/sprites-small/home/shiny/723.webp and b/static/sprites-small/home/shiny/723.webp differ diff --git a/static/sprites-small/home/shiny/724.webp b/static/sprites-small/home/shiny/724.webp index 0151547..ce861c9 100644 Binary files a/static/sprites-small/home/shiny/724.webp and b/static/sprites-small/home/shiny/724.webp differ diff --git a/static/sprites-small/home/shiny/725.webp b/static/sprites-small/home/shiny/725.webp index 33fd320..9856f96 100644 Binary files a/static/sprites-small/home/shiny/725.webp and b/static/sprites-small/home/shiny/725.webp differ diff --git a/static/sprites-small/home/shiny/726.webp b/static/sprites-small/home/shiny/726.webp index 8964572..8913260 100644 Binary files a/static/sprites-small/home/shiny/726.webp and b/static/sprites-small/home/shiny/726.webp differ diff --git a/static/sprites-small/home/shiny/727.webp b/static/sprites-small/home/shiny/727.webp index 83e88d7..5b247cc 100644 Binary files a/static/sprites-small/home/shiny/727.webp and b/static/sprites-small/home/shiny/727.webp differ diff --git a/static/sprites-small/home/shiny/728.webp b/static/sprites-small/home/shiny/728.webp index 684e978..f6cfd2a 100644 Binary files a/static/sprites-small/home/shiny/728.webp and b/static/sprites-small/home/shiny/728.webp differ diff --git a/static/sprites-small/home/shiny/729.webp b/static/sprites-small/home/shiny/729.webp index d475d3e..a9e2a58 100644 Binary files a/static/sprites-small/home/shiny/729.webp and b/static/sprites-small/home/shiny/729.webp differ diff --git a/static/sprites-small/home/shiny/73.webp b/static/sprites-small/home/shiny/73.webp index cb3101f..c4c585b 100644 Binary files a/static/sprites-small/home/shiny/73.webp and b/static/sprites-small/home/shiny/73.webp differ diff --git a/static/sprites-small/home/shiny/730.webp b/static/sprites-small/home/shiny/730.webp index 821210e..c635edf 100644 Binary files a/static/sprites-small/home/shiny/730.webp and b/static/sprites-small/home/shiny/730.webp differ diff --git a/static/sprites-small/home/shiny/731.webp b/static/sprites-small/home/shiny/731.webp index a99b673..e4845f2 100644 Binary files a/static/sprites-small/home/shiny/731.webp and b/static/sprites-small/home/shiny/731.webp differ diff --git a/static/sprites-small/home/shiny/732.webp b/static/sprites-small/home/shiny/732.webp index 17fb49d..5b77138 100644 Binary files a/static/sprites-small/home/shiny/732.webp and b/static/sprites-small/home/shiny/732.webp differ diff --git a/static/sprites-small/home/shiny/733.webp b/static/sprites-small/home/shiny/733.webp index 67046d3..c0425ec 100644 Binary files a/static/sprites-small/home/shiny/733.webp and b/static/sprites-small/home/shiny/733.webp differ diff --git a/static/sprites-small/home/shiny/734.webp b/static/sprites-small/home/shiny/734.webp index a7874b9..e4355cb 100644 Binary files a/static/sprites-small/home/shiny/734.webp and b/static/sprites-small/home/shiny/734.webp differ diff --git a/static/sprites-small/home/shiny/735.webp b/static/sprites-small/home/shiny/735.webp index d3bbb33..193b64b 100644 Binary files a/static/sprites-small/home/shiny/735.webp and b/static/sprites-small/home/shiny/735.webp differ diff --git a/static/sprites-small/home/shiny/736.webp b/static/sprites-small/home/shiny/736.webp index fc7f948..e284b04 100644 Binary files a/static/sprites-small/home/shiny/736.webp and b/static/sprites-small/home/shiny/736.webp differ diff --git a/static/sprites-small/home/shiny/737.webp b/static/sprites-small/home/shiny/737.webp index 1631837..0b612e0 100644 Binary files a/static/sprites-small/home/shiny/737.webp and b/static/sprites-small/home/shiny/737.webp differ diff --git a/static/sprites-small/home/shiny/738.webp b/static/sprites-small/home/shiny/738.webp index c7c9403..427399c 100644 Binary files a/static/sprites-small/home/shiny/738.webp and b/static/sprites-small/home/shiny/738.webp differ diff --git a/static/sprites-small/home/shiny/739.webp b/static/sprites-small/home/shiny/739.webp index 79c5c84..fefb743 100644 Binary files a/static/sprites-small/home/shiny/739.webp and b/static/sprites-small/home/shiny/739.webp differ diff --git a/static/sprites-small/home/shiny/74.webp b/static/sprites-small/home/shiny/74.webp index 61b2d3a..57ab9d9 100644 Binary files a/static/sprites-small/home/shiny/74.webp and b/static/sprites-small/home/shiny/74.webp differ diff --git a/static/sprites-small/home/shiny/740.webp b/static/sprites-small/home/shiny/740.webp index 61fdaba..398fd71 100644 Binary files a/static/sprites-small/home/shiny/740.webp and b/static/sprites-small/home/shiny/740.webp differ diff --git a/static/sprites-small/home/shiny/741.webp b/static/sprites-small/home/shiny/741.webp index e3930b1..596b816 100644 Binary files a/static/sprites-small/home/shiny/741.webp and b/static/sprites-small/home/shiny/741.webp differ diff --git a/static/sprites-small/home/shiny/742.webp b/static/sprites-small/home/shiny/742.webp index 38af45d..cbb71f7 100644 Binary files a/static/sprites-small/home/shiny/742.webp and b/static/sprites-small/home/shiny/742.webp differ diff --git a/static/sprites-small/home/shiny/743.webp b/static/sprites-small/home/shiny/743.webp index 465e46b..bee65fb 100644 Binary files a/static/sprites-small/home/shiny/743.webp and b/static/sprites-small/home/shiny/743.webp differ diff --git a/static/sprites-small/home/shiny/744.webp b/static/sprites-small/home/shiny/744.webp index 4ebd52c..b23e32f 100644 Binary files a/static/sprites-small/home/shiny/744.webp and b/static/sprites-small/home/shiny/744.webp differ diff --git a/static/sprites-small/home/shiny/745.webp b/static/sprites-small/home/shiny/745.webp index abf724c..b34fdb3 100644 Binary files a/static/sprites-small/home/shiny/745.webp and b/static/sprites-small/home/shiny/745.webp differ diff --git a/static/sprites-small/home/shiny/746.webp b/static/sprites-small/home/shiny/746.webp index 56e16f0..97ae7d5 100644 Binary files a/static/sprites-small/home/shiny/746.webp and b/static/sprites-small/home/shiny/746.webp differ diff --git a/static/sprites-small/home/shiny/747.webp b/static/sprites-small/home/shiny/747.webp index b75da1c..ca1265d 100644 Binary files a/static/sprites-small/home/shiny/747.webp and b/static/sprites-small/home/shiny/747.webp differ diff --git a/static/sprites-small/home/shiny/748.webp b/static/sprites-small/home/shiny/748.webp index 42199c6..5990d81 100644 Binary files a/static/sprites-small/home/shiny/748.webp and b/static/sprites-small/home/shiny/748.webp differ diff --git a/static/sprites-small/home/shiny/749.webp b/static/sprites-small/home/shiny/749.webp index 16b7477..e5e3550 100644 Binary files a/static/sprites-small/home/shiny/749.webp and b/static/sprites-small/home/shiny/749.webp differ diff --git a/static/sprites-small/home/shiny/75.webp b/static/sprites-small/home/shiny/75.webp index 7a8a5e1..0bf48f1 100644 Binary files a/static/sprites-small/home/shiny/75.webp and b/static/sprites-small/home/shiny/75.webp differ diff --git a/static/sprites-small/home/shiny/750.webp b/static/sprites-small/home/shiny/750.webp index 31ef6ba..b86a0da 100644 Binary files a/static/sprites-small/home/shiny/750.webp and b/static/sprites-small/home/shiny/750.webp differ diff --git a/static/sprites-small/home/shiny/751.webp b/static/sprites-small/home/shiny/751.webp index 8c86f28..4b78890 100644 Binary files a/static/sprites-small/home/shiny/751.webp and b/static/sprites-small/home/shiny/751.webp differ diff --git a/static/sprites-small/home/shiny/752.webp b/static/sprites-small/home/shiny/752.webp index bfe92a1..990d8e0 100644 Binary files a/static/sprites-small/home/shiny/752.webp and b/static/sprites-small/home/shiny/752.webp differ diff --git a/static/sprites-small/home/shiny/753.webp b/static/sprites-small/home/shiny/753.webp index c7cdd6f..4cc7165 100644 Binary files a/static/sprites-small/home/shiny/753.webp and b/static/sprites-small/home/shiny/753.webp differ diff --git a/static/sprites-small/home/shiny/754.webp b/static/sprites-small/home/shiny/754.webp index 830bddd..863d17b 100644 Binary files a/static/sprites-small/home/shiny/754.webp and b/static/sprites-small/home/shiny/754.webp differ diff --git a/static/sprites-small/home/shiny/755.webp b/static/sprites-small/home/shiny/755.webp index c08ba5f..e9a2737 100644 Binary files a/static/sprites-small/home/shiny/755.webp and b/static/sprites-small/home/shiny/755.webp differ diff --git a/static/sprites-small/home/shiny/756.webp b/static/sprites-small/home/shiny/756.webp index 242a624..d259665 100644 Binary files a/static/sprites-small/home/shiny/756.webp and b/static/sprites-small/home/shiny/756.webp differ diff --git a/static/sprites-small/home/shiny/757.webp b/static/sprites-small/home/shiny/757.webp index 18106db..3b2f4a9 100644 Binary files a/static/sprites-small/home/shiny/757.webp and b/static/sprites-small/home/shiny/757.webp differ diff --git a/static/sprites-small/home/shiny/758.webp b/static/sprites-small/home/shiny/758.webp index 9a5270f..4328b49 100644 Binary files a/static/sprites-small/home/shiny/758.webp and b/static/sprites-small/home/shiny/758.webp differ diff --git a/static/sprites-small/home/shiny/759.webp b/static/sprites-small/home/shiny/759.webp index a948c7c..9c16000 100644 Binary files a/static/sprites-small/home/shiny/759.webp and b/static/sprites-small/home/shiny/759.webp differ diff --git a/static/sprites-small/home/shiny/76.webp b/static/sprites-small/home/shiny/76.webp index 514d881..bc177cb 100644 Binary files a/static/sprites-small/home/shiny/76.webp and b/static/sprites-small/home/shiny/76.webp differ diff --git a/static/sprites-small/home/shiny/760.webp b/static/sprites-small/home/shiny/760.webp index b040ffe..7cf4a63 100644 Binary files a/static/sprites-small/home/shiny/760.webp and b/static/sprites-small/home/shiny/760.webp differ diff --git a/static/sprites-small/home/shiny/761.webp b/static/sprites-small/home/shiny/761.webp index a8c9828..7b16bdf 100644 Binary files a/static/sprites-small/home/shiny/761.webp and b/static/sprites-small/home/shiny/761.webp differ diff --git a/static/sprites-small/home/shiny/762.webp b/static/sprites-small/home/shiny/762.webp index ea8867c..d9588d8 100644 Binary files a/static/sprites-small/home/shiny/762.webp and b/static/sprites-small/home/shiny/762.webp differ diff --git a/static/sprites-small/home/shiny/763.webp b/static/sprites-small/home/shiny/763.webp index 81c82f2..857ac0c 100644 Binary files a/static/sprites-small/home/shiny/763.webp and b/static/sprites-small/home/shiny/763.webp differ diff --git a/static/sprites-small/home/shiny/764.webp b/static/sprites-small/home/shiny/764.webp index 2682f0c..4d723aa 100644 Binary files a/static/sprites-small/home/shiny/764.webp and b/static/sprites-small/home/shiny/764.webp differ diff --git a/static/sprites-small/home/shiny/765.webp b/static/sprites-small/home/shiny/765.webp index 9f8b904..aa31c5d 100644 Binary files a/static/sprites-small/home/shiny/765.webp and b/static/sprites-small/home/shiny/765.webp differ diff --git a/static/sprites-small/home/shiny/766.webp b/static/sprites-small/home/shiny/766.webp index 84c24aa..e97a378 100644 Binary files a/static/sprites-small/home/shiny/766.webp and b/static/sprites-small/home/shiny/766.webp differ diff --git a/static/sprites-small/home/shiny/767.webp b/static/sprites-small/home/shiny/767.webp index 07eeafb..ac18244 100644 Binary files a/static/sprites-small/home/shiny/767.webp and b/static/sprites-small/home/shiny/767.webp differ diff --git a/static/sprites-small/home/shiny/768.webp b/static/sprites-small/home/shiny/768.webp index 0b0bcd6..fd3257f 100644 Binary files a/static/sprites-small/home/shiny/768.webp and b/static/sprites-small/home/shiny/768.webp differ diff --git a/static/sprites-small/home/shiny/769.webp b/static/sprites-small/home/shiny/769.webp index 5a0b0d8..67c3e6d 100644 Binary files a/static/sprites-small/home/shiny/769.webp and b/static/sprites-small/home/shiny/769.webp differ diff --git a/static/sprites-small/home/shiny/77.webp b/static/sprites-small/home/shiny/77.webp index b0aff1c..ec299de 100644 Binary files a/static/sprites-small/home/shiny/77.webp and b/static/sprites-small/home/shiny/77.webp differ diff --git a/static/sprites-small/home/shiny/770.webp b/static/sprites-small/home/shiny/770.webp index 795802e..ea878ae 100644 Binary files a/static/sprites-small/home/shiny/770.webp and b/static/sprites-small/home/shiny/770.webp differ diff --git a/static/sprites-small/home/shiny/771.webp b/static/sprites-small/home/shiny/771.webp index 5a8f5c1..6f63163 100644 Binary files a/static/sprites-small/home/shiny/771.webp and b/static/sprites-small/home/shiny/771.webp differ diff --git a/static/sprites-small/home/shiny/772.webp b/static/sprites-small/home/shiny/772.webp index 3bdf9fe..a932c9c 100644 Binary files a/static/sprites-small/home/shiny/772.webp and b/static/sprites-small/home/shiny/772.webp differ diff --git a/static/sprites-small/home/shiny/773-bug.webp b/static/sprites-small/home/shiny/773-bug.webp index d25a736..7dd9d58 100644 Binary files a/static/sprites-small/home/shiny/773-bug.webp and b/static/sprites-small/home/shiny/773-bug.webp differ diff --git a/static/sprites-small/home/shiny/773-dark.webp b/static/sprites-small/home/shiny/773-dark.webp index fbb0684..0ca3926 100644 Binary files a/static/sprites-small/home/shiny/773-dark.webp and b/static/sprites-small/home/shiny/773-dark.webp differ diff --git a/static/sprites-small/home/shiny/773-dragon.webp b/static/sprites-small/home/shiny/773-dragon.webp index ea64eac..1f7fd3a 100644 Binary files a/static/sprites-small/home/shiny/773-dragon.webp and b/static/sprites-small/home/shiny/773-dragon.webp differ diff --git a/static/sprites-small/home/shiny/773-electric.webp b/static/sprites-small/home/shiny/773-electric.webp index 6f59429..97674c4 100644 Binary files a/static/sprites-small/home/shiny/773-electric.webp and b/static/sprites-small/home/shiny/773-electric.webp differ diff --git a/static/sprites-small/home/shiny/773-fairy.webp b/static/sprites-small/home/shiny/773-fairy.webp index f70a48d..938ea94 100644 Binary files a/static/sprites-small/home/shiny/773-fairy.webp and b/static/sprites-small/home/shiny/773-fairy.webp differ diff --git a/static/sprites-small/home/shiny/773-fighting.webp b/static/sprites-small/home/shiny/773-fighting.webp index f55a14b..0ba3958 100644 Binary files a/static/sprites-small/home/shiny/773-fighting.webp and b/static/sprites-small/home/shiny/773-fighting.webp differ diff --git a/static/sprites-small/home/shiny/773-fire.webp b/static/sprites-small/home/shiny/773-fire.webp index eeb0522..c233b9c 100644 Binary files a/static/sprites-small/home/shiny/773-fire.webp and b/static/sprites-small/home/shiny/773-fire.webp differ diff --git a/static/sprites-small/home/shiny/773-flying.webp b/static/sprites-small/home/shiny/773-flying.webp index cba3f94..fcfbbdd 100644 Binary files a/static/sprites-small/home/shiny/773-flying.webp and b/static/sprites-small/home/shiny/773-flying.webp differ diff --git a/static/sprites-small/home/shiny/773-ghost.webp b/static/sprites-small/home/shiny/773-ghost.webp index a2148d4..4e6b1fb 100644 Binary files a/static/sprites-small/home/shiny/773-ghost.webp and b/static/sprites-small/home/shiny/773-ghost.webp differ diff --git a/static/sprites-small/home/shiny/773-grass.webp b/static/sprites-small/home/shiny/773-grass.webp index 94274e1..dd451cf 100644 Binary files a/static/sprites-small/home/shiny/773-grass.webp and b/static/sprites-small/home/shiny/773-grass.webp differ diff --git a/static/sprites-small/home/shiny/773-ground.webp b/static/sprites-small/home/shiny/773-ground.webp index 93ab06c..20c15f3 100644 Binary files a/static/sprites-small/home/shiny/773-ground.webp and b/static/sprites-small/home/shiny/773-ground.webp differ diff --git a/static/sprites-small/home/shiny/773-ice.webp b/static/sprites-small/home/shiny/773-ice.webp index 6f3cc42..0981ab3 100644 Binary files a/static/sprites-small/home/shiny/773-ice.webp and b/static/sprites-small/home/shiny/773-ice.webp differ diff --git a/static/sprites-small/home/shiny/773-normal.webp b/static/sprites-small/home/shiny/773-normal.webp index 6d99866..ccc335d 100644 Binary files a/static/sprites-small/home/shiny/773-normal.webp and b/static/sprites-small/home/shiny/773-normal.webp differ diff --git a/static/sprites-small/home/shiny/773-poison.webp b/static/sprites-small/home/shiny/773-poison.webp index da8b1ce..bb64f43 100644 Binary files a/static/sprites-small/home/shiny/773-poison.webp and b/static/sprites-small/home/shiny/773-poison.webp differ diff --git a/static/sprites-small/home/shiny/773-psychic.webp b/static/sprites-small/home/shiny/773-psychic.webp index 97cac6e..4526747 100644 Binary files a/static/sprites-small/home/shiny/773-psychic.webp and b/static/sprites-small/home/shiny/773-psychic.webp differ diff --git a/static/sprites-small/home/shiny/773-rock.webp b/static/sprites-small/home/shiny/773-rock.webp index 8664d86..b5f0c1c 100644 Binary files a/static/sprites-small/home/shiny/773-rock.webp and b/static/sprites-small/home/shiny/773-rock.webp differ diff --git a/static/sprites-small/home/shiny/773-steel.webp b/static/sprites-small/home/shiny/773-steel.webp index ca55043..7a38096 100644 Binary files a/static/sprites-small/home/shiny/773-steel.webp and b/static/sprites-small/home/shiny/773-steel.webp differ diff --git a/static/sprites-small/home/shiny/773-water.webp b/static/sprites-small/home/shiny/773-water.webp index 79a2a66..1c5ea8a 100644 Binary files a/static/sprites-small/home/shiny/773-water.webp and b/static/sprites-small/home/shiny/773-water.webp differ diff --git a/static/sprites-small/home/shiny/773.webp b/static/sprites-small/home/shiny/773.webp index 6d99866..ccc335d 100644 Binary files a/static/sprites-small/home/shiny/773.webp and b/static/sprites-small/home/shiny/773.webp differ diff --git a/static/sprites-small/home/shiny/774.webp b/static/sprites-small/home/shiny/774.webp index e127bfd..5948764 100644 Binary files a/static/sprites-small/home/shiny/774.webp and b/static/sprites-small/home/shiny/774.webp differ diff --git a/static/sprites-small/home/shiny/775.webp b/static/sprites-small/home/shiny/775.webp index f90e552..adef2c7 100644 Binary files a/static/sprites-small/home/shiny/775.webp and b/static/sprites-small/home/shiny/775.webp differ diff --git a/static/sprites-small/home/shiny/776.webp b/static/sprites-small/home/shiny/776.webp index e94a124..91f94ee 100644 Binary files a/static/sprites-small/home/shiny/776.webp and b/static/sprites-small/home/shiny/776.webp differ diff --git a/static/sprites-small/home/shiny/777.webp b/static/sprites-small/home/shiny/777.webp index 4a33710..56bdd34 100644 Binary files a/static/sprites-small/home/shiny/777.webp and b/static/sprites-small/home/shiny/777.webp differ diff --git a/static/sprites-small/home/shiny/778.webp b/static/sprites-small/home/shiny/778.webp index 858c2c1..2d8b0d4 100644 Binary files a/static/sprites-small/home/shiny/778.webp and b/static/sprites-small/home/shiny/778.webp differ diff --git a/static/sprites-small/home/shiny/779.webp b/static/sprites-small/home/shiny/779.webp index cbcca3b..386a8ef 100644 Binary files a/static/sprites-small/home/shiny/779.webp and b/static/sprites-small/home/shiny/779.webp differ diff --git a/static/sprites-small/home/shiny/78.webp b/static/sprites-small/home/shiny/78.webp index b0688c1..321b38d 100644 Binary files a/static/sprites-small/home/shiny/78.webp and b/static/sprites-small/home/shiny/78.webp differ diff --git a/static/sprites-small/home/shiny/780.webp b/static/sprites-small/home/shiny/780.webp index 225fd90..b76b879 100644 Binary files a/static/sprites-small/home/shiny/780.webp and b/static/sprites-small/home/shiny/780.webp differ diff --git a/static/sprites-small/home/shiny/781.webp b/static/sprites-small/home/shiny/781.webp index d3f7b63..211b3df 100644 Binary files a/static/sprites-small/home/shiny/781.webp and b/static/sprites-small/home/shiny/781.webp differ diff --git a/static/sprites-small/home/shiny/782.webp b/static/sprites-small/home/shiny/782.webp index 07cd7d3..e6fcfae 100644 Binary files a/static/sprites-small/home/shiny/782.webp and b/static/sprites-small/home/shiny/782.webp differ diff --git a/static/sprites-small/home/shiny/783.webp b/static/sprites-small/home/shiny/783.webp index a833bc3..b5888ec 100644 Binary files a/static/sprites-small/home/shiny/783.webp and b/static/sprites-small/home/shiny/783.webp differ diff --git a/static/sprites-small/home/shiny/784.webp b/static/sprites-small/home/shiny/784.webp index f11534d..1e2dcbf 100644 Binary files a/static/sprites-small/home/shiny/784.webp and b/static/sprites-small/home/shiny/784.webp differ diff --git a/static/sprites-small/home/shiny/785.webp b/static/sprites-small/home/shiny/785.webp index 2ab3dc0..8371e67 100644 Binary files a/static/sprites-small/home/shiny/785.webp and b/static/sprites-small/home/shiny/785.webp differ diff --git a/static/sprites-small/home/shiny/786.webp b/static/sprites-small/home/shiny/786.webp index e5edc12..05bbab3 100644 Binary files a/static/sprites-small/home/shiny/786.webp and b/static/sprites-small/home/shiny/786.webp differ diff --git a/static/sprites-small/home/shiny/787.webp b/static/sprites-small/home/shiny/787.webp index 858f5d1..15673be 100644 Binary files a/static/sprites-small/home/shiny/787.webp and b/static/sprites-small/home/shiny/787.webp differ diff --git a/static/sprites-small/home/shiny/788.webp b/static/sprites-small/home/shiny/788.webp index aa971b7..2eb2292 100644 Binary files a/static/sprites-small/home/shiny/788.webp and b/static/sprites-small/home/shiny/788.webp differ diff --git a/static/sprites-small/home/shiny/789.webp b/static/sprites-small/home/shiny/789.webp index 178afad..feb2513 100644 Binary files a/static/sprites-small/home/shiny/789.webp and b/static/sprites-small/home/shiny/789.webp differ diff --git a/static/sprites-small/home/shiny/79.webp b/static/sprites-small/home/shiny/79.webp index 61bf410..739269a 100644 Binary files a/static/sprites-small/home/shiny/79.webp and b/static/sprites-small/home/shiny/79.webp differ diff --git a/static/sprites-small/home/shiny/790.webp b/static/sprites-small/home/shiny/790.webp index 6ab3ae0..d71d8ef 100644 Binary files a/static/sprites-small/home/shiny/790.webp and b/static/sprites-small/home/shiny/790.webp differ diff --git a/static/sprites-small/home/shiny/791.webp b/static/sprites-small/home/shiny/791.webp index 4f1acce..ffe85ac 100644 Binary files a/static/sprites-small/home/shiny/791.webp and b/static/sprites-small/home/shiny/791.webp differ diff --git a/static/sprites-small/home/shiny/792.webp b/static/sprites-small/home/shiny/792.webp index 532ecc4..1b2f173 100644 Binary files a/static/sprites-small/home/shiny/792.webp and b/static/sprites-small/home/shiny/792.webp differ diff --git a/static/sprites-small/home/shiny/793.webp b/static/sprites-small/home/shiny/793.webp index a8c192f..54c0ddc 100644 Binary files a/static/sprites-small/home/shiny/793.webp and b/static/sprites-small/home/shiny/793.webp differ diff --git a/static/sprites-small/home/shiny/794.webp b/static/sprites-small/home/shiny/794.webp index de9dc38..881e420 100644 Binary files a/static/sprites-small/home/shiny/794.webp and b/static/sprites-small/home/shiny/794.webp differ diff --git a/static/sprites-small/home/shiny/795.webp b/static/sprites-small/home/shiny/795.webp index 0b343b2..ea5c14d 100644 Binary files a/static/sprites-small/home/shiny/795.webp and b/static/sprites-small/home/shiny/795.webp differ diff --git a/static/sprites-small/home/shiny/796.webp b/static/sprites-small/home/shiny/796.webp index ec32a00..94d3cfd 100644 Binary files a/static/sprites-small/home/shiny/796.webp and b/static/sprites-small/home/shiny/796.webp differ diff --git a/static/sprites-small/home/shiny/797.webp b/static/sprites-small/home/shiny/797.webp index 09bdb33..29e28a1 100644 Binary files a/static/sprites-small/home/shiny/797.webp and b/static/sprites-small/home/shiny/797.webp differ diff --git a/static/sprites-small/home/shiny/798.webp b/static/sprites-small/home/shiny/798.webp index c7c620f..559a59f 100644 Binary files a/static/sprites-small/home/shiny/798.webp and b/static/sprites-small/home/shiny/798.webp differ diff --git a/static/sprites-small/home/shiny/799.webp b/static/sprites-small/home/shiny/799.webp index ab58a0e..8deacd3 100644 Binary files a/static/sprites-small/home/shiny/799.webp and b/static/sprites-small/home/shiny/799.webp differ diff --git a/static/sprites-small/home/shiny/8.webp b/static/sprites-small/home/shiny/8.webp index d8f6c2a..403e425 100644 Binary files a/static/sprites-small/home/shiny/8.webp and b/static/sprites-small/home/shiny/8.webp differ diff --git a/static/sprites-small/home/shiny/80.webp b/static/sprites-small/home/shiny/80.webp index 87e80b6..2f4fae0 100644 Binary files a/static/sprites-small/home/shiny/80.webp and b/static/sprites-small/home/shiny/80.webp differ diff --git a/static/sprites-small/home/shiny/800.webp b/static/sprites-small/home/shiny/800.webp index 574e5f2..95359bf 100644 Binary files a/static/sprites-small/home/shiny/800.webp and b/static/sprites-small/home/shiny/800.webp differ diff --git a/static/sprites-small/home/shiny/801.webp b/static/sprites-small/home/shiny/801.webp index 197f50c..cb611f6 100644 Binary files a/static/sprites-small/home/shiny/801.webp and b/static/sprites-small/home/shiny/801.webp differ diff --git a/static/sprites-small/home/shiny/802.webp b/static/sprites-small/home/shiny/802.webp index bff3ded..c5acfcd 100644 Binary files a/static/sprites-small/home/shiny/802.webp and b/static/sprites-small/home/shiny/802.webp differ diff --git a/static/sprites-small/home/shiny/803.webp b/static/sprites-small/home/shiny/803.webp index 4d51cfd..7ee2109 100644 Binary files a/static/sprites-small/home/shiny/803.webp and b/static/sprites-small/home/shiny/803.webp differ diff --git a/static/sprites-small/home/shiny/804.webp b/static/sprites-small/home/shiny/804.webp index 8c25fe0..b2d557f 100644 Binary files a/static/sprites-small/home/shiny/804.webp and b/static/sprites-small/home/shiny/804.webp differ diff --git a/static/sprites-small/home/shiny/805.webp b/static/sprites-small/home/shiny/805.webp index f514b62..481b297 100644 Binary files a/static/sprites-small/home/shiny/805.webp and b/static/sprites-small/home/shiny/805.webp differ diff --git a/static/sprites-small/home/shiny/806.webp b/static/sprites-small/home/shiny/806.webp index 57f77cc..63f592f 100644 Binary files a/static/sprites-small/home/shiny/806.webp and b/static/sprites-small/home/shiny/806.webp differ diff --git a/static/sprites-small/home/shiny/807.webp b/static/sprites-small/home/shiny/807.webp index b2e5ef9..51612ea 100644 Binary files a/static/sprites-small/home/shiny/807.webp and b/static/sprites-small/home/shiny/807.webp differ diff --git a/static/sprites-small/home/shiny/808.webp b/static/sprites-small/home/shiny/808.webp index 3420f65..ef41393 100644 Binary files a/static/sprites-small/home/shiny/808.webp and b/static/sprites-small/home/shiny/808.webp differ diff --git a/static/sprites-small/home/shiny/809.webp b/static/sprites-small/home/shiny/809.webp index 66bcee6..4633e40 100644 Binary files a/static/sprites-small/home/shiny/809.webp and b/static/sprites-small/home/shiny/809.webp differ diff --git a/static/sprites-small/home/shiny/81.webp b/static/sprites-small/home/shiny/81.webp index 2974ae7..2b34387 100644 Binary files a/static/sprites-small/home/shiny/81.webp and b/static/sprites-small/home/shiny/81.webp differ diff --git a/static/sprites-small/home/shiny/810.webp b/static/sprites-small/home/shiny/810.webp index 45bfbd7..4175be7 100644 Binary files a/static/sprites-small/home/shiny/810.webp and b/static/sprites-small/home/shiny/810.webp differ diff --git a/static/sprites-small/home/shiny/811.webp b/static/sprites-small/home/shiny/811.webp index 02d02b7..c4a5ae6 100644 Binary files a/static/sprites-small/home/shiny/811.webp and b/static/sprites-small/home/shiny/811.webp differ diff --git a/static/sprites-small/home/shiny/812.webp b/static/sprites-small/home/shiny/812.webp index 7d3376c..1222eeb 100644 Binary files a/static/sprites-small/home/shiny/812.webp and b/static/sprites-small/home/shiny/812.webp differ diff --git a/static/sprites-small/home/shiny/813.webp b/static/sprites-small/home/shiny/813.webp index 93a539a..41b1314 100644 Binary files a/static/sprites-small/home/shiny/813.webp and b/static/sprites-small/home/shiny/813.webp differ diff --git a/static/sprites-small/home/shiny/814.webp b/static/sprites-small/home/shiny/814.webp index e195b46..e57ecc7 100644 Binary files a/static/sprites-small/home/shiny/814.webp and b/static/sprites-small/home/shiny/814.webp differ diff --git a/static/sprites-small/home/shiny/815.webp b/static/sprites-small/home/shiny/815.webp index a887988..c6a7dfb 100644 Binary files a/static/sprites-small/home/shiny/815.webp and b/static/sprites-small/home/shiny/815.webp differ diff --git a/static/sprites-small/home/shiny/816.webp b/static/sprites-small/home/shiny/816.webp index 062fa57..4f62e35 100644 Binary files a/static/sprites-small/home/shiny/816.webp and b/static/sprites-small/home/shiny/816.webp differ diff --git a/static/sprites-small/home/shiny/817.webp b/static/sprites-small/home/shiny/817.webp index 5a2fdaf..9806b77 100644 Binary files a/static/sprites-small/home/shiny/817.webp and b/static/sprites-small/home/shiny/817.webp differ diff --git a/static/sprites-small/home/shiny/818.webp b/static/sprites-small/home/shiny/818.webp index 5197c09..c9e3908 100644 Binary files a/static/sprites-small/home/shiny/818.webp and b/static/sprites-small/home/shiny/818.webp differ diff --git a/static/sprites-small/home/shiny/819.webp b/static/sprites-small/home/shiny/819.webp index de6bb9e..b7b9ce8 100644 Binary files a/static/sprites-small/home/shiny/819.webp and b/static/sprites-small/home/shiny/819.webp differ diff --git a/static/sprites-small/home/shiny/82.webp b/static/sprites-small/home/shiny/82.webp index 510c929..0aa8f2d 100644 Binary files a/static/sprites-small/home/shiny/82.webp and b/static/sprites-small/home/shiny/82.webp differ diff --git a/static/sprites-small/home/shiny/820.webp b/static/sprites-small/home/shiny/820.webp index 57018a5..31f6fa8 100644 Binary files a/static/sprites-small/home/shiny/820.webp and b/static/sprites-small/home/shiny/820.webp differ diff --git a/static/sprites-small/home/shiny/821.webp b/static/sprites-small/home/shiny/821.webp index 8b00af3..60f6835 100644 Binary files a/static/sprites-small/home/shiny/821.webp and b/static/sprites-small/home/shiny/821.webp differ diff --git a/static/sprites-small/home/shiny/822.webp b/static/sprites-small/home/shiny/822.webp index f7fb06e..3bb1f2c 100644 Binary files a/static/sprites-small/home/shiny/822.webp and b/static/sprites-small/home/shiny/822.webp differ diff --git a/static/sprites-small/home/shiny/823.webp b/static/sprites-small/home/shiny/823.webp index e13a804..da157b5 100644 Binary files a/static/sprites-small/home/shiny/823.webp and b/static/sprites-small/home/shiny/823.webp differ diff --git a/static/sprites-small/home/shiny/824.webp b/static/sprites-small/home/shiny/824.webp index d12c8ce..2229ca7 100644 Binary files a/static/sprites-small/home/shiny/824.webp and b/static/sprites-small/home/shiny/824.webp differ diff --git a/static/sprites-small/home/shiny/825.webp b/static/sprites-small/home/shiny/825.webp index b59ef36..5785f83 100644 Binary files a/static/sprites-small/home/shiny/825.webp and b/static/sprites-small/home/shiny/825.webp differ diff --git a/static/sprites-small/home/shiny/826.webp b/static/sprites-small/home/shiny/826.webp index 11b4c2b..e98e9ae 100644 Binary files a/static/sprites-small/home/shiny/826.webp and b/static/sprites-small/home/shiny/826.webp differ diff --git a/static/sprites-small/home/shiny/827.webp b/static/sprites-small/home/shiny/827.webp index 17874aa..f6ddd35 100644 Binary files a/static/sprites-small/home/shiny/827.webp and b/static/sprites-small/home/shiny/827.webp differ diff --git a/static/sprites-small/home/shiny/828.webp b/static/sprites-small/home/shiny/828.webp index 0882076..265cd0e 100644 Binary files a/static/sprites-small/home/shiny/828.webp and b/static/sprites-small/home/shiny/828.webp differ diff --git a/static/sprites-small/home/shiny/829.webp b/static/sprites-small/home/shiny/829.webp index 83415a6..acb4b70 100644 Binary files a/static/sprites-small/home/shiny/829.webp and b/static/sprites-small/home/shiny/829.webp differ diff --git a/static/sprites-small/home/shiny/83.webp b/static/sprites-small/home/shiny/83.webp index cff115d..4a6980a 100644 Binary files a/static/sprites-small/home/shiny/83.webp and b/static/sprites-small/home/shiny/83.webp differ diff --git a/static/sprites-small/home/shiny/830.webp b/static/sprites-small/home/shiny/830.webp index 06c591f..fe295c6 100644 Binary files a/static/sprites-small/home/shiny/830.webp and b/static/sprites-small/home/shiny/830.webp differ diff --git a/static/sprites-small/home/shiny/831.webp b/static/sprites-small/home/shiny/831.webp index 5167c50..6c97e4d 100644 Binary files a/static/sprites-small/home/shiny/831.webp and b/static/sprites-small/home/shiny/831.webp differ diff --git a/static/sprites-small/home/shiny/832.webp b/static/sprites-small/home/shiny/832.webp index e9d0332..fcafa88 100644 Binary files a/static/sprites-small/home/shiny/832.webp and b/static/sprites-small/home/shiny/832.webp differ diff --git a/static/sprites-small/home/shiny/833.webp b/static/sprites-small/home/shiny/833.webp index 4937120..85afd23 100644 Binary files a/static/sprites-small/home/shiny/833.webp and b/static/sprites-small/home/shiny/833.webp differ diff --git a/static/sprites-small/home/shiny/834.webp b/static/sprites-small/home/shiny/834.webp index 40705b8..1b33243 100644 Binary files a/static/sprites-small/home/shiny/834.webp and b/static/sprites-small/home/shiny/834.webp differ diff --git a/static/sprites-small/home/shiny/835.webp b/static/sprites-small/home/shiny/835.webp index c6f6a72..304331a 100644 Binary files a/static/sprites-small/home/shiny/835.webp and b/static/sprites-small/home/shiny/835.webp differ diff --git a/static/sprites-small/home/shiny/836.webp b/static/sprites-small/home/shiny/836.webp index 826f1a1..6b4f6e0 100644 Binary files a/static/sprites-small/home/shiny/836.webp and b/static/sprites-small/home/shiny/836.webp differ diff --git a/static/sprites-small/home/shiny/837.webp b/static/sprites-small/home/shiny/837.webp index 2e657f0..896b1fd 100644 Binary files a/static/sprites-small/home/shiny/837.webp and b/static/sprites-small/home/shiny/837.webp differ diff --git a/static/sprites-small/home/shiny/838.webp b/static/sprites-small/home/shiny/838.webp index 22a16a6..af64397 100644 Binary files a/static/sprites-small/home/shiny/838.webp and b/static/sprites-small/home/shiny/838.webp differ diff --git a/static/sprites-small/home/shiny/839.webp b/static/sprites-small/home/shiny/839.webp index 2b794bd..ed1546f 100644 Binary files a/static/sprites-small/home/shiny/839.webp and b/static/sprites-small/home/shiny/839.webp differ diff --git a/static/sprites-small/home/shiny/84.webp b/static/sprites-small/home/shiny/84.webp index 6ab90a5..018ca8f 100644 Binary files a/static/sprites-small/home/shiny/84.webp and b/static/sprites-small/home/shiny/84.webp differ diff --git a/static/sprites-small/home/shiny/840.webp b/static/sprites-small/home/shiny/840.webp index 6762c95..e29808b 100644 Binary files a/static/sprites-small/home/shiny/840.webp and b/static/sprites-small/home/shiny/840.webp differ diff --git a/static/sprites-small/home/shiny/841.webp b/static/sprites-small/home/shiny/841.webp index b53a68d..0c80611 100644 Binary files a/static/sprites-small/home/shiny/841.webp and b/static/sprites-small/home/shiny/841.webp differ diff --git a/static/sprites-small/home/shiny/842.webp b/static/sprites-small/home/shiny/842.webp index d32186f..7c65d19 100644 Binary files a/static/sprites-small/home/shiny/842.webp and b/static/sprites-small/home/shiny/842.webp differ diff --git a/static/sprites-small/home/shiny/843.webp b/static/sprites-small/home/shiny/843.webp index d200430..97d2201 100644 Binary files a/static/sprites-small/home/shiny/843.webp and b/static/sprites-small/home/shiny/843.webp differ diff --git a/static/sprites-small/home/shiny/844.webp b/static/sprites-small/home/shiny/844.webp index 7d8fb1b..60db0aa 100644 Binary files a/static/sprites-small/home/shiny/844.webp and b/static/sprites-small/home/shiny/844.webp differ diff --git a/static/sprites-small/home/shiny/845-gorging.webp b/static/sprites-small/home/shiny/845-gorging.webp index 2951e81..8fce356 100644 Binary files a/static/sprites-small/home/shiny/845-gorging.webp and b/static/sprites-small/home/shiny/845-gorging.webp differ diff --git a/static/sprites-small/home/shiny/845-gulping.webp b/static/sprites-small/home/shiny/845-gulping.webp index d8326e0..d6ae195 100644 Binary files a/static/sprites-small/home/shiny/845-gulping.webp and b/static/sprites-small/home/shiny/845-gulping.webp differ diff --git a/static/sprites-small/home/shiny/845.webp b/static/sprites-small/home/shiny/845.webp index c43df58..2b6948c 100644 Binary files a/static/sprites-small/home/shiny/845.webp and b/static/sprites-small/home/shiny/845.webp differ diff --git a/static/sprites-small/home/shiny/846.webp b/static/sprites-small/home/shiny/846.webp index bcff466..a098535 100644 Binary files a/static/sprites-small/home/shiny/846.webp and b/static/sprites-small/home/shiny/846.webp differ diff --git a/static/sprites-small/home/shiny/847.webp b/static/sprites-small/home/shiny/847.webp index 7dfb565..cc56133 100644 Binary files a/static/sprites-small/home/shiny/847.webp and b/static/sprites-small/home/shiny/847.webp differ diff --git a/static/sprites-small/home/shiny/848.webp b/static/sprites-small/home/shiny/848.webp index 872c14a..4bde7c3 100644 Binary files a/static/sprites-small/home/shiny/848.webp and b/static/sprites-small/home/shiny/848.webp differ diff --git a/static/sprites-small/home/shiny/849.webp b/static/sprites-small/home/shiny/849.webp index 82ecaa6..f9f2320 100644 Binary files a/static/sprites-small/home/shiny/849.webp and b/static/sprites-small/home/shiny/849.webp differ diff --git a/static/sprites-small/home/shiny/85.webp b/static/sprites-small/home/shiny/85.webp index c289ac6..0ded912 100644 Binary files a/static/sprites-small/home/shiny/85.webp and b/static/sprites-small/home/shiny/85.webp differ diff --git a/static/sprites-small/home/shiny/850.webp b/static/sprites-small/home/shiny/850.webp index 74980ad..510d86a 100644 Binary files a/static/sprites-small/home/shiny/850.webp and b/static/sprites-small/home/shiny/850.webp differ diff --git a/static/sprites-small/home/shiny/851.webp b/static/sprites-small/home/shiny/851.webp index d7e84b1..80ce00a 100644 Binary files a/static/sprites-small/home/shiny/851.webp and b/static/sprites-small/home/shiny/851.webp differ diff --git a/static/sprites-small/home/shiny/852.webp b/static/sprites-small/home/shiny/852.webp index b06d74a..8a50ccf 100644 Binary files a/static/sprites-small/home/shiny/852.webp and b/static/sprites-small/home/shiny/852.webp differ diff --git a/static/sprites-small/home/shiny/853.webp b/static/sprites-small/home/shiny/853.webp index 2e471a3..03f8128 100644 Binary files a/static/sprites-small/home/shiny/853.webp and b/static/sprites-small/home/shiny/853.webp differ diff --git a/static/sprites-small/home/shiny/854.webp b/static/sprites-small/home/shiny/854.webp index f3b4899..ed80a15 100644 Binary files a/static/sprites-small/home/shiny/854.webp and b/static/sprites-small/home/shiny/854.webp differ diff --git a/static/sprites-small/home/shiny/855.webp b/static/sprites-small/home/shiny/855.webp index 39d2f56..3095222 100644 Binary files a/static/sprites-small/home/shiny/855.webp and b/static/sprites-small/home/shiny/855.webp differ diff --git a/static/sprites-small/home/shiny/856.webp b/static/sprites-small/home/shiny/856.webp index 4e7aae6..0a74a8c 100644 Binary files a/static/sprites-small/home/shiny/856.webp and b/static/sprites-small/home/shiny/856.webp differ diff --git a/static/sprites-small/home/shiny/857.webp b/static/sprites-small/home/shiny/857.webp index 9477ab4..e56728b 100644 Binary files a/static/sprites-small/home/shiny/857.webp and b/static/sprites-small/home/shiny/857.webp differ diff --git a/static/sprites-small/home/shiny/858.webp b/static/sprites-small/home/shiny/858.webp index d6dd0bc..de4ea8a 100644 Binary files a/static/sprites-small/home/shiny/858.webp and b/static/sprites-small/home/shiny/858.webp differ diff --git a/static/sprites-small/home/shiny/859.webp b/static/sprites-small/home/shiny/859.webp index 1bed1ac..562a8a4 100644 Binary files a/static/sprites-small/home/shiny/859.webp and b/static/sprites-small/home/shiny/859.webp differ diff --git a/static/sprites-small/home/shiny/86.webp b/static/sprites-small/home/shiny/86.webp index 8f359e0..c6e8b28 100644 Binary files a/static/sprites-small/home/shiny/86.webp and b/static/sprites-small/home/shiny/86.webp differ diff --git a/static/sprites-small/home/shiny/860.webp b/static/sprites-small/home/shiny/860.webp index 6379f00..7a3fc7c 100644 Binary files a/static/sprites-small/home/shiny/860.webp and b/static/sprites-small/home/shiny/860.webp differ diff --git a/static/sprites-small/home/shiny/861.webp b/static/sprites-small/home/shiny/861.webp index 3948f61..c01b308 100644 Binary files a/static/sprites-small/home/shiny/861.webp and b/static/sprites-small/home/shiny/861.webp differ diff --git a/static/sprites-small/home/shiny/862.webp b/static/sprites-small/home/shiny/862.webp index 1ef7212..71d8bc9 100644 Binary files a/static/sprites-small/home/shiny/862.webp and b/static/sprites-small/home/shiny/862.webp differ diff --git a/static/sprites-small/home/shiny/863.webp b/static/sprites-small/home/shiny/863.webp index 4e2f0b8..6c72e85 100644 Binary files a/static/sprites-small/home/shiny/863.webp and b/static/sprites-small/home/shiny/863.webp differ diff --git a/static/sprites-small/home/shiny/864.webp b/static/sprites-small/home/shiny/864.webp index 6f8ef6b..710a0bb 100644 Binary files a/static/sprites-small/home/shiny/864.webp and b/static/sprites-small/home/shiny/864.webp differ diff --git a/static/sprites-small/home/shiny/865.webp b/static/sprites-small/home/shiny/865.webp index 6efa952..b5f58d7 100644 Binary files a/static/sprites-small/home/shiny/865.webp and b/static/sprites-small/home/shiny/865.webp differ diff --git a/static/sprites-small/home/shiny/866.webp b/static/sprites-small/home/shiny/866.webp index d449a38..3853f01 100644 Binary files a/static/sprites-small/home/shiny/866.webp and b/static/sprites-small/home/shiny/866.webp differ diff --git a/static/sprites-small/home/shiny/867.webp b/static/sprites-small/home/shiny/867.webp index 14d83e9..7d48d85 100644 Binary files a/static/sprites-small/home/shiny/867.webp and b/static/sprites-small/home/shiny/867.webp differ diff --git a/static/sprites-small/home/shiny/868.webp b/static/sprites-small/home/shiny/868.webp index ceab66f..61a62e6 100644 Binary files a/static/sprites-small/home/shiny/868.webp and b/static/sprites-small/home/shiny/868.webp differ diff --git a/static/sprites-small/home/shiny/869-berry-sweet.webp b/static/sprites-small/home/shiny/869-berry-sweet.webp index 479623e..58d0419 100644 Binary files a/static/sprites-small/home/shiny/869-berry-sweet.webp and b/static/sprites-small/home/shiny/869-berry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-caramel-swirl-berry-sweet.webp b/static/sprites-small/home/shiny/869-caramel-swirl-berry-sweet.webp index 479623e..58d0419 100644 Binary files a/static/sprites-small/home/shiny/869-caramel-swirl-berry-sweet.webp and b/static/sprites-small/home/shiny/869-caramel-swirl-berry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-caramel-swirl-clover-sweet.webp b/static/sprites-small/home/shiny/869-caramel-swirl-clover-sweet.webp index 41e64bc..181353d 100644 Binary files a/static/sprites-small/home/shiny/869-caramel-swirl-clover-sweet.webp and b/static/sprites-small/home/shiny/869-caramel-swirl-clover-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-caramel-swirl-flower-sweet.webp b/static/sprites-small/home/shiny/869-caramel-swirl-flower-sweet.webp index 8257942..a72b22e 100644 Binary files a/static/sprites-small/home/shiny/869-caramel-swirl-flower-sweet.webp and b/static/sprites-small/home/shiny/869-caramel-swirl-flower-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-caramel-swirl-love-sweet.webp b/static/sprites-small/home/shiny/869-caramel-swirl-love-sweet.webp index f660683..2e0089f 100644 Binary files a/static/sprites-small/home/shiny/869-caramel-swirl-love-sweet.webp and b/static/sprites-small/home/shiny/869-caramel-swirl-love-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-caramel-swirl-ribbon-sweet.webp b/static/sprites-small/home/shiny/869-caramel-swirl-ribbon-sweet.webp index 3ecfeca..6b41b25 100644 Binary files a/static/sprites-small/home/shiny/869-caramel-swirl-ribbon-sweet.webp and b/static/sprites-small/home/shiny/869-caramel-swirl-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-caramel-swirl-star-sweet.webp b/static/sprites-small/home/shiny/869-caramel-swirl-star-sweet.webp index e897ce4..15474c7 100644 Binary files a/static/sprites-small/home/shiny/869-caramel-swirl-star-sweet.webp and b/static/sprites-small/home/shiny/869-caramel-swirl-star-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-caramel-swirl-strawberry-sweet.webp b/static/sprites-small/home/shiny/869-caramel-swirl-strawberry-sweet.webp index 2234c30..1962392 100644 Binary files a/static/sprites-small/home/shiny/869-caramel-swirl-strawberry-sweet.webp and b/static/sprites-small/home/shiny/869-caramel-swirl-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-clove-sweet.webp b/static/sprites-small/home/shiny/869-clove-sweet.webp index 41e64bc..181353d 100644 Binary files a/static/sprites-small/home/shiny/869-clove-sweet.webp and b/static/sprites-small/home/shiny/869-clove-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-flower-sweet.webp b/static/sprites-small/home/shiny/869-flower-sweet.webp index 8257942..a72b22e 100644 Binary files a/static/sprites-small/home/shiny/869-flower-sweet.webp and b/static/sprites-small/home/shiny/869-flower-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-lemon-cream-berry-sweet.webp b/static/sprites-small/home/shiny/869-lemon-cream-berry-sweet.webp index 479623e..58d0419 100644 Binary files a/static/sprites-small/home/shiny/869-lemon-cream-berry-sweet.webp and b/static/sprites-small/home/shiny/869-lemon-cream-berry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-lemon-cream-clover-sweet.webp b/static/sprites-small/home/shiny/869-lemon-cream-clover-sweet.webp index 41e64bc..181353d 100644 Binary files a/static/sprites-small/home/shiny/869-lemon-cream-clover-sweet.webp and b/static/sprites-small/home/shiny/869-lemon-cream-clover-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-lemon-cream-flower-sweet.webp b/static/sprites-small/home/shiny/869-lemon-cream-flower-sweet.webp index 8257942..a72b22e 100644 Binary files a/static/sprites-small/home/shiny/869-lemon-cream-flower-sweet.webp and b/static/sprites-small/home/shiny/869-lemon-cream-flower-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-lemon-cream-love-sweet.webp b/static/sprites-small/home/shiny/869-lemon-cream-love-sweet.webp index f660683..2e0089f 100644 Binary files a/static/sprites-small/home/shiny/869-lemon-cream-love-sweet.webp and b/static/sprites-small/home/shiny/869-lemon-cream-love-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-lemon-cream-ribbon-sweet.webp b/static/sprites-small/home/shiny/869-lemon-cream-ribbon-sweet.webp index 3ecfeca..6b41b25 100644 Binary files a/static/sprites-small/home/shiny/869-lemon-cream-ribbon-sweet.webp and b/static/sprites-small/home/shiny/869-lemon-cream-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-lemon-cream-star-sweet.webp b/static/sprites-small/home/shiny/869-lemon-cream-star-sweet.webp index e897ce4..15474c7 100644 Binary files a/static/sprites-small/home/shiny/869-lemon-cream-star-sweet.webp and b/static/sprites-small/home/shiny/869-lemon-cream-star-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-lemon-cream-strawberry-sweet.webp b/static/sprites-small/home/shiny/869-lemon-cream-strawberry-sweet.webp index 2234c30..1962392 100644 Binary files a/static/sprites-small/home/shiny/869-lemon-cream-strawberry-sweet.webp and b/static/sprites-small/home/shiny/869-lemon-cream-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-love-sweet.webp b/static/sprites-small/home/shiny/869-love-sweet.webp index f660683..2e0089f 100644 Binary files a/static/sprites-small/home/shiny/869-love-sweet.webp and b/static/sprites-small/home/shiny/869-love-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-matcha-cream-berry-sweet.webp b/static/sprites-small/home/shiny/869-matcha-cream-berry-sweet.webp index 479623e..58d0419 100644 Binary files a/static/sprites-small/home/shiny/869-matcha-cream-berry-sweet.webp and b/static/sprites-small/home/shiny/869-matcha-cream-berry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-matcha-cream-clover-sweet.webp b/static/sprites-small/home/shiny/869-matcha-cream-clover-sweet.webp index 41e64bc..181353d 100644 Binary files a/static/sprites-small/home/shiny/869-matcha-cream-clover-sweet.webp and b/static/sprites-small/home/shiny/869-matcha-cream-clover-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-matcha-cream-flower-sweet.webp b/static/sprites-small/home/shiny/869-matcha-cream-flower-sweet.webp index 8257942..a72b22e 100644 Binary files a/static/sprites-small/home/shiny/869-matcha-cream-flower-sweet.webp and b/static/sprites-small/home/shiny/869-matcha-cream-flower-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-matcha-cream-love-sweet.webp b/static/sprites-small/home/shiny/869-matcha-cream-love-sweet.webp index f660683..2e0089f 100644 Binary files a/static/sprites-small/home/shiny/869-matcha-cream-love-sweet.webp and b/static/sprites-small/home/shiny/869-matcha-cream-love-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-matcha-cream-ribbon-sweet.webp b/static/sprites-small/home/shiny/869-matcha-cream-ribbon-sweet.webp index 3ecfeca..6b41b25 100644 Binary files a/static/sprites-small/home/shiny/869-matcha-cream-ribbon-sweet.webp and b/static/sprites-small/home/shiny/869-matcha-cream-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-matcha-cream-star-sweet.webp b/static/sprites-small/home/shiny/869-matcha-cream-star-sweet.webp index e897ce4..15474c7 100644 Binary files a/static/sprites-small/home/shiny/869-matcha-cream-star-sweet.webp and b/static/sprites-small/home/shiny/869-matcha-cream-star-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-matcha-cream-strawberry-sweet.webp b/static/sprites-small/home/shiny/869-matcha-cream-strawberry-sweet.webp index 2234c30..1962392 100644 Binary files a/static/sprites-small/home/shiny/869-matcha-cream-strawberry-sweet.webp and b/static/sprites-small/home/shiny/869-matcha-cream-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-mint-cream-berry-sweet.webp b/static/sprites-small/home/shiny/869-mint-cream-berry-sweet.webp index 479623e..58d0419 100644 Binary files a/static/sprites-small/home/shiny/869-mint-cream-berry-sweet.webp and b/static/sprites-small/home/shiny/869-mint-cream-berry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-mint-cream-clover-sweet.webp b/static/sprites-small/home/shiny/869-mint-cream-clover-sweet.webp index 41e64bc..181353d 100644 Binary files a/static/sprites-small/home/shiny/869-mint-cream-clover-sweet.webp and b/static/sprites-small/home/shiny/869-mint-cream-clover-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-mint-cream-flower-sweet.webp b/static/sprites-small/home/shiny/869-mint-cream-flower-sweet.webp index 8257942..a72b22e 100644 Binary files a/static/sprites-small/home/shiny/869-mint-cream-flower-sweet.webp and b/static/sprites-small/home/shiny/869-mint-cream-flower-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-mint-cream-love-sweet.webp b/static/sprites-small/home/shiny/869-mint-cream-love-sweet.webp index f660683..2e0089f 100644 Binary files a/static/sprites-small/home/shiny/869-mint-cream-love-sweet.webp and b/static/sprites-small/home/shiny/869-mint-cream-love-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-mint-cream-ribbon-sweet.webp b/static/sprites-small/home/shiny/869-mint-cream-ribbon-sweet.webp index 3ecfeca..6b41b25 100644 Binary files a/static/sprites-small/home/shiny/869-mint-cream-ribbon-sweet.webp and b/static/sprites-small/home/shiny/869-mint-cream-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-mint-cream-star-sweet.webp b/static/sprites-small/home/shiny/869-mint-cream-star-sweet.webp index e897ce4..15474c7 100644 Binary files a/static/sprites-small/home/shiny/869-mint-cream-star-sweet.webp and b/static/sprites-small/home/shiny/869-mint-cream-star-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-mint-cream-strawberry-sweet.webp b/static/sprites-small/home/shiny/869-mint-cream-strawberry-sweet.webp index 2234c30..1962392 100644 Binary files a/static/sprites-small/home/shiny/869-mint-cream-strawberry-sweet.webp and b/static/sprites-small/home/shiny/869-mint-cream-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-rainbow-swirl-berry-sweet.webp b/static/sprites-small/home/shiny/869-rainbow-swirl-berry-sweet.webp index 479623e..58d0419 100644 Binary files a/static/sprites-small/home/shiny/869-rainbow-swirl-berry-sweet.webp and b/static/sprites-small/home/shiny/869-rainbow-swirl-berry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-rainbow-swirl-clover-sweet.webp b/static/sprites-small/home/shiny/869-rainbow-swirl-clover-sweet.webp index 41e64bc..181353d 100644 Binary files a/static/sprites-small/home/shiny/869-rainbow-swirl-clover-sweet.webp and b/static/sprites-small/home/shiny/869-rainbow-swirl-clover-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-rainbow-swirl-flower-sweet.webp b/static/sprites-small/home/shiny/869-rainbow-swirl-flower-sweet.webp index 8257942..a72b22e 100644 Binary files a/static/sprites-small/home/shiny/869-rainbow-swirl-flower-sweet.webp and b/static/sprites-small/home/shiny/869-rainbow-swirl-flower-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-rainbow-swirl-love-sweet.webp b/static/sprites-small/home/shiny/869-rainbow-swirl-love-sweet.webp index f660683..2e0089f 100644 Binary files a/static/sprites-small/home/shiny/869-rainbow-swirl-love-sweet.webp and b/static/sprites-small/home/shiny/869-rainbow-swirl-love-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-rainbow-swirl-ribbon-sweet.webp b/static/sprites-small/home/shiny/869-rainbow-swirl-ribbon-sweet.webp index 3ecfeca..6b41b25 100644 Binary files a/static/sprites-small/home/shiny/869-rainbow-swirl-ribbon-sweet.webp and b/static/sprites-small/home/shiny/869-rainbow-swirl-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-rainbow-swirl-star-sweet.webp b/static/sprites-small/home/shiny/869-rainbow-swirl-star-sweet.webp index e897ce4..15474c7 100644 Binary files a/static/sprites-small/home/shiny/869-rainbow-swirl-star-sweet.webp and b/static/sprites-small/home/shiny/869-rainbow-swirl-star-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-rainbow-swirl-strawberry-sweet.webp b/static/sprites-small/home/shiny/869-rainbow-swirl-strawberry-sweet.webp index 2234c30..1962392 100644 Binary files a/static/sprites-small/home/shiny/869-rainbow-swirl-strawberry-sweet.webp and b/static/sprites-small/home/shiny/869-rainbow-swirl-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-ribbon-sweet.webp b/static/sprites-small/home/shiny/869-ribbon-sweet.webp index 3ecfeca..6b41b25 100644 Binary files a/static/sprites-small/home/shiny/869-ribbon-sweet.webp and b/static/sprites-small/home/shiny/869-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-ruby-cream-berry-sweet.webp b/static/sprites-small/home/shiny/869-ruby-cream-berry-sweet.webp index 479623e..58d0419 100644 Binary files a/static/sprites-small/home/shiny/869-ruby-cream-berry-sweet.webp and b/static/sprites-small/home/shiny/869-ruby-cream-berry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-ruby-cream-clover-sweet.webp b/static/sprites-small/home/shiny/869-ruby-cream-clover-sweet.webp index 41e64bc..181353d 100644 Binary files a/static/sprites-small/home/shiny/869-ruby-cream-clover-sweet.webp and b/static/sprites-small/home/shiny/869-ruby-cream-clover-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-ruby-cream-flower-sweet.webp b/static/sprites-small/home/shiny/869-ruby-cream-flower-sweet.webp index 8257942..a72b22e 100644 Binary files a/static/sprites-small/home/shiny/869-ruby-cream-flower-sweet.webp and b/static/sprites-small/home/shiny/869-ruby-cream-flower-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-ruby-cream-love-sweet.webp b/static/sprites-small/home/shiny/869-ruby-cream-love-sweet.webp index f660683..2e0089f 100644 Binary files a/static/sprites-small/home/shiny/869-ruby-cream-love-sweet.webp and b/static/sprites-small/home/shiny/869-ruby-cream-love-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-ruby-cream-ribbon-sweet.webp b/static/sprites-small/home/shiny/869-ruby-cream-ribbon-sweet.webp index 3ecfeca..6b41b25 100644 Binary files a/static/sprites-small/home/shiny/869-ruby-cream-ribbon-sweet.webp and b/static/sprites-small/home/shiny/869-ruby-cream-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-ruby-cream-star-sweet.webp b/static/sprites-small/home/shiny/869-ruby-cream-star-sweet.webp index e897ce4..15474c7 100644 Binary files a/static/sprites-small/home/shiny/869-ruby-cream-star-sweet.webp and b/static/sprites-small/home/shiny/869-ruby-cream-star-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-ruby-cream-strawberry-sweet.webp b/static/sprites-small/home/shiny/869-ruby-cream-strawberry-sweet.webp index 2234c30..1962392 100644 Binary files a/static/sprites-small/home/shiny/869-ruby-cream-strawberry-sweet.webp and b/static/sprites-small/home/shiny/869-ruby-cream-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-ruby-swirl-berry-sweet.webp b/static/sprites-small/home/shiny/869-ruby-swirl-berry-sweet.webp index 479623e..58d0419 100644 Binary files a/static/sprites-small/home/shiny/869-ruby-swirl-berry-sweet.webp and b/static/sprites-small/home/shiny/869-ruby-swirl-berry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-ruby-swirl-clover-sweet.webp b/static/sprites-small/home/shiny/869-ruby-swirl-clover-sweet.webp index 41e64bc..181353d 100644 Binary files a/static/sprites-small/home/shiny/869-ruby-swirl-clover-sweet.webp and b/static/sprites-small/home/shiny/869-ruby-swirl-clover-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-ruby-swirl-flower-sweet.webp b/static/sprites-small/home/shiny/869-ruby-swirl-flower-sweet.webp index 8257942..a72b22e 100644 Binary files a/static/sprites-small/home/shiny/869-ruby-swirl-flower-sweet.webp and b/static/sprites-small/home/shiny/869-ruby-swirl-flower-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-ruby-swirl-love-sweet.webp b/static/sprites-small/home/shiny/869-ruby-swirl-love-sweet.webp index f660683..2e0089f 100644 Binary files a/static/sprites-small/home/shiny/869-ruby-swirl-love-sweet.webp and b/static/sprites-small/home/shiny/869-ruby-swirl-love-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-ruby-swirl-ribbon-sweet.webp b/static/sprites-small/home/shiny/869-ruby-swirl-ribbon-sweet.webp index 3ecfeca..6b41b25 100644 Binary files a/static/sprites-small/home/shiny/869-ruby-swirl-ribbon-sweet.webp and b/static/sprites-small/home/shiny/869-ruby-swirl-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-ruby-swirl-star-sweet.webp b/static/sprites-small/home/shiny/869-ruby-swirl-star-sweet.webp index e897ce4..15474c7 100644 Binary files a/static/sprites-small/home/shiny/869-ruby-swirl-star-sweet.webp and b/static/sprites-small/home/shiny/869-ruby-swirl-star-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-ruby-swirl-strawberry-sweet.webp b/static/sprites-small/home/shiny/869-ruby-swirl-strawberry-sweet.webp index 2234c30..1962392 100644 Binary files a/static/sprites-small/home/shiny/869-ruby-swirl-strawberry-sweet.webp and b/static/sprites-small/home/shiny/869-ruby-swirl-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-salted-cream-berry-sweet.webp b/static/sprites-small/home/shiny/869-salted-cream-berry-sweet.webp index 479623e..58d0419 100644 Binary files a/static/sprites-small/home/shiny/869-salted-cream-berry-sweet.webp and b/static/sprites-small/home/shiny/869-salted-cream-berry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-salted-cream-clover-sweet.webp b/static/sprites-small/home/shiny/869-salted-cream-clover-sweet.webp index 41e64bc..181353d 100644 Binary files a/static/sprites-small/home/shiny/869-salted-cream-clover-sweet.webp and b/static/sprites-small/home/shiny/869-salted-cream-clover-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-salted-cream-flower-sweet.webp b/static/sprites-small/home/shiny/869-salted-cream-flower-sweet.webp index 8257942..a72b22e 100644 Binary files a/static/sprites-small/home/shiny/869-salted-cream-flower-sweet.webp and b/static/sprites-small/home/shiny/869-salted-cream-flower-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-salted-cream-love-sweet.webp b/static/sprites-small/home/shiny/869-salted-cream-love-sweet.webp index f660683..2e0089f 100644 Binary files a/static/sprites-small/home/shiny/869-salted-cream-love-sweet.webp and b/static/sprites-small/home/shiny/869-salted-cream-love-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-salted-cream-ribbon-sweet.webp b/static/sprites-small/home/shiny/869-salted-cream-ribbon-sweet.webp index 3ecfeca..6b41b25 100644 Binary files a/static/sprites-small/home/shiny/869-salted-cream-ribbon-sweet.webp and b/static/sprites-small/home/shiny/869-salted-cream-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-salted-cream-star-sweet.webp b/static/sprites-small/home/shiny/869-salted-cream-star-sweet.webp index e897ce4..15474c7 100644 Binary files a/static/sprites-small/home/shiny/869-salted-cream-star-sweet.webp and b/static/sprites-small/home/shiny/869-salted-cream-star-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-salted-cream-strawberry-sweet.webp b/static/sprites-small/home/shiny/869-salted-cream-strawberry-sweet.webp index 2234c30..1962392 100644 Binary files a/static/sprites-small/home/shiny/869-salted-cream-strawberry-sweet.webp and b/static/sprites-small/home/shiny/869-salted-cream-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-star-sweet.webp b/static/sprites-small/home/shiny/869-star-sweet.webp index e897ce4..15474c7 100644 Binary files a/static/sprites-small/home/shiny/869-star-sweet.webp and b/static/sprites-small/home/shiny/869-star-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-strawberry-sweet.webp b/static/sprites-small/home/shiny/869-strawberry-sweet.webp index 2234c30..1962392 100644 Binary files a/static/sprites-small/home/shiny/869-strawberry-sweet.webp and b/static/sprites-small/home/shiny/869-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-vanilla-cream-berry-sweet.webp b/static/sprites-small/home/shiny/869-vanilla-cream-berry-sweet.webp index 479623e..58d0419 100644 Binary files a/static/sprites-small/home/shiny/869-vanilla-cream-berry-sweet.webp and b/static/sprites-small/home/shiny/869-vanilla-cream-berry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-vanilla-cream-clover-sweet.webp b/static/sprites-small/home/shiny/869-vanilla-cream-clover-sweet.webp index 41e64bc..181353d 100644 Binary files a/static/sprites-small/home/shiny/869-vanilla-cream-clover-sweet.webp and b/static/sprites-small/home/shiny/869-vanilla-cream-clover-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-vanilla-cream-flower-sweet.webp b/static/sprites-small/home/shiny/869-vanilla-cream-flower-sweet.webp index 8257942..a72b22e 100644 Binary files a/static/sprites-small/home/shiny/869-vanilla-cream-flower-sweet.webp and b/static/sprites-small/home/shiny/869-vanilla-cream-flower-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-vanilla-cream-love-sweet.webp b/static/sprites-small/home/shiny/869-vanilla-cream-love-sweet.webp index f660683..2e0089f 100644 Binary files a/static/sprites-small/home/shiny/869-vanilla-cream-love-sweet.webp and b/static/sprites-small/home/shiny/869-vanilla-cream-love-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-vanilla-cream-ribbon-sweet.webp b/static/sprites-small/home/shiny/869-vanilla-cream-ribbon-sweet.webp index 3ecfeca..6b41b25 100644 Binary files a/static/sprites-small/home/shiny/869-vanilla-cream-ribbon-sweet.webp and b/static/sprites-small/home/shiny/869-vanilla-cream-ribbon-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-vanilla-cream-star-sweet.webp b/static/sprites-small/home/shiny/869-vanilla-cream-star-sweet.webp index e897ce4..15474c7 100644 Binary files a/static/sprites-small/home/shiny/869-vanilla-cream-star-sweet.webp and b/static/sprites-small/home/shiny/869-vanilla-cream-star-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869-vanilla-cream-strawberry-sweet.webp b/static/sprites-small/home/shiny/869-vanilla-cream-strawberry-sweet.webp index 2234c30..1962392 100644 Binary files a/static/sprites-small/home/shiny/869-vanilla-cream-strawberry-sweet.webp and b/static/sprites-small/home/shiny/869-vanilla-cream-strawberry-sweet.webp differ diff --git a/static/sprites-small/home/shiny/869.webp b/static/sprites-small/home/shiny/869.webp index 2234c30..1962392 100644 Binary files a/static/sprites-small/home/shiny/869.webp and b/static/sprites-small/home/shiny/869.webp differ diff --git a/static/sprites-small/home/shiny/87.webp b/static/sprites-small/home/shiny/87.webp index 9161351..4ad35b4 100644 Binary files a/static/sprites-small/home/shiny/87.webp and b/static/sprites-small/home/shiny/87.webp differ diff --git a/static/sprites-small/home/shiny/870.webp b/static/sprites-small/home/shiny/870.webp index 4850735..e8828f7 100644 Binary files a/static/sprites-small/home/shiny/870.webp and b/static/sprites-small/home/shiny/870.webp differ diff --git a/static/sprites-small/home/shiny/871.webp b/static/sprites-small/home/shiny/871.webp index f69cc80..8105df7 100644 Binary files a/static/sprites-small/home/shiny/871.webp and b/static/sprites-small/home/shiny/871.webp differ diff --git a/static/sprites-small/home/shiny/872.webp b/static/sprites-small/home/shiny/872.webp index 33c0f13..85812b0 100644 Binary files a/static/sprites-small/home/shiny/872.webp and b/static/sprites-small/home/shiny/872.webp differ diff --git a/static/sprites-small/home/shiny/873.webp b/static/sprites-small/home/shiny/873.webp index d26e615..56e3c77 100644 Binary files a/static/sprites-small/home/shiny/873.webp and b/static/sprites-small/home/shiny/873.webp differ diff --git a/static/sprites-small/home/shiny/874.webp b/static/sprites-small/home/shiny/874.webp index 90374c5..ff9e750 100644 Binary files a/static/sprites-small/home/shiny/874.webp and b/static/sprites-small/home/shiny/874.webp differ diff --git a/static/sprites-small/home/shiny/875.webp b/static/sprites-small/home/shiny/875.webp index 9a70084..74f5896 100644 Binary files a/static/sprites-small/home/shiny/875.webp and b/static/sprites-small/home/shiny/875.webp differ diff --git a/static/sprites-small/home/shiny/876.webp b/static/sprites-small/home/shiny/876.webp index 30a3555..146fb2d 100644 Binary files a/static/sprites-small/home/shiny/876.webp and b/static/sprites-small/home/shiny/876.webp differ diff --git a/static/sprites-small/home/shiny/877-hangry.webp b/static/sprites-small/home/shiny/877-hangry.webp index 416a3f9..89ce814 100644 Binary files a/static/sprites-small/home/shiny/877-hangry.webp and b/static/sprites-small/home/shiny/877-hangry.webp differ diff --git a/static/sprites-small/home/shiny/877.webp b/static/sprites-small/home/shiny/877.webp index efb5e25..36d1e9f 100644 Binary files a/static/sprites-small/home/shiny/877.webp and b/static/sprites-small/home/shiny/877.webp differ diff --git a/static/sprites-small/home/shiny/878.webp b/static/sprites-small/home/shiny/878.webp index 9cf77c8..5cf36e1 100644 Binary files a/static/sprites-small/home/shiny/878.webp and b/static/sprites-small/home/shiny/878.webp differ diff --git a/static/sprites-small/home/shiny/879.webp b/static/sprites-small/home/shiny/879.webp index 739a97c..eb608a6 100644 Binary files a/static/sprites-small/home/shiny/879.webp and b/static/sprites-small/home/shiny/879.webp differ diff --git a/static/sprites-small/home/shiny/88.webp b/static/sprites-small/home/shiny/88.webp index 2b1fce2..fda0824 100644 Binary files a/static/sprites-small/home/shiny/88.webp and b/static/sprites-small/home/shiny/88.webp differ diff --git a/static/sprites-small/home/shiny/880.webp b/static/sprites-small/home/shiny/880.webp index 667442b..f62ceea 100644 Binary files a/static/sprites-small/home/shiny/880.webp and b/static/sprites-small/home/shiny/880.webp differ diff --git a/static/sprites-small/home/shiny/881.webp b/static/sprites-small/home/shiny/881.webp index 1b25ee5..485c51c 100644 Binary files a/static/sprites-small/home/shiny/881.webp and b/static/sprites-small/home/shiny/881.webp differ diff --git a/static/sprites-small/home/shiny/882.webp b/static/sprites-small/home/shiny/882.webp index 96e4043..14d55a9 100644 Binary files a/static/sprites-small/home/shiny/882.webp and b/static/sprites-small/home/shiny/882.webp differ diff --git a/static/sprites-small/home/shiny/883.webp b/static/sprites-small/home/shiny/883.webp index 696c54a..6e312eb 100644 Binary files a/static/sprites-small/home/shiny/883.webp and b/static/sprites-small/home/shiny/883.webp differ diff --git a/static/sprites-small/home/shiny/884.webp b/static/sprites-small/home/shiny/884.webp index ca0edcf..ffeab91 100644 Binary files a/static/sprites-small/home/shiny/884.webp and b/static/sprites-small/home/shiny/884.webp differ diff --git a/static/sprites-small/home/shiny/885.webp b/static/sprites-small/home/shiny/885.webp index 5b7c2d1..fc7994e 100644 Binary files a/static/sprites-small/home/shiny/885.webp and b/static/sprites-small/home/shiny/885.webp differ diff --git a/static/sprites-small/home/shiny/886.webp b/static/sprites-small/home/shiny/886.webp index 775ed94..330747f 100644 Binary files a/static/sprites-small/home/shiny/886.webp and b/static/sprites-small/home/shiny/886.webp differ diff --git a/static/sprites-small/home/shiny/887.webp b/static/sprites-small/home/shiny/887.webp index f62bcff..6d99306 100644 Binary files a/static/sprites-small/home/shiny/887.webp and b/static/sprites-small/home/shiny/887.webp differ diff --git a/static/sprites-small/home/shiny/888.webp b/static/sprites-small/home/shiny/888.webp index eb35807..146030b 100644 Binary files a/static/sprites-small/home/shiny/888.webp and b/static/sprites-small/home/shiny/888.webp differ diff --git a/static/sprites-small/home/shiny/889.webp b/static/sprites-small/home/shiny/889.webp index 821c710..e1a04bd 100644 Binary files a/static/sprites-small/home/shiny/889.webp and b/static/sprites-small/home/shiny/889.webp differ diff --git a/static/sprites-small/home/shiny/89.webp b/static/sprites-small/home/shiny/89.webp index 3e422b2..2076db0 100644 Binary files a/static/sprites-small/home/shiny/89.webp and b/static/sprites-small/home/shiny/89.webp differ diff --git a/static/sprites-small/home/shiny/890.webp b/static/sprites-small/home/shiny/890.webp index 040bf9b..9df0ea5 100644 Binary files a/static/sprites-small/home/shiny/890.webp and b/static/sprites-small/home/shiny/890.webp differ diff --git a/static/sprites-small/home/shiny/891.webp b/static/sprites-small/home/shiny/891.webp index d57e1c4..8b66b28 100644 Binary files a/static/sprites-small/home/shiny/891.webp and b/static/sprites-small/home/shiny/891.webp differ diff --git a/static/sprites-small/home/shiny/892.webp b/static/sprites-small/home/shiny/892.webp index ac9d4c7..4bc0883 100644 Binary files a/static/sprites-small/home/shiny/892.webp and b/static/sprites-small/home/shiny/892.webp differ diff --git a/static/sprites-small/home/shiny/893-dada.webp b/static/sprites-small/home/shiny/893-dada.webp index 8761ab5..2d7872c 100644 Binary files a/static/sprites-small/home/shiny/893-dada.webp and b/static/sprites-small/home/shiny/893-dada.webp differ diff --git a/static/sprites-small/home/shiny/893.webp b/static/sprites-small/home/shiny/893.webp index 2a91bc6..8f3978f 100644 Binary files a/static/sprites-small/home/shiny/893.webp and b/static/sprites-small/home/shiny/893.webp differ diff --git a/static/sprites-small/home/shiny/894.webp b/static/sprites-small/home/shiny/894.webp index 9b1515f..0412a3e 100644 Binary files a/static/sprites-small/home/shiny/894.webp and b/static/sprites-small/home/shiny/894.webp differ diff --git a/static/sprites-small/home/shiny/895.webp b/static/sprites-small/home/shiny/895.webp index facf037..bc81576 100644 Binary files a/static/sprites-small/home/shiny/895.webp and b/static/sprites-small/home/shiny/895.webp differ diff --git a/static/sprites-small/home/shiny/896.webp b/static/sprites-small/home/shiny/896.webp index 1a109ab..1b8b3e5 100644 Binary files a/static/sprites-small/home/shiny/896.webp and b/static/sprites-small/home/shiny/896.webp differ diff --git a/static/sprites-small/home/shiny/897.webp b/static/sprites-small/home/shiny/897.webp index f290fa9..acd9df8 100644 Binary files a/static/sprites-small/home/shiny/897.webp and b/static/sprites-small/home/shiny/897.webp differ diff --git a/static/sprites-small/home/shiny/898.webp b/static/sprites-small/home/shiny/898.webp index 4877c8f..c1d346a 100644 Binary files a/static/sprites-small/home/shiny/898.webp and b/static/sprites-small/home/shiny/898.webp differ diff --git a/static/sprites-small/home/shiny/899.webp b/static/sprites-small/home/shiny/899.webp index 588e4c5..c7834ad 100644 Binary files a/static/sprites-small/home/shiny/899.webp and b/static/sprites-small/home/shiny/899.webp differ diff --git a/static/sprites-small/home/shiny/9.webp b/static/sprites-small/home/shiny/9.webp index df9de8d..1e33086 100644 Binary files a/static/sprites-small/home/shiny/9.webp and b/static/sprites-small/home/shiny/9.webp differ diff --git a/static/sprites-small/home/shiny/90.webp b/static/sprites-small/home/shiny/90.webp index 5f6519f..fc1fc36 100644 Binary files a/static/sprites-small/home/shiny/90.webp and b/static/sprites-small/home/shiny/90.webp differ diff --git a/static/sprites-small/home/shiny/900.webp b/static/sprites-small/home/shiny/900.webp index 65d69af..56f17cb 100644 Binary files a/static/sprites-small/home/shiny/900.webp and b/static/sprites-small/home/shiny/900.webp differ diff --git a/static/sprites-small/home/shiny/901.webp b/static/sprites-small/home/shiny/901.webp index 766c13b..65d5526 100644 Binary files a/static/sprites-small/home/shiny/901.webp and b/static/sprites-small/home/shiny/901.webp differ diff --git a/static/sprites-small/home/shiny/902.webp b/static/sprites-small/home/shiny/902.webp index bae832a..1291da4 100644 Binary files a/static/sprites-small/home/shiny/902.webp and b/static/sprites-small/home/shiny/902.webp differ diff --git a/static/sprites-small/home/shiny/903.webp b/static/sprites-small/home/shiny/903.webp index c7c521f..416a0c0 100644 Binary files a/static/sprites-small/home/shiny/903.webp and b/static/sprites-small/home/shiny/903.webp differ diff --git a/static/sprites-small/home/shiny/904.webp b/static/sprites-small/home/shiny/904.webp index ac534b2..228c4bc 100644 Binary files a/static/sprites-small/home/shiny/904.webp and b/static/sprites-small/home/shiny/904.webp differ diff --git a/static/sprites-small/home/shiny/905.webp b/static/sprites-small/home/shiny/905.webp index 0bee46a..a783807 100644 Binary files a/static/sprites-small/home/shiny/905.webp and b/static/sprites-small/home/shiny/905.webp differ diff --git a/static/sprites-small/home/shiny/906.webp b/static/sprites-small/home/shiny/906.webp index 320bad9..808d317 100644 Binary files a/static/sprites-small/home/shiny/906.webp and b/static/sprites-small/home/shiny/906.webp differ diff --git a/static/sprites-small/home/shiny/907.webp b/static/sprites-small/home/shiny/907.webp index d6aa69c..4d7ab98 100644 Binary files a/static/sprites-small/home/shiny/907.webp and b/static/sprites-small/home/shiny/907.webp differ diff --git a/static/sprites-small/home/shiny/908.webp b/static/sprites-small/home/shiny/908.webp index 575f87c..b932623 100644 Binary files a/static/sprites-small/home/shiny/908.webp and b/static/sprites-small/home/shiny/908.webp differ diff --git a/static/sprites-small/home/shiny/909.webp b/static/sprites-small/home/shiny/909.webp index db7cd65..63e581e 100644 Binary files a/static/sprites-small/home/shiny/909.webp and b/static/sprites-small/home/shiny/909.webp differ diff --git a/static/sprites-small/home/shiny/91.webp b/static/sprites-small/home/shiny/91.webp index a822865..87a9a14 100644 Binary files a/static/sprites-small/home/shiny/91.webp and b/static/sprites-small/home/shiny/91.webp differ diff --git a/static/sprites-small/home/shiny/910.webp b/static/sprites-small/home/shiny/910.webp index 7fb83aa..ecf8044 100644 Binary files a/static/sprites-small/home/shiny/910.webp and b/static/sprites-small/home/shiny/910.webp differ diff --git a/static/sprites-small/home/shiny/911.webp b/static/sprites-small/home/shiny/911.webp index 401484e..388d31e 100644 Binary files a/static/sprites-small/home/shiny/911.webp and b/static/sprites-small/home/shiny/911.webp differ diff --git a/static/sprites-small/home/shiny/912.webp b/static/sprites-small/home/shiny/912.webp index 20a7b73..71c16f2 100644 Binary files a/static/sprites-small/home/shiny/912.webp and b/static/sprites-small/home/shiny/912.webp differ diff --git a/static/sprites-small/home/shiny/913.webp b/static/sprites-small/home/shiny/913.webp index 75cf770..d86eaa3 100644 Binary files a/static/sprites-small/home/shiny/913.webp and b/static/sprites-small/home/shiny/913.webp differ diff --git a/static/sprites-small/home/shiny/914.webp b/static/sprites-small/home/shiny/914.webp index 731f4e2..651f32c 100644 Binary files a/static/sprites-small/home/shiny/914.webp and b/static/sprites-small/home/shiny/914.webp differ diff --git a/static/sprites-small/home/shiny/915.webp b/static/sprites-small/home/shiny/915.webp index c2ecbac..ecfa894 100644 Binary files a/static/sprites-small/home/shiny/915.webp and b/static/sprites-small/home/shiny/915.webp differ diff --git a/static/sprites-small/home/shiny/916.webp b/static/sprites-small/home/shiny/916.webp index 5846ac2..0ec7dc4 100644 Binary files a/static/sprites-small/home/shiny/916.webp and b/static/sprites-small/home/shiny/916.webp differ diff --git a/static/sprites-small/home/shiny/917.webp b/static/sprites-small/home/shiny/917.webp index 9daf50b..d116366 100644 Binary files a/static/sprites-small/home/shiny/917.webp and b/static/sprites-small/home/shiny/917.webp differ diff --git a/static/sprites-small/home/shiny/918.webp b/static/sprites-small/home/shiny/918.webp index 855b9d9..7ec98c7 100644 Binary files a/static/sprites-small/home/shiny/918.webp and b/static/sprites-small/home/shiny/918.webp differ diff --git a/static/sprites-small/home/shiny/919.webp b/static/sprites-small/home/shiny/919.webp index 18b9749..99d13fb 100644 Binary files a/static/sprites-small/home/shiny/919.webp and b/static/sprites-small/home/shiny/919.webp differ diff --git a/static/sprites-small/home/shiny/92.webp b/static/sprites-small/home/shiny/92.webp index c54deec..dd840cf 100644 Binary files a/static/sprites-small/home/shiny/92.webp and b/static/sprites-small/home/shiny/92.webp differ diff --git a/static/sprites-small/home/shiny/920.webp b/static/sprites-small/home/shiny/920.webp index c0e2f53..9b9ec8b 100644 Binary files a/static/sprites-small/home/shiny/920.webp and b/static/sprites-small/home/shiny/920.webp differ diff --git a/static/sprites-small/home/shiny/921.webp b/static/sprites-small/home/shiny/921.webp index 8c32a2d..dda975e 100644 Binary files a/static/sprites-small/home/shiny/921.webp and b/static/sprites-small/home/shiny/921.webp differ diff --git a/static/sprites-small/home/shiny/922.webp b/static/sprites-small/home/shiny/922.webp index 3e2a194..2f788f4 100644 Binary files a/static/sprites-small/home/shiny/922.webp and b/static/sprites-small/home/shiny/922.webp differ diff --git a/static/sprites-small/home/shiny/923.webp b/static/sprites-small/home/shiny/923.webp index f397fda..4b18cae 100644 Binary files a/static/sprites-small/home/shiny/923.webp and b/static/sprites-small/home/shiny/923.webp differ diff --git a/static/sprites-small/home/shiny/924.webp b/static/sprites-small/home/shiny/924.webp index 943b084..87af1d9 100644 Binary files a/static/sprites-small/home/shiny/924.webp and b/static/sprites-small/home/shiny/924.webp differ diff --git a/static/sprites-small/home/shiny/925.webp b/static/sprites-small/home/shiny/925.webp index 7fd513f..e52a820 100644 Binary files a/static/sprites-small/home/shiny/925.webp and b/static/sprites-small/home/shiny/925.webp differ diff --git a/static/sprites-small/home/shiny/926.webp b/static/sprites-small/home/shiny/926.webp index e49ce47..4841c79 100644 Binary files a/static/sprites-small/home/shiny/926.webp and b/static/sprites-small/home/shiny/926.webp differ diff --git a/static/sprites-small/home/shiny/927.webp b/static/sprites-small/home/shiny/927.webp index 61cbb74..a49c145 100644 Binary files a/static/sprites-small/home/shiny/927.webp and b/static/sprites-small/home/shiny/927.webp differ diff --git a/static/sprites-small/home/shiny/928.webp b/static/sprites-small/home/shiny/928.webp index 390cd1c..e529b60 100644 Binary files a/static/sprites-small/home/shiny/928.webp and b/static/sprites-small/home/shiny/928.webp differ diff --git a/static/sprites-small/home/shiny/929.webp b/static/sprites-small/home/shiny/929.webp index 1a077e8..62d883a 100644 Binary files a/static/sprites-small/home/shiny/929.webp and b/static/sprites-small/home/shiny/929.webp differ diff --git a/static/sprites-small/home/shiny/93.webp b/static/sprites-small/home/shiny/93.webp index 71e7dd2..f899d33 100644 Binary files a/static/sprites-small/home/shiny/93.webp and b/static/sprites-small/home/shiny/93.webp differ diff --git a/static/sprites-small/home/shiny/930.webp b/static/sprites-small/home/shiny/930.webp index 2612758..9aa3fc6 100644 Binary files a/static/sprites-small/home/shiny/930.webp and b/static/sprites-small/home/shiny/930.webp differ diff --git a/static/sprites-small/home/shiny/931.webp b/static/sprites-small/home/shiny/931.webp index 1c7ec30..c204368 100644 Binary files a/static/sprites-small/home/shiny/931.webp and b/static/sprites-small/home/shiny/931.webp differ diff --git a/static/sprites-small/home/shiny/932.webp b/static/sprites-small/home/shiny/932.webp index 774f55c..9bc4a57 100644 Binary files a/static/sprites-small/home/shiny/932.webp and b/static/sprites-small/home/shiny/932.webp differ diff --git a/static/sprites-small/home/shiny/933.webp b/static/sprites-small/home/shiny/933.webp index 8ed52ee..96f48fa 100644 Binary files a/static/sprites-small/home/shiny/933.webp and b/static/sprites-small/home/shiny/933.webp differ diff --git a/static/sprites-small/home/shiny/934.webp b/static/sprites-small/home/shiny/934.webp index 672cbb6..1213af4 100644 Binary files a/static/sprites-small/home/shiny/934.webp and b/static/sprites-small/home/shiny/934.webp differ diff --git a/static/sprites-small/home/shiny/935.webp b/static/sprites-small/home/shiny/935.webp index 85667d9..32a39d4 100644 Binary files a/static/sprites-small/home/shiny/935.webp and b/static/sprites-small/home/shiny/935.webp differ diff --git a/static/sprites-small/home/shiny/936.webp b/static/sprites-small/home/shiny/936.webp index 2278436..e08dbfe 100644 Binary files a/static/sprites-small/home/shiny/936.webp and b/static/sprites-small/home/shiny/936.webp differ diff --git a/static/sprites-small/home/shiny/937.webp b/static/sprites-small/home/shiny/937.webp index c6b4e7f..17962af 100644 Binary files a/static/sprites-small/home/shiny/937.webp and b/static/sprites-small/home/shiny/937.webp differ diff --git a/static/sprites-small/home/shiny/938.webp b/static/sprites-small/home/shiny/938.webp index 03740c9..777445a 100644 Binary files a/static/sprites-small/home/shiny/938.webp and b/static/sprites-small/home/shiny/938.webp differ diff --git a/static/sprites-small/home/shiny/939.webp b/static/sprites-small/home/shiny/939.webp index 3c32c77..1eab45b 100644 Binary files a/static/sprites-small/home/shiny/939.webp and b/static/sprites-small/home/shiny/939.webp differ diff --git a/static/sprites-small/home/shiny/94.webp b/static/sprites-small/home/shiny/94.webp index 4486ea4..9fccb69 100644 Binary files a/static/sprites-small/home/shiny/94.webp and b/static/sprites-small/home/shiny/94.webp differ diff --git a/static/sprites-small/home/shiny/940.webp b/static/sprites-small/home/shiny/940.webp index 7c7326a..5efe87f 100644 Binary files a/static/sprites-small/home/shiny/940.webp and b/static/sprites-small/home/shiny/940.webp differ diff --git a/static/sprites-small/home/shiny/941.webp b/static/sprites-small/home/shiny/941.webp index 1f2094f..5f6c704 100644 Binary files a/static/sprites-small/home/shiny/941.webp and b/static/sprites-small/home/shiny/941.webp differ diff --git a/static/sprites-small/home/shiny/942.webp b/static/sprites-small/home/shiny/942.webp index 54b2fe7..dc50644 100644 Binary files a/static/sprites-small/home/shiny/942.webp and b/static/sprites-small/home/shiny/942.webp differ diff --git a/static/sprites-small/home/shiny/943.webp b/static/sprites-small/home/shiny/943.webp index 37be4ec..59f2542 100644 Binary files a/static/sprites-small/home/shiny/943.webp and b/static/sprites-small/home/shiny/943.webp differ diff --git a/static/sprites-small/home/shiny/944.webp b/static/sprites-small/home/shiny/944.webp index 4932e61..5eb9869 100644 Binary files a/static/sprites-small/home/shiny/944.webp and b/static/sprites-small/home/shiny/944.webp differ diff --git a/static/sprites-small/home/shiny/945.webp b/static/sprites-small/home/shiny/945.webp index 00c3c57..2f0e259 100644 Binary files a/static/sprites-small/home/shiny/945.webp and b/static/sprites-small/home/shiny/945.webp differ diff --git a/static/sprites-small/home/shiny/946.webp b/static/sprites-small/home/shiny/946.webp index 25f4d74..7329bf3 100644 Binary files a/static/sprites-small/home/shiny/946.webp and b/static/sprites-small/home/shiny/946.webp differ diff --git a/static/sprites-small/home/shiny/947.webp b/static/sprites-small/home/shiny/947.webp index d884479..30fa377 100644 Binary files a/static/sprites-small/home/shiny/947.webp and b/static/sprites-small/home/shiny/947.webp differ diff --git a/static/sprites-small/home/shiny/948.webp b/static/sprites-small/home/shiny/948.webp index a07d70a..016abd9 100644 Binary files a/static/sprites-small/home/shiny/948.webp and b/static/sprites-small/home/shiny/948.webp differ diff --git a/static/sprites-small/home/shiny/949.webp b/static/sprites-small/home/shiny/949.webp index 72682f1..9a05cba 100644 Binary files a/static/sprites-small/home/shiny/949.webp and b/static/sprites-small/home/shiny/949.webp differ diff --git a/static/sprites-small/home/shiny/95.webp b/static/sprites-small/home/shiny/95.webp index 6bf3bbe..4c6319e 100644 Binary files a/static/sprites-small/home/shiny/95.webp and b/static/sprites-small/home/shiny/95.webp differ diff --git a/static/sprites-small/home/shiny/950.webp b/static/sprites-small/home/shiny/950.webp index 6115dc0..78ad176 100644 Binary files a/static/sprites-small/home/shiny/950.webp and b/static/sprites-small/home/shiny/950.webp differ diff --git a/static/sprites-small/home/shiny/951.webp b/static/sprites-small/home/shiny/951.webp index 3b0bf00..e92d485 100644 Binary files a/static/sprites-small/home/shiny/951.webp and b/static/sprites-small/home/shiny/951.webp differ diff --git a/static/sprites-small/home/shiny/952.webp b/static/sprites-small/home/shiny/952.webp index c780185..7047b79 100644 Binary files a/static/sprites-small/home/shiny/952.webp and b/static/sprites-small/home/shiny/952.webp differ diff --git a/static/sprites-small/home/shiny/953.webp b/static/sprites-small/home/shiny/953.webp index 1d04757..5ed46b9 100644 Binary files a/static/sprites-small/home/shiny/953.webp and b/static/sprites-small/home/shiny/953.webp differ diff --git a/static/sprites-small/home/shiny/954.webp b/static/sprites-small/home/shiny/954.webp index 3b32637..db0b03a 100644 Binary files a/static/sprites-small/home/shiny/954.webp and b/static/sprites-small/home/shiny/954.webp differ diff --git a/static/sprites-small/home/shiny/955.webp b/static/sprites-small/home/shiny/955.webp index 5d246f9..7b1b25f 100644 Binary files a/static/sprites-small/home/shiny/955.webp and b/static/sprites-small/home/shiny/955.webp differ diff --git a/static/sprites-small/home/shiny/956.webp b/static/sprites-small/home/shiny/956.webp index 81a8afa..739d198 100644 Binary files a/static/sprites-small/home/shiny/956.webp and b/static/sprites-small/home/shiny/956.webp differ diff --git a/static/sprites-small/home/shiny/957.webp b/static/sprites-small/home/shiny/957.webp index 30d73bb..d3b02a7 100644 Binary files a/static/sprites-small/home/shiny/957.webp and b/static/sprites-small/home/shiny/957.webp differ diff --git a/static/sprites-small/home/shiny/958.webp b/static/sprites-small/home/shiny/958.webp index 80140df..e2f7d28 100644 Binary files a/static/sprites-small/home/shiny/958.webp and b/static/sprites-small/home/shiny/958.webp differ diff --git a/static/sprites-small/home/shiny/959.webp b/static/sprites-small/home/shiny/959.webp index 70b2213..3578e64 100644 Binary files a/static/sprites-small/home/shiny/959.webp and b/static/sprites-small/home/shiny/959.webp differ diff --git a/static/sprites-small/home/shiny/96.webp b/static/sprites-small/home/shiny/96.webp index 9aa9ca7..1700faf 100644 Binary files a/static/sprites-small/home/shiny/96.webp and b/static/sprites-small/home/shiny/96.webp differ diff --git a/static/sprites-small/home/shiny/960.webp b/static/sprites-small/home/shiny/960.webp index 5761ec7..ed98d5c 100644 Binary files a/static/sprites-small/home/shiny/960.webp and b/static/sprites-small/home/shiny/960.webp differ diff --git a/static/sprites-small/home/shiny/961.webp b/static/sprites-small/home/shiny/961.webp index 71d1a77..f4562c0 100644 Binary files a/static/sprites-small/home/shiny/961.webp and b/static/sprites-small/home/shiny/961.webp differ diff --git a/static/sprites-small/home/shiny/962.webp b/static/sprites-small/home/shiny/962.webp index d9a35ec..386a7f4 100644 Binary files a/static/sprites-small/home/shiny/962.webp and b/static/sprites-small/home/shiny/962.webp differ diff --git a/static/sprites-small/home/shiny/963.webp b/static/sprites-small/home/shiny/963.webp index 85877ab..83a739f 100644 Binary files a/static/sprites-small/home/shiny/963.webp and b/static/sprites-small/home/shiny/963.webp differ diff --git a/static/sprites-small/home/shiny/964.webp b/static/sprites-small/home/shiny/964.webp index 09bc52a..ea15dd6 100644 Binary files a/static/sprites-small/home/shiny/964.webp and b/static/sprites-small/home/shiny/964.webp differ diff --git a/static/sprites-small/home/shiny/965.webp b/static/sprites-small/home/shiny/965.webp index 0a76286..4d1da45 100644 Binary files a/static/sprites-small/home/shiny/965.webp and b/static/sprites-small/home/shiny/965.webp differ diff --git a/static/sprites-small/home/shiny/966.webp b/static/sprites-small/home/shiny/966.webp index 2525261..0c2de79 100644 Binary files a/static/sprites-small/home/shiny/966.webp and b/static/sprites-small/home/shiny/966.webp differ diff --git a/static/sprites-small/home/shiny/967.webp b/static/sprites-small/home/shiny/967.webp index 3c4f3d4..ccb3252 100644 Binary files a/static/sprites-small/home/shiny/967.webp and b/static/sprites-small/home/shiny/967.webp differ diff --git a/static/sprites-small/home/shiny/968.webp b/static/sprites-small/home/shiny/968.webp index 8d814eb..b0b202b 100644 Binary files a/static/sprites-small/home/shiny/968.webp and b/static/sprites-small/home/shiny/968.webp differ diff --git a/static/sprites-small/home/shiny/969.webp b/static/sprites-small/home/shiny/969.webp index 77959d6..b862135 100644 Binary files a/static/sprites-small/home/shiny/969.webp and b/static/sprites-small/home/shiny/969.webp differ diff --git a/static/sprites-small/home/shiny/97.webp b/static/sprites-small/home/shiny/97.webp index 58ddeca..22a4d57 100644 Binary files a/static/sprites-small/home/shiny/97.webp and b/static/sprites-small/home/shiny/97.webp differ diff --git a/static/sprites-small/home/shiny/970.webp b/static/sprites-small/home/shiny/970.webp index c66ec9c..795455d 100644 Binary files a/static/sprites-small/home/shiny/970.webp and b/static/sprites-small/home/shiny/970.webp differ diff --git a/static/sprites-small/home/shiny/971.webp b/static/sprites-small/home/shiny/971.webp index 2229eb0..59edddd 100644 Binary files a/static/sprites-small/home/shiny/971.webp and b/static/sprites-small/home/shiny/971.webp differ diff --git a/static/sprites-small/home/shiny/972.webp b/static/sprites-small/home/shiny/972.webp index a8b5dd6..87b2356 100644 Binary files a/static/sprites-small/home/shiny/972.webp and b/static/sprites-small/home/shiny/972.webp differ diff --git a/static/sprites-small/home/shiny/973.webp b/static/sprites-small/home/shiny/973.webp index af2a343..8cfd6ec 100644 Binary files a/static/sprites-small/home/shiny/973.webp and b/static/sprites-small/home/shiny/973.webp differ diff --git a/static/sprites-small/home/shiny/974.webp b/static/sprites-small/home/shiny/974.webp index b33d84e..390efba 100644 Binary files a/static/sprites-small/home/shiny/974.webp and b/static/sprites-small/home/shiny/974.webp differ diff --git a/static/sprites-small/home/shiny/975.webp b/static/sprites-small/home/shiny/975.webp index 1e0ccc5..ab18684 100644 Binary files a/static/sprites-small/home/shiny/975.webp and b/static/sprites-small/home/shiny/975.webp differ diff --git a/static/sprites-small/home/shiny/976.webp b/static/sprites-small/home/shiny/976.webp index 1516687..494aced 100644 Binary files a/static/sprites-small/home/shiny/976.webp and b/static/sprites-small/home/shiny/976.webp differ diff --git a/static/sprites-small/home/shiny/977.webp b/static/sprites-small/home/shiny/977.webp index f2988b6..bd44854 100644 Binary files a/static/sprites-small/home/shiny/977.webp and b/static/sprites-small/home/shiny/977.webp differ diff --git a/static/sprites-small/home/shiny/978.webp b/static/sprites-small/home/shiny/978.webp index 455bb97..676560c 100644 Binary files a/static/sprites-small/home/shiny/978.webp and b/static/sprites-small/home/shiny/978.webp differ diff --git a/static/sprites-small/home/shiny/979.webp b/static/sprites-small/home/shiny/979.webp index c1c1c9d..43f7cf4 100644 Binary files a/static/sprites-small/home/shiny/979.webp and b/static/sprites-small/home/shiny/979.webp differ diff --git a/static/sprites-small/home/shiny/98.webp b/static/sprites-small/home/shiny/98.webp index 8b8c2c3..f4eb6ea 100644 Binary files a/static/sprites-small/home/shiny/98.webp and b/static/sprites-small/home/shiny/98.webp differ diff --git a/static/sprites-small/home/shiny/980.webp b/static/sprites-small/home/shiny/980.webp index b36f696..6f60d56 100644 Binary files a/static/sprites-small/home/shiny/980.webp and b/static/sprites-small/home/shiny/980.webp differ diff --git a/static/sprites-small/home/shiny/981.webp b/static/sprites-small/home/shiny/981.webp index 9edae2d..5395265 100644 Binary files a/static/sprites-small/home/shiny/981.webp and b/static/sprites-small/home/shiny/981.webp differ diff --git a/static/sprites-small/home/shiny/982.webp b/static/sprites-small/home/shiny/982.webp index 8636d07..608f72a 100644 Binary files a/static/sprites-small/home/shiny/982.webp and b/static/sprites-small/home/shiny/982.webp differ diff --git a/static/sprites-small/home/shiny/983.webp b/static/sprites-small/home/shiny/983.webp index 758d704..5d75834 100644 Binary files a/static/sprites-small/home/shiny/983.webp and b/static/sprites-small/home/shiny/983.webp differ diff --git a/static/sprites-small/home/shiny/984.webp b/static/sprites-small/home/shiny/984.webp index a32c082..2a9d40c 100644 Binary files a/static/sprites-small/home/shiny/984.webp and b/static/sprites-small/home/shiny/984.webp differ diff --git a/static/sprites-small/home/shiny/985.webp b/static/sprites-small/home/shiny/985.webp index 2e01f85..d96b969 100644 Binary files a/static/sprites-small/home/shiny/985.webp and b/static/sprites-small/home/shiny/985.webp differ diff --git a/static/sprites-small/home/shiny/986.webp b/static/sprites-small/home/shiny/986.webp index e646c03..20f08fe 100644 Binary files a/static/sprites-small/home/shiny/986.webp and b/static/sprites-small/home/shiny/986.webp differ diff --git a/static/sprites-small/home/shiny/987.webp b/static/sprites-small/home/shiny/987.webp index f71f41b..3640e61 100644 Binary files a/static/sprites-small/home/shiny/987.webp and b/static/sprites-small/home/shiny/987.webp differ diff --git a/static/sprites-small/home/shiny/988.webp b/static/sprites-small/home/shiny/988.webp index d469905..d327246 100644 Binary files a/static/sprites-small/home/shiny/988.webp and b/static/sprites-small/home/shiny/988.webp differ diff --git a/static/sprites-small/home/shiny/989.webp b/static/sprites-small/home/shiny/989.webp index 8733cef..07446dc 100644 Binary files a/static/sprites-small/home/shiny/989.webp and b/static/sprites-small/home/shiny/989.webp differ diff --git a/static/sprites-small/home/shiny/99.webp b/static/sprites-small/home/shiny/99.webp index 21438dd..878e7f7 100644 Binary files a/static/sprites-small/home/shiny/99.webp and b/static/sprites-small/home/shiny/99.webp differ diff --git a/static/sprites-small/home/shiny/990.webp b/static/sprites-small/home/shiny/990.webp index 263e39b..0789c81 100644 Binary files a/static/sprites-small/home/shiny/990.webp and b/static/sprites-small/home/shiny/990.webp differ diff --git a/static/sprites-small/home/shiny/991.webp b/static/sprites-small/home/shiny/991.webp index 8f28de6..dd5f1f7 100644 Binary files a/static/sprites-small/home/shiny/991.webp and b/static/sprites-small/home/shiny/991.webp differ diff --git a/static/sprites-small/home/shiny/992.webp b/static/sprites-small/home/shiny/992.webp index cb086df..343e6c6 100644 Binary files a/static/sprites-small/home/shiny/992.webp and b/static/sprites-small/home/shiny/992.webp differ diff --git a/static/sprites-small/home/shiny/993.webp b/static/sprites-small/home/shiny/993.webp index e2d87d4..d98637c 100644 Binary files a/static/sprites-small/home/shiny/993.webp and b/static/sprites-small/home/shiny/993.webp differ diff --git a/static/sprites-small/home/shiny/994.webp b/static/sprites-small/home/shiny/994.webp index 0bbd07c..1f87325 100644 Binary files a/static/sprites-small/home/shiny/994.webp and b/static/sprites-small/home/shiny/994.webp differ diff --git a/static/sprites-small/home/shiny/995.webp b/static/sprites-small/home/shiny/995.webp index 8ed9e7c..d4705c9 100644 Binary files a/static/sprites-small/home/shiny/995.webp and b/static/sprites-small/home/shiny/995.webp differ diff --git a/static/sprites-small/home/shiny/996.webp b/static/sprites-small/home/shiny/996.webp index 0d5f0a7..952aa2e 100644 Binary files a/static/sprites-small/home/shiny/996.webp and b/static/sprites-small/home/shiny/996.webp differ diff --git a/static/sprites-small/home/shiny/997.webp b/static/sprites-small/home/shiny/997.webp index 97cb876..f21c989 100644 Binary files a/static/sprites-small/home/shiny/997.webp and b/static/sprites-small/home/shiny/997.webp differ diff --git a/static/sprites-small/home/shiny/998.webp b/static/sprites-small/home/shiny/998.webp index 08105a4..604c7bd 100644 Binary files a/static/sprites-small/home/shiny/998.webp and b/static/sprites-small/home/shiny/998.webp differ diff --git a/static/sprites-small/home/shiny/999.webp b/static/sprites-small/home/shiny/999.webp index 19d47e5..e5a1008 100644 Binary files a/static/sprites-small/home/shiny/999.webp and b/static/sprites-small/home/shiny/999.webp differ diff --git a/static/sprites-small/home/shiny/female/10235.webp b/static/sprites-small/home/shiny/female/10235.webp index e5ac530..67aabb7 100644 Binary files a/static/sprites-small/home/shiny/female/10235.webp and b/static/sprites-small/home/shiny/female/10235.webp differ diff --git a/static/sprites-small/home/shiny/female/111.webp b/static/sprites-small/home/shiny/female/111.webp index 9922006..51456f1 100644 Binary files a/static/sprites-small/home/shiny/female/111.webp and b/static/sprites-small/home/shiny/female/111.webp differ diff --git a/static/sprites-small/home/shiny/female/112.webp b/static/sprites-small/home/shiny/female/112.webp index 0ce1afa..847542e 100644 Binary files a/static/sprites-small/home/shiny/female/112.webp and b/static/sprites-small/home/shiny/female/112.webp differ diff --git a/static/sprites-small/home/shiny/female/118.webp b/static/sprites-small/home/shiny/female/118.webp index 491c741..12fd7a1 100644 Binary files a/static/sprites-small/home/shiny/female/118.webp and b/static/sprites-small/home/shiny/female/118.webp differ diff --git a/static/sprites-small/home/shiny/female/119.webp b/static/sprites-small/home/shiny/female/119.webp index 2c86600..bde92fc 100644 Binary files a/static/sprites-small/home/shiny/female/119.webp and b/static/sprites-small/home/shiny/female/119.webp differ diff --git a/static/sprites-small/home/shiny/female/12.webp b/static/sprites-small/home/shiny/female/12.webp index 79b0236..6b239dd 100644 Binary files a/static/sprites-small/home/shiny/female/12.webp and b/static/sprites-small/home/shiny/female/12.webp differ diff --git a/static/sprites-small/home/shiny/female/123.webp b/static/sprites-small/home/shiny/female/123.webp index fd6fff7..6fc1e04 100644 Binary files a/static/sprites-small/home/shiny/female/123.webp and b/static/sprites-small/home/shiny/female/123.webp differ diff --git a/static/sprites-small/home/shiny/female/129.webp b/static/sprites-small/home/shiny/female/129.webp index 56195a0..05232c7 100644 Binary files a/static/sprites-small/home/shiny/female/129.webp and b/static/sprites-small/home/shiny/female/129.webp differ diff --git a/static/sprites-small/home/shiny/female/130.webp b/static/sprites-small/home/shiny/female/130.webp index 13adaae..3d23657 100644 Binary files a/static/sprites-small/home/shiny/female/130.webp and b/static/sprites-small/home/shiny/female/130.webp differ diff --git a/static/sprites-small/home/shiny/female/133.webp b/static/sprites-small/home/shiny/female/133.webp index ba09c0e..1a38788 100644 Binary files a/static/sprites-small/home/shiny/female/133.webp and b/static/sprites-small/home/shiny/female/133.webp differ diff --git a/static/sprites-small/home/shiny/female/154.webp b/static/sprites-small/home/shiny/female/154.webp index 1fb2472..fe2fe0b 100644 Binary files a/static/sprites-small/home/shiny/female/154.webp and b/static/sprites-small/home/shiny/female/154.webp differ diff --git a/static/sprites-small/home/shiny/female/165.webp b/static/sprites-small/home/shiny/female/165.webp index 8f377d6..21f67b0 100644 Binary files a/static/sprites-small/home/shiny/female/165.webp and b/static/sprites-small/home/shiny/female/165.webp differ diff --git a/static/sprites-small/home/shiny/female/166.webp b/static/sprites-small/home/shiny/female/166.webp index e17f939..2058191 100644 Binary files a/static/sprites-small/home/shiny/female/166.webp and b/static/sprites-small/home/shiny/female/166.webp differ diff --git a/static/sprites-small/home/shiny/female/178.webp b/static/sprites-small/home/shiny/female/178.webp index 7f61d40..8873adb 100644 Binary files a/static/sprites-small/home/shiny/female/178.webp and b/static/sprites-small/home/shiny/female/178.webp differ diff --git a/static/sprites-small/home/shiny/female/185.webp b/static/sprites-small/home/shiny/female/185.webp index dc4af00..ad06585 100644 Binary files a/static/sprites-small/home/shiny/female/185.webp and b/static/sprites-small/home/shiny/female/185.webp differ diff --git a/static/sprites-small/home/shiny/female/186.webp b/static/sprites-small/home/shiny/female/186.webp index ebfd92b..bc7d30b 100644 Binary files a/static/sprites-small/home/shiny/female/186.webp and b/static/sprites-small/home/shiny/female/186.webp differ diff --git a/static/sprites-small/home/shiny/female/19.webp b/static/sprites-small/home/shiny/female/19.webp index 803bdae..54306b9 100644 Binary files a/static/sprites-small/home/shiny/female/19.webp and b/static/sprites-small/home/shiny/female/19.webp differ diff --git a/static/sprites-small/home/shiny/female/190.webp b/static/sprites-small/home/shiny/female/190.webp index d3dce0d..44730f1 100644 Binary files a/static/sprites-small/home/shiny/female/190.webp and b/static/sprites-small/home/shiny/female/190.webp differ diff --git a/static/sprites-small/home/shiny/female/194.webp b/static/sprites-small/home/shiny/female/194.webp index 5d21464..e299164 100644 Binary files a/static/sprites-small/home/shiny/female/194.webp and b/static/sprites-small/home/shiny/female/194.webp differ diff --git a/static/sprites-small/home/shiny/female/195.webp b/static/sprites-small/home/shiny/female/195.webp index 5f37109..b00fba9 100644 Binary files a/static/sprites-small/home/shiny/female/195.webp and b/static/sprites-small/home/shiny/female/195.webp differ diff --git a/static/sprites-small/home/shiny/female/198.webp b/static/sprites-small/home/shiny/female/198.webp index 7797410..4ebae68 100644 Binary files a/static/sprites-small/home/shiny/female/198.webp and b/static/sprites-small/home/shiny/female/198.webp differ diff --git a/static/sprites-small/home/shiny/female/20.webp b/static/sprites-small/home/shiny/female/20.webp index e49dd17..1fd6077 100644 Binary files a/static/sprites-small/home/shiny/female/20.webp and b/static/sprites-small/home/shiny/female/20.webp differ diff --git a/static/sprites-small/home/shiny/female/202.webp b/static/sprites-small/home/shiny/female/202.webp index a2a3414..cd9d9f6 100644 Binary files a/static/sprites-small/home/shiny/female/202.webp and b/static/sprites-small/home/shiny/female/202.webp differ diff --git a/static/sprites-small/home/shiny/female/203.webp b/static/sprites-small/home/shiny/female/203.webp index ca586ab..54ef9f9 100644 Binary files a/static/sprites-small/home/shiny/female/203.webp and b/static/sprites-small/home/shiny/female/203.webp differ diff --git a/static/sprites-small/home/shiny/female/207.webp b/static/sprites-small/home/shiny/female/207.webp index 2a9d9c6..28eb463 100644 Binary files a/static/sprites-small/home/shiny/female/207.webp and b/static/sprites-small/home/shiny/female/207.webp differ diff --git a/static/sprites-small/home/shiny/female/208.webp b/static/sprites-small/home/shiny/female/208.webp index fda2c46..959bb1b 100644 Binary files a/static/sprites-small/home/shiny/female/208.webp and b/static/sprites-small/home/shiny/female/208.webp differ diff --git a/static/sprites-small/home/shiny/female/212.webp b/static/sprites-small/home/shiny/female/212.webp index 049d89b..bb6f3a5 100644 Binary files a/static/sprites-small/home/shiny/female/212.webp and b/static/sprites-small/home/shiny/female/212.webp differ diff --git a/static/sprites-small/home/shiny/female/214.webp b/static/sprites-small/home/shiny/female/214.webp index 33c716c..b8bbccd 100644 Binary files a/static/sprites-small/home/shiny/female/214.webp and b/static/sprites-small/home/shiny/female/214.webp differ diff --git a/static/sprites-small/home/shiny/female/215.webp b/static/sprites-small/home/shiny/female/215.webp index 8f0b5a0..03e6276 100644 Binary files a/static/sprites-small/home/shiny/female/215.webp and b/static/sprites-small/home/shiny/female/215.webp differ diff --git a/static/sprites-small/home/shiny/female/217.webp b/static/sprites-small/home/shiny/female/217.webp index 5cf972c..7ca4a79 100644 Binary files a/static/sprites-small/home/shiny/female/217.webp and b/static/sprites-small/home/shiny/female/217.webp differ diff --git a/static/sprites-small/home/shiny/female/221.webp b/static/sprites-small/home/shiny/female/221.webp index d4e49a7..2ad01b4 100644 Binary files a/static/sprites-small/home/shiny/female/221.webp and b/static/sprites-small/home/shiny/female/221.webp differ diff --git a/static/sprites-small/home/shiny/female/224.webp b/static/sprites-small/home/shiny/female/224.webp index f6f0472..154f6ec 100644 Binary files a/static/sprites-small/home/shiny/female/224.webp and b/static/sprites-small/home/shiny/female/224.webp differ diff --git a/static/sprites-small/home/shiny/female/229.webp b/static/sprites-small/home/shiny/female/229.webp index 0526a14..a9edba4 100644 Binary files a/static/sprites-small/home/shiny/female/229.webp and b/static/sprites-small/home/shiny/female/229.webp differ diff --git a/static/sprites-small/home/shiny/female/232.webp b/static/sprites-small/home/shiny/female/232.webp index 94ecfea..1b746be 100644 Binary files a/static/sprites-small/home/shiny/female/232.webp and b/static/sprites-small/home/shiny/female/232.webp differ diff --git a/static/sprites-small/home/shiny/female/25.webp b/static/sprites-small/home/shiny/female/25.webp index 94ca849..78db7a1 100644 Binary files a/static/sprites-small/home/shiny/female/25.webp and b/static/sprites-small/home/shiny/female/25.webp differ diff --git a/static/sprites-small/home/shiny/female/255.webp b/static/sprites-small/home/shiny/female/255.webp index ba6bed2..1ccc5ba 100644 Binary files a/static/sprites-small/home/shiny/female/255.webp and b/static/sprites-small/home/shiny/female/255.webp differ diff --git a/static/sprites-small/home/shiny/female/256.webp b/static/sprites-small/home/shiny/female/256.webp index 6136909..aaed1f6 100644 Binary files a/static/sprites-small/home/shiny/female/256.webp and b/static/sprites-small/home/shiny/female/256.webp differ diff --git a/static/sprites-small/home/shiny/female/257.webp b/static/sprites-small/home/shiny/female/257.webp index a17ba3a..a0e7ebd 100644 Binary files a/static/sprites-small/home/shiny/female/257.webp and b/static/sprites-small/home/shiny/female/257.webp differ diff --git a/static/sprites-small/home/shiny/female/26.webp b/static/sprites-small/home/shiny/female/26.webp index b035034..f28782b 100644 Binary files a/static/sprites-small/home/shiny/female/26.webp and b/static/sprites-small/home/shiny/female/26.webp differ diff --git a/static/sprites-small/home/shiny/female/267.webp b/static/sprites-small/home/shiny/female/267.webp index 2144ac6..3c60067 100644 Binary files a/static/sprites-small/home/shiny/female/267.webp and b/static/sprites-small/home/shiny/female/267.webp differ diff --git a/static/sprites-small/home/shiny/female/269.webp b/static/sprites-small/home/shiny/female/269.webp index 50ebffd..0a78d71 100644 Binary files a/static/sprites-small/home/shiny/female/269.webp and b/static/sprites-small/home/shiny/female/269.webp differ diff --git a/static/sprites-small/home/shiny/female/272.webp b/static/sprites-small/home/shiny/female/272.webp index a8e39ce..9fb0fd8 100644 Binary files a/static/sprites-small/home/shiny/female/272.webp and b/static/sprites-small/home/shiny/female/272.webp differ diff --git a/static/sprites-small/home/shiny/female/274.webp b/static/sprites-small/home/shiny/female/274.webp index f3d9f59..3ff6893 100644 Binary files a/static/sprites-small/home/shiny/female/274.webp and b/static/sprites-small/home/shiny/female/274.webp differ diff --git a/static/sprites-small/home/shiny/female/275.webp b/static/sprites-small/home/shiny/female/275.webp index f05155e..6f3c281 100644 Binary files a/static/sprites-small/home/shiny/female/275.webp and b/static/sprites-small/home/shiny/female/275.webp differ diff --git a/static/sprites-small/home/shiny/female/3.webp b/static/sprites-small/home/shiny/female/3.webp index e19a878..86cf66b 100644 Binary files a/static/sprites-small/home/shiny/female/3.webp and b/static/sprites-small/home/shiny/female/3.webp differ diff --git a/static/sprites-small/home/shiny/female/307.webp b/static/sprites-small/home/shiny/female/307.webp index 832c0a9..63b2aa7 100644 Binary files a/static/sprites-small/home/shiny/female/307.webp and b/static/sprites-small/home/shiny/female/307.webp differ diff --git a/static/sprites-small/home/shiny/female/308.webp b/static/sprites-small/home/shiny/female/308.webp index 7b8f23a..56ab68a 100644 Binary files a/static/sprites-small/home/shiny/female/308.webp and b/static/sprites-small/home/shiny/female/308.webp differ diff --git a/static/sprites-small/home/shiny/female/315.webp b/static/sprites-small/home/shiny/female/315.webp index 8ecf223..9ff2090 100644 Binary files a/static/sprites-small/home/shiny/female/315.webp and b/static/sprites-small/home/shiny/female/315.webp differ diff --git a/static/sprites-small/home/shiny/female/316.webp b/static/sprites-small/home/shiny/female/316.webp index 3d6819d..421a7e2 100644 Binary files a/static/sprites-small/home/shiny/female/316.webp and b/static/sprites-small/home/shiny/female/316.webp differ diff --git a/static/sprites-small/home/shiny/female/317.webp b/static/sprites-small/home/shiny/female/317.webp index 4dd0329..4712156 100644 Binary files a/static/sprites-small/home/shiny/female/317.webp and b/static/sprites-small/home/shiny/female/317.webp differ diff --git a/static/sprites-small/home/shiny/female/322.webp b/static/sprites-small/home/shiny/female/322.webp index 3f9ae4b..4731fb9 100644 Binary files a/static/sprites-small/home/shiny/female/322.webp and b/static/sprites-small/home/shiny/female/322.webp differ diff --git a/static/sprites-small/home/shiny/female/323.webp b/static/sprites-small/home/shiny/female/323.webp index 394451b..0a8f26d 100644 Binary files a/static/sprites-small/home/shiny/female/323.webp and b/static/sprites-small/home/shiny/female/323.webp differ diff --git a/static/sprites-small/home/shiny/female/332.webp b/static/sprites-small/home/shiny/female/332.webp index 45da47a..a74db37 100644 Binary files a/static/sprites-small/home/shiny/female/332.webp and b/static/sprites-small/home/shiny/female/332.webp differ diff --git a/static/sprites-small/home/shiny/female/350.webp b/static/sprites-small/home/shiny/female/350.webp index 6aed00a..b287316 100644 Binary files a/static/sprites-small/home/shiny/female/350.webp and b/static/sprites-small/home/shiny/female/350.webp differ diff --git a/static/sprites-small/home/shiny/female/369.webp b/static/sprites-small/home/shiny/female/369.webp index ba1536e..1413ae2 100644 Binary files a/static/sprites-small/home/shiny/female/369.webp and b/static/sprites-small/home/shiny/female/369.webp differ diff --git a/static/sprites-small/home/shiny/female/396.webp b/static/sprites-small/home/shiny/female/396.webp index f507c69..00fad62 100644 Binary files a/static/sprites-small/home/shiny/female/396.webp and b/static/sprites-small/home/shiny/female/396.webp differ diff --git a/static/sprites-small/home/shiny/female/397.webp b/static/sprites-small/home/shiny/female/397.webp index 9b750fb..f2c2c11 100644 Binary files a/static/sprites-small/home/shiny/female/397.webp and b/static/sprites-small/home/shiny/female/397.webp differ diff --git a/static/sprites-small/home/shiny/female/398.webp b/static/sprites-small/home/shiny/female/398.webp index 17a9411..5cf5822 100644 Binary files a/static/sprites-small/home/shiny/female/398.webp and b/static/sprites-small/home/shiny/female/398.webp differ diff --git a/static/sprites-small/home/shiny/female/399.webp b/static/sprites-small/home/shiny/female/399.webp index fa93272..eba7805 100644 Binary files a/static/sprites-small/home/shiny/female/399.webp and b/static/sprites-small/home/shiny/female/399.webp differ diff --git a/static/sprites-small/home/shiny/female/400.webp b/static/sprites-small/home/shiny/female/400.webp index 0e82ea8..b4dc8cb 100644 Binary files a/static/sprites-small/home/shiny/female/400.webp and b/static/sprites-small/home/shiny/female/400.webp differ diff --git a/static/sprites-small/home/shiny/female/401.webp b/static/sprites-small/home/shiny/female/401.webp index 2655f21..6674adb 100644 Binary files a/static/sprites-small/home/shiny/female/401.webp and b/static/sprites-small/home/shiny/female/401.webp differ diff --git a/static/sprites-small/home/shiny/female/402.webp b/static/sprites-small/home/shiny/female/402.webp index e5a3fed..3bb0127 100644 Binary files a/static/sprites-small/home/shiny/female/402.webp and b/static/sprites-small/home/shiny/female/402.webp differ diff --git a/static/sprites-small/home/shiny/female/403.webp b/static/sprites-small/home/shiny/female/403.webp index 9ba2a50..ea6c058 100644 Binary files a/static/sprites-small/home/shiny/female/403.webp and b/static/sprites-small/home/shiny/female/403.webp differ diff --git a/static/sprites-small/home/shiny/female/404.webp b/static/sprites-small/home/shiny/female/404.webp index d5d734a..4a800be 100644 Binary files a/static/sprites-small/home/shiny/female/404.webp and b/static/sprites-small/home/shiny/female/404.webp differ diff --git a/static/sprites-small/home/shiny/female/405.webp b/static/sprites-small/home/shiny/female/405.webp index 4034e6a..52a2f89 100644 Binary files a/static/sprites-small/home/shiny/female/405.webp and b/static/sprites-small/home/shiny/female/405.webp differ diff --git a/static/sprites-small/home/shiny/female/407.webp b/static/sprites-small/home/shiny/female/407.webp index c30911f..0d423db 100644 Binary files a/static/sprites-small/home/shiny/female/407.webp and b/static/sprites-small/home/shiny/female/407.webp differ diff --git a/static/sprites-small/home/shiny/female/41.webp b/static/sprites-small/home/shiny/female/41.webp index de40211..5e2bfd4 100644 Binary files a/static/sprites-small/home/shiny/female/41.webp and b/static/sprites-small/home/shiny/female/41.webp differ diff --git a/static/sprites-small/home/shiny/female/415.webp b/static/sprites-small/home/shiny/female/415.webp index 270b7ea..a8007a1 100644 Binary files a/static/sprites-small/home/shiny/female/415.webp and b/static/sprites-small/home/shiny/female/415.webp differ diff --git a/static/sprites-small/home/shiny/female/417.webp b/static/sprites-small/home/shiny/female/417.webp index 67ab868..0f85e06 100644 Binary files a/static/sprites-small/home/shiny/female/417.webp and b/static/sprites-small/home/shiny/female/417.webp differ diff --git a/static/sprites-small/home/shiny/female/418.webp b/static/sprites-small/home/shiny/female/418.webp index 240b35f..a1f728b 100644 Binary files a/static/sprites-small/home/shiny/female/418.webp and b/static/sprites-small/home/shiny/female/418.webp differ diff --git a/static/sprites-small/home/shiny/female/419.webp b/static/sprites-small/home/shiny/female/419.webp index 71ca2cc..58bd992 100644 Binary files a/static/sprites-small/home/shiny/female/419.webp and b/static/sprites-small/home/shiny/female/419.webp differ diff --git a/static/sprites-small/home/shiny/female/42.webp b/static/sprites-small/home/shiny/female/42.webp index 8d90233..43bffcb 100644 Binary files a/static/sprites-small/home/shiny/female/42.webp and b/static/sprites-small/home/shiny/female/42.webp differ diff --git a/static/sprites-small/home/shiny/female/424.webp b/static/sprites-small/home/shiny/female/424.webp index adc354b..05e1709 100644 Binary files a/static/sprites-small/home/shiny/female/424.webp and b/static/sprites-small/home/shiny/female/424.webp differ diff --git a/static/sprites-small/home/shiny/female/44.webp b/static/sprites-small/home/shiny/female/44.webp index 2671503..ab3cfa2 100644 Binary files a/static/sprites-small/home/shiny/female/44.webp and b/static/sprites-small/home/shiny/female/44.webp differ diff --git a/static/sprites-small/home/shiny/female/443.webp b/static/sprites-small/home/shiny/female/443.webp index 736efe6..1064f10 100644 Binary files a/static/sprites-small/home/shiny/female/443.webp and b/static/sprites-small/home/shiny/female/443.webp differ diff --git a/static/sprites-small/home/shiny/female/444.webp b/static/sprites-small/home/shiny/female/444.webp index e3cbf55..36f6ab7 100644 Binary files a/static/sprites-small/home/shiny/female/444.webp and b/static/sprites-small/home/shiny/female/444.webp differ diff --git a/static/sprites-small/home/shiny/female/445.webp b/static/sprites-small/home/shiny/female/445.webp index 1cfb4a1..85cf619 100644 Binary files a/static/sprites-small/home/shiny/female/445.webp and b/static/sprites-small/home/shiny/female/445.webp differ diff --git a/static/sprites-small/home/shiny/female/449.webp b/static/sprites-small/home/shiny/female/449.webp index 14c5425..54c291f 100644 Binary files a/static/sprites-small/home/shiny/female/449.webp and b/static/sprites-small/home/shiny/female/449.webp differ diff --git a/static/sprites-small/home/shiny/female/45.webp b/static/sprites-small/home/shiny/female/45.webp index 4522f01..53329f0 100644 Binary files a/static/sprites-small/home/shiny/female/45.webp and b/static/sprites-small/home/shiny/female/45.webp differ diff --git a/static/sprites-small/home/shiny/female/450.webp b/static/sprites-small/home/shiny/female/450.webp index 1f73b5b..9576e08 100644 Binary files a/static/sprites-small/home/shiny/female/450.webp and b/static/sprites-small/home/shiny/female/450.webp differ diff --git a/static/sprites-small/home/shiny/female/453.webp b/static/sprites-small/home/shiny/female/453.webp index 5c1b456..e380679 100644 Binary files a/static/sprites-small/home/shiny/female/453.webp and b/static/sprites-small/home/shiny/female/453.webp differ diff --git a/static/sprites-small/home/shiny/female/454.webp b/static/sprites-small/home/shiny/female/454.webp index e391720..bb0ff08 100644 Binary files a/static/sprites-small/home/shiny/female/454.webp and b/static/sprites-small/home/shiny/female/454.webp differ diff --git a/static/sprites-small/home/shiny/female/456.webp b/static/sprites-small/home/shiny/female/456.webp index f52d3ca..b34efb5 100644 Binary files a/static/sprites-small/home/shiny/female/456.webp and b/static/sprites-small/home/shiny/female/456.webp differ diff --git a/static/sprites-small/home/shiny/female/457.webp b/static/sprites-small/home/shiny/female/457.webp index f5867ff..28cf9d0 100644 Binary files a/static/sprites-small/home/shiny/female/457.webp and b/static/sprites-small/home/shiny/female/457.webp differ diff --git a/static/sprites-small/home/shiny/female/459.webp b/static/sprites-small/home/shiny/female/459.webp index db14666..f009d53 100644 Binary files a/static/sprites-small/home/shiny/female/459.webp and b/static/sprites-small/home/shiny/female/459.webp differ diff --git a/static/sprites-small/home/shiny/female/460.webp b/static/sprites-small/home/shiny/female/460.webp index c15de24..b56d772 100644 Binary files a/static/sprites-small/home/shiny/female/460.webp and b/static/sprites-small/home/shiny/female/460.webp differ diff --git a/static/sprites-small/home/shiny/female/461.webp b/static/sprites-small/home/shiny/female/461.webp index 9209862..f55c7c2 100644 Binary files a/static/sprites-small/home/shiny/female/461.webp and b/static/sprites-small/home/shiny/female/461.webp differ diff --git a/static/sprites-small/home/shiny/female/464.webp b/static/sprites-small/home/shiny/female/464.webp index 9357747..6b66b00 100644 Binary files a/static/sprites-small/home/shiny/female/464.webp and b/static/sprites-small/home/shiny/female/464.webp differ diff --git a/static/sprites-small/home/shiny/female/465.webp b/static/sprites-small/home/shiny/female/465.webp index f76fb8b..4101865 100644 Binary files a/static/sprites-small/home/shiny/female/465.webp and b/static/sprites-small/home/shiny/female/465.webp differ diff --git a/static/sprites-small/home/shiny/female/473.webp b/static/sprites-small/home/shiny/female/473.webp index 0dc69b0..874caaf 100644 Binary files a/static/sprites-small/home/shiny/female/473.webp and b/static/sprites-small/home/shiny/female/473.webp differ diff --git a/static/sprites-small/home/shiny/female/521.webp b/static/sprites-small/home/shiny/female/521.webp index 2db9c0a..b90ed8a 100644 Binary files a/static/sprites-small/home/shiny/female/521.webp and b/static/sprites-small/home/shiny/female/521.webp differ diff --git a/static/sprites-small/home/shiny/female/592.webp b/static/sprites-small/home/shiny/female/592.webp index b5aafe0..2f77639 100644 Binary files a/static/sprites-small/home/shiny/female/592.webp and b/static/sprites-small/home/shiny/female/592.webp differ diff --git a/static/sprites-small/home/shiny/female/593.webp b/static/sprites-small/home/shiny/female/593.webp index e737087..49d0000 100644 Binary files a/static/sprites-small/home/shiny/female/593.webp and b/static/sprites-small/home/shiny/female/593.webp differ diff --git a/static/sprites-small/home/shiny/female/64.webp b/static/sprites-small/home/shiny/female/64.webp index 10a1269..e65024f 100644 Binary files a/static/sprites-small/home/shiny/female/64.webp and b/static/sprites-small/home/shiny/female/64.webp differ diff --git a/static/sprites-small/home/shiny/female/65.webp b/static/sprites-small/home/shiny/female/65.webp index c3a4b42..6408343 100644 Binary files a/static/sprites-small/home/shiny/female/65.webp and b/static/sprites-small/home/shiny/female/65.webp differ diff --git a/static/sprites-small/home/shiny/female/668.webp b/static/sprites-small/home/shiny/female/668.webp index 25e46c0..c8b8955 100644 Binary files a/static/sprites-small/home/shiny/female/668.webp and b/static/sprites-small/home/shiny/female/668.webp differ diff --git a/static/sprites-small/home/shiny/female/678.webp b/static/sprites-small/home/shiny/female/678.webp index 2051009..1c9b65e 100644 Binary files a/static/sprites-small/home/shiny/female/678.webp and b/static/sprites-small/home/shiny/female/678.webp differ diff --git a/static/sprites-small/home/shiny/female/84.webp b/static/sprites-small/home/shiny/female/84.webp index c5b0223..cb9ab23 100644 Binary files a/static/sprites-small/home/shiny/female/84.webp and b/static/sprites-small/home/shiny/female/84.webp differ diff --git a/static/sprites-small/home/shiny/female/85.webp b/static/sprites-small/home/shiny/female/85.webp index d513258..3df95bf 100644 Binary files a/static/sprites-small/home/shiny/female/85.webp and b/static/sprites-small/home/shiny/female/85.webp differ diff --git a/static/sprites-small/home/shiny/female/876.webp b/static/sprites-small/home/shiny/female/876.webp index 3f7ab46..abe3c69 100644 Binary files a/static/sprites-small/home/shiny/female/876.webp and b/static/sprites-small/home/shiny/female/876.webp differ diff --git a/static/sprites-small/home/shiny/female/902.webp b/static/sprites-small/home/shiny/female/902.webp index 14763ad..fa74c46 100644 Binary files a/static/sprites-small/home/shiny/female/902.webp and b/static/sprites-small/home/shiny/female/902.webp differ diff --git a/static/sprites-small/home/shiny/female/916.webp b/static/sprites-small/home/shiny/female/916.webp index 38ef78a..d54fd4b 100644 Binary files a/static/sprites-small/home/shiny/female/916.webp and b/static/sprites-small/home/shiny/female/916.webp differ diff --git a/static/sprites-small/home/shiny/female/97.webp b/static/sprites-small/home/shiny/female/97.webp index 4b5fe0c..0fa78bd 100644 Binary files a/static/sprites-small/home/shiny/female/97.webp and b/static/sprites-small/home/shiny/female/97.webp differ diff --git a/static/sprites-small/manifest.json b/static/sprites-small/manifest.json new file mode 100644 index 0000000..09e4a79 --- /dev/null +++ b/static/sprites-small/manifest.json @@ -0,0 +1 @@ +{"version":1,"files":[["0.webp",3938],["1.webp",6410],["10.webp",6648],["100.webp",5076],["1000.webp",9196],["10001.webp",9828],["10002.webp",8858],["10003.webp",9970],["10004.webp",5424],["10005.webp",5426],["10006.webp",7946],["10007.webp",14154],["10008.webp",6926],["10009.webp",6870],["1001.webp",10406],["10010.webp",5984],["10011.webp",6058],["10012.webp",6522],["10013.webp",6080],["10014.webp",4432],["10015.webp",5848],["10016.webp",6582],["10017.webp",6788],["10018.webp",6390],["10019.webp",10108],["1002.webp",9926],["10020.webp",9216],["10021.webp",9148],["10022.webp",10744],["10023.webp",10580],["10024.webp",9576],["10025.webp",7688],["10026.webp",9300],["10027.webp",5064],["10028.webp",6934],["10029.webp",7636],["1003.webp",9302],["10030.webp",6232],["10031.webp",8206],["10032.webp",9222],["10033.webp",10520],["10034.webp",12602],["10035.webp",12086],["10036.webp",8538],["10037.webp",11960],["10038.webp",9668],["10039.webp",9788],["1004.webp",7996],["10040.webp",11616],["10041.webp",11810],["10042.webp",9966],["10043.webp",8314],["10044.webp",8138],["10045.webp",10222],["10046.webp",12062],["10047.webp",8014],["10048.webp",10532],["10049.webp",12040],["1005.webp",12386],["10050.webp",11264],["10051.webp",7518],["10052.webp",11320],["10053.webp",8650],["10054.webp",10252],["10055.webp",10232],["10056.webp",10562],["10057.webp",10516],["10058.webp",10112],["10059.webp",10978],["1006.webp",10262],["10060.webp",10942],["10062.webp",9308],["10063.webp",6542],["10064.webp",10330],["10065.webp",9504],["10066.webp",9616],["10067.webp",5712],["10068.webp",9766],["10069.webp",7766],["1007.webp",14494],["10070.webp",8302],["10071.webp",6758],["10072.webp",10426],["10073.webp",11360],["10074.webp",9126],["10075.webp",12986],["10076.webp",11034],["10077.webp",11804],["10078.webp",9536],["10079.webp",17446],["1008.webp",9768],["10086.webp",12062],["10087.webp",8616],["10088.webp",10386],["10089.webp",8640],["1009.webp",11114],["10090.webp",12748],["10091.webp",6606],["10092.webp",7140],["10093.webp",8372],["10094.webp",6510],["10095.webp",6492],["10096.webp",6546],["10097.webp",6688],["10098.webp",6646],["10099.webp",6604],["101.webp",6226],["1010.webp",9462],["10100.webp",9088],["10101.webp",5336],["10102.webp",7708],["10103.webp",6136],["10104.webp",9654],["10105.webp",5298],["10106.webp",6982],["10107.webp",7288],["10108.webp",8078],["10109.webp",6056],["1011.webp",6548],["10110.webp",7230],["10111.webp",7150],["10112.webp",5530],["10113.webp",5772],["10114.webp",7772],["10115.webp",7762],["10116.webp",9758],["10117.webp",8372],["10118.webp",8810],["10119.webp",11858],["1012.webp",9928],["10120.webp",10772],["10121.webp",7176],["10122.webp",11470],["10123.webp",5352],["10124.webp",6684],["10125.webp",6956],["10126.webp",9746],["10127.webp",7778],["10128.webp",8604],["10129.webp",10950],["1013.webp",8636],["10130.webp",7976],["10131.webp",7976],["10132.webp",7976],["10133.webp",7976],["10134.webp",7976],["10135.webp",7976],["10136.webp",5362],["10137.webp",5224],["10138.webp",4844],["10139.webp",4962],["1014.webp",11214],["10140.webp",4724],["10141.webp",5646],["10142.webp",5194],["10143.webp",5296],["10145.webp",7238],["10146.webp",12716],["10147.webp",7562],["10148.webp",6618],["10149.webp",8590],["1015.webp",7752],["10150.webp",11960],["10152.webp",7208],["10153.webp",12118],["10154.webp",7308],["10155.webp",11078],["10156.webp",11616],["10157.webp",10142],["1016.webp",12086],["10160.webp",6586],["10161.webp",6994],["10162.webp",10074],["10163.webp",9888],["10164.webp",3892],["10165.webp",7140],["10166.webp",5106],["10167.webp",10066],["10168.webp",9548],["10169.webp",9902],["1017.webp",11644],["10170.webp",12554],["10171.webp",13404],["10172.webp",6284],["10173.webp",6908],["10174.webp",7496],["10175.webp",6054],["10176.webp",6084],["10177.webp",5936],["10178.webp",6578],["10179.webp",5552],["1018.webp",10526],["10180.webp",4764],["10181.webp",10326],["10184.webp",7216],["10185.webp",4052],["10186.webp",6814],["10188.webp",13284],["10189.webp",12172],["1019.webp",7586],["10190.webp",10810],["10191.webp",8494],["10192.webp",11252],["10193.webp",10016],["10194.webp",12698],["10195.webp",8410],["10196.webp",16800],["10197.webp",11168],["10198.webp",10296],["10199.webp",9530],["102.webp",6334],["1020.webp",12200],["10200.webp",7708],["10201.webp",11856],["10202.webp",8720],["10203.webp",12798],["10204.webp",9992],["10205.webp",8396],["10206.webp",8322],["10207.webp",10836],["10208.webp",10764],["10209.webp",12692],["1021.webp",10196],["10210.webp",11744],["10211.webp",6466],["10212.webp",12442],["10213.webp",7366],["10214.webp",10180],["10215.webp",10144],["10216.webp",9464],["10217.webp",9490],["10218.webp",10104],["10219.webp",14142],["1022.webp",10528],["10220.webp",12520],["10221.webp",11824],["10222.webp",10072],["10223.webp",7528],["10224.webp",9376],["10225.webp",9074],["10226.webp",11134],["10227.webp",11702],["10228.webp",14980],["10229.webp",8294],["1023.webp",8730],["10230.webp",8146],["10231.webp",5332],["10232.webp",5978],["10233.webp",8054],["10234.webp",6800],["10235.webp",8290],["10236.webp",8994],["10237.webp",7384],["10238.webp",5968],["10239.webp",10572],["1024.webp",7638],["10240.webp",10858],["10241.webp",5750],["10242.webp",7344],["10243.webp",7176],["10244.webp",11338],["10245.webp",11476],["10246.webp",8964],["10247.webp",7854],["10248.webp",6296],["10249.webp",8980],["1025.webp",6484],["10250.webp",7228],["10251.webp",9960],["10252.webp",6560],["10253.webp",9074],["10254.webp",9572],["10255.webp",8938],["10256.webp",9218],["10257.webp",6026],["10258.webp",5244],["10259.webp",4662],["10260.webp",8422],["10261.webp",8400],["10262.webp",7856],["10263.webp",9254],["10272.webp",9646],["10273.webp",10988],["10274.webp",10948],["10275.webp",10154],["10276.webp",7782],["10277.webp",11984],["103.webp",11066],["104.webp",5984],["105.webp",7416],["106.webp",6318],["107.webp",6718],["108.webp",6656],["109.webp",9900],["11.webp",4262],["110.webp",8630],["111.webp",6668],["112.webp",6994],["113.webp",6118],["114.webp",8796],["115.webp",8384],["116.webp",6864],["117.webp",7326],["118.webp",4460],["119.webp",8304],["12.webp",10154],["120.webp",7122],["121.webp",7882],["122.webp",11568],["123.webp",10806],["124.webp",8494],["125.webp",9386],["126.webp",10090],["127.webp",9108],["128.webp",10258],["129.webp",9188],["13.webp",5404],["130.webp",10922],["131.webp",7348],["132.webp",4472],["133.webp",6716],["134.webp",8898],["135.webp",9754],["136.webp",8270],["137.webp",6936],["138.webp",6468],["139.webp",9464],["14.webp",4096],["140.webp",5632],["141.webp",10276],["142.webp",7502],["143.webp",6654],["144.webp",12384],["145.webp",11412],["146.webp",7972],["147.webp",6164],["148.webp",7204],["149.webp",9444],["15.webp",11410],["150.webp",8926],["151.webp",7064],["152.webp",4856],["153.webp",6868],["154.webp",6810],["155.webp",7068],["156.webp",6820],["157.webp",8066],["158.webp",5526],["159.webp",7178],["16.webp",6228],["160.webp",9598],["161.webp",4186],["162.webp",6590],["163.webp",7492],["164.webp",7026],["165.webp",8118],["166.webp",7968],["167.webp",6540],["168.webp",8854],["169.webp",7254],["17.webp",8500],["170.webp",8368],["171.webp",6732],["172.webp",6870],["173.webp",4848],["174.webp",4936],["175.webp",6420],["176.webp",6178],["177.webp",7310],["178.webp",7534],["179.webp",7322],["18.webp",8980],["180.webp",6236],["181.webp",7040],["182.webp",7288],["183.webp",7230],["184.webp",9764],["185.webp",9656],["186.webp",7412],["187.webp",6944],["188.webp",5636],["189.webp",6044],["19.webp",7492],["190.webp",8504],["191.webp",7596],["192.webp",7444],["193.webp",8112],["194.webp",7302],["195.webp",6050],["196.webp",8110],["197.webp",8362],["198.webp",7528],["199.webp",6138],["2.webp",8880],["20.webp",9388],["200.webp",6864],["201-a.webp",5002],["201-b.webp",5680],["201-c.webp",8078],["201-d.webp",6800],["201-e.webp",5756],["201-exclamation.webp",4030],["201-f.webp",6512],["201-g.webp",5128],["201-h.webp",9650],["201-i.webp",4146],["201-j.webp",5162],["201-k.webp",4910],["201-l.webp",4832],["201-m.webp",9236],["201-n.webp",8360],["201-o.webp",9702],["201-p.webp",4658],["201-q.webp",4996],["201-question.webp",4698],["201-r.webp",5104],["201-s.webp",5736],["201-t.webp",5168],["201-u.webp",7414],["201-v.webp",6262],["201-w.webp",6104],["201-x.webp",6192],["201-y.webp",5142],["201-z.webp",4818],["201.webp",5002],["202.webp",6974],["203.webp",7930],["204.webp",6922],["205.webp",6160],["206.webp",6814],["207.webp",9492],["208.webp",7226],["209.webp",6766],["21.webp",8134],["210.webp",7158],["211.webp",7794],["212.webp",9842],["213.webp",5910],["214.webp",8728],["215.webp",9230],["216.webp",5808],["217.webp",6852],["218.webp",6822],["219.webp",7440],["22.webp",10078],["220.webp",5010],["221.webp",6210],["222.webp",6278],["223.webp",6362],["224.webp",7004],["225.webp",7566],["226.webp",6144],["227.webp",7252],["228.webp",6416],["229.webp",10098],["23.webp",7474],["230.webp",8992],["231.webp",6444],["232.webp",5498],["233.webp",7548],["234.webp",8670],["235.webp",9014],["236.webp",7476],["237.webp",9784],["238.webp",6040],["239.webp",5318],["24.webp",8008],["240.webp",5994],["241.webp",8332],["242.webp",6366],["243.webp",9634],["244.webp",10128],["245.webp",11842],["246.webp",4468],["247.webp",6580],["248.webp",7254],["249.webp",9028],["25.webp",7280],["250.webp",11838],["251.webp",6984],["252.webp",7666],["253.webp",10764],["254.webp",9442],["255.webp",5284],["256.webp",8622],["257.webp",7856],["258.webp",6314],["259.webp",6404],["26.webp",8334],["260.webp",8308],["261.webp",6490],["262.webp",9300],["263.webp",5578],["264.webp",4362],["265.webp",6564],["266.webp",5588],["267.webp",10156],["268.webp",5896],["269.webp",7078],["27.webp",6688],["270.webp",6596],["271.webp",8504],["272.webp",7576],["273.webp",4940],["274.webp",8852],["275.webp",8140],["276.webp",6676],["277.webp",8892],["278.webp",4562],["279.webp",7068],["28.webp",8466],["280.webp",4514],["281.webp",6992],["282.webp",6986],["283.webp",5246],["284.webp",7730],["285.webp",5062],["286.webp",8180],["287.webp",5488],["288.webp",5776],["289.webp",6456],["29.webp",6386],["290.webp",4340],["291.webp",7716],["292.webp",8324],["293.webp",5642],["294.webp",9928],["295.webp",8492],["296.webp",6996],["297.webp",9278],["298.webp",7308],["299.webp",6250],["3.webp",8804],["30.webp",6744],["300.webp",6916],["301.webp",8496],["302.webp",6812],["303.webp",6814],["304.webp",5370],["305.webp",7270],["306.webp",8758],["307.webp",7782],["308.webp",6306],["309.webp",7008],["31.webp",8726],["310.webp",7576],["311.webp",6332],["312.webp",5610],["313.webp",7392],["314.webp",6382],["315.webp",7082],["316.webp",4846],["317.webp",6420],["318.webp",7580],["319.webp",6540],["32.webp",6788],["320.webp",4618],["321.webp",5082],["322.webp",6452],["323.webp",7482],["324.webp",10188],["325.webp",4190],["326.webp",8646],["327.webp",7508],["328.webp",5646],["329.webp",8512],["33.webp",8566],["330.webp",10168],["331.webp",6224],["332.webp",8316],["333.webp",5710],["334.webp",9106],["335.webp",6870],["336.webp",10232],["337.webp",6632],["338.webp",8176],["339.webp",5222],["34.webp",8884],["340.webp",9914],["341.webp",9220],["342.webp",9704],["343.webp",5908],["344.webp",7322],["345.webp",9514],["346.webp",8350],["347.webp",7764],["348.webp",9280],["349.webp",7326],["35.webp",5360],["350.webp",11116],["351.webp",3850],["352.webp",7314],["353.webp",5678],["354.webp",8734],["355.webp",5760],["356.webp",5994],["357.webp",9956],["358.webp",4006],["359.webp",7790],["36.webp",7250],["360.webp",7028],["361.webp",5896],["362.webp",7312],["363.webp",5808],["364.webp",6124],["365.webp",7134],["366.webp",7232],["367.webp",8518],["368.webp",6548],["369.webp",6706],["37.webp",6986],["370.webp",4300],["371.webp",5302],["372.webp",5780],["373.webp",11292],["374.webp",5038],["375.webp",8038],["376.webp",6526],["377.webp",8472],["378.webp",7544],["379.webp",7544],["38.webp",7842],["380.webp",7450],["381.webp",6646],["382.webp",7394],["383.webp",9028],["384.webp",11154],["385.webp",6466],["386.webp",9008],["387.webp",6028],["388.webp",9400],["389.webp",9124],["39.webp",5566],["390.webp",6738],["391.webp",9532],["392.webp",11536],["393.webp",5512],["394.webp",7368],["395.webp",8018],["396.webp",6110],["397.webp",6874],["398.webp",8656],["399.webp",6064],["4.webp",7784],["40.webp",7148],["400.webp",6864],["401.webp",5822],["402.webp",9552],["403.webp",7062],["404.webp",9768],["405.webp",10192],["406.webp",4576],["407.webp",7086],["408.webp",6588],["409.webp",6588],["41.webp",8468],["410.webp",6330],["411.webp",7180],["412-plant.webp",4834],["412-sandy.webp",4126],["412-trash.webp",4340],["412.webp",4834],["413-plant.webp",5632],["413-sandy.webp",5424],["413-trash.webp",5426],["413.webp",5670],["414.webp",6540],["415.webp",5840],["416.webp",9094],["417.webp",5930],["418.webp",5488],["419.webp",7008],["42.webp",8370],["420.webp",6934],["421-overcast.webp",5096],["421-sunshine.webp",6370],["421.webp",5096],["422-east.webp",6166],["422-west.webp",4922],["422.webp",4922],["423-east.webp",7866],["423-west.webp",7028],["423.webp",7028],["424.webp",9980],["425.webp",5810],["426.webp",8144],["427.webp",4516],["428.webp",7758],["429.webp",7038],["43.webp",6900],["430.webp",7912],["431.webp",8570],["432.webp",9724],["433.webp",6314],["434.webp",8090],["435.webp",7090],["436.webp",7058],["437.webp",5512],["438.webp",5570],["439.webp",6110],["44.webp",9046],["440.webp",4852],["441.webp",6772],["442.webp",9028],["443.webp",7438],["444.webp",9288],["445.webp",10306],["446.webp",6038],["447.webp",7342],["448.webp",8284],["449.webp",6020],["45.webp",7920],["450.webp",6826],["451.webp",7594],["452.webp",7388],["453.webp",8056],["454.webp",8448],["455.webp",8308],["456.webp",6370],["457.webp",8196],["458.webp",7114],["459.webp",6336],["46.webp",6898],["460.webp",8992],["461.webp",9594],["462.webp",6778],["463.webp",5806],["464.webp",7846],["465.webp",7590],["466.webp",10650],["467.webp",10308],["468.webp",4206],["469.webp",10718],["47.webp",8948],["470.webp",10418],["471.webp",7820],["472.webp",7608],["473.webp",7492],["474.webp",7086],["475.webp",7648],["476.webp",6766],["477.webp",8160],["478.webp",5780],["479.webp",5778],["48.webp",8132],["480.webp",8320],["481.webp",7834],["482.webp",7346],["483.webp",12032],["484.webp",10482],["485.webp",7858],["486.webp",9738],["487.webp",11296],["488.webp",9348],["489.webp",6386],["49.webp",6284],["490.webp",5324],["491.webp",10172],["492.webp",6016],["493-bug.webp",9350],["493-dark.webp",9160],["493-dragon.webp",9786],["493-electric.webp",9512],["493-fairy.webp",9050],["493-fighting.webp",9698],["493-fire.webp",9694],["493-flying.webp",8994],["493-ghost.webp",9738],["493-grass.webp",9530],["493-ground.webp",9752],["493-ice.webp",9590],["493-poison.webp",9638],["493-psychic.webp",9546],["493-rock.webp",9256],["493-steel.webp",8734],["493-unknown.webp",9446],["493-water.webp",10028],["493.webp",9446],["494.webp",6232],["495.webp",7306],["496.webp",7906],["497.webp",9622],["498.webp",6956],["499.webp",9084],["5.webp",8776],["50.webp",3824],["500.webp",11500],["501.webp",5876],["502.webp",7142],["503.webp",9642],["504.webp",7320],["505.webp",6546],["506.webp",6870],["507.webp",9814],["508.webp",7506],["509.webp",6474],["51.webp",5406],["510.webp",10172],["511.webp",8936],["512.webp",10046],["513.webp",7532],["514.webp",10290],["515.webp",8842],["516.webp",10426],["517.webp",5386],["518.webp",7868],["519.webp",6194],["52.webp",8450],["520.webp",7486],["521.webp",8660],["522.webp",6452],["523.webp",9366],["524.webp",5076],["525.webp",7604],["526.webp",8512],["527.webp",5062],["528.webp",7706],["529.webp",6058],["53.webp",8526],["530.webp",6858],["531.webp",7636],["532.webp",5484],["533.webp",7308],["534.webp",7028],["535.webp",5576],["536.webp",6880],["537.webp",9220],["538.webp",7904],["539.webp",9562],["54.webp",6258],["540.webp",5982],["541.webp",5480],["542.webp",5818],["543.webp",6362],["544.webp",6254],["545.webp",9270],["546.webp",5030],["547.webp",6114],["548.webp",5262],["549.webp",7700],["55.webp",8638],["550.webp",6204],["551.webp",5964],["552.webp",7816],["553.webp",9826],["554.webp",8100],["555.webp",8616],["556.webp",8932],["557.webp",6596],["558.webp",7350],["559.webp",6028],["56.webp",7012],["560.webp",7140],["561.webp",11444],["562.webp",5490],["563.webp",11030],["564.webp",4994],["565.webp",8062],["566.webp",7920],["567.webp",10096],["568.webp",6190],["569.webp",9842],["57.webp",8978],["570.webp",6164],["571.webp",9458],["572.webp",6684],["573.webp",6580],["574.webp",5644],["575.webp",6026],["576.webp",8566],["577.webp",6418],["578.webp",7550],["579.webp",7354],["58.webp",7248],["580.webp",6646],["581.webp",6608],["582.webp",4706],["583.webp",4904],["584.webp",7324],["585-autumn.webp",6468],["585-spring.webp",6178],["585-summer.webp",6648],["585-winter.webp",6474],["585.webp",6178],["586-autumn.webp",10548],["586-spring.webp",7626],["586-summer.webp",9878],["586-winter.webp",7646],["586.webp",7626],["587.webp",5912],["588.webp",5480],["589.webp",8122],["59.webp",9898],["590.webp",5252],["591.webp",6760],["592.webp",7700],["593.webp",9042],["594.webp",4404],["595.webp",6042],["596.webp",8990],["597.webp",6670],["598.webp",8090],["599.webp",6242],["6.webp",11772],["60.webp",5966],["600.webp",7532],["601.webp",6588],["602.webp",4270],["603.webp",8146],["604.webp",7996],["605.webp",5762],["606.webp",7270],["607.webp",4094],["608.webp",8028],["609.webp",12090],["61.webp",8124],["610.webp",4704],["611.webp",8554],["612.webp",9586],["613.webp",5012],["614.webp",6894],["615.webp",9736],["616.webp",6224],["617.webp",7762],["618.webp",4524],["619.webp",8144],["62.webp",6980],["620.webp",7620],["621.webp",12000],["622.webp",9106],["623.webp",11338],["624.webp",6808],["625.webp",7482],["626.webp",6654],["627.webp",6042],["628.webp",11566],["629.webp",6182],["63.webp",7662],["630.webp",7362],["631.webp",9018],["632.webp",6378],["633.webp",5050],["634.webp",9990],["635.webp",11974],["636.webp",8362],["637.webp",8192],["638.webp",8200],["639.webp",8164],["64.webp",9320],["640.webp",8266],["641.webp",7178],["642.webp",7370],["643.webp",11148],["644.webp",9166],["645.webp",7598],["646.webp",10776],["647.webp",9902],["648.webp",6782],["649-burn.webp",9112],["649-chill.webp",9066],["649-douse.webp",9108],["649-shock.webp",9086],["649.webp",9114],["65.webp",10908],["650.webp",7554],["651.webp",8188],["652.webp",8808],["653.webp",6006],["654.webp",8444],["655.webp",8978],["656.webp",8328],["657.webp",9082],["658.webp",7870],["659.webp",5906],["66.webp",6364],["660.webp",9414],["661.webp",6718],["662.webp",8998],["663.webp",7244],["664.webp",5354],["665.webp",6348],["666-archipelago.webp",9152],["666-continental.webp",9148],["666-elegant.webp",8756],["666-fancy.webp",9270],["666-garden.webp",9024],["666-high-plains.webp",9278],["666-icy-snow.webp",7690],["666-jungle.webp",8374],["666-marine.webp",8914],["666-meadow.webp",9026],["666-modern.webp",9228],["666-monsoon.webp",8502],["666-ocean.webp",9670],["666-poke-ball.webp",8764],["666-polar.webp",8848],["666-river.webp",8764],["666-sandstorm.webp",8388],["666-savanna.webp",9704],["666-sun.webp",9356],["666-tundra.webp",8422],["666.webp",9026],["667.webp",8430],["668.webp",10056],["669-blue.webp",8500],["669-orange.webp",8280],["669-red.webp",8372],["669-white.webp",8010],["669-yellow.webp",8162],["669.webp",8372],["67.webp",8362],["670-blue.webp",7240],["670-orange.webp",6980],["670-red.webp",7120],["670-white.webp",6870],["670-yellow.webp",6940],["670.webp",7120],["671-blue.webp",11178],["671-orange.webp",10744],["671-red.webp",10790],["671-white.webp",10304],["671-yellow.webp",10470],["671.webp",10790],["672.webp",8470],["673.webp",10318],["674.webp",5366],["675.webp",7370],["676-dandy.webp",8028],["676-debutante.webp",8040],["676-diamond.webp",7210],["676-heart.webp",7936],["676-kabuki.webp",8604],["676-la-reine.webp",7948],["676-matron.webp",8082],["676-natural.webp",7680],["676-pharaoh.webp",7954],["676-star.webp",7712],["676.webp",7680],["677.webp",5534],["678.webp",9346],["679.webp",8198],["68.webp",10140],["680.webp",11554],["681.webp",8550],["682.webp",5914],["683.webp",8082],["684.webp",4252],["685.webp",6086],["686.webp",6740],["687.webp",8896],["688.webp",7856],["689.webp",10832],["69.webp",7286],["690.webp",8676],["691.webp",10190],["692.webp",6304],["693.webp",5770],["694.webp",6452],["695.webp",6590],["696.webp",8084],["697.webp",9168],["698.webp",6062],["699.webp",9558],["7.webp",6372],["70.webp",6046],["700.webp",8814],["701.webp",8396],["702.webp",9170],["703.webp",6072],["704.webp",6170],["705.webp",6108],["706.webp",7590],["707.webp",7306],["708.webp",7170],["709.webp",13322],["71.webp",8918],["710.webp",6136],["711.webp",7106],["712.webp",5562],["713.webp",8594],["714.webp",8528],["715.webp",11638],["716-active.webp",11134],["716-neutral.webp",10246],["716.webp",10246],["717.webp",11214],["718.webp",11774],["719.webp",6224],["72.webp",6618],["720.webp",8252],["721.webp",9642],["722.webp",5918],["723.webp",8104],["724.webp",8602],["725.webp",6374],["726.webp",9990],["727.webp",8138],["728.webp",7802],["729.webp",5932],["73.webp",14014],["730.webp",9360],["731.webp",7574],["732.webp",8522],["733.webp",8056],["734.webp",5162],["735.webp",6196],["736.webp",4488],["737.webp",4584],["738.webp",9730],["739.webp",7216],["74.webp",4228],["740.webp",7044],["741.webp",6868],["742.webp",7932],["743.webp",10052],["744.webp",6394],["745.webp",8272],["746.webp",4734],["747.webp",7138],["748.webp",7544],["749.webp",7326],["75.webp",4984],["750.webp",10384],["751.webp",8330],["752.webp",11712],["753.webp",5286],["754.webp",7336],["755.webp",4616],["756.webp",6762],["757.webp",6064],["758.webp",9196],["759.webp",6620],["76.webp",6882],["760.webp",7542],["761.webp",6134],["762.webp",7180],["763.webp",7754],["764.webp",8588],["765.webp",8750],["766.webp",8046],["767.webp",6110],["768.webp",9748],["769.webp",4894],["77.webp",9070],["770.webp",6226],["771.webp",5350],["772.webp",9782],["773-bug.webp",8966],["773-dark.webp",8914],["773-dragon.webp",9132],["773-electric.webp",9036],["773-fairy.webp",8744],["773-fighting.webp",9212],["773-fire.webp",9270],["773-flying.webp",9296],["773-ghost.webp",8908],["773-grass.webp",9154],["773-ground.webp",9248],["773-ice.webp",8714],["773-normal.webp",8646],["773-poison.webp",9090],["773-psychic.webp",9080],["773-rock.webp",8842],["773-steel.webp",8908],["773-water.webp",9058],["773.webp",8646],["774.webp",5820],["775.webp",5958],["776.webp",9400],["777.webp",5424],["778.webp",6272],["779.webp",5976],["78.webp",11300],["780.webp",7690],["781.webp",11580],["782.webp",6762],["783.webp",8684],["784.webp",10844],["785.webp",10676],["786.webp",7550],["787.webp",7978],["788.webp",7954],["789.webp",7388],["79.webp",6618],["790.webp",7022],["791.webp",12606],["792.webp",14154],["793.webp",6736],["794.webp",10786],["795.webp",10910],["796.webp",10832],["797.webp",11450],["798.webp",5974],["799.webp",11800],["8.webp",7882],["80.webp",7476],["800.webp",11380],["801.webp",6922],["802.webp",5458],["803.webp",5758],["804.webp",6942],["805.webp",11012],["806.webp",9934],["807.webp",10286],["808.webp",6880],["809.webp",7774],["81.webp",5954],["810.webp",7114],["811.webp",6606],["812.webp",10304],["813.webp",5270],["814.webp",8082],["815.webp",6354],["816.webp",5530],["817.webp",7476],["818.webp",8510],["819.webp",5178],["82.webp",11346],["820.webp",7548],["821.webp",5950],["822.webp",10130],["823.webp",7574],["824.webp",6026],["825.webp",6016],["826.webp",9010],["827.webp",8178],["828.webp",9046],["829.webp",7268],["83.webp",7078],["830.webp",5326],["831.webp",5298],["832.webp",7572],["833.webp",5318],["834.webp",6364],["835.webp",5574],["836.webp",7196],["837.webp",4770],["838.webp",5748],["839.webp",7660],["84.webp",6462],["840.webp",5700],["841.webp",7850],["842.webp",5876],["843.webp",6306],["844.webp",6242],["845-gorging.webp",9396],["845-gulping.webp",8192],["845.webp",7662],["846.webp",4944],["847.webp",5986],["848.webp",5982],["849.webp",9208],["85.webp",11034],["850.webp",4086],["851.webp",9938],["852.webp",6020],["853.webp",8900],["854.webp",6130],["855.webp",6742],["856.webp",4686],["857.webp",5616],["858.webp",6490],["859.webp",7830],["86.webp",5664],["860.webp",9934],["861.webp",10032],["862.webp",7270],["863.webp",9806],["864.webp",11304],["865.webp",5396],["866.webp",11138],["867.webp",9486],["868.webp",4672],["869-caramel-swirl-berry-sweet.webp",5950],["869-caramel-swirl-clover-sweet.webp",5960],["869-caramel-swirl-flower-sweet.webp",6086],["869-caramel-swirl-love-sweet.webp",5586],["869-caramel-swirl-ribbon-sweet.webp",5650],["869-caramel-swirl-star-sweet.webp",5758],["869-caramel-swirl-strawberry-sweet.webp",5604],["869-lemon-cream-berry-sweet.webp",5882],["869-lemon-cream-clover-sweet.webp",5934],["869-lemon-cream-flower-sweet.webp",5996],["869-lemon-cream-love-sweet.webp",5584],["869-lemon-cream-ribbon-sweet.webp",5634],["869-lemon-cream-star-sweet.webp",5698],["869-lemon-cream-strawberry-sweet.webp",5616],["869-matcha-cream-berry-sweet.webp",5758],["869-matcha-cream-clover-sweet.webp",5852],["869-matcha-cream-flower-sweet.webp",5996],["869-matcha-cream-love-sweet.webp",5508],["869-matcha-cream-ribbon-sweet.webp",5514],["869-matcha-cream-star-sweet.webp",5734],["869-matcha-cream-strawberry-sweet.webp",5548],["869-mint-cream-berry-sweet.webp",5768],["869-mint-cream-clover-sweet.webp",5908],["869-mint-cream-flower-sweet.webp",6044],["869-mint-cream-love-sweet.webp",5564],["869-mint-cream-ribbon-sweet.webp",5518],["869-mint-cream-star-sweet.webp",5792],["869-mint-cream-strawberry-sweet.webp",5614],["869-rainbow-swirl-berry-sweet.webp",6436],["869-rainbow-swirl-clover-sweet.webp",6588],["869-rainbow-swirl-flower-sweet.webp",6632],["869-rainbow-swirl-love-sweet.webp",6258],["869-rainbow-swirl-ribbon-sweet.webp",6340],["869-rainbow-swirl-star-sweet.webp",6268],["869-rainbow-swirl-strawberry-sweet.webp",6230],["869-ruby-cream-berry-sweet.webp",5790],["869-ruby-cream-clover-sweet.webp",5860],["869-ruby-cream-flower-sweet.webp",5888],["869-ruby-cream-love-sweet.webp",5426],["869-ruby-cream-ribbon-sweet.webp",5404],["869-ruby-cream-star-sweet.webp",5654],["869-ruby-cream-strawberry-sweet.webp",5490],["869-ruby-swirl-berry-sweet.webp",5950],["869-ruby-swirl-clover-sweet.webp",6078],["869-ruby-swirl-flower-sweet.webp",6130],["869-ruby-swirl-love-sweet.webp",5690],["869-ruby-swirl-ribbon-sweet.webp",5814],["869-ruby-swirl-star-sweet.webp",5804],["869-ruby-swirl-strawberry-sweet.webp",5678],["869-salted-cream-berry-sweet.webp",5600],["869-salted-cream-clover-sweet.webp",5646],["869-salted-cream-flower-sweet.webp",5776],["869-salted-cream-love-sweet.webp",5360],["869-salted-cream-ribbon-sweet.webp",5332],["869-salted-cream-star-sweet.webp",5548],["869-salted-cream-strawberry-sweet.webp",5468],["869-vanilla-cream-berry-sweet.webp",5824],["869-vanilla-cream-clover-sweet.webp",6014],["869-vanilla-cream-flower-sweet.webp",6104],["869-vanilla-cream-love-sweet.webp",5486],["869-vanilla-cream-ribbon-sweet.webp",5546],["869-vanilla-cream-star-sweet.webp",5682],["869-vanilla-cream-strawberry-sweet.webp",5484],["869.webp",5484],["87.webp",6578],["870.webp",8498],["871.webp",5982],["872.webp",3956],["873.webp",7808],["874.webp",8710],["875.webp",5196],["876.webp",6242],["877-hangry.webp",4920],["877.webp",5662],["878.webp",8044],["879.webp",10710],["88.webp",5214],["880.webp",7862],["881.webp",8372],["882.webp",9826],["883.webp",8330],["884.webp",7420],["885.webp",5572],["886.webp",8236],["887.webp",11108],["888.webp",9742],["889.webp",11996],["89.webp",4894],["890.webp",13910],["891.webp",6140],["892.webp",8700],["893-dada.webp",11252],["893.webp",11026],["894.webp",6690],["895.webp",7722],["896.webp",8266],["897.webp",10524],["898.webp",5580],["899.webp",9378],["9.webp",7566],["90.webp",6402],["900.webp",11594],["901.webp",7964],["902.webp",7044],["903.webp",9670],["904.webp",7552],["905.webp",8604],["906.webp",10622],["907.webp",9638],["908.webp",10254],["909.webp",7958],["91.webp",8204],["910.webp",9718],["911.webp",9220],["912.webp",8082],["913.webp",8608],["914.webp",11118],["915.webp",7124],["916.webp",8030],["917.webp",10854],["918.webp",12926],["919.webp",9086],["92.webp",8194],["920.webp",7830],["921.webp",9430],["922.webp",8312],["923.webp",8840],["924.webp",7552],["925.webp",7670],["926.webp",7180],["927.webp",10180],["928.webp",6650],["929.webp",8730],["93.webp",8506],["930.webp",10056],["931.webp",8360],["932.webp",6550],["933.webp",7370],["934.webp",8852],["935.webp",7368],["936.webp",9334],["937.webp",10436],["938.webp",6148],["939.webp",7422],["94.webp",7118],["940.webp",9032],["941.webp",6776],["942.webp",7256],["943.webp",7354],["944.webp",6488],["945.webp",10940],["946.webp",15140],["947.webp",16836],["948.webp",7594],["949.webp",12392],["95.webp",7852],["950.webp",10120],["951.webp",7688],["952.webp",10360],["953.webp",7614],["954.webp",9490],["955.webp",8574],["956.webp",9840],["957.webp",7700],["958.webp",8666],["959.webp",10700],["96.webp",6716],["960.webp",5258],["961.webp",7910],["962.webp",8786],["963.webp",6528],["964.webp",6514],["965.webp",7728],["966.webp",8362],["967.webp",9218],["968.webp",6692],["969.webp",5890],["97.webp",8590],["970.webp",5746],["971.webp",8146],["972.webp",9244],["973.webp",5398],["974.webp",6976],["975.webp",6794],["976.webp",8164],["977.webp",9086],["978.webp",7990],["979.webp",12994],["98.webp",7432],["980.webp",4514],["981.webp",7326],["982.webp",8186],["983.webp",8564],["984.webp",7868],["985.webp",9068],["986.webp",9864],["987.webp",8660],["988.webp",9240],["989.webp",12798],["99.webp",7568],["990.webp",8332],["991.webp",10886],["992.webp",8134],["993.webp",13592],["994.webp",12202],["995.webp",9552],["996.webp",9022],["997.webp",8710],["998.webp",7916],["999.webp",9212],["female/10235.webp",7950],["female/111.webp",6652],["female/112.webp",7038],["female/118.webp",4364],["female/119.webp",8176],["female/12.webp",10116],["female/123.webp",10908],["female/129.webp",9130],["female/130.webp",10816],["female/133.webp",6770],["female/154.webp",6646],["female/165.webp",7656],["female/166.webp",7508],["female/178.webp",7540],["female/185.webp",9496],["female/186.webp",7364],["female/19.webp",7338],["female/190.webp",8620],["female/194.webp",6300],["female/195.webp",6060],["female/198.webp",7290],["female/20.webp",8938],["female/202.webp",6972],["female/203.webp",7916],["female/207.webp",9454],["female/208.webp",7218],["female/212.webp",9962],["female/214.webp",8016],["female/215.webp",8680],["female/217.webp",7024],["female/221.webp",6080],["female/224.webp",6938],["female/229.webp",9680],["female/232.webp",5200],["female/25.webp",7218],["female/255.webp",5284],["female/256.webp",8256],["female/257.webp",7872],["female/26.webp",8092],["female/267.webp",10082],["female/269.webp",6866],["female/272.webp",7624],["female/274.webp",8488],["female/275.webp",7524],["female/3.webp",8754],["female/307.webp",7832],["female/308.webp",6200],["female/315.webp",7132],["female/316.webp",4568],["female/317.webp",6066],["female/322.webp",6664],["female/323.webp",7674],["female/332.webp",8316],["female/350.webp",11546],["female/369.webp",6628],["female/396.webp",6092],["female/397.webp",6860],["female/398.webp",8662],["female/399.webp",6112],["female/400.webp",6820],["female/401.webp",5746],["female/402.webp",9702],["female/403.webp",6900],["female/404.webp",9534],["female/405.webp",9698],["female/407.webp",7240],["female/41.webp",8472],["female/415.webp",5894],["female/417.webp",5898],["female/418.webp",5494],["female/419.webp",7012],["female/42.webp",8316],["female/424.webp",10332],["female/44.webp",8966],["female/443.webp",7352],["female/444.webp",9254],["female/445.webp",10262],["female/449.webp",5978],["female/45.webp",8152],["female/450.webp",6486],["female/453.webp",8102],["female/454.webp",8458],["female/456.webp",6484],["female/457.webp",8710],["female/459.webp",6308],["female/460.webp",8986],["female/461.webp",9374],["female/464.webp",7792],["female/465.webp",7570],["female/473.webp",7140],["female/521.webp",5536],["female/592.webp",8112],["female/593.webp",7900],["female/64.webp",9134],["female/65.webp",9616],["female/668.webp",10754],["female/678.webp",7688],["female/84.webp",6384],["female/85.webp",10908],["female/876.webp",6814],["female/902.webp",6296],["female/916.webp",7322],["female/97.webp",8566],["shiny/1.webp",6114],["shiny/10.webp",6350],["shiny/100.webp",4978],["shiny/1000.webp",9340],["shiny/10001.webp",9554],["shiny/10002.webp",8600],["shiny/10003.webp",9738],["shiny/10004.webp",5466],["shiny/10005.webp",5480],["shiny/10006.webp",7882],["shiny/10007.webp",13964],["shiny/10008.webp",6564],["shiny/10009.webp",6300],["shiny/1001.webp",10622],["shiny/10010.webp",5676],["shiny/10011.webp",5966],["shiny/10012.webp",6196],["shiny/10013.webp",6150],["shiny/10014.webp",4400],["shiny/10015.webp",6182],["shiny/10016.webp",6778],["shiny/10017.webp",7090],["shiny/10018.webp",6178],["shiny/10019.webp",10264],["shiny/1002.webp",9694],["shiny/10020.webp",9358],["shiny/10021.webp",9264],["shiny/10022.webp",10472],["shiny/10023.webp",10896],["shiny/10024.webp",9102],["shiny/10025.webp",6838],["shiny/10026.webp",9308],["shiny/10027.webp",4918],["shiny/10028.webp",6534],["shiny/10029.webp",7210],["shiny/1003.webp",9070],["shiny/10030.webp",6232],["shiny/10031.webp",8246],["shiny/10032.webp",9266],["shiny/10033.webp",10252],["shiny/10034.webp",12744],["shiny/10035.webp",11490],["shiny/10036.webp",8046],["shiny/10037.webp",12002],["shiny/10038.webp",8496],["shiny/10039.webp",9204],["shiny/1004.webp",7684],["shiny/10040.webp",11474],["shiny/10041.webp",11092],["shiny/10042.webp",10336],["shiny/10043.webp",7868],["shiny/10044.webp",7984],["shiny/10045.webp",9718],["shiny/10046.webp",12512],["shiny/10047.webp",7422],["shiny/10048.webp",10774],["shiny/10049.webp",11706],["shiny/1005.webp",12426],["shiny/10050.webp",11124],["shiny/10051.webp",7610],["shiny/10052.webp",11748],["shiny/10053.webp",9112],["shiny/10054.webp",10720],["shiny/10055.webp",10010],["shiny/10056.webp",10788],["shiny/10057.webp",10088],["shiny/10058.webp",10010],["shiny/10059.webp",10892],["shiny/1006.webp",9518],["shiny/10060.webp",11178],["shiny/10062.webp",9424],["shiny/10063.webp",6674],["shiny/10064.webp",9576],["shiny/10065.webp",9190],["shiny/10066.webp",8964],["shiny/10067.webp",6132],["shiny/10068.webp",9246],["shiny/10069.webp",7486],["shiny/1007.webp",13654],["shiny/10070.webp",7718],["shiny/10071.webp",6500],["shiny/10072.webp",10652],["shiny/10073.webp",10864],["shiny/10074.webp",8776],["shiny/10075.webp",13556],["shiny/10076.webp",10446],["shiny/10077.webp",11534],["shiny/10078.webp",8992],["shiny/10079.webp",17140],["shiny/1008.webp",9604],["shiny/10086.webp",11798],["shiny/10087.webp",7866],["shiny/10088.webp",9724],["shiny/10089.webp",8286],["shiny/1009.webp",11124],["shiny/10090.webp",12240],["shiny/10091.webp",6888],["shiny/10092.webp",7250],["shiny/10093.webp",8600],["shiny/101.webp",6194],["shiny/1010.webp",8984],["shiny/10100.webp",9162],["shiny/10101.webp",5268],["shiny/10102.webp",7910],["shiny/10103.webp",6174],["shiny/10104.webp",9560],["shiny/10105.webp",5228],["shiny/10106.webp",7160],["shiny/10107.webp",7542],["shiny/10108.webp",8260],["shiny/10109.webp",6516],["shiny/1011.webp",6334],["shiny/10110.webp",7698],["shiny/10111.webp",7460],["shiny/10112.webp",5272],["shiny/10113.webp",5606],["shiny/10114.webp",7706],["shiny/10115.webp",7714],["shiny/10116.webp",9204],["shiny/10117.webp",7942],["shiny/10118.webp",8056],["shiny/10119.webp",11498],["shiny/1012.webp",9994],["shiny/10120.webp",10174],["shiny/10121.webp",6914],["shiny/10122.webp",10556],["shiny/10123.webp",5018],["shiny/10124.webp",6744],["shiny/10125.webp",6862],["shiny/10126.webp",9666],["shiny/10127.webp",7970],["shiny/10128.webp",8206],["shiny/10129.webp",10950],["shiny/1013.webp",8600],["shiny/10130.webp",7976],["shiny/10131.webp",7976],["shiny/10132.webp",7976],["shiny/10133.webp",7976],["shiny/10134.webp",7976],["shiny/10135.webp",7976],["shiny/10136.webp",5446],["shiny/10137.webp",7662],["shiny/10138.webp",7662],["shiny/10139.webp",7662],["shiny/1014.webp",11238],["shiny/10140.webp",7662],["shiny/10141.webp",7662],["shiny/10142.webp",7662],["shiny/10143.webp",5088],["shiny/10145.webp",6870],["shiny/10146.webp",13014],["shiny/10147.webp",7150],["shiny/10149.webp",8572],["shiny/1015.webp",7732],["shiny/10150.webp",11630],["shiny/10152.webp",7276],["shiny/10153.webp",11962],["shiny/10154.webp",7124],["shiny/10155.webp",11428],["shiny/10156.webp",11834],["shiny/10157.webp",11438],["shiny/1016.webp",12214],["shiny/10161.webp",7094],["shiny/10162.webp",9804],["shiny/10163.webp",9764],["shiny/10164.webp",3998],["shiny/10165.webp",7150],["shiny/10166.webp",5126],["shiny/10167.webp",10388],["shiny/10168.webp",9246],["shiny/10169.webp",10112],["shiny/1017.webp",11596],["shiny/10170.webp",12378],["shiny/10171.webp",13726],["shiny/10172.webp",6370],["shiny/10173.webp",7000],["shiny/10174.webp",8092],["shiny/10175.webp",6606],["shiny/10176.webp",6056],["shiny/10177.webp",5878],["shiny/10178.webp",6684],["shiny/10179.webp",5894],["shiny/1018.webp",10238],["shiny/10180.webp",4924],["shiny/10181.webp",9506],["shiny/10184.webp",7162],["shiny/10185.webp",4076],["shiny/10186.webp",7010],["shiny/10188.webp",13162],["shiny/10189.webp",11804],["shiny/1019.webp",7422],["shiny/10190.webp",10494],["shiny/10191.webp",8442],["shiny/10192.webp",11464],["shiny/10193.webp",10096],["shiny/10194.webp",12810],["shiny/10195.webp",8424],["shiny/10196.webp",16558],["shiny/10197.webp",11130],["shiny/10198.webp",10256],["shiny/10199.webp",9442],["shiny/102.webp",6754],["shiny/1020.webp",12136],["shiny/10200.webp",7636],["shiny/10201.webp",11796],["shiny/10202.webp",8560],["shiny/10203.webp",12782],["shiny/10204.webp",10050],["shiny/10205.webp",8282],["shiny/10206.webp",8388],["shiny/10207.webp",10794],["shiny/10208.webp",10764],["shiny/10209.webp",12656],["shiny/1021.webp",10052],["shiny/10210.webp",11628],["shiny/10211.webp",6474],["shiny/10212.webp",11786],["shiny/10213.webp",7594],["shiny/10214.webp",10358],["shiny/10215.webp",10468],["shiny/10216.webp",9408],["shiny/10217.webp",9326],["shiny/10218.webp",10138],["shiny/10219.webp",13890],["shiny/1022.webp",9950],["shiny/10220.webp",12516],["shiny/10221.webp",11792],["shiny/10222.webp",10360],["shiny/10223.webp",8210],["shiny/10224.webp",9196],["shiny/10225.webp",9038],["shiny/10226.webp",11104],["shiny/10227.webp",11610],["shiny/10228.webp",14798],["shiny/10229.webp",8188],["shiny/1023.webp",7996],["shiny/10230.webp",8602],["shiny/10231.webp",4750],["shiny/10232.webp",5690],["shiny/10233.webp",8030],["shiny/10234.webp",6230],["shiny/10235.webp",8604],["shiny/10236.webp",8902],["shiny/10237.webp",7272],["shiny/10238.webp",5972],["shiny/10239.webp",10398],["shiny/1024.webp",7304],["shiny/10240.webp",11494],["shiny/10241.webp",5946],["shiny/10242.webp",7522],["shiny/10243.webp",7692],["shiny/10244.webp",10960],["shiny/10245.webp",11468],["shiny/10246.webp",8984],["shiny/10247.webp",7812],["shiny/10248.webp",6794],["shiny/10249.webp",9046],["shiny/1025.webp",6540],["shiny/10250.webp",7156],["shiny/10251.webp",10098],["shiny/10252.webp",6538],["shiny/10253.webp",9576],["shiny/10254.webp",10248],["shiny/10255.webp",8668],["shiny/10256.webp",8788],["shiny/10257.webp",6028],["shiny/10258.webp",4510],["shiny/10259.webp",5102],["shiny/10260.webp",8428],["shiny/10261.webp",8354],["shiny/10262.webp",7722],["shiny/10263.webp",9206],["shiny/10272.webp",9694],["shiny/10273.webp",10970],["shiny/10274.webp",10932],["shiny/10275.webp",10122],["shiny/10276.webp",7640],["shiny/10277.webp",11984],["shiny/103.webp",10706],["shiny/104.webp",5850],["shiny/105.webp",7450],["shiny/106.webp",6084],["shiny/107.webp",6502],["shiny/108.webp",6734],["shiny/109.webp",9804],["shiny/11.webp",4276],["shiny/110.webp",8776],["shiny/111.webp",6912],["shiny/112.webp",6928],["shiny/113.webp",6088],["shiny/114.webp",8198],["shiny/115.webp",7876],["shiny/116.webp",6526],["shiny/117.webp",7118],["shiny/118.webp",4458],["shiny/119.webp",8494],["shiny/12.webp",9386],["shiny/120.webp",6332],["shiny/121.webp",8120],["shiny/122.webp",11310],["shiny/123.webp",10494],["shiny/124.webp",7714],["shiny/125.webp",9076],["shiny/126.webp",9372],["shiny/127.webp",9292],["shiny/128.webp",9696],["shiny/129.webp",8630],["shiny/13.webp",5176],["shiny/130.webp",10816],["shiny/131.webp",6982],["shiny/132.webp",4556],["shiny/133.webp",6086],["shiny/134.webp",8442],["shiny/135.webp",9238],["shiny/136.webp",8128],["shiny/137.webp",6984],["shiny/138.webp",5990],["shiny/139.webp",8614],["shiny/14.webp",3990],["shiny/140.webp",5388],["shiny/141.webp",9806],["shiny/142.webp",7720],["shiny/143.webp",6632],["shiny/144.webp",12082],["shiny/145.webp",11248],["shiny/146.webp",7926],["shiny/147.webp",6032],["shiny/148.webp",6754],["shiny/149.webp",8974],["shiny/15.webp",11086],["shiny/150.webp",8778],["shiny/151.webp",7182],["shiny/152.webp",4802],["shiny/153.webp",6702],["shiny/154.webp",6552],["shiny/155.webp",6842],["shiny/156.webp",6692],["shiny/157.webp",7644],["shiny/158.webp",5316],["shiny/159.webp",7050],["shiny/16.webp",6140],["shiny/160.webp",8710],["shiny/161.webp",4282],["shiny/162.webp",6726],["shiny/163.webp",7444],["shiny/164.webp",7072],["shiny/165.webp",7664],["shiny/166.webp",7960],["shiny/167.webp",5970],["shiny/168.webp",8450],["shiny/169.webp",7014],["shiny/17.webp",8348],["shiny/170.webp",8146],["shiny/171.webp",6698],["shiny/172.webp",6898],["shiny/173.webp",4806],["shiny/174.webp",4790],["shiny/175.webp",6642],["shiny/176.webp",6374],["shiny/177.webp",7078],["shiny/178.webp",7262],["shiny/179.webp",7324],["shiny/18.webp",8802],["shiny/180.webp",6098],["shiny/181.webp",6860],["shiny/182.webp",6714],["shiny/183.webp",6738],["shiny/184.webp",9120],["shiny/185.webp",9480],["shiny/186.webp",7590],["shiny/187.webp",6878],["shiny/188.webp",5498],["shiny/189.webp",5830],["shiny/19.webp",6790],["shiny/190.webp",8272],["shiny/191.webp",7304],["shiny/192.webp",7300],["shiny/193.webp",8192],["shiny/194.webp",6862],["shiny/195.webp",5884],["shiny/196.webp",8490],["shiny/197.webp",8064],["shiny/198.webp",7412],["shiny/199.webp",6216],["shiny/2.webp",8570],["shiny/20.webp",9190],["shiny/200.webp",6694],["shiny/201-a.webp",6052],["shiny/201-b.webp",6678],["shiny/201-c.webp",9298],["shiny/201-d.webp",8018],["shiny/201-e.webp",7116],["shiny/201-exclamation.webp",4890],["shiny/201-f.webp",7694],["shiny/201-g.webp",6114],["shiny/201-h.webp",11238],["shiny/201-i.webp",4850],["shiny/201-j.webp",6136],["shiny/201-k.webp",5856],["shiny/201-l.webp",5760],["shiny/201-m.webp",10844],["shiny/201-n.webp",9848],["shiny/201-o.webp",11336],["shiny/201-p.webp",5642],["shiny/201-q.webp",6134],["shiny/201-question.webp",5682],["shiny/201-r.webp",6076],["shiny/201-s.webp",6638],["shiny/201-t.webp",6186],["shiny/201-u.webp",8682],["shiny/201-v.webp",7464],["shiny/201-w.webp",7370],["shiny/201-x.webp",7490],["shiny/201-y.webp",6238],["shiny/201-z.webp",5836],["shiny/201.webp",6052],["shiny/202.webp",6430],["shiny/203.webp",8184],["shiny/204.webp",7310],["shiny/205.webp",5900],["shiny/206.webp",6300],["shiny/207.webp",9524],["shiny/208.webp",7362],["shiny/209.webp",6796],["shiny/21.webp",7752],["shiny/210.webp",6998],["shiny/211.webp",7180],["shiny/212.webp",9554],["shiny/213.webp",5892],["shiny/214.webp",8462],["shiny/215.webp",8848],["shiny/216.webp",5456],["shiny/217.webp",7026],["shiny/218.webp",6070],["shiny/219.webp",7102],["shiny/22.webp",9754],["shiny/220.webp",4734],["shiny/221.webp",5876],["shiny/222.webp",6294],["shiny/223.webp",7068],["shiny/224.webp",6670],["shiny/225.webp",7036],["shiny/226.webp",6218],["shiny/227.webp",7122],["shiny/228.webp",7050],["shiny/229.webp",10720],["shiny/23.webp",6982],["shiny/230.webp",8944],["shiny/231.webp",5812],["shiny/232.webp",5854],["shiny/233.webp",7466],["shiny/234.webp",8600],["shiny/235.webp",8960],["shiny/236.webp",7518],["shiny/237.webp",9124],["shiny/238.webp",5578],["shiny/239.webp",5208],["shiny/24.webp",8306],["shiny/240.webp",6148],["shiny/241.webp",8478],["shiny/242.webp",6224],["shiny/243.webp",9336],["shiny/244.webp",9504],["shiny/245.webp",11444],["shiny/246.webp",4570],["shiny/247.webp",6626],["shiny/248.webp",7200],["shiny/249.webp",8834],["shiny/25.webp",7172],["shiny/250.webp",10932],["shiny/251.webp",6596],["shiny/252.webp",7580],["shiny/253.webp",10718],["shiny/254.webp",9100],["shiny/255.webp",5040],["shiny/256.webp",8680],["shiny/257.webp",7786],["shiny/258.webp",5862],["shiny/259.webp",6172],["shiny/26.webp",8086],["shiny/260.webp",7692],["shiny/261.webp",6988],["shiny/262.webp",9910],["shiny/263.webp",5844],["shiny/264.webp",4530],["shiny/265.webp",6394],["shiny/266.webp",6102],["shiny/267.webp",10410],["shiny/268.webp",6234],["shiny/269.webp",6684],["shiny/27.webp",6442],["shiny/270.webp",6208],["shiny/271.webp",8702],["shiny/272.webp",7546],["shiny/273.webp",4852],["shiny/274.webp",8916],["shiny/275.webp",7804],["shiny/276.webp",6594],["shiny/277.webp",8728],["shiny/278.webp",4290],["shiny/279.webp",6296],["shiny/28.webp",8416],["shiny/280.webp",4530],["shiny/281.webp",7142],["shiny/282.webp",6946],["shiny/283.webp",5048],["shiny/284.webp",7666],["shiny/285.webp",5038],["shiny/286.webp",8212],["shiny/287.webp",5616],["shiny/288.webp",5918],["shiny/289.webp",6052],["shiny/29.webp",6394],["shiny/290.webp",4596],["shiny/291.webp",7814],["shiny/292.webp",8320],["shiny/293.webp",5386],["shiny/294.webp",9360],["shiny/295.webp",7958],["shiny/296.webp",6536],["shiny/297.webp",8624],["shiny/298.webp",6934],["shiny/299.webp",6144],["shiny/3.webp",8038],["shiny/30.webp",6774],["shiny/300.webp",6976],["shiny/301.webp",8546],["shiny/302.webp",6414],["shiny/303.webp",7020],["shiny/304.webp",5280],["shiny/305.webp",7262],["shiny/306.webp",9126],["shiny/307.webp",7478],["shiny/308.webp",6042],["shiny/309.webp",6830],["shiny/31.webp",7952],["shiny/310.webp",7388],["shiny/311.webp",6422],["shiny/312.webp",5154],["shiny/313.webp",7056],["shiny/314.webp",6296],["shiny/315.webp",6638],["shiny/316.webp",4850],["shiny/317.webp",6470],["shiny/318.webp",7130],["shiny/319.webp",6182],["shiny/32.webp",6840],["shiny/320.webp",4326],["shiny/321.webp",4810],["shiny/322.webp",6256],["shiny/323.webp",6902],["shiny/324.webp",9612],["shiny/325.webp",4534],["shiny/326.webp",8808],["shiny/327.webp",7016],["shiny/328.webp",5076],["shiny/329.webp",8278],["shiny/33.webp",8502],["shiny/330.webp",9466],["shiny/331.webp",5958],["shiny/332.webp",8232],["shiny/333.webp",5390],["shiny/334.webp",8622],["shiny/335.webp",6828],["shiny/336.webp",9378],["shiny/337.webp",6540],["shiny/338.webp",8082],["shiny/339.webp",5008],["shiny/34.webp",9132],["shiny/340.webp",9360],["shiny/341.webp",8624],["shiny/342.webp",9250],["shiny/343.webp",5698],["shiny/344.webp",6938],["shiny/345.webp",9110],["shiny/346.webp",8424],["shiny/347.webp",7636],["shiny/348.webp",8758],["shiny/349.webp",7050],["shiny/35.webp",5214],["shiny/350.webp",10712],["shiny/351.webp",4164],["shiny/352.webp",7236],["shiny/353.webp",5616],["shiny/354.webp",9244],["shiny/355.webp",6056],["shiny/356.webp",6154],["shiny/357.webp",9730],["shiny/358.webp",3806],["shiny/359.webp",7576],["shiny/36.webp",7084],["shiny/360.webp",6702],["shiny/361.webp",5858],["shiny/362.webp",7084],["shiny/363.webp",5532],["shiny/364.webp",5600],["shiny/365.webp",6960],["shiny/366.webp",6930],["shiny/367.webp",7974],["shiny/368.webp",6892],["shiny/369.webp",7286],["shiny/37.webp",6814],["shiny/370.webp",4350],["shiny/371.webp",4968],["shiny/372.webp",5872],["shiny/373.webp",10524],["shiny/374.webp",4614],["shiny/375.webp",7696],["shiny/376.webp",6178],["shiny/377.webp",8270],["shiny/378.webp",7480],["shiny/379.webp",7910],["shiny/38.webp",7282],["shiny/380.webp",7282],["shiny/381.webp",6120],["shiny/382.webp",7122],["shiny/383.webp",8806],["shiny/384.webp",10656],["shiny/385.webp",6294],["shiny/386.webp",8764],["shiny/387.webp",6024],["shiny/388.webp",8776],["shiny/389.webp",8692],["shiny/39.webp",5666],["shiny/390.webp",6600],["shiny/391.webp",9302],["shiny/392.webp",10940],["shiny/393.webp",5160],["shiny/394.webp",7172],["shiny/395.webp",7768],["shiny/396.webp",6268],["shiny/397.webp",7136],["shiny/398.webp",8888],["shiny/399.webp",5988],["shiny/4.webp",7240],["shiny/40.webp",7344],["shiny/400.webp",6916],["shiny/401.webp",5820],["shiny/402.webp",9476],["shiny/403.webp",6978],["shiny/404.webp",9630],["shiny/405.webp",10194],["shiny/406.webp",4532],["shiny/407.webp",6718],["shiny/408.webp",6784],["shiny/409.webp",6304],["shiny/41.webp",8324],["shiny/410.webp",6656],["shiny/411.webp",7932],["shiny/412-plant.webp",4884],["shiny/412-sandy.webp",4238],["shiny/412-trash.webp",4450],["shiny/412.webp",4884],["shiny/413-plant.webp",5722],["shiny/413-sandy.webp",5466],["shiny/413-trash.webp",5480],["shiny/413.webp",5722],["shiny/414.webp",6658],["shiny/415.webp",5682],["shiny/416.webp",8804],["shiny/417.webp",5516],["shiny/418.webp",5180],["shiny/419.webp",6472],["shiny/42.webp",8144],["shiny/420.webp",6808],["shiny/421-overcast.webp",5070],["shiny/421-sunshine.webp",6178],["shiny/421.webp",5070],["shiny/422-east.webp",5406],["shiny/422-west.webp",4734],["shiny/422.webp",4734],["shiny/423-east.webp",7048],["shiny/423-west.webp",6624],["shiny/423.webp",6624],["shiny/424.webp",9978],["shiny/425.webp",5846],["shiny/426.webp",7914],["shiny/427.webp",4366],["shiny/428.webp",7150],["shiny/429.webp",6940],["shiny/43.webp",6762],["shiny/430.webp",7768],["shiny/431.webp",8440],["shiny/432.webp",9506],["shiny/433.webp",6196],["shiny/434.webp",8132],["shiny/435.webp",7102],["shiny/436.webp",6546],["shiny/437.webp",5494],["shiny/438.webp",5572],["shiny/439.webp",5808],["shiny/44.webp",8916],["shiny/440.webp",4488],["shiny/441.webp",7022],["shiny/442.webp",9118],["shiny/443.webp",7652],["shiny/444.webp",9434],["shiny/445.webp",10306],["shiny/446.webp",6136],["shiny/447.webp",7272],["shiny/448.webp",8168],["shiny/449.webp",5784],["shiny/45.webp",7630],["shiny/450.webp",6618],["shiny/451.webp",7902],["shiny/452.webp",7468],["shiny/453.webp",7772],["shiny/454.webp",8310],["shiny/455.webp",8158],["shiny/456.webp",6190],["shiny/457.webp",7776],["shiny/458.webp",6940],["shiny/459.webp",6474],["shiny/46.webp",7256],["shiny/460.webp",9272],["shiny/461.webp",9554],["shiny/462.webp",6622],["shiny/463.webp",5494],["shiny/464.webp",7652],["shiny/465.webp",7526],["shiny/466.webp",10478],["shiny/467.webp",9582],["shiny/468.webp",4144],["shiny/469.webp",10594],["shiny/47.webp",8140],["shiny/470.webp",10352],["shiny/471.webp",7738],["shiny/472.webp",7952],["shiny/473.webp",7134],["shiny/474.webp",6786],["shiny/475.webp",7568],["shiny/476.webp",6776],["shiny/477.webp",8208],["shiny/478.webp",5434],["shiny/479.webp",5666],["shiny/48.webp",7862],["shiny/480.webp",8390],["shiny/481.webp",8052],["shiny/482.webp",7244],["shiny/483.webp",11736],["shiny/484.webp",10608],["shiny/485.webp",8010],["shiny/486.webp",9626],["shiny/487.webp",11184],["shiny/488.webp",9378],["shiny/489.webp",6154],["shiny/49.webp",6430],["shiny/490.webp",5060],["shiny/491.webp",10640],["shiny/492.webp",6016],["shiny/493-bug.webp",9652],["shiny/493-dark.webp",9624],["shiny/493-dragon.webp",9838],["shiny/493-electric.webp",9360],["shiny/493-fairy.webp",9332],["shiny/493-fighting.webp",9750],["shiny/493-fire.webp",9616],["shiny/493-flying.webp",9578],["shiny/493-ghost.webp",9658],["shiny/493-grass.webp",9464],["shiny/493-ground.webp",9604],["shiny/493-ice.webp",9686],["shiny/493-poison.webp",9696],["shiny/493-psychic.webp",9684],["shiny/493-rock.webp",9554],["shiny/493-steel.webp",9282],["shiny/493-unknown.webp",9402],["shiny/493-water.webp",9950],["shiny/493.webp",9402],["shiny/494.webp",6076],["shiny/495.webp",7154],["shiny/496.webp",7856],["shiny/497.webp",9514],["shiny/498.webp",6984],["shiny/499.webp",8886],["shiny/5.webp",8164],["shiny/50.webp",3922],["shiny/500.webp",11272],["shiny/501.webp",5806],["shiny/502.webp",6682],["shiny/503.webp",9588],["shiny/504.webp",7094],["shiny/505.webp",6392],["shiny/506.webp",6526],["shiny/507.webp",9134],["shiny/508.webp",7414],["shiny/509.webp",6274],["shiny/51.webp",5776],["shiny/510.webp",9772],["shiny/511.webp",8486],["shiny/512.webp",9650],["shiny/513.webp",7398],["shiny/514.webp",10114],["shiny/515.webp",8324],["shiny/516.webp",9970],["shiny/517.webp",5832],["shiny/518.webp",8332],["shiny/519.webp",6460],["shiny/52.webp",8190],["shiny/520.webp",7802],["shiny/521.webp",9138],["shiny/522.webp",6758],["shiny/523.webp",9662],["shiny/524.webp",4846],["shiny/525.webp",7206],["shiny/526.webp",8438],["shiny/527.webp",5136],["shiny/528.webp",7804],["shiny/529.webp",6068],["shiny/53.webp",8166],["shiny/530.webp",7236],["shiny/531.webp",7512],["shiny/532.webp",5682],["shiny/533.webp",7590],["shiny/534.webp",7180],["shiny/535.webp",5418],["shiny/536.webp",7142],["shiny/537.webp",9086],["shiny/538.webp",7986],["shiny/539.webp",9308],["shiny/54.webp",5908],["shiny/540.webp",5868],["shiny/541.webp",5262],["shiny/542.webp",5596],["shiny/543.webp",6314],["shiny/544.webp",6106],["shiny/545.webp",9456],["shiny/546.webp",4878],["shiny/547.webp",6144],["shiny/548.webp",4992],["shiny/549.webp",7238],["shiny/55.webp",8712],["shiny/550.webp",6164],["shiny/551.webp",6088],["shiny/552.webp",7896],["shiny/553.webp",9660],["shiny/554.webp",7408],["shiny/555.webp",8476],["shiny/556.webp",8878],["shiny/557.webp",6290],["shiny/558.webp",6932],["shiny/559.webp",5954],["shiny/56.webp",6988],["shiny/560.webp",6892],["shiny/561.webp",10984],["shiny/562.webp",5680],["shiny/563.webp",11356],["shiny/564.webp",4802],["shiny/565.webp",8140],["shiny/566.webp",7462],["shiny/567.webp",9606],["shiny/568.webp",6262],["shiny/569.webp",9516],["shiny/57.webp",8890],["shiny/570.webp",6014],["shiny/571.webp",9348],["shiny/572.webp",7154],["shiny/573.webp",6924],["shiny/574.webp",5562],["shiny/575.webp",6030],["shiny/576.webp",8796],["shiny/577.webp",6018],["shiny/578.webp",7070],["shiny/579.webp",6916],["shiny/58.webp",6876],["shiny/580.webp",6340],["shiny/581.webp",6622],["shiny/582.webp",4614],["shiny/583.webp",4702],["shiny/584.webp",7204],["shiny/585-autumn.webp",6410],["shiny/585-spring.webp",6156],["shiny/585-summer.webp",6582],["shiny/585-winter.webp",6244],["shiny/585.webp",6156],["shiny/586-autumn.webp",10576],["shiny/586-spring.webp",7748],["shiny/586-summer.webp",10092],["shiny/586-winter.webp",7846],["shiny/586.webp",7748],["shiny/587.webp",5712],["shiny/588.webp",5312],["shiny/589.webp",7824],["shiny/59.webp",9640],["shiny/590.webp",5194],["shiny/591.webp",6800],["shiny/592.webp",7474],["shiny/593.webp",8540],["shiny/594.webp",4544],["shiny/595.webp",5670],["shiny/596.webp",8922],["shiny/597.webp",6682],["shiny/598.webp",8268],["shiny/599.webp",6348],["shiny/6.webp",10702],["shiny/60.webp",5730],["shiny/600.webp",7838],["shiny/601.webp",6854],["shiny/602.webp",4438],["shiny/603.webp",7884],["shiny/604.webp",7338],["shiny/605.webp",5582],["shiny/606.webp",7062],["shiny/607.webp",4110],["shiny/608.webp",8254],["shiny/609.webp",12518],["shiny/61.webp",8012],["shiny/610.webp",4702],["shiny/611.webp",8366],["shiny/612.webp",8742],["shiny/613.webp",4932],["shiny/614.webp",7204],["shiny/615.webp",10018],["shiny/616.webp",6158],["shiny/617.webp",7432],["shiny/618.webp",4564],["shiny/619.webp",8050],["shiny/62.webp",6732],["shiny/620.webp",7662],["shiny/621.webp",11858],["shiny/622.webp",8708],["shiny/623.webp",10728],["shiny/624.webp",6688],["shiny/625.webp",7514],["shiny/626.webp",6636],["shiny/627.webp",5732],["shiny/628.webp",11438],["shiny/629.webp",6368],["shiny/63.webp",7048],["shiny/630.webp",7624],["shiny/631.webp",8428],["shiny/632.webp",6740],["shiny/633.webp",4940],["shiny/634.webp",9818],["shiny/635.webp",11812],["shiny/636.webp",8022],["shiny/637.webp",8066],["shiny/638.webp",8022],["shiny/639.webp",8484],["shiny/64.webp",8946],["shiny/640.webp",8056],["shiny/641.webp",7188],["shiny/642.webp",7414],["shiny/643.webp",11202],["shiny/644.webp",9524],["shiny/645.webp",7704],["shiny/646.webp",10796],["shiny/647.webp",9566],["shiny/648.webp",6646],["shiny/649-burn.webp",9360],["shiny/649-chill.webp",9400],["shiny/649-douse.webp",9428],["shiny/649-shock.webp",9416],["shiny/649.webp",9422],["shiny/65.webp",10750],["shiny/650.webp",7332],["shiny/651.webp",7854],["shiny/652.webp",8712],["shiny/653.webp",5730],["shiny/654.webp",8036],["shiny/655.webp",8664],["shiny/656.webp",7606],["shiny/657.webp",8744],["shiny/658.webp",7282],["shiny/659.webp",5732],["shiny/66.webp",6260],["shiny/660.webp",8588],["shiny/661.webp",6604],["shiny/662.webp",8806],["shiny/663.webp",7266],["shiny/664.webp",5218],["shiny/665.webp",6072],["shiny/666-archipelago.webp",9112],["shiny/666-continental.webp",9058],["shiny/666-elegant.webp",8740],["shiny/666-fancy.webp",9246],["shiny/666-garden.webp",8982],["shiny/666-high-plains.webp",9200],["shiny/666-icy-snow.webp",7598],["shiny/666-jungle.webp",8352],["shiny/666-marine.webp",8894],["shiny/666-meadow.webp",8968],["shiny/666-modern.webp",9214],["shiny/666-monsoon.webp",8424],["shiny/666-ocean.webp",9608],["shiny/666-poke-ball.webp",8684],["shiny/666-polar.webp",8918],["shiny/666-river.webp",8646],["shiny/666-sandstorm.webp",8368],["shiny/666-savanna.webp",9676],["shiny/666-sun.webp",9322],["shiny/666-tundra.webp",8358],["shiny/666.webp",8968],["shiny/667.webp",7936],["shiny/668.webp",9496],["shiny/669-blue.webp",8446],["shiny/669-orange.webp",8310],["shiny/669-red.webp",8430],["shiny/669-white.webp",7982],["shiny/669-yellow.webp",8130],["shiny/669.webp",8430],["shiny/67.webp",8340],["shiny/670-blue.webp",7166],["shiny/670-orange.webp",6838],["shiny/670-red.webp",7034],["shiny/670-white.webp",6660],["shiny/670-yellow.webp",6770],["shiny/670.webp",7034],["shiny/671-blue.webp",11042],["shiny/671-orange.webp",10636],["shiny/671-red.webp",10672],["shiny/671-white.webp",10110],["shiny/671-yellow.webp",10368],["shiny/671.webp",10672],["shiny/672.webp",8454],["shiny/673.webp",10576],["shiny/674.webp",5612],["shiny/675.webp",7800],["shiny/676-dandy.webp",8118],["shiny/676-debutante.webp",8380],["shiny/676-diamond.webp",7000],["shiny/676-heart.webp",7820],["shiny/676-kabuki.webp",8456],["shiny/676-la-reine.webp",7964],["shiny/676-matron.webp",8232],["shiny/676-natural.webp",7996],["shiny/676-pharaoh.webp",7700],["shiny/676-star.webp",7342],["shiny/676.webp",7996],["shiny/677.webp",5580],["shiny/678.webp",7872],["shiny/679.webp",8090],["shiny/68.webp",10060],["shiny/680.webp",11534],["shiny/681.webp",8442],["shiny/682.webp",6160],["shiny/683.webp",8114],["shiny/684.webp",4586],["shiny/685.webp",6560],["shiny/686.webp",6882],["shiny/687.webp",9048],["shiny/688.webp",7828],["shiny/689.webp",10774],["shiny/69.webp",7054],["shiny/690.webp",8652],["shiny/691.webp",10166],["shiny/692.webp",6210],["shiny/693.webp",5498],["shiny/694.webp",6304],["shiny/695.webp",6466],["shiny/696.webp",8244],["shiny/697.webp",9122],["shiny/698.webp",5638],["shiny/699.webp",9086],["shiny/7.webp",5858],["shiny/70.webp",5746],["shiny/700.webp",8946],["shiny/701.webp",7946],["shiny/702.webp",8834],["shiny/703.webp",6118],["shiny/704.webp",6028],["shiny/705.webp",6164],["shiny/706.webp",7706],["shiny/707.webp",7532],["shiny/708.webp",6952],["shiny/709.webp",13202],["shiny/71.webp",8606],["shiny/710.webp",5722],["shiny/711.webp",7262],["shiny/712.webp",5738],["shiny/713.webp",8616],["shiny/714.webp",8390],["shiny/715.webp",11576],["shiny/716-active.webp",10826],["shiny/716-neutral.webp",10326],["shiny/716.webp",10326],["shiny/717.webp",11630],["shiny/718.webp",11924],["shiny/719.webp",6352],["shiny/72.webp",6250],["shiny/720.webp",8242],["shiny/721.webp",9152],["shiny/722.webp",5872],["shiny/723.webp",8096],["shiny/724.webp",8644],["shiny/725.webp",5902],["shiny/726.webp",9526],["shiny/727.webp",8104],["shiny/728.webp",7554],["shiny/729.webp",5584],["shiny/73.webp",13468],["shiny/730.webp",8958],["shiny/731.webp",7322],["shiny/732.webp",8360],["shiny/733.webp",7754],["shiny/734.webp",4842],["shiny/735.webp",6046],["shiny/736.webp",4464],["shiny/737.webp",4882],["shiny/738.webp",9004],["shiny/739.webp",7006],["shiny/74.webp",4742],["shiny/740.webp",6838],["shiny/741.webp",6554],["shiny/742.webp",7720],["shiny/743.webp",9916],["shiny/744.webp",6482],["shiny/745.webp",8624],["shiny/746.webp",4746],["shiny/747.webp",7222],["shiny/748.webp",7572],["shiny/749.webp",7712],["shiny/75.webp",5640],["shiny/750.webp",10936],["shiny/751.webp",8556],["shiny/752.webp",11528],["shiny/753.webp",5362],["shiny/754.webp",6902],["shiny/755.webp",4952],["shiny/756.webp",7250],["shiny/757.webp",6192],["shiny/758.webp",9318],["shiny/759.webp",6882],["shiny/76.webp",7058],["shiny/760.webp",7820],["shiny/761.webp",5666],["shiny/762.webp",6998],["shiny/763.webp",7266],["shiny/764.webp",8542],["shiny/765.webp",8552],["shiny/766.webp",8332],["shiny/767.webp",6412],["shiny/768.webp",9530],["shiny/769.webp",4862],["shiny/77.webp",9288],["shiny/770.webp",5674],["shiny/771.webp",5428],["shiny/772.webp",9868],["shiny/773-bug.webp",9058],["shiny/773-dark.webp",9072],["shiny/773-dragon.webp",9246],["shiny/773-electric.webp",9114],["shiny/773-fairy.webp",8866],["shiny/773-fighting.webp",9276],["shiny/773-fire.webp",9326],["shiny/773-flying.webp",9436],["shiny/773-ghost.webp",9054],["shiny/773-grass.webp",9266],["shiny/773-ground.webp",9282],["shiny/773-ice.webp",8826],["shiny/773-normal.webp",8748],["shiny/773-poison.webp",9182],["shiny/773-psychic.webp",9194],["shiny/773-rock.webp",8902],["shiny/773-steel.webp",9056],["shiny/773-water.webp",9200],["shiny/773.webp",8748],["shiny/774.webp",7976],["shiny/775.webp",5986],["shiny/776.webp",9134],["shiny/777.webp",5288],["shiny/778.webp",5898],["shiny/779.webp",6302],["shiny/78.webp",11066],["shiny/780.webp",7554],["shiny/781.webp",10952],["shiny/782.webp",6898],["shiny/783.webp",8546],["shiny/784.webp",10992],["shiny/785.webp",9546],["shiny/786.webp",7076],["shiny/787.webp",7300],["shiny/788.webp",7316],["shiny/789.webp",7094],["shiny/79.webp",6366],["shiny/790.webp",6742],["shiny/791.webp",12872],["shiny/792.webp",13844],["shiny/793.webp",6956],["shiny/794.webp",10992],["shiny/795.webp",10776],["shiny/796.webp",11054],["shiny/797.webp",11130],["shiny/798.webp",5696],["shiny/799.webp",11320],["shiny/8.webp",7558],["shiny/80.webp",7580],["shiny/800.webp",12344],["shiny/801.webp",6194],["shiny/802.webp",5466],["shiny/803.webp",5450],["shiny/804.webp",7254],["shiny/805.webp",12186],["shiny/806.webp",10562],["shiny/807.webp",9632],["shiny/808.webp",6938],["shiny/809.webp",7748],["shiny/81.webp",5632],["shiny/810.webp",7026],["shiny/811.webp",6722],["shiny/812.webp",11026],["shiny/813.webp",5190],["shiny/814.webp",7982],["shiny/815.webp",5996],["shiny/816.webp",5410],["shiny/817.webp",7350],["shiny/818.webp",8694],["shiny/819.webp",5360],["shiny/82.webp",10460],["shiny/820.webp",7328],["shiny/821.webp",5736],["shiny/822.webp",9690],["shiny/823.webp",7762],["shiny/824.webp",5994],["shiny/825.webp",5480],["shiny/826.webp",8488],["shiny/827.webp",8098],["shiny/828.webp",9202],["shiny/829.webp",6648],["shiny/83.webp",6978],["shiny/830.webp",5070],["shiny/831.webp",5308],["shiny/832.webp",7540],["shiny/833.webp",5444],["shiny/834.webp",6524],["shiny/835.webp",5450],["shiny/836.webp",7168],["shiny/837.webp",5404],["shiny/838.webp",6414],["shiny/839.webp",8526],["shiny/84.webp",6098],["shiny/840.webp",5612],["shiny/841.webp",7380],["shiny/842.webp",5842],["shiny/843.webp",6254],["shiny/844.webp",5940],["shiny/845-gorging.webp",9084],["shiny/845-gulping.webp",7872],["shiny/845.webp",7408],["shiny/846.webp",4892],["shiny/847.webp",5948],["shiny/848.webp",5858],["shiny/849.webp",9064],["shiny/85.webp",10672],["shiny/850.webp",4138],["shiny/851.webp",10000],["shiny/852.webp",6006],["shiny/853.webp",8596],["shiny/854.webp",5998],["shiny/855.webp",6660],["shiny/856.webp",4416],["shiny/857.webp",5360],["shiny/858.webp",6202],["shiny/859.webp",8216],["shiny/86.webp",5606],["shiny/860.webp",10026],["shiny/861.webp",9628],["shiny/862.webp",8222],["shiny/863.webp",10168],["shiny/864.webp",11634],["shiny/865.webp",5480],["shiny/866.webp",10736],["shiny/867.webp",10144],["shiny/868.webp",4434],["shiny/869-berry-sweet.webp",5900],["shiny/869-caramel-swirl-berry-sweet.webp",5900],["shiny/869-caramel-swirl-clover-sweet.webp",6134],["shiny/869-caramel-swirl-flower-sweet.webp",6128],["shiny/869-caramel-swirl-love-sweet.webp",5730],["shiny/869-caramel-swirl-ribbon-sweet.webp",5778],["shiny/869-caramel-swirl-star-sweet.webp",6054],["shiny/869-caramel-swirl-strawberry-sweet.webp",5700],["shiny/869-clove-sweet.webp",6134],["shiny/869-flower-sweet.webp",6128],["shiny/869-lemon-cream-berry-sweet.webp",5900],["shiny/869-lemon-cream-clover-sweet.webp",6134],["shiny/869-lemon-cream-flower-sweet.webp",6128],["shiny/869-lemon-cream-love-sweet.webp",5730],["shiny/869-lemon-cream-ribbon-sweet.webp",5778],["shiny/869-lemon-cream-star-sweet.webp",6054],["shiny/869-lemon-cream-strawberry-sweet.webp",5700],["shiny/869-love-sweet.webp",5730],["shiny/869-matcha-cream-berry-sweet.webp",5900],["shiny/869-matcha-cream-clover-sweet.webp",6134],["shiny/869-matcha-cream-flower-sweet.webp",6128],["shiny/869-matcha-cream-love-sweet.webp",5730],["shiny/869-matcha-cream-ribbon-sweet.webp",5778],["shiny/869-matcha-cream-star-sweet.webp",6054],["shiny/869-matcha-cream-strawberry-sweet.webp",5700],["shiny/869-mint-cream-berry-sweet.webp",5900],["shiny/869-mint-cream-clover-sweet.webp",6134],["shiny/869-mint-cream-flower-sweet.webp",6128],["shiny/869-mint-cream-love-sweet.webp",5730],["shiny/869-mint-cream-ribbon-sweet.webp",5778],["shiny/869-mint-cream-star-sweet.webp",6054],["shiny/869-mint-cream-strawberry-sweet.webp",5700],["shiny/869-rainbow-swirl-berry-sweet.webp",5900],["shiny/869-rainbow-swirl-clover-sweet.webp",6134],["shiny/869-rainbow-swirl-flower-sweet.webp",6128],["shiny/869-rainbow-swirl-love-sweet.webp",5730],["shiny/869-rainbow-swirl-ribbon-sweet.webp",5778],["shiny/869-rainbow-swirl-star-sweet.webp",6054],["shiny/869-rainbow-swirl-strawberry-sweet.webp",5700],["shiny/869-ribbon-sweet.webp",5778],["shiny/869-ruby-cream-berry-sweet.webp",5900],["shiny/869-ruby-cream-clover-sweet.webp",6134],["shiny/869-ruby-cream-flower-sweet.webp",6128],["shiny/869-ruby-cream-love-sweet.webp",5730],["shiny/869-ruby-cream-ribbon-sweet.webp",5778],["shiny/869-ruby-cream-star-sweet.webp",6054],["shiny/869-ruby-cream-strawberry-sweet.webp",5700],["shiny/869-ruby-swirl-berry-sweet.webp",5900],["shiny/869-ruby-swirl-clover-sweet.webp",6134],["shiny/869-ruby-swirl-flower-sweet.webp",6128],["shiny/869-ruby-swirl-love-sweet.webp",5730],["shiny/869-ruby-swirl-ribbon-sweet.webp",5778],["shiny/869-ruby-swirl-star-sweet.webp",6054],["shiny/869-ruby-swirl-strawberry-sweet.webp",5700],["shiny/869-salted-cream-berry-sweet.webp",5900],["shiny/869-salted-cream-clover-sweet.webp",6134],["shiny/869-salted-cream-flower-sweet.webp",6128],["shiny/869-salted-cream-love-sweet.webp",5730],["shiny/869-salted-cream-ribbon-sweet.webp",5778],["shiny/869-salted-cream-star-sweet.webp",6054],["shiny/869-salted-cream-strawberry-sweet.webp",5700],["shiny/869-star-sweet.webp",6054],["shiny/869-strawberry-sweet.webp",5700],["shiny/869-vanilla-cream-berry-sweet.webp",5900],["shiny/869-vanilla-cream-clover-sweet.webp",6134],["shiny/869-vanilla-cream-flower-sweet.webp",6128],["shiny/869-vanilla-cream-love-sweet.webp",5730],["shiny/869-vanilla-cream-ribbon-sweet.webp",5778],["shiny/869-vanilla-cream-star-sweet.webp",6054],["shiny/869-vanilla-cream-strawberry-sweet.webp",5700],["shiny/869.webp",5700],["shiny/87.webp",6866],["shiny/870.webp",7564],["shiny/871.webp",5862],["shiny/872.webp",3948],["shiny/873.webp",8034],["shiny/874.webp",8486],["shiny/875.webp",5292],["shiny/876.webp",6468],["shiny/877-hangry.webp",4794],["shiny/877.webp",5608],["shiny/878.webp",8056],["shiny/879.webp",10420],["shiny/88.webp",4956],["shiny/880.webp",7192],["shiny/881.webp",7672],["shiny/882.webp",8914],["shiny/883.webp",7390],["shiny/884.webp",7562],["shiny/885.webp",5664],["shiny/886.webp",8406],["shiny/887.webp",11188],["shiny/888.webp",9560],["shiny/889.webp",11422],["shiny/89.webp",4736],["shiny/890.webp",13550],["shiny/891.webp",6146],["shiny/892.webp",8738],["shiny/893-dada.webp",11464],["shiny/893.webp",11312],["shiny/894.webp",6422],["shiny/895.webp",8326],["shiny/896.webp",8408],["shiny/897.webp",10554],["shiny/898.webp",5640],["shiny/899.webp",9632],["shiny/9.webp",7014],["shiny/90.webp",6618],["shiny/900.webp",11464],["shiny/901.webp",8122],["shiny/902.webp",7146],["shiny/903.webp",9670],["shiny/904.webp",6898],["shiny/905.webp",8766],["shiny/906.webp",10438],["shiny/907.webp",9594],["shiny/908.webp",10362],["shiny/909.webp",7688],["shiny/91.webp",8788],["shiny/910.webp",9740],["shiny/911.webp",9150],["shiny/912.webp",7878],["shiny/913.webp",8338],["shiny/914.webp",10674],["shiny/915.webp",7820],["shiny/916.webp",8760],["shiny/917.webp",10252],["shiny/918.webp",12254],["shiny/919.webp",9560],["shiny/92.webp",8196],["shiny/920.webp",8422],["shiny/921.webp",8884],["shiny/922.webp",7962],["shiny/923.webp",8462],["shiny/924.webp",7570],["shiny/925.webp",7660],["shiny/926.webp",7004],["shiny/927.webp",9728],["shiny/928.webp",6666],["shiny/929.webp",8400],["shiny/93.webp",8314],["shiny/930.webp",9708],["shiny/931.webp",8318],["shiny/932.webp",6760],["shiny/933.webp",7566],["shiny/934.webp",9606],["shiny/935.webp",7370],["shiny/936.webp",9328],["shiny/937.webp",10464],["shiny/938.webp",6006],["shiny/939.webp",7442],["shiny/94.webp",6684],["shiny/940.webp",9004],["shiny/941.webp",7012],["shiny/942.webp",6504],["shiny/943.webp",7514],["shiny/944.webp",6538],["shiny/945.webp",11064],["shiny/946.webp",14948],["shiny/947.webp",16598],["shiny/948.webp",7280],["shiny/949.webp",11816],["shiny/95.webp",8450],["shiny/950.webp",10598],["shiny/951.webp",7834],["shiny/952.webp",10836],["shiny/953.webp",7650],["shiny/954.webp",9610],["shiny/955.webp",8588],["shiny/956.webp",9582],["shiny/957.webp",7678],["shiny/958.webp",8768],["shiny/959.webp",10752],["shiny/96.webp",6130],["shiny/960.webp",5764],["shiny/961.webp",7600],["shiny/962.webp",8538],["shiny/963.webp",6414],["shiny/964.webp",6474],["shiny/965.webp",8300],["shiny/966.webp",8800],["shiny/967.webp",9042],["shiny/968.webp",6568],["shiny/969.webp",5820],["shiny/97.webp",8290],["shiny/970.webp",5764],["shiny/971.webp",8292],["shiny/972.webp",9216],["shiny/973.webp",5268],["shiny/974.webp",6720],["shiny/975.webp",6966],["shiny/976.webp",8082],["shiny/977.webp",8398],["shiny/978.webp",7930],["shiny/979.webp",13514],["shiny/98.webp",6904],["shiny/980.webp",4672],["shiny/981.webp",7210],["shiny/982.webp",7974],["shiny/983.webp",8700],["shiny/984.webp",8108],["shiny/985.webp",9342],["shiny/986.webp",9788],["shiny/987.webp",8968],["shiny/988.webp",8952],["shiny/989.webp",11808],["shiny/99.webp",6862],["shiny/990.webp",7978],["shiny/991.webp",9786],["shiny/992.webp",8144],["shiny/993.webp",14354],["shiny/994.webp",11798],["shiny/995.webp",8840],["shiny/996.webp",8962],["shiny/997.webp",8474],["shiny/998.webp",7900],["shiny/999.webp",9168],["shiny/female/10235.webp",8268],["shiny/female/111.webp",6890],["shiny/female/112.webp",6982],["shiny/female/118.webp",4284],["shiny/female/119.webp",8368],["shiny/female/12.webp",9342],["shiny/female/123.webp",10660],["shiny/female/129.webp",8574],["shiny/female/130.webp",10780],["shiny/female/133.webp",6118],["shiny/female/154.webp",6448],["shiny/female/165.webp",7212],["shiny/female/166.webp",7470],["shiny/female/178.webp",7250],["shiny/female/185.webp",9212],["shiny/female/186.webp",7582],["shiny/female/19.webp",6660],["shiny/female/190.webp",8434],["shiny/female/194.webp",5844],["shiny/female/195.webp",5878],["shiny/female/198.webp",7184],["shiny/female/20.webp",8802],["shiny/female/202.webp",6464],["shiny/female/203.webp",8140],["shiny/female/207.webp",9406],["shiny/female/208.webp",7362],["shiny/female/212.webp",9696],["shiny/female/214.webp",7780],["shiny/female/215.webp",8352],["shiny/female/217.webp",7210],["shiny/female/221.webp",5710],["shiny/female/224.webp",6594],["shiny/female/229.webp",10246],["shiny/female/232.webp",5556],["shiny/female/25.webp",7176],["shiny/female/255.webp",5040],["shiny/female/256.webp",8328],["shiny/female/257.webp",7896],["shiny/female/26.webp",7868],["shiny/female/267.webp",10366],["shiny/female/269.webp",6470],["shiny/female/272.webp",7606],["shiny/female/274.webp",8518],["shiny/female/275.webp",7236],["shiny/female/3.webp",8072],["shiny/female/307.webp",7548],["shiny/female/308.webp",5912],["shiny/female/315.webp",6698],["shiny/female/316.webp",4674],["shiny/female/317.webp",6206],["shiny/female/322.webp",6462],["shiny/female/323.webp",7036],["shiny/female/332.webp",8226],["shiny/female/350.webp",10846],["shiny/female/369.webp",7234],["shiny/female/396.webp",6234],["shiny/female/397.webp",7138],["shiny/female/398.webp",8824],["shiny/female/399.webp",6012],["shiny/female/400.webp",6824],["shiny/female/401.webp",5718],["shiny/female/402.webp",9630],["shiny/female/403.webp",6842],["shiny/female/404.webp",9468],["shiny/female/405.webp",9670],["shiny/female/407.webp",6812],["shiny/female/41.webp",8316],["shiny/female/415.webp",5744],["shiny/female/417.webp",5520],["shiny/female/418.webp",5184],["shiny/female/419.webp",6484],["shiny/female/42.webp",8070],["shiny/female/424.webp",10290],["shiny/female/44.webp",8738],["shiny/female/443.webp",7528],["shiny/female/444.webp",9382],["shiny/female/445.webp",10262],["shiny/female/449.webp",5742],["shiny/female/45.webp",7832],["shiny/female/450.webp",6290],["shiny/female/453.webp",7732],["shiny/female/454.webp",8270],["shiny/female/456.webp",6232],["shiny/female/457.webp",8296],["shiny/female/459.webp",6502],["shiny/female/460.webp",9296],["shiny/female/461.webp",9196],["shiny/female/464.webp",7556],["shiny/female/465.webp",7562],["shiny/female/473.webp",6794],["shiny/female/521.webp",6142],["shiny/female/592.webp",8152],["shiny/female/593.webp",7802],["shiny/female/64.webp",8764],["shiny/female/65.webp",9464],["shiny/female/668.webp",10184],["shiny/female/678.webp",6838],["shiny/female/84.webp",6014],["shiny/female/85.webp",10606],["shiny/female/876.webp",7010],["shiny/female/902.webp",6794],["shiny/female/916.webp",7026],["shiny/female/97.webp",8188]]} diff --git a/tests/unit/spriteManifest.test.ts b/tests/unit/spriteManifest.test.ts new file mode 100644 index 0000000..8e4f72f --- /dev/null +++ b/tests/unit/spriteManifest.test.ts @@ -0,0 +1,35 @@ +import { readFileSync } from 'node:fs'; +import path from 'node:path'; +import { describe, expect, it } from 'vitest'; +// @ts-expect-error - plain ESM build script without type declarations +import { buildSpriteManifest } from '../../scripts/sprite-manifest.mjs'; +import { resolveSpriteUrl, spriteRoot } from '$lib/utils/spriteUrl'; + +const spritesDir = path.join(process.cwd(), 'static', 'sprites-small'); + +describe('sprite manifest', () => { + const committed = JSON.parse(readFileSync(path.join(spritesDir, 'manifest.json'), 'utf8')); + + it('lists exactly the sprite files on disk, with their sizes', async () => { + // "Save all artwork" downloads this list, so a stale manifest would miss or 404 sprites. + expect(committed).toEqual(await buildSpriteManifest(spritesDir)); + }); + + it('covers forms, shiny and female variants', () => { + const files: string[] = committed.files.map(([file]: [string, number]) => file); + expect(files.some((file) => file.startsWith('shiny/'))).toBe(true); + expect(files.some((file) => file.startsWith('female/'))).toBe(true); + expect(files.some((file) => file.startsWith('shiny/female/'))).toBe(true); + // Forms use either a "-
" key or a 10000+ national-style number. + expect(files.some((file) => /^\d+-[a-z0-9-]+\.webp$/.test(file))).toBe(true); + expect(files.some((file) => /^10\d{3}\.webp$/.test(file))).toBe(true); + }); + + it('uses the same folder that sprite URLs resolve into', () => { + for (const useLocal of [true, false]) { + expect( + resolveSpriteUrl({ pokedexNumber: 25, form: '', spriteKey: '25' }, true, useLocal) + ).toBe(`${spriteRoot(useLocal)}/shiny/25.webp`); + } + }); +});