diff --git a/DBEditor/DBEditor.py b/DBEditor/DBEditor.py index 4545950..06f906c 100644 --- a/DBEditor/DBEditor.py +++ b/DBEditor/DBEditor.py @@ -86,11 +86,13 @@ class DBEditor(QMainWindow): disk_cursor = disk_conn.cursor() # Create tables in the file-based database + self.create_games_table(disk_cursor) self.create_pokemon_forms_table(disk_cursor) self.create_pokemon_storage_table(disk_cursor) self.create_evolution_chains_table(disk_cursor) self.create_exclusive_encounter_groups_table(disk_cursor) self.create_encounters_table(disk_cursor) + self.create_mark_table(disk_cursor) # Commit changes to the file-based database disk_conn.commit() @@ -118,7 +120,8 @@ class DBEditor(QMainWindow): name TEXT NOT NULL, form_name TEXT, national_dex INTEGER NOT NULL, - generation INTEGER NOT NULL + generation INTEGER NOT NULL, + is_baby_form BOOLEAN ) ''') @@ -199,6 +202,131 @@ class DBEditor(QMainWindow): ADD COLUMN starter BOOLEAN ''') + def create_mark_table(self, cursor): + + cursor.execute(''' + CREATE TABLE IF NOT EXISTS marks ( + id INTEGER PRIMARY KEY, + name TEXT NOT NULL, + icon_path TEXT NOT NULL + ) + ''') + + cursor.execute(''' + CREATE TABLE IF NOT EXISTS mark_game_associations ( + mark_id INTEGER, + game_id INTEGER, + FOREIGN KEY (mark_id) REFERENCES marks (id), + FOREIGN KEY (game_id) REFERENCES games (id), + PRIMARY KEY (mark_id, game_id) + ) + ''') + + marks = [ + ("Game Boy", "images/marks/GB_icon_HOME.png", ["Red", "Blue", "Yellow", "Gold", "Silver", "Crystal", "Ruby", "Sapphire", "Emerald", "FireRed", "LeafGreen"]), + ("Kalos", "images/marks/Blue_pentagon_HOME.png", ["X", "Y", "Omega Ruby", "Alpha Sapphire"]), + ("Alola", "images/marks/Black_clover_HOME.png", ["Sun", "Moon", "Ultra Sun", "Ultra Moon"]), + ("Let's Go", "images/marks/Let's_Go_icon_HOME.png", ["Let's Go Pikachu", "Let's Go Eevee"]), + ("Galar", "images/marks/Galar_symbol_HOME.png", ["Sword", "Shield"]), + ("Sinnoh", "images/marks/BDSP_icon_HOME.png", ["Brilliant Diamond", "Shining Pearl"]), + ("Hisui", "images/marks/Arceus_mark_HOME.png", ["Legends Arceus"]), + ("Paldea", "images/marks/Paldea_icon_HOME.png", ["Scarlet", "Violet"]), + ] + + for mark in marks: + cursor.execute(''' + INSERT OR IGNORE INTO marks (name, icon_path) + VALUES (?, ?) + ''', (mark[0], mark[1])) + + mark_id = cursor.lastrowid + + for game_name in mark[2]: + cursor.execute(''' + INSERT OR IGNORE INTO mark_game_associations (mark_id, game_id) + SELECT ?, id FROM games WHERE name = ? + ''', (mark_id, game_name)) + + def create_games_table(self, cursor): + + cursor.execute(''' + CREATE TABLE IF NOT EXISTS games ( + id INTEGER PRIMARY KEY, + name TEXT NOT NULL, + generation INTEGER NOT NULL + ) + ''') + + cursor.execute(''' + CREATE TABLE IF NOT EXISTS alternate_game_names ( + id INTEGER PRIMARY KEY, + game_id INTEGER NOT NULL, + alternate_name TEXT NOT NULL, + FOREIGN KEY (game_id) REFERENCES games (id), + UNIQUE (alternate_name COLLATE NOCASE) + ) + ''') + + games = [ + ("Red", 1, ["Red Version"]), + ("Blue", 1, ["Blue Version"]), + ("Yellow", 1, ["Yellow Version"]), + ("Gold", 2, ["Gold Version"]), + ("Silver", 2, ["Silver Version"]), + ("Crystal", 2, ["Crystal Version"]), + ("Ruby", 3, ["Ruby Version"]), + ("Sapphire", 3, ["Sapphire Version"]), + ("Emerald", 3, ["Emerald Version"]), + ("FireRed", 3, ["Fire Red", "Fire-Red"]), + ("LeafGreen", 3, ["Leaf Green", "Leaf-Green"]), + ("Diamond", 4, ["Diamond Version"]), + ("Pearl", 4, ["Pearl Version"]), + ("Platinum", 4, ["Platinum Version"]), + ("HeartGold", 4, ["Heart Gold", "Heart-Gold"]), + ("SoulSilver", 4, ["Soul Silver", "Soul-Silver"]), + ("Black", 5, ["Black Version"]), + ("White", 5, ["White Version"]), + ("Black 2", 5, ["Black Version 2", "Black-2"]), + ("White 2", 5, ["White Version 2", "White-2"]), + ("X", 6, ["X Version"]), + ("Y", 6, ["Y Version"]), + ("Omega Ruby", 6, ["Omega Ruby Version", "Omega-Ruby"]), + ("Alpha Sapphire", 6, ["Alpha Sapphire Version", "Alpha-Sapphire"]), + ("Sun", 7, ["Sun Version"]), + ("Moon", 7, ["Moon Version"]), + ("Ultra Sun", 7, ["Ultra Sun Version", "Ultra-Sun"]), + ("Ultra Moon", 7, ["Ultra Moon Version", "Ultra-Moon"]), + ("Let's Go Pikachu", 7, ["Let's Go, Pikachu!", "Lets Go Pikachu"]), + ("Let's Go Eevee", 7, ["Let's Go, Eevee!", "Lets Go Eevee"]), + ("Sword", 8, ["Sword Version"]), + ("Shield", 8, ["Shield Version"]), + ("Expansion Pass", 8, ["Expansion Pass (Sword)", "Expansion Pass (Shield)"]), + ("Brilliant Diamond", 8, ["Brilliant Diamond Version", "Brilliant-Diamond"]), + ("Shining Pearl", 8, ["Shining Pearl Version", "Shining-Pearl"]), + ("Legends Arceus", 8, ["Legends: Arceus", "Legends-Arceus"]), + ("Scarlet", 9, ["Scarlet Version"]), + ("Violet", 9, ["Violet Version"]), + ("The Teal Mask", 9, ["The Teal Mask Version", "The Teal Mask (Scarlet)", "The Teal Mask (Violet)"]), + ("The Hidden Treasure of Area Zero", 9, ["The Hidden Treasure of Area Zero Version", "The Hidden Treasure of Area Zero (Scarlet)", "The Hidden Treasure of Area Zero (Violet)"]), + + ("Pokémon Home", 98, ["Pokémon HOME"]), + ("Pokémon Go", 99, ["Pokémon GO"]), + ] + + for game in games: + cursor.execute(''' + INSERT OR IGNORE INTO games (name, generation) + VALUES (?, ?) + ''', (game[0], game[1])) + + game_id = cursor.lastrowid + + # Insert alternate names + for alt_name in game[2]: + cursor.execute(''' + INSERT OR IGNORE INTO alternate_game_names (game_id, alternate_name) + VALUES (?, ?) + ''', (game_id, alt_name)) def load_and_apply_patches(self): try: @@ -283,12 +411,14 @@ class DBEditor(QMainWindow): self.national_dex_label = QLabel() self.generation_label = QLabel() self.home_checkbox = QCheckBox("Available in Home") + self.is_baby_form_checkbox = QCheckBox("Is Baby Form") self.edit_form.addRow("Name:", self.name_label) self.edit_form.addRow("Form:", self.form_name_label) self.edit_form.addRow("National Dex:", self.national_dex_label) self.edit_form.addRow("Generation:", self.generation_label) self.edit_form.addRow(self.home_checkbox) + self.edit_form.addRow(self.is_baby_form_checkbox) text_layout.addLayout(self.edit_form) @@ -408,7 +538,7 @@ class DBEditor(QMainWindow): pfic = current.data(Qt.ItemDataRole.UserRole) self.cursor.execute(''' - SELECT pf.name, pf.form_name, pf.national_dex, pf.generation, ps.storable_in_home + SELECT pf.name, pf.form_name, pf.national_dex, pf.generation, ps.storable_in_home, pf.is_baby_form FROM pokemon_forms pf LEFT JOIN pokemon_storage ps ON pf.PFIC = ps.PFIC WHERE pf.PFIC = ? @@ -416,12 +546,13 @@ class DBEditor(QMainWindow): pokemon_data = self.cursor.fetchone() if pokemon_data: - name, form_name, national_dex, generation, storable_in_home = pokemon_data + name, form_name, national_dex, generation, storable_in_home, is_baby_form = pokemon_data self.name_label.setText(name) self.form_name_label.setText(form_name if form_name else "") self.national_dex_label.setText(str(national_dex)) self.generation_label.setText(str(generation)) self.home_checkbox.setChecked(bool(storable_in_home)) + self.is_baby_form_checkbox.setChecked(bool(is_baby_form)) self.home_checkbox.stateChanged.connect(self.update_home_storable) # Load and display the image @@ -1035,6 +1166,8 @@ class DBEditor(QMainWindow): # Process the Pokémon data process_pokemon_for_location_data(pfic, name, form, national_dex, default_forms, cache, temp_conn) + temp_conn.backup(self.conn) + # Close the temporary connection temp_conn.close() diff --git a/DataGatherers/DefaultForms.json b/DataGatherers/DefaultForms.json index 756f7bd..75c7354 100644 --- a/DataGatherers/DefaultForms.json +++ b/DataGatherers/DefaultForms.json @@ -43,5 +43,10 @@ "Single Strike Style", "Green Plumage", "Two-Segment Form", - "Standard Form" + "Standard Form", + "Counterfeit Form", + "Unremarkable Form", + "Antique Form", + "Phony Form", + "Masterpiece Form" ] \ No newline at end of file diff --git a/DataGatherers/Update_evolution_information.py b/DataGatherers/Update_evolution_information.py index 538816c..2bd763a 100644 --- a/DataGatherers/Update_evolution_information.py +++ b/DataGatherers/Update_evolution_information.py @@ -100,12 +100,27 @@ def process_evolution_chain(conn, evolution_chain, cache, gender: Optional[str] evolution_info = EvolutionInfo(from_pfic, to_pfic, stage.next_stage.method) insert_evolution_info(conn, evolution_info) + if "breed" in stage.next_stage.method.lower(): + update_pokemon_baby_status(conn, from_pfic, True) + for branch in stage.branches: to_pfic = get_pokemon_form_by_name(conn, branch.pokemon, branch.form, gender=gender) if to_pfic: evolution_info = EvolutionInfo(from_pfic, to_pfic, branch.method) insert_evolution_info(conn, evolution_info) + if "breed" in branch.method.lower(): + update_pokemon_baby_status(conn, from_pfic, True) + +def update_pokemon_baby_status(conn, from_pfic, is_baby_form): + cursor = conn.cursor() + cursor.execute(''' + UPDATE pokemon_forms + SET is_baby_form = ? + WHERE PFIC = ? + ''', (is_baby_form, from_pfic)) + conn.commit() + def update_evolution_chains(): cache = CacheManager() conn = create_evolution_table() diff --git a/DataGatherers/update_location_information.py b/DataGatherers/update_location_information.py index 81da479..efebf70 100644 --- a/DataGatherers/update_location_information.py +++ b/DataGatherers/update_location_information.py @@ -65,7 +65,7 @@ all_games = [ "X", "Y", "Omega Ruby", "Alpha Sapphire", "Ultra Sun", "Ultra Moon", "Sun", "Moon", "Sword", "Shield", "Expansion Pass", - "Brilliant Diamond", "Shining Pearl", + "Brilliant Diamond", "Shining Pearl" "Legends: Arceus", "Scarlet", "Violet", "The Teal Mask", "The Hidden Treasure of Area Zero", "The Hidden Treasure of Area Zero (Scarlet)", "The Hidden Treasure of Area Zero (Violet)", "The Teal Mask (Scarlet)", "The Teal Mask (Violet)", "Unknown", @@ -340,6 +340,9 @@ def process_pokemon_for_location_data(pfic, name, form, national_dex, default_fo if name == "Minior": form = None + if name.lower() == "ho-oh": + name = "Ho-Oh" + if form and form.lower() == "female": form = None @@ -359,7 +362,7 @@ def process_pokemon_for_location_data(pfic, name, form, national_dex, default_fo for location in encounter_data[encounter]: if location == "": - return + continue test_location = location["location"].strip().lower() ignore_location = False @@ -369,7 +372,7 @@ def process_pokemon_for_location_data(pfic, name, form, national_dex, default_fo break if ignore_location: - return + continue if print_encounter: print(f"Found in {encounter}:") diff --git a/Site/OriginDex.py b/Site/OriginDex.py index cb86ae9..1ec1ecc 100644 --- a/Site/OriginDex.py +++ b/Site/OriginDex.py @@ -8,20 +8,49 @@ app = Flask(__name__) def load_pokemon_data(): pokemon_list = [] - conn = sqlite3.connect('pokemon_database.db') + conn = sqlite3.connect('pokemon_forms.db') cursor = conn.cursor() cursor.execute(''' - SELECT p.national_dex_number, p.name, pf.form_name, pf.image_path, pf.is_default, p.introduced_in_gen, - g.name AS earliest_game, m.icon_path AS mark_icon - FROM pokemon p - JOIN pokemon_forms pf ON p.national_dex_number = pf.pokemon_id - LEFT JOIN form_encounters fe ON pf.id = fe.form_id - LEFT JOIN games g ON fe.game_id = g.id + WITH RECURSIVE EvolutionChain AS ( + SELECT PFIC, from_pfic + FROM evolution_chains + UNION ALL + SELECT ec.PFIC, e.from_pfic + FROM evolution_chains ec + JOIN EvolutionChain e ON ec.from_pfic = e.PFIC + ), + BaseForm AS ( + SELECT PFIC, MIN(from_pfic) AS base_pfic + FROM EvolutionChain + GROUP BY PFIC + ), + EarliestGamePerPokemon AS ( + SELECT e.pfic, MIN(g.generation) as min_generation, g.name as earliest_game + FROM encounters e + JOIN games g ON e.game = g.name + GROUP BY e.pfic + ), + FirstGameInEarliestGen AS ( + SELECT eg.pfic, MIN(g.id) as first_game_id + FROM EarliestGamePerPokemon eg + JOIN games g ON eg.min_generation = g.generation + GROUP BY eg.pfic + ) + SELECT + pf.national_dex, pf.name, pf.form_name, pf.PFIC, pf.generation, + ps.storable_in_home, eg.earliest_game, + m.icon_path as mark_icon, m.id as mark_id + FROM pokemon_forms pf + JOIN pokemon_storage ps ON pf.PFIC = ps.PFIC + LEFT JOIN BaseForm bf ON pf.PFIC = bf.PFIC + LEFT JOIN EarliestGamePerPokemon eg ON COALESCE(bf.base_pfic, pf.PFIC) = eg.pfic + LEFT JOIN FirstGameInEarliestGen fg ON COALESCE(bf.base_pfic, pf.PFIC) = fg.pfic + LEFT JOIN games g ON fg.first_game_id = g.id LEFT JOIN mark_game_associations mga ON g.id = mga.game_id LEFT JOIN marks m ON mga.mark_id = m.id - GROUP BY p.national_dex_number, pf.id - ORDER BY p.national_dex_number, pf.is_default DESC, pf.form_name + WHERE ps.storable_in_home = 1 + ORDER BY pf.PFIC ''') current_group = [] @@ -30,20 +59,24 @@ def load_pokemon_data(): pokemon_forms = [] for row in cursor.fetchall(): - national_dex_number, name, form_name, image_path, is_default, introduced_in_gen, earliest_game, mark_icon = row + national_dex, name, form_name, pfic, generation, storable_in_home, earliest_game, mark_icon, mark_id = row pokemon = { - 'ID': national_dex_number, + 'ID': national_dex, 'Name': name, - 'Form': form_name, - 'Image': image_path, - 'IsDefault': is_default, - 'Generation': introduced_in_gen, + 'Form': form_name if form_name else "Default", + 'Image': f"images/pokemon/{pfic}.png", + 'IsDefault': form_name is None or form_name == '', + 'Generation': generation, 'EarliestGame': earliest_game, - 'MarkIcon': mark_icon + 'StorableInHome': storable_in_home, + 'MarkIcon': mark_icon, + 'MarkID': mark_id } + + - if national_dex_number != current_dex_number: + if national_dex != current_dex_number: if pokemon_forms: for form in pokemon_forms: current_group.append(form) @@ -51,16 +84,16 @@ def load_pokemon_data(): pokemon_list.append(current_group) current_group = [] pokemon_forms = [] - current_dex_number = national_dex_number + current_dex_number = national_dex - if is_default: - if current_generation is None or introduced_in_gen != current_generation: + if form_name is None or form_name == '': + if current_generation is None or generation != current_generation: if current_group: while len(current_group) < 30: current_group.append(None) # Add empty slots pokemon_list.append(current_group) current_group = [] - current_generation = introduced_in_gen + current_generation = generation pokemon_forms.append(pokemon) @@ -87,23 +120,37 @@ def index(): @app.route('/pokemon/') def pokemon_details(dex_number): - conn = sqlite3.connect('pokemon_database.db') + conn = sqlite3.connect('pokemon_forms.db') # Updated database name cursor = conn.cursor() cursor.execute(''' - SELECT pf.form_name, g.name, l.name, em.name - FROM form_encounters fe - JOIN games g ON fe.game_id = g.id - JOIN locations l ON fe.location_id = l.id - JOIN encounter_methods em ON fe.encounter_method_id = em.id - JOIN pokemon_forms pf ON fe.form_id = pf.id - WHERE pf.pokemon_id = ? - ORDER BY pf.is_default DESC, pf.form_name, g.generation, g.name, l.name + SELECT pf.form_name, e.game, e.location, e.day, e.time, + e.dual_slot, e.static_encounter, e.static_encounter_count, + e.extra_text, e.stars, e.fishing, e.rods, e.starter + FROM pokemon_forms pf + JOIN encounters e ON pf.PFIC = e.pfic + WHERE pf.national_dex = ? + ORDER BY pf.form_name, e.game, e.location ''', (dex_number,)) encounters = [ - {'form': form, 'game': game, 'location': location, 'method': method} - for form, game, location, method in cursor.fetchall() + { + 'form': form, + 'game': game, + 'location': location, + 'day': day, + 'time': time, + 'dual_slot': dual_slot, + 'static_encounter': static_encounter, + 'static_encounter_count': static_encounter_count, + 'extra_text': extra_text, + 'stars': stars, + 'fishing': fishing, + 'rods': rods, + 'starter': starter + } + for form, game, location, day, time, dual_slot, static_encounter, static_encounter_count, + extra_text, stars, fishing, rods, starter in cursor.fetchall() ] conn.close() diff --git a/Site/static/images/pokemon/0001-01-000-0.png b/Site/static/images/pokemon/0001-01-000-0.png new file mode 100644 index 0000000..a2660fe Binary files /dev/null and b/Site/static/images/pokemon/0001-01-000-0.png differ diff --git a/Site/static/images/pokemon/0001_Bulbasaur.png b/Site/static/images/pokemon/0001_Bulbasaur.png deleted file mode 100644 index 569ffa5..0000000 Binary files a/Site/static/images/pokemon/0001_Bulbasaur.png and /dev/null differ diff --git a/Site/static/images/pokemon/0002-01-000-0.png b/Site/static/images/pokemon/0002-01-000-0.png new file mode 100644 index 0000000..942667f Binary files /dev/null and b/Site/static/images/pokemon/0002-01-000-0.png differ diff --git a/Site/static/images/pokemon/0002_Ivysaur.png b/Site/static/images/pokemon/0002_Ivysaur.png deleted file mode 100644 index 4306351..0000000 Binary files a/Site/static/images/pokemon/0002_Ivysaur.png and /dev/null differ diff --git a/Site/static/images/pokemon/0003-01-000-1.png b/Site/static/images/pokemon/0003-01-000-1.png new file mode 100644 index 0000000..ab1e8b4 Binary files /dev/null and b/Site/static/images/pokemon/0003-01-000-1.png differ diff --git a/Site/static/images/pokemon/0003-01-000-2.png b/Site/static/images/pokemon/0003-01-000-2.png new file mode 100644 index 0000000..8e1d930 Binary files /dev/null and b/Site/static/images/pokemon/0003-01-000-2.png differ diff --git a/Site/static/images/pokemon/0003-01-001-0.png b/Site/static/images/pokemon/0003-01-001-0.png new file mode 100644 index 0000000..7c10d98 Binary files /dev/null and b/Site/static/images/pokemon/0003-01-001-0.png differ diff --git a/Site/static/images/pokemon/0003-01-002-0.png b/Site/static/images/pokemon/0003-01-002-0.png new file mode 100644 index 0000000..310edf1 Binary files /dev/null and b/Site/static/images/pokemon/0003-01-002-0.png differ diff --git a/Site/static/images/pokemon/0003_Venusaur.png b/Site/static/images/pokemon/0003_Venusaur.png deleted file mode 100644 index f41cfc6..0000000 Binary files a/Site/static/images/pokemon/0003_Venusaur.png and /dev/null differ diff --git a/Site/static/images/pokemon/0004-01-000-0.png b/Site/static/images/pokemon/0004-01-000-0.png new file mode 100644 index 0000000..ffac020 Binary files /dev/null and b/Site/static/images/pokemon/0004-01-000-0.png differ diff --git a/Site/static/images/pokemon/0004_Charmander.png b/Site/static/images/pokemon/0004_Charmander.png deleted file mode 100644 index f8f8a05..0000000 Binary files a/Site/static/images/pokemon/0004_Charmander.png and /dev/null differ diff --git a/Site/static/images/pokemon/0005-01-000-0.png b/Site/static/images/pokemon/0005-01-000-0.png new file mode 100644 index 0000000..8c5bcf0 Binary files /dev/null and b/Site/static/images/pokemon/0005-01-000-0.png differ diff --git a/Site/static/images/pokemon/0005_Charmeleon.png b/Site/static/images/pokemon/0005_Charmeleon.png deleted file mode 100644 index dee7afa..0000000 Binary files a/Site/static/images/pokemon/0005_Charmeleon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0006-01-000-0.png b/Site/static/images/pokemon/0006-01-000-0.png new file mode 100644 index 0000000..eb6e38b Binary files /dev/null and b/Site/static/images/pokemon/0006-01-000-0.png differ diff --git a/Site/static/images/pokemon/0006-01-001-0.png b/Site/static/images/pokemon/0006-01-001-0.png new file mode 100644 index 0000000..d26a046 Binary files /dev/null and b/Site/static/images/pokemon/0006-01-001-0.png differ diff --git a/Site/static/images/pokemon/0006-01-002-0.png b/Site/static/images/pokemon/0006-01-002-0.png new file mode 100644 index 0000000..9b7936d Binary files /dev/null and b/Site/static/images/pokemon/0006-01-002-0.png differ diff --git a/Site/static/images/pokemon/0006-01-003-0.png b/Site/static/images/pokemon/0006-01-003-0.png new file mode 100644 index 0000000..1436e67 Binary files /dev/null and b/Site/static/images/pokemon/0006-01-003-0.png differ diff --git a/Site/static/images/pokemon/0006_Charizard.png b/Site/static/images/pokemon/0006_Charizard.png deleted file mode 100644 index bbf0ce5..0000000 Binary files a/Site/static/images/pokemon/0006_Charizard.png and /dev/null differ diff --git a/Site/static/images/pokemon/0007-01-000-0.png b/Site/static/images/pokemon/0007-01-000-0.png new file mode 100644 index 0000000..b0dd244 Binary files /dev/null and b/Site/static/images/pokemon/0007-01-000-0.png differ diff --git a/Site/static/images/pokemon/0007_Squirtle.png b/Site/static/images/pokemon/0007_Squirtle.png deleted file mode 100644 index a7de98d..0000000 Binary files a/Site/static/images/pokemon/0007_Squirtle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0008-01-000-0.png b/Site/static/images/pokemon/0008-01-000-0.png new file mode 100644 index 0000000..eb79da1 Binary files /dev/null and b/Site/static/images/pokemon/0008-01-000-0.png differ diff --git a/Site/static/images/pokemon/0008_Wartortle.png b/Site/static/images/pokemon/0008_Wartortle.png deleted file mode 100644 index f06a5ca..0000000 Binary files a/Site/static/images/pokemon/0008_Wartortle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0009-01-000-0.png b/Site/static/images/pokemon/0009-01-000-0.png new file mode 100644 index 0000000..5cc9c53 Binary files /dev/null and b/Site/static/images/pokemon/0009-01-000-0.png differ diff --git a/Site/static/images/pokemon/0009-01-001-0.png b/Site/static/images/pokemon/0009-01-001-0.png new file mode 100644 index 0000000..5fe1875 Binary files /dev/null and b/Site/static/images/pokemon/0009-01-001-0.png differ diff --git a/Site/static/images/pokemon/0009-01-002-0.png b/Site/static/images/pokemon/0009-01-002-0.png new file mode 100644 index 0000000..47caff9 Binary files /dev/null and b/Site/static/images/pokemon/0009-01-002-0.png differ diff --git a/Site/static/images/pokemon/0009_Blastoise.png b/Site/static/images/pokemon/0009_Blastoise.png deleted file mode 100644 index 3938e85..0000000 Binary files a/Site/static/images/pokemon/0009_Blastoise.png and /dev/null differ diff --git a/Site/static/images/pokemon/0010-01-000-0.png b/Site/static/images/pokemon/0010-01-000-0.png new file mode 100644 index 0000000..e7d74a5 Binary files /dev/null and b/Site/static/images/pokemon/0010-01-000-0.png differ diff --git a/Site/static/images/pokemon/0010_Caterpie.png b/Site/static/images/pokemon/0010_Caterpie.png deleted file mode 100644 index 6becb3f..0000000 Binary files a/Site/static/images/pokemon/0010_Caterpie.png and /dev/null differ diff --git a/Site/static/images/pokemon/0011-01-000-0.png b/Site/static/images/pokemon/0011-01-000-0.png new file mode 100644 index 0000000..960e835 Binary files /dev/null and b/Site/static/images/pokemon/0011-01-000-0.png differ diff --git a/Site/static/images/pokemon/0011_Metapod.png b/Site/static/images/pokemon/0011_Metapod.png deleted file mode 100644 index cd83aa5..0000000 Binary files a/Site/static/images/pokemon/0011_Metapod.png and /dev/null differ diff --git a/Site/static/images/pokemon/0012-01-000-1.png b/Site/static/images/pokemon/0012-01-000-1.png new file mode 100644 index 0000000..d028dff Binary files /dev/null and b/Site/static/images/pokemon/0012-01-000-1.png differ diff --git a/Site/static/images/pokemon/0012-01-000-2.png b/Site/static/images/pokemon/0012-01-000-2.png new file mode 100644 index 0000000..d745387 Binary files /dev/null and b/Site/static/images/pokemon/0012-01-000-2.png differ diff --git a/Site/static/images/pokemon/0012-01-001-0.png b/Site/static/images/pokemon/0012-01-001-0.png new file mode 100644 index 0000000..9a35c49 Binary files /dev/null and b/Site/static/images/pokemon/0012-01-001-0.png differ diff --git a/Site/static/images/pokemon/0012_Butterfree.png b/Site/static/images/pokemon/0012_Butterfree.png deleted file mode 100644 index c80baed..0000000 Binary files a/Site/static/images/pokemon/0012_Butterfree.png and /dev/null differ diff --git a/Site/static/images/pokemon/0013-01-000-0.png b/Site/static/images/pokemon/0013-01-000-0.png new file mode 100644 index 0000000..8dc1fcf Binary files /dev/null and b/Site/static/images/pokemon/0013-01-000-0.png differ diff --git a/Site/static/images/pokemon/0013_Weedle.png b/Site/static/images/pokemon/0013_Weedle.png deleted file mode 100644 index ac9fc51..0000000 Binary files a/Site/static/images/pokemon/0013_Weedle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0014-01-000-0.png b/Site/static/images/pokemon/0014-01-000-0.png new file mode 100644 index 0000000..78b636b Binary files /dev/null and b/Site/static/images/pokemon/0014-01-000-0.png differ diff --git a/Site/static/images/pokemon/0014_Kakuna.png b/Site/static/images/pokemon/0014_Kakuna.png deleted file mode 100644 index 9f9b13a..0000000 Binary files a/Site/static/images/pokemon/0014_Kakuna.png and /dev/null differ diff --git a/Site/static/images/pokemon/0015-01-000-0.png b/Site/static/images/pokemon/0015-01-000-0.png new file mode 100644 index 0000000..63451fc Binary files /dev/null and b/Site/static/images/pokemon/0015-01-000-0.png differ diff --git a/Site/static/images/pokemon/0015-01-001-0.png b/Site/static/images/pokemon/0015-01-001-0.png new file mode 100644 index 0000000..aae5861 Binary files /dev/null and b/Site/static/images/pokemon/0015-01-001-0.png differ diff --git a/Site/static/images/pokemon/0015_Beedrill.png b/Site/static/images/pokemon/0015_Beedrill.png deleted file mode 100644 index 32b1a1e..0000000 Binary files a/Site/static/images/pokemon/0015_Beedrill.png and /dev/null differ diff --git a/Site/static/images/pokemon/0016-01-000-0.png b/Site/static/images/pokemon/0016-01-000-0.png new file mode 100644 index 0000000..8e24427 Binary files /dev/null and b/Site/static/images/pokemon/0016-01-000-0.png differ diff --git a/Site/static/images/pokemon/0016_Pidgey.png b/Site/static/images/pokemon/0016_Pidgey.png deleted file mode 100644 index d196814..0000000 Binary files a/Site/static/images/pokemon/0016_Pidgey.png and /dev/null differ diff --git a/Site/static/images/pokemon/0017-01-000-0.png b/Site/static/images/pokemon/0017-01-000-0.png new file mode 100644 index 0000000..4e148d7 Binary files /dev/null and b/Site/static/images/pokemon/0017-01-000-0.png differ diff --git a/Site/static/images/pokemon/0017_Pidgeotto.png b/Site/static/images/pokemon/0017_Pidgeotto.png deleted file mode 100644 index 2b83c36..0000000 Binary files a/Site/static/images/pokemon/0017_Pidgeotto.png and /dev/null differ diff --git a/Site/static/images/pokemon/0018-01-000-0.png b/Site/static/images/pokemon/0018-01-000-0.png new file mode 100644 index 0000000..82439a8 Binary files /dev/null and b/Site/static/images/pokemon/0018-01-000-0.png differ diff --git a/Site/static/images/pokemon/0018-01-001-0.png b/Site/static/images/pokemon/0018-01-001-0.png new file mode 100644 index 0000000..ee28049 Binary files /dev/null and b/Site/static/images/pokemon/0018-01-001-0.png differ diff --git a/Site/static/images/pokemon/0018_Pidgeot.png b/Site/static/images/pokemon/0018_Pidgeot.png deleted file mode 100644 index 6868368..0000000 Binary files a/Site/static/images/pokemon/0018_Pidgeot.png and /dev/null differ diff --git a/Site/static/images/pokemon/0019-01-000-1.png b/Site/static/images/pokemon/0019-01-000-1.png new file mode 100644 index 0000000..2fdd978 Binary files /dev/null and b/Site/static/images/pokemon/0019-01-000-1.png differ diff --git a/Site/static/images/pokemon/0019-01-000-2.png b/Site/static/images/pokemon/0019-01-000-2.png new file mode 100644 index 0000000..1f0b54a Binary files /dev/null and b/Site/static/images/pokemon/0019-01-000-2.png differ diff --git a/Site/static/images/pokemon/0019-01-001-0.png b/Site/static/images/pokemon/0019-01-001-0.png new file mode 100644 index 0000000..1295b7c Binary files /dev/null and b/Site/static/images/pokemon/0019-01-001-0.png differ diff --git a/Site/static/images/pokemon/0019_Rattata.png b/Site/static/images/pokemon/0019_Rattata.png deleted file mode 100644 index 38e8032..0000000 Binary files a/Site/static/images/pokemon/0019_Rattata.png and /dev/null differ diff --git a/Site/static/images/pokemon/0019_Rattata_(Alolan_Form).png b/Site/static/images/pokemon/0019_Rattata_(Alolan_Form).png deleted file mode 100644 index 4e42a4c..0000000 Binary files a/Site/static/images/pokemon/0019_Rattata_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0020-01-000-1.png b/Site/static/images/pokemon/0020-01-000-1.png new file mode 100644 index 0000000..6a491f5 Binary files /dev/null and b/Site/static/images/pokemon/0020-01-000-1.png differ diff --git a/Site/static/images/pokemon/0020-01-000-2.png b/Site/static/images/pokemon/0020-01-000-2.png new file mode 100644 index 0000000..c72255a Binary files /dev/null and b/Site/static/images/pokemon/0020-01-000-2.png differ diff --git a/Site/static/images/pokemon/0020-01-001-0.png b/Site/static/images/pokemon/0020-01-001-0.png new file mode 100644 index 0000000..1a246a0 Binary files /dev/null and b/Site/static/images/pokemon/0020-01-001-0.png differ diff --git a/Site/static/images/pokemon/0020_Raticate.png b/Site/static/images/pokemon/0020_Raticate.png deleted file mode 100644 index 36bd14a..0000000 Binary files a/Site/static/images/pokemon/0020_Raticate.png and /dev/null differ diff --git a/Site/static/images/pokemon/0020_Raticate_(Alolan_Form).png b/Site/static/images/pokemon/0020_Raticate_(Alolan_Form).png deleted file mode 100644 index eb9f891..0000000 Binary files a/Site/static/images/pokemon/0020_Raticate_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0021-01-000-0.png b/Site/static/images/pokemon/0021-01-000-0.png new file mode 100644 index 0000000..38f5bdc Binary files /dev/null and b/Site/static/images/pokemon/0021-01-000-0.png differ diff --git a/Site/static/images/pokemon/0021_Spearow.png b/Site/static/images/pokemon/0021_Spearow.png deleted file mode 100644 index a6c7ded..0000000 Binary files a/Site/static/images/pokemon/0021_Spearow.png and /dev/null differ diff --git a/Site/static/images/pokemon/0022-01-000-0.png b/Site/static/images/pokemon/0022-01-000-0.png new file mode 100644 index 0000000..ef6cd1d Binary files /dev/null and b/Site/static/images/pokemon/0022-01-000-0.png differ diff --git a/Site/static/images/pokemon/0022_Fearow.png b/Site/static/images/pokemon/0022_Fearow.png deleted file mode 100644 index 2519993..0000000 Binary files a/Site/static/images/pokemon/0022_Fearow.png and /dev/null differ diff --git a/Site/static/images/pokemon/0023-01-000-0.png b/Site/static/images/pokemon/0023-01-000-0.png new file mode 100644 index 0000000..809ff96 Binary files /dev/null and b/Site/static/images/pokemon/0023-01-000-0.png differ diff --git a/Site/static/images/pokemon/0023_Ekans.png b/Site/static/images/pokemon/0023_Ekans.png deleted file mode 100644 index 0d6e78a..0000000 Binary files a/Site/static/images/pokemon/0023_Ekans.png and /dev/null differ diff --git a/Site/static/images/pokemon/0024-01-000-0.png b/Site/static/images/pokemon/0024-01-000-0.png new file mode 100644 index 0000000..f4f0fb4 Binary files /dev/null and b/Site/static/images/pokemon/0024-01-000-0.png differ diff --git a/Site/static/images/pokemon/0024_Arbok.png b/Site/static/images/pokemon/0024_Arbok.png deleted file mode 100644 index 228312d..0000000 Binary files a/Site/static/images/pokemon/0024_Arbok.png and /dev/null differ diff --git a/Site/static/images/pokemon/0025-01-000-1.png b/Site/static/images/pokemon/0025-01-000-1.png new file mode 100644 index 0000000..b6ccc7b Binary files /dev/null and b/Site/static/images/pokemon/0025-01-000-1.png differ diff --git a/Site/static/images/pokemon/0025-01-000-2.png b/Site/static/images/pokemon/0025-01-000-2.png new file mode 100644 index 0000000..287f5cb Binary files /dev/null and b/Site/static/images/pokemon/0025-01-000-2.png differ diff --git a/Site/static/images/pokemon/0025-01-001-0.png b/Site/static/images/pokemon/0025-01-001-0.png new file mode 100644 index 0000000..61e95a4 Binary files /dev/null and b/Site/static/images/pokemon/0025-01-001-0.png differ diff --git a/Site/static/images/pokemon/0025-01-002-0.png b/Site/static/images/pokemon/0025-01-002-0.png new file mode 100644 index 0000000..f657ee3 Binary files /dev/null and b/Site/static/images/pokemon/0025-01-002-0.png differ diff --git a/Site/static/images/pokemon/0025-01-003-0.png b/Site/static/images/pokemon/0025-01-003-0.png new file mode 100644 index 0000000..d06c322 Binary files /dev/null and b/Site/static/images/pokemon/0025-01-003-0.png differ diff --git a/Site/static/images/pokemon/0025-01-004-0.png b/Site/static/images/pokemon/0025-01-004-0.png new file mode 100644 index 0000000..68b7ebd Binary files /dev/null and b/Site/static/images/pokemon/0025-01-004-0.png differ diff --git a/Site/static/images/pokemon/0025-01-005-0.png b/Site/static/images/pokemon/0025-01-005-0.png new file mode 100644 index 0000000..53e6b01 Binary files /dev/null and b/Site/static/images/pokemon/0025-01-005-0.png differ diff --git a/Site/static/images/pokemon/0025-01-006-0.png b/Site/static/images/pokemon/0025-01-006-0.png new file mode 100644 index 0000000..867c7ab Binary files /dev/null and b/Site/static/images/pokemon/0025-01-006-0.png differ diff --git a/Site/static/images/pokemon/0025-01-007-0.png b/Site/static/images/pokemon/0025-01-007-0.png new file mode 100644 index 0000000..c760711 Binary files /dev/null and b/Site/static/images/pokemon/0025-01-007-0.png differ diff --git a/Site/static/images/pokemon/0025-01-008-0.png b/Site/static/images/pokemon/0025-01-008-0.png new file mode 100644 index 0000000..3863ed9 Binary files /dev/null and b/Site/static/images/pokemon/0025-01-008-0.png differ diff --git a/Site/static/images/pokemon/0025-01-009-0.png b/Site/static/images/pokemon/0025-01-009-0.png new file mode 100644 index 0000000..b403a65 Binary files /dev/null and b/Site/static/images/pokemon/0025-01-009-0.png differ diff --git a/Site/static/images/pokemon/0025_Pikachu.png b/Site/static/images/pokemon/0025_Pikachu.png deleted file mode 100644 index 4aa35ad..0000000 Binary files a/Site/static/images/pokemon/0025_Pikachu.png and /dev/null differ diff --git a/Site/static/images/pokemon/0025_Pikachu_(Alola_Cap).png b/Site/static/images/pokemon/0025_Pikachu_(Alola_Cap).png deleted file mode 100644 index 222d8c4..0000000 Binary files a/Site/static/images/pokemon/0025_Pikachu_(Alola_Cap).png and /dev/null differ diff --git a/Site/static/images/pokemon/0025_Pikachu_(Hoenn_Cap).png b/Site/static/images/pokemon/0025_Pikachu_(Hoenn_Cap).png deleted file mode 100644 index ae6ad7d..0000000 Binary files a/Site/static/images/pokemon/0025_Pikachu_(Hoenn_Cap).png and /dev/null differ diff --git a/Site/static/images/pokemon/0025_Pikachu_(Kalos_Cap).png b/Site/static/images/pokemon/0025_Pikachu_(Kalos_Cap).png deleted file mode 100644 index e0f9743..0000000 Binary files a/Site/static/images/pokemon/0025_Pikachu_(Kalos_Cap).png and /dev/null differ diff --git a/Site/static/images/pokemon/0025_Pikachu_(Original_Cap).png b/Site/static/images/pokemon/0025_Pikachu_(Original_Cap).png deleted file mode 100644 index ef311a9..0000000 Binary files a/Site/static/images/pokemon/0025_Pikachu_(Original_Cap).png and /dev/null differ diff --git a/Site/static/images/pokemon/0025_Pikachu_(Partner_Cap).png b/Site/static/images/pokemon/0025_Pikachu_(Partner_Cap).png deleted file mode 100644 index 6a03662..0000000 Binary files a/Site/static/images/pokemon/0025_Pikachu_(Partner_Cap).png and /dev/null differ diff --git a/Site/static/images/pokemon/0025_Pikachu_(Sinnoh_Cap).png b/Site/static/images/pokemon/0025_Pikachu_(Sinnoh_Cap).png deleted file mode 100644 index fa5a3ea..0000000 Binary files a/Site/static/images/pokemon/0025_Pikachu_(Sinnoh_Cap).png and /dev/null differ diff --git a/Site/static/images/pokemon/0025_Pikachu_(Unova_Cap).png b/Site/static/images/pokemon/0025_Pikachu_(Unova_Cap).png deleted file mode 100644 index 28175a4..0000000 Binary files a/Site/static/images/pokemon/0025_Pikachu_(Unova_Cap).png and /dev/null differ diff --git a/Site/static/images/pokemon/0025_Pikachu_(World_Cap).png b/Site/static/images/pokemon/0025_Pikachu_(World_Cap).png deleted file mode 100644 index 97fb222..0000000 Binary files a/Site/static/images/pokemon/0025_Pikachu_(World_Cap).png and /dev/null differ diff --git a/Site/static/images/pokemon/0026-01-000-1.png b/Site/static/images/pokemon/0026-01-000-1.png new file mode 100644 index 0000000..b93cd82 Binary files /dev/null and b/Site/static/images/pokemon/0026-01-000-1.png differ diff --git a/Site/static/images/pokemon/0026-01-000-2.png b/Site/static/images/pokemon/0026-01-000-2.png new file mode 100644 index 0000000..0b023c3 Binary files /dev/null and b/Site/static/images/pokemon/0026-01-000-2.png differ diff --git a/Site/static/images/pokemon/0026-01-001-0.png b/Site/static/images/pokemon/0026-01-001-0.png new file mode 100644 index 0000000..2c40ef3 Binary files /dev/null and b/Site/static/images/pokemon/0026-01-001-0.png differ diff --git a/Site/static/images/pokemon/0026_Raichu.png b/Site/static/images/pokemon/0026_Raichu.png deleted file mode 100644 index 3d771ce..0000000 Binary files a/Site/static/images/pokemon/0026_Raichu.png and /dev/null differ diff --git a/Site/static/images/pokemon/0026_Raichu_(Alolan_Form).png b/Site/static/images/pokemon/0026_Raichu_(Alolan_Form).png deleted file mode 100644 index 33a4e50..0000000 Binary files a/Site/static/images/pokemon/0026_Raichu_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0027-01-000-0.png b/Site/static/images/pokemon/0027-01-000-0.png new file mode 100644 index 0000000..f96bf68 Binary files /dev/null and b/Site/static/images/pokemon/0027-01-000-0.png differ diff --git a/Site/static/images/pokemon/0027-01-001-0.png b/Site/static/images/pokemon/0027-01-001-0.png new file mode 100644 index 0000000..91cf7c4 Binary files /dev/null and b/Site/static/images/pokemon/0027-01-001-0.png differ diff --git a/Site/static/images/pokemon/0027_Sandshrew.png b/Site/static/images/pokemon/0027_Sandshrew.png deleted file mode 100644 index 95ccfbe..0000000 Binary files a/Site/static/images/pokemon/0027_Sandshrew.png and /dev/null differ diff --git a/Site/static/images/pokemon/0027_Sandshrew_(Alolan_Form).png b/Site/static/images/pokemon/0027_Sandshrew_(Alolan_Form).png deleted file mode 100644 index 396dbef..0000000 Binary files a/Site/static/images/pokemon/0027_Sandshrew_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0028-01-000-0.png b/Site/static/images/pokemon/0028-01-000-0.png new file mode 100644 index 0000000..d0979f9 Binary files /dev/null and b/Site/static/images/pokemon/0028-01-000-0.png differ diff --git a/Site/static/images/pokemon/0028-01-001-0.png b/Site/static/images/pokemon/0028-01-001-0.png new file mode 100644 index 0000000..e9de252 Binary files /dev/null and b/Site/static/images/pokemon/0028-01-001-0.png differ diff --git a/Site/static/images/pokemon/0028_Sandslash.png b/Site/static/images/pokemon/0028_Sandslash.png deleted file mode 100644 index ac28df8..0000000 Binary files a/Site/static/images/pokemon/0028_Sandslash.png and /dev/null differ diff --git a/Site/static/images/pokemon/0028_Sandslash_(Alolan_Form).png b/Site/static/images/pokemon/0028_Sandslash_(Alolan_Form).png deleted file mode 100644 index cb5a555..0000000 Binary files a/Site/static/images/pokemon/0028_Sandslash_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0029-01-000-0.png b/Site/static/images/pokemon/0029-01-000-0.png new file mode 100644 index 0000000..ef36d53 Binary files /dev/null and b/Site/static/images/pokemon/0029-01-000-0.png differ diff --git a/Site/static/images/pokemon/0029_Nidoran♀.png b/Site/static/images/pokemon/0029_Nidoran♀.png deleted file mode 100644 index 264e290..0000000 Binary files a/Site/static/images/pokemon/0029_Nidoran♀.png and /dev/null differ diff --git a/Site/static/images/pokemon/0030-01-000-0.png b/Site/static/images/pokemon/0030-01-000-0.png new file mode 100644 index 0000000..278db05 Binary files /dev/null and b/Site/static/images/pokemon/0030-01-000-0.png differ diff --git a/Site/static/images/pokemon/0030_Nidorina.png b/Site/static/images/pokemon/0030_Nidorina.png deleted file mode 100644 index f23654d..0000000 Binary files a/Site/static/images/pokemon/0030_Nidorina.png and /dev/null differ diff --git a/Site/static/images/pokemon/0031-01-000-0.png b/Site/static/images/pokemon/0031-01-000-0.png new file mode 100644 index 0000000..13dddd5 Binary files /dev/null and b/Site/static/images/pokemon/0031-01-000-0.png differ diff --git a/Site/static/images/pokemon/0031_Nidoqueen.png b/Site/static/images/pokemon/0031_Nidoqueen.png deleted file mode 100644 index 47cb45b..0000000 Binary files a/Site/static/images/pokemon/0031_Nidoqueen.png and /dev/null differ diff --git a/Site/static/images/pokemon/0032-01-000-0.png b/Site/static/images/pokemon/0032-01-000-0.png new file mode 100644 index 0000000..d772001 Binary files /dev/null and b/Site/static/images/pokemon/0032-01-000-0.png differ diff --git a/Site/static/images/pokemon/0032_Nidoran♂.png b/Site/static/images/pokemon/0032_Nidoran♂.png deleted file mode 100644 index 6e565c8..0000000 Binary files a/Site/static/images/pokemon/0032_Nidoran♂.png and /dev/null differ diff --git a/Site/static/images/pokemon/0033-01-000-0.png b/Site/static/images/pokemon/0033-01-000-0.png new file mode 100644 index 0000000..ed80056 Binary files /dev/null and b/Site/static/images/pokemon/0033-01-000-0.png differ diff --git a/Site/static/images/pokemon/0033_Nidorino.png b/Site/static/images/pokemon/0033_Nidorino.png deleted file mode 100644 index fa11162..0000000 Binary files a/Site/static/images/pokemon/0033_Nidorino.png and /dev/null differ diff --git a/Site/static/images/pokemon/0034-01-000-0.png b/Site/static/images/pokemon/0034-01-000-0.png new file mode 100644 index 0000000..178ac55 Binary files /dev/null and b/Site/static/images/pokemon/0034-01-000-0.png differ diff --git a/Site/static/images/pokemon/0034_Nidoking.png b/Site/static/images/pokemon/0034_Nidoking.png deleted file mode 100644 index 026b215..0000000 Binary files a/Site/static/images/pokemon/0034_Nidoking.png and /dev/null differ diff --git a/Site/static/images/pokemon/0035-01-000-0.png b/Site/static/images/pokemon/0035-01-000-0.png new file mode 100644 index 0000000..0dab6e4 Binary files /dev/null and b/Site/static/images/pokemon/0035-01-000-0.png differ diff --git a/Site/static/images/pokemon/0035_Clefairy.png b/Site/static/images/pokemon/0035_Clefairy.png deleted file mode 100644 index d8d8d37..0000000 Binary files a/Site/static/images/pokemon/0035_Clefairy.png and /dev/null differ diff --git a/Site/static/images/pokemon/0036-01-000-0.png b/Site/static/images/pokemon/0036-01-000-0.png new file mode 100644 index 0000000..517e8a4 Binary files /dev/null and b/Site/static/images/pokemon/0036-01-000-0.png differ diff --git a/Site/static/images/pokemon/0036_Clefable.png b/Site/static/images/pokemon/0036_Clefable.png deleted file mode 100644 index 38836f6..0000000 Binary files a/Site/static/images/pokemon/0036_Clefable.png and /dev/null differ diff --git a/Site/static/images/pokemon/0037-01-000-0.png b/Site/static/images/pokemon/0037-01-000-0.png new file mode 100644 index 0000000..176e7eb Binary files /dev/null and b/Site/static/images/pokemon/0037-01-000-0.png differ diff --git a/Site/static/images/pokemon/0037-01-001-0.png b/Site/static/images/pokemon/0037-01-001-0.png new file mode 100644 index 0000000..e48335c Binary files /dev/null and b/Site/static/images/pokemon/0037-01-001-0.png differ diff --git a/Site/static/images/pokemon/0037_Vulpix.png b/Site/static/images/pokemon/0037_Vulpix.png deleted file mode 100644 index 8325ca8..0000000 Binary files a/Site/static/images/pokemon/0037_Vulpix.png and /dev/null differ diff --git a/Site/static/images/pokemon/0037_Vulpix_(Alolan_Form).png b/Site/static/images/pokemon/0037_Vulpix_(Alolan_Form).png deleted file mode 100644 index 8512c66..0000000 Binary files a/Site/static/images/pokemon/0037_Vulpix_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0038-01-000-0.png b/Site/static/images/pokemon/0038-01-000-0.png new file mode 100644 index 0000000..68c1558 Binary files /dev/null and b/Site/static/images/pokemon/0038-01-000-0.png differ diff --git a/Site/static/images/pokemon/0038-01-001-0.png b/Site/static/images/pokemon/0038-01-001-0.png new file mode 100644 index 0000000..00e8428 Binary files /dev/null and b/Site/static/images/pokemon/0038-01-001-0.png differ diff --git a/Site/static/images/pokemon/0038_Ninetales.png b/Site/static/images/pokemon/0038_Ninetales.png deleted file mode 100644 index 296be4f..0000000 Binary files a/Site/static/images/pokemon/0038_Ninetales.png and /dev/null differ diff --git a/Site/static/images/pokemon/0038_Ninetales_(Alolan_Form).png b/Site/static/images/pokemon/0038_Ninetales_(Alolan_Form).png deleted file mode 100644 index 8320d8f..0000000 Binary files a/Site/static/images/pokemon/0038_Ninetales_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0039-01-000-0.png b/Site/static/images/pokemon/0039-01-000-0.png new file mode 100644 index 0000000..c5665e3 Binary files /dev/null and b/Site/static/images/pokemon/0039-01-000-0.png differ diff --git a/Site/static/images/pokemon/0039_Jigglypuff.png b/Site/static/images/pokemon/0039_Jigglypuff.png deleted file mode 100644 index 5d7a3ae..0000000 Binary files a/Site/static/images/pokemon/0039_Jigglypuff.png and /dev/null differ diff --git a/Site/static/images/pokemon/0040-01-000-0.png b/Site/static/images/pokemon/0040-01-000-0.png new file mode 100644 index 0000000..d134db9 Binary files /dev/null and b/Site/static/images/pokemon/0040-01-000-0.png differ diff --git a/Site/static/images/pokemon/0040_Wigglytuff.png b/Site/static/images/pokemon/0040_Wigglytuff.png deleted file mode 100644 index 5861a93..0000000 Binary files a/Site/static/images/pokemon/0040_Wigglytuff.png and /dev/null differ diff --git a/Site/static/images/pokemon/0041-01-000-1.png b/Site/static/images/pokemon/0041-01-000-1.png new file mode 100644 index 0000000..321ecd2 Binary files /dev/null and b/Site/static/images/pokemon/0041-01-000-1.png differ diff --git a/Site/static/images/pokemon/0041-01-000-2.png b/Site/static/images/pokemon/0041-01-000-2.png new file mode 100644 index 0000000..953bcc2 Binary files /dev/null and b/Site/static/images/pokemon/0041-01-000-2.png differ diff --git a/Site/static/images/pokemon/0041_Zubat.png b/Site/static/images/pokemon/0041_Zubat.png deleted file mode 100644 index 6a1bd53..0000000 Binary files a/Site/static/images/pokemon/0041_Zubat.png and /dev/null differ diff --git a/Site/static/images/pokemon/0042-01-000-1.png b/Site/static/images/pokemon/0042-01-000-1.png new file mode 100644 index 0000000..fbe51cb Binary files /dev/null and b/Site/static/images/pokemon/0042-01-000-1.png differ diff --git a/Site/static/images/pokemon/0042-01-000-2.png b/Site/static/images/pokemon/0042-01-000-2.png new file mode 100644 index 0000000..639b234 Binary files /dev/null and b/Site/static/images/pokemon/0042-01-000-2.png differ diff --git a/Site/static/images/pokemon/0042_Golbat.png b/Site/static/images/pokemon/0042_Golbat.png deleted file mode 100644 index 449af9b..0000000 Binary files a/Site/static/images/pokemon/0042_Golbat.png and /dev/null differ diff --git a/Site/static/images/pokemon/0043-01-000-0.png b/Site/static/images/pokemon/0043-01-000-0.png new file mode 100644 index 0000000..9783308 Binary files /dev/null and b/Site/static/images/pokemon/0043-01-000-0.png differ diff --git a/Site/static/images/pokemon/0043_Oddish.png b/Site/static/images/pokemon/0043_Oddish.png deleted file mode 100644 index 452ebb5..0000000 Binary files a/Site/static/images/pokemon/0043_Oddish.png and /dev/null differ diff --git a/Site/static/images/pokemon/0044-01-000-1.png b/Site/static/images/pokemon/0044-01-000-1.png new file mode 100644 index 0000000..fdcf3f5 Binary files /dev/null and b/Site/static/images/pokemon/0044-01-000-1.png differ diff --git a/Site/static/images/pokemon/0044-01-000-2.png b/Site/static/images/pokemon/0044-01-000-2.png new file mode 100644 index 0000000..8300577 Binary files /dev/null and b/Site/static/images/pokemon/0044-01-000-2.png differ diff --git a/Site/static/images/pokemon/0044_Gloom.png b/Site/static/images/pokemon/0044_Gloom.png deleted file mode 100644 index fbb1a4e..0000000 Binary files a/Site/static/images/pokemon/0044_Gloom.png and /dev/null differ diff --git a/Site/static/images/pokemon/0045-01-000-1.png b/Site/static/images/pokemon/0045-01-000-1.png new file mode 100644 index 0000000..0a53be8 Binary files /dev/null and b/Site/static/images/pokemon/0045-01-000-1.png differ diff --git a/Site/static/images/pokemon/0045-01-000-2.png b/Site/static/images/pokemon/0045-01-000-2.png new file mode 100644 index 0000000..fa894af Binary files /dev/null and b/Site/static/images/pokemon/0045-01-000-2.png differ diff --git a/Site/static/images/pokemon/0045_Vileplume.png b/Site/static/images/pokemon/0045_Vileplume.png deleted file mode 100644 index c6188af..0000000 Binary files a/Site/static/images/pokemon/0045_Vileplume.png and /dev/null differ diff --git a/Site/static/images/pokemon/0046-01-000-0.png b/Site/static/images/pokemon/0046-01-000-0.png new file mode 100644 index 0000000..5f96e40 Binary files /dev/null and b/Site/static/images/pokemon/0046-01-000-0.png differ diff --git a/Site/static/images/pokemon/0046_Paras.png b/Site/static/images/pokemon/0046_Paras.png deleted file mode 100644 index 81ecfc7..0000000 Binary files a/Site/static/images/pokemon/0046_Paras.png and /dev/null differ diff --git a/Site/static/images/pokemon/0047-01-000-0.png b/Site/static/images/pokemon/0047-01-000-0.png new file mode 100644 index 0000000..74f7c4e Binary files /dev/null and b/Site/static/images/pokemon/0047-01-000-0.png differ diff --git a/Site/static/images/pokemon/0047_Parasect.png b/Site/static/images/pokemon/0047_Parasect.png deleted file mode 100644 index 1171307..0000000 Binary files a/Site/static/images/pokemon/0047_Parasect.png and /dev/null differ diff --git a/Site/static/images/pokemon/0048-01-000-0.png b/Site/static/images/pokemon/0048-01-000-0.png new file mode 100644 index 0000000..04f16b5 Binary files /dev/null and b/Site/static/images/pokemon/0048-01-000-0.png differ diff --git a/Site/static/images/pokemon/0048_Venonat.png b/Site/static/images/pokemon/0048_Venonat.png deleted file mode 100644 index 94d63ed..0000000 Binary files a/Site/static/images/pokemon/0048_Venonat.png and /dev/null differ diff --git a/Site/static/images/pokemon/0049-01-000-0.png b/Site/static/images/pokemon/0049-01-000-0.png new file mode 100644 index 0000000..0fe2fb1 Binary files /dev/null and b/Site/static/images/pokemon/0049-01-000-0.png differ diff --git a/Site/static/images/pokemon/0049_Venomoth.png b/Site/static/images/pokemon/0049_Venomoth.png deleted file mode 100644 index 51f1f5b..0000000 Binary files a/Site/static/images/pokemon/0049_Venomoth.png and /dev/null differ diff --git a/Site/static/images/pokemon/0050-01-000-0.png b/Site/static/images/pokemon/0050-01-000-0.png new file mode 100644 index 0000000..1dd4b49 Binary files /dev/null and b/Site/static/images/pokemon/0050-01-000-0.png differ diff --git a/Site/static/images/pokemon/0050-01-001-0.png b/Site/static/images/pokemon/0050-01-001-0.png new file mode 100644 index 0000000..02d17b6 Binary files /dev/null and b/Site/static/images/pokemon/0050-01-001-0.png differ diff --git a/Site/static/images/pokemon/0050_Diglett.png b/Site/static/images/pokemon/0050_Diglett.png deleted file mode 100644 index 2d9824d..0000000 Binary files a/Site/static/images/pokemon/0050_Diglett.png and /dev/null differ diff --git a/Site/static/images/pokemon/0050_Diglett_(Alolan_Form).png b/Site/static/images/pokemon/0050_Diglett_(Alolan_Form).png deleted file mode 100644 index 4179aae..0000000 Binary files a/Site/static/images/pokemon/0050_Diglett_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0051-01-000-0.png b/Site/static/images/pokemon/0051-01-000-0.png new file mode 100644 index 0000000..7453e11 Binary files /dev/null and b/Site/static/images/pokemon/0051-01-000-0.png differ diff --git a/Site/static/images/pokemon/0051-01-001-0.png b/Site/static/images/pokemon/0051-01-001-0.png new file mode 100644 index 0000000..0c75ae0 Binary files /dev/null and b/Site/static/images/pokemon/0051-01-001-0.png differ diff --git a/Site/static/images/pokemon/0051_Dugtrio.png b/Site/static/images/pokemon/0051_Dugtrio.png deleted file mode 100644 index 3763975..0000000 Binary files a/Site/static/images/pokemon/0051_Dugtrio.png and /dev/null differ diff --git a/Site/static/images/pokemon/0051_Dugtrio_(Alolan_Form).png b/Site/static/images/pokemon/0051_Dugtrio_(Alolan_Form).png deleted file mode 100644 index 01a0b2e..0000000 Binary files a/Site/static/images/pokemon/0051_Dugtrio_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0052-01-000-0.png b/Site/static/images/pokemon/0052-01-000-0.png new file mode 100644 index 0000000..90182bb Binary files /dev/null and b/Site/static/images/pokemon/0052-01-000-0.png differ diff --git a/Site/static/images/pokemon/0052-01-001-0.png b/Site/static/images/pokemon/0052-01-001-0.png new file mode 100644 index 0000000..6d0b7ae Binary files /dev/null and b/Site/static/images/pokemon/0052-01-001-0.png differ diff --git a/Site/static/images/pokemon/0052-01-002-0.png b/Site/static/images/pokemon/0052-01-002-0.png new file mode 100644 index 0000000..6ae786d Binary files /dev/null and b/Site/static/images/pokemon/0052-01-002-0.png differ diff --git a/Site/static/images/pokemon/0052-01-003-0.png b/Site/static/images/pokemon/0052-01-003-0.png new file mode 100644 index 0000000..27cbf83 Binary files /dev/null and b/Site/static/images/pokemon/0052-01-003-0.png differ diff --git a/Site/static/images/pokemon/0052_Meowth.png b/Site/static/images/pokemon/0052_Meowth.png deleted file mode 100644 index f69e3f5..0000000 Binary files a/Site/static/images/pokemon/0052_Meowth.png and /dev/null differ diff --git a/Site/static/images/pokemon/0052_Meowth_(Alolan_Form).png b/Site/static/images/pokemon/0052_Meowth_(Alolan_Form).png deleted file mode 100644 index a5286a3..0000000 Binary files a/Site/static/images/pokemon/0052_Meowth_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0052_Meowth_(Galarian_Form).png b/Site/static/images/pokemon/0052_Meowth_(Galarian_Form).png deleted file mode 100644 index b92cdcf..0000000 Binary files a/Site/static/images/pokemon/0052_Meowth_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0053-01-000-0.png b/Site/static/images/pokemon/0053-01-000-0.png new file mode 100644 index 0000000..0b9ad6f Binary files /dev/null and b/Site/static/images/pokemon/0053-01-000-0.png differ diff --git a/Site/static/images/pokemon/0053-01-001-0.png b/Site/static/images/pokemon/0053-01-001-0.png new file mode 100644 index 0000000..bc2676c Binary files /dev/null and b/Site/static/images/pokemon/0053-01-001-0.png differ diff --git a/Site/static/images/pokemon/0053_Persian.png b/Site/static/images/pokemon/0053_Persian.png deleted file mode 100644 index 7f04487..0000000 Binary files a/Site/static/images/pokemon/0053_Persian.png and /dev/null differ diff --git a/Site/static/images/pokemon/0053_Persian_(Alolan_Form).png b/Site/static/images/pokemon/0053_Persian_(Alolan_Form).png deleted file mode 100644 index 4919dd4..0000000 Binary files a/Site/static/images/pokemon/0053_Persian_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0054-01-000-0.png b/Site/static/images/pokemon/0054-01-000-0.png new file mode 100644 index 0000000..e807f58 Binary files /dev/null and b/Site/static/images/pokemon/0054-01-000-0.png differ diff --git a/Site/static/images/pokemon/0054_Psyduck.png b/Site/static/images/pokemon/0054_Psyduck.png deleted file mode 100644 index 72cd785..0000000 Binary files a/Site/static/images/pokemon/0054_Psyduck.png and /dev/null differ diff --git a/Site/static/images/pokemon/0055-01-000-0.png b/Site/static/images/pokemon/0055-01-000-0.png new file mode 100644 index 0000000..f511467 Binary files /dev/null and b/Site/static/images/pokemon/0055-01-000-0.png differ diff --git a/Site/static/images/pokemon/0055_Golduck.png b/Site/static/images/pokemon/0055_Golduck.png deleted file mode 100644 index 0c39f71..0000000 Binary files a/Site/static/images/pokemon/0055_Golduck.png and /dev/null differ diff --git a/Site/static/images/pokemon/0056-01-000-0.png b/Site/static/images/pokemon/0056-01-000-0.png new file mode 100644 index 0000000..a9fccb8 Binary files /dev/null and b/Site/static/images/pokemon/0056-01-000-0.png differ diff --git a/Site/static/images/pokemon/0056_Mankey.png b/Site/static/images/pokemon/0056_Mankey.png deleted file mode 100644 index 88b2a64..0000000 Binary files a/Site/static/images/pokemon/0056_Mankey.png and /dev/null differ diff --git a/Site/static/images/pokemon/0057-01-000-0.png b/Site/static/images/pokemon/0057-01-000-0.png new file mode 100644 index 0000000..7693b64 Binary files /dev/null and b/Site/static/images/pokemon/0057-01-000-0.png differ diff --git a/Site/static/images/pokemon/0057_Primeape.png b/Site/static/images/pokemon/0057_Primeape.png deleted file mode 100644 index a253fd1..0000000 Binary files a/Site/static/images/pokemon/0057_Primeape.png and /dev/null differ diff --git a/Site/static/images/pokemon/0058-01-000-0.png b/Site/static/images/pokemon/0058-01-000-0.png new file mode 100644 index 0000000..4a0998d Binary files /dev/null and b/Site/static/images/pokemon/0058-01-000-0.png differ diff --git a/Site/static/images/pokemon/0058-01-001-0.png b/Site/static/images/pokemon/0058-01-001-0.png new file mode 100644 index 0000000..b90342d Binary files /dev/null and b/Site/static/images/pokemon/0058-01-001-0.png differ diff --git a/Site/static/images/pokemon/0058_Growlithe.png b/Site/static/images/pokemon/0058_Growlithe.png deleted file mode 100644 index 57494ca..0000000 Binary files a/Site/static/images/pokemon/0058_Growlithe.png and /dev/null differ diff --git a/Site/static/images/pokemon/0058_Growlithe_(Hisuian_Form).png b/Site/static/images/pokemon/0058_Growlithe_(Hisuian_Form).png deleted file mode 100644 index 19bd9b8..0000000 Binary files a/Site/static/images/pokemon/0058_Growlithe_(Hisuian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0059-01-000-0.png b/Site/static/images/pokemon/0059-01-000-0.png new file mode 100644 index 0000000..83c0a22 Binary files /dev/null and b/Site/static/images/pokemon/0059-01-000-0.png differ diff --git a/Site/static/images/pokemon/0059-01-001-0.png b/Site/static/images/pokemon/0059-01-001-0.png new file mode 100644 index 0000000..e44b359 Binary files /dev/null and b/Site/static/images/pokemon/0059-01-001-0.png differ diff --git a/Site/static/images/pokemon/0059_Arcanine.png b/Site/static/images/pokemon/0059_Arcanine.png deleted file mode 100644 index ebcf3d5..0000000 Binary files a/Site/static/images/pokemon/0059_Arcanine.png and /dev/null differ diff --git a/Site/static/images/pokemon/0059_Arcanine_(Hisuian_Form).png b/Site/static/images/pokemon/0059_Arcanine_(Hisuian_Form).png deleted file mode 100644 index 7e551cf..0000000 Binary files a/Site/static/images/pokemon/0059_Arcanine_(Hisuian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0060-01-000-0.png b/Site/static/images/pokemon/0060-01-000-0.png new file mode 100644 index 0000000..c84eba8 Binary files /dev/null and b/Site/static/images/pokemon/0060-01-000-0.png differ diff --git a/Site/static/images/pokemon/0060_Poliwag.png b/Site/static/images/pokemon/0060_Poliwag.png deleted file mode 100644 index 9ef85a5..0000000 Binary files a/Site/static/images/pokemon/0060_Poliwag.png and /dev/null differ diff --git a/Site/static/images/pokemon/0061-01-000-0.png b/Site/static/images/pokemon/0061-01-000-0.png new file mode 100644 index 0000000..f85ef04 Binary files /dev/null and b/Site/static/images/pokemon/0061-01-000-0.png differ diff --git a/Site/static/images/pokemon/0061_Poliwhirl.png b/Site/static/images/pokemon/0061_Poliwhirl.png deleted file mode 100644 index 1f4ed5f..0000000 Binary files a/Site/static/images/pokemon/0061_Poliwhirl.png and /dev/null differ diff --git a/Site/static/images/pokemon/0062-01-000-0.png b/Site/static/images/pokemon/0062-01-000-0.png new file mode 100644 index 0000000..f3c1f5d Binary files /dev/null and b/Site/static/images/pokemon/0062-01-000-0.png differ diff --git a/Site/static/images/pokemon/0062_Poliwrath.png b/Site/static/images/pokemon/0062_Poliwrath.png deleted file mode 100644 index 70f3d64..0000000 Binary files a/Site/static/images/pokemon/0062_Poliwrath.png and /dev/null differ diff --git a/Site/static/images/pokemon/0063-01-000-0.png b/Site/static/images/pokemon/0063-01-000-0.png new file mode 100644 index 0000000..22ebe98 Binary files /dev/null and b/Site/static/images/pokemon/0063-01-000-0.png differ diff --git a/Site/static/images/pokemon/0063_Abra.png b/Site/static/images/pokemon/0063_Abra.png deleted file mode 100644 index e67f2d7..0000000 Binary files a/Site/static/images/pokemon/0063_Abra.png and /dev/null differ diff --git a/Site/static/images/pokemon/0064-01-000-1.png b/Site/static/images/pokemon/0064-01-000-1.png new file mode 100644 index 0000000..0c3e367 Binary files /dev/null and b/Site/static/images/pokemon/0064-01-000-1.png differ diff --git a/Site/static/images/pokemon/0064-01-000-2.png b/Site/static/images/pokemon/0064-01-000-2.png new file mode 100644 index 0000000..3341366 Binary files /dev/null and b/Site/static/images/pokemon/0064-01-000-2.png differ diff --git a/Site/static/images/pokemon/0064_Kadabra.png b/Site/static/images/pokemon/0064_Kadabra.png deleted file mode 100644 index 9110d75..0000000 Binary files a/Site/static/images/pokemon/0064_Kadabra.png and /dev/null differ diff --git a/Site/static/images/pokemon/0065-01-000-1.png b/Site/static/images/pokemon/0065-01-000-1.png new file mode 100644 index 0000000..6be5f8e Binary files /dev/null and b/Site/static/images/pokemon/0065-01-000-1.png differ diff --git a/Site/static/images/pokemon/0065-01-000-2.png b/Site/static/images/pokemon/0065-01-000-2.png new file mode 100644 index 0000000..78698bd Binary files /dev/null and b/Site/static/images/pokemon/0065-01-000-2.png differ diff --git a/Site/static/images/pokemon/0065-01-001-0.png b/Site/static/images/pokemon/0065-01-001-0.png new file mode 100644 index 0000000..fe7eff6 Binary files /dev/null and b/Site/static/images/pokemon/0065-01-001-0.png differ diff --git a/Site/static/images/pokemon/0065_Alakazam.png b/Site/static/images/pokemon/0065_Alakazam.png deleted file mode 100644 index d885fe5..0000000 Binary files a/Site/static/images/pokemon/0065_Alakazam.png and /dev/null differ diff --git a/Site/static/images/pokemon/0066-01-000-0.png b/Site/static/images/pokemon/0066-01-000-0.png new file mode 100644 index 0000000..89d3d74 Binary files /dev/null and b/Site/static/images/pokemon/0066-01-000-0.png differ diff --git a/Site/static/images/pokemon/0066_Machop.png b/Site/static/images/pokemon/0066_Machop.png deleted file mode 100644 index 3f940d2..0000000 Binary files a/Site/static/images/pokemon/0066_Machop.png and /dev/null differ diff --git a/Site/static/images/pokemon/0067-01-000-0.png b/Site/static/images/pokemon/0067-01-000-0.png new file mode 100644 index 0000000..2cdcf1e Binary files /dev/null and b/Site/static/images/pokemon/0067-01-000-0.png differ diff --git a/Site/static/images/pokemon/0067_Machoke.png b/Site/static/images/pokemon/0067_Machoke.png deleted file mode 100644 index 16df44e..0000000 Binary files a/Site/static/images/pokemon/0067_Machoke.png and /dev/null differ diff --git a/Site/static/images/pokemon/0068-01-000-0.png b/Site/static/images/pokemon/0068-01-000-0.png new file mode 100644 index 0000000..8a1989a Binary files /dev/null and b/Site/static/images/pokemon/0068-01-000-0.png differ diff --git a/Site/static/images/pokemon/0068-01-001-0.png b/Site/static/images/pokemon/0068-01-001-0.png new file mode 100644 index 0000000..4b87ca0 Binary files /dev/null and b/Site/static/images/pokemon/0068-01-001-0.png differ diff --git a/Site/static/images/pokemon/0068_Machamp.png b/Site/static/images/pokemon/0068_Machamp.png deleted file mode 100644 index 54e2a36..0000000 Binary files a/Site/static/images/pokemon/0068_Machamp.png and /dev/null differ diff --git a/Site/static/images/pokemon/0069-01-000-0.png b/Site/static/images/pokemon/0069-01-000-0.png new file mode 100644 index 0000000..f9f1cfc Binary files /dev/null and b/Site/static/images/pokemon/0069-01-000-0.png differ diff --git a/Site/static/images/pokemon/0069_Bellsprout.png b/Site/static/images/pokemon/0069_Bellsprout.png deleted file mode 100644 index a0422c1..0000000 Binary files a/Site/static/images/pokemon/0069_Bellsprout.png and /dev/null differ diff --git a/Site/static/images/pokemon/0070-01-000-0.png b/Site/static/images/pokemon/0070-01-000-0.png new file mode 100644 index 0000000..4be1b46 Binary files /dev/null and b/Site/static/images/pokemon/0070-01-000-0.png differ diff --git a/Site/static/images/pokemon/0070_Weepinbell.png b/Site/static/images/pokemon/0070_Weepinbell.png deleted file mode 100644 index 8c28052..0000000 Binary files a/Site/static/images/pokemon/0070_Weepinbell.png and /dev/null differ diff --git a/Site/static/images/pokemon/0071-01-000-0.png b/Site/static/images/pokemon/0071-01-000-0.png new file mode 100644 index 0000000..0d18336 Binary files /dev/null and b/Site/static/images/pokemon/0071-01-000-0.png differ diff --git a/Site/static/images/pokemon/0071_Victreebel.png b/Site/static/images/pokemon/0071_Victreebel.png deleted file mode 100644 index 68c70dd..0000000 Binary files a/Site/static/images/pokemon/0071_Victreebel.png and /dev/null differ diff --git a/Site/static/images/pokemon/0072-01-000-0.png b/Site/static/images/pokemon/0072-01-000-0.png new file mode 100644 index 0000000..4406fb4 Binary files /dev/null and b/Site/static/images/pokemon/0072-01-000-0.png differ diff --git a/Site/static/images/pokemon/0072_Tentacool.png b/Site/static/images/pokemon/0072_Tentacool.png deleted file mode 100644 index 214ff87..0000000 Binary files a/Site/static/images/pokemon/0072_Tentacool.png and /dev/null differ diff --git a/Site/static/images/pokemon/0073-01-000-0.png b/Site/static/images/pokemon/0073-01-000-0.png new file mode 100644 index 0000000..562b459 Binary files /dev/null and b/Site/static/images/pokemon/0073-01-000-0.png differ diff --git a/Site/static/images/pokemon/0073_Tentacruel.png b/Site/static/images/pokemon/0073_Tentacruel.png deleted file mode 100644 index 605ea0a..0000000 Binary files a/Site/static/images/pokemon/0073_Tentacruel.png and /dev/null differ diff --git a/Site/static/images/pokemon/0074-01-000-0.png b/Site/static/images/pokemon/0074-01-000-0.png new file mode 100644 index 0000000..18d9995 Binary files /dev/null and b/Site/static/images/pokemon/0074-01-000-0.png differ diff --git a/Site/static/images/pokemon/0074-01-001-0.png b/Site/static/images/pokemon/0074-01-001-0.png new file mode 100644 index 0000000..5b5bcc4 Binary files /dev/null and b/Site/static/images/pokemon/0074-01-001-0.png differ diff --git a/Site/static/images/pokemon/0074_Geodude.png b/Site/static/images/pokemon/0074_Geodude.png deleted file mode 100644 index 3bb7841..0000000 Binary files a/Site/static/images/pokemon/0074_Geodude.png and /dev/null differ diff --git a/Site/static/images/pokemon/0074_Geodude_(Alolan_Form).png b/Site/static/images/pokemon/0074_Geodude_(Alolan_Form).png deleted file mode 100644 index bc2c73a..0000000 Binary files a/Site/static/images/pokemon/0074_Geodude_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0075-01-000-0.png b/Site/static/images/pokemon/0075-01-000-0.png new file mode 100644 index 0000000..7132b1e Binary files /dev/null and b/Site/static/images/pokemon/0075-01-000-0.png differ diff --git a/Site/static/images/pokemon/0075-01-001-0.png b/Site/static/images/pokemon/0075-01-001-0.png new file mode 100644 index 0000000..b706c27 Binary files /dev/null and b/Site/static/images/pokemon/0075-01-001-0.png differ diff --git a/Site/static/images/pokemon/0075_Graveler.png b/Site/static/images/pokemon/0075_Graveler.png deleted file mode 100644 index 9b1cf97..0000000 Binary files a/Site/static/images/pokemon/0075_Graveler.png and /dev/null differ diff --git a/Site/static/images/pokemon/0075_Graveler_(Alolan_Form).png b/Site/static/images/pokemon/0075_Graveler_(Alolan_Form).png deleted file mode 100644 index 0479a64..0000000 Binary files a/Site/static/images/pokemon/0075_Graveler_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0076-01-000-0.png b/Site/static/images/pokemon/0076-01-000-0.png new file mode 100644 index 0000000..70bac7c Binary files /dev/null and b/Site/static/images/pokemon/0076-01-000-0.png differ diff --git a/Site/static/images/pokemon/0076-01-001-0.png b/Site/static/images/pokemon/0076-01-001-0.png new file mode 100644 index 0000000..1ad2409 Binary files /dev/null and b/Site/static/images/pokemon/0076-01-001-0.png differ diff --git a/Site/static/images/pokemon/0076_Golem.png b/Site/static/images/pokemon/0076_Golem.png deleted file mode 100644 index e89229d..0000000 Binary files a/Site/static/images/pokemon/0076_Golem.png and /dev/null differ diff --git a/Site/static/images/pokemon/0076_Golem_(Alolan_Form).png b/Site/static/images/pokemon/0076_Golem_(Alolan_Form).png deleted file mode 100644 index b442239..0000000 Binary files a/Site/static/images/pokemon/0076_Golem_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0077-01-000-0.png b/Site/static/images/pokemon/0077-01-000-0.png new file mode 100644 index 0000000..377da4e Binary files /dev/null and b/Site/static/images/pokemon/0077-01-000-0.png differ diff --git a/Site/static/images/pokemon/0077-01-001-0.png b/Site/static/images/pokemon/0077-01-001-0.png new file mode 100644 index 0000000..073b65f Binary files /dev/null and b/Site/static/images/pokemon/0077-01-001-0.png differ diff --git a/Site/static/images/pokemon/0077_Ponyta.png b/Site/static/images/pokemon/0077_Ponyta.png deleted file mode 100644 index d1be9ef..0000000 Binary files a/Site/static/images/pokemon/0077_Ponyta.png and /dev/null differ diff --git a/Site/static/images/pokemon/0077_Ponyta_(Galarian_Form).png b/Site/static/images/pokemon/0077_Ponyta_(Galarian_Form).png deleted file mode 100644 index d8cd804..0000000 Binary files a/Site/static/images/pokemon/0077_Ponyta_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0078-01-000-0.png b/Site/static/images/pokemon/0078-01-000-0.png new file mode 100644 index 0000000..a05cf49 Binary files /dev/null and b/Site/static/images/pokemon/0078-01-000-0.png differ diff --git a/Site/static/images/pokemon/0078-01-001-0.png b/Site/static/images/pokemon/0078-01-001-0.png new file mode 100644 index 0000000..05fd125 Binary files /dev/null and b/Site/static/images/pokemon/0078-01-001-0.png differ diff --git a/Site/static/images/pokemon/0078_Rapidash.png b/Site/static/images/pokemon/0078_Rapidash.png deleted file mode 100644 index 380b88e..0000000 Binary files a/Site/static/images/pokemon/0078_Rapidash.png and /dev/null differ diff --git a/Site/static/images/pokemon/0078_Rapidash_(Galarian_Form).png b/Site/static/images/pokemon/0078_Rapidash_(Galarian_Form).png deleted file mode 100644 index e098a04..0000000 Binary files a/Site/static/images/pokemon/0078_Rapidash_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0079-01-000-0.png b/Site/static/images/pokemon/0079-01-000-0.png new file mode 100644 index 0000000..10550d8 Binary files /dev/null and b/Site/static/images/pokemon/0079-01-000-0.png differ diff --git a/Site/static/images/pokemon/0079-01-001-0.png b/Site/static/images/pokemon/0079-01-001-0.png new file mode 100644 index 0000000..f21fffc Binary files /dev/null and b/Site/static/images/pokemon/0079-01-001-0.png differ diff --git a/Site/static/images/pokemon/0079_Slowpoke.png b/Site/static/images/pokemon/0079_Slowpoke.png deleted file mode 100644 index 056fc57..0000000 Binary files a/Site/static/images/pokemon/0079_Slowpoke.png and /dev/null differ diff --git a/Site/static/images/pokemon/0079_Slowpoke_(Galarian_Form).png b/Site/static/images/pokemon/0079_Slowpoke_(Galarian_Form).png deleted file mode 100644 index de80888..0000000 Binary files a/Site/static/images/pokemon/0079_Slowpoke_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0080-01-000-0.png b/Site/static/images/pokemon/0080-01-000-0.png new file mode 100644 index 0000000..b192a91 Binary files /dev/null and b/Site/static/images/pokemon/0080-01-000-0.png differ diff --git a/Site/static/images/pokemon/0080-01-001-0.png b/Site/static/images/pokemon/0080-01-001-0.png new file mode 100644 index 0000000..62f38d9 Binary files /dev/null and b/Site/static/images/pokemon/0080-01-001-0.png differ diff --git a/Site/static/images/pokemon/0080-01-002-0.png b/Site/static/images/pokemon/0080-01-002-0.png new file mode 100644 index 0000000..ce0035e Binary files /dev/null and b/Site/static/images/pokemon/0080-01-002-0.png differ diff --git a/Site/static/images/pokemon/0080_Slowbro.png b/Site/static/images/pokemon/0080_Slowbro.png deleted file mode 100644 index ccc520e..0000000 Binary files a/Site/static/images/pokemon/0080_Slowbro.png and /dev/null differ diff --git a/Site/static/images/pokemon/0080_Slowbro_(Galarian_Form).png b/Site/static/images/pokemon/0080_Slowbro_(Galarian_Form).png deleted file mode 100644 index 5a5ab9f..0000000 Binary files a/Site/static/images/pokemon/0080_Slowbro_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0081-01-000-0.png b/Site/static/images/pokemon/0081-01-000-0.png new file mode 100644 index 0000000..1e9a40a Binary files /dev/null and b/Site/static/images/pokemon/0081-01-000-0.png differ diff --git a/Site/static/images/pokemon/0081_Magnemite.png b/Site/static/images/pokemon/0081_Magnemite.png deleted file mode 100644 index 49f5052..0000000 Binary files a/Site/static/images/pokemon/0081_Magnemite.png and /dev/null differ diff --git a/Site/static/images/pokemon/0082-01-000-0.png b/Site/static/images/pokemon/0082-01-000-0.png new file mode 100644 index 0000000..1f4e183 Binary files /dev/null and b/Site/static/images/pokemon/0082-01-000-0.png differ diff --git a/Site/static/images/pokemon/0082_Magneton.png b/Site/static/images/pokemon/0082_Magneton.png deleted file mode 100644 index 0d23c5f..0000000 Binary files a/Site/static/images/pokemon/0082_Magneton.png and /dev/null differ diff --git a/Site/static/images/pokemon/0083-01-000-0.png b/Site/static/images/pokemon/0083-01-000-0.png new file mode 100644 index 0000000..773c825 Binary files /dev/null and b/Site/static/images/pokemon/0083-01-000-0.png differ diff --git a/Site/static/images/pokemon/0083-01-001-0.png b/Site/static/images/pokemon/0083-01-001-0.png new file mode 100644 index 0000000..2ddadb9 Binary files /dev/null and b/Site/static/images/pokemon/0083-01-001-0.png differ diff --git a/Site/static/images/pokemon/0083_Farfetch'd.png b/Site/static/images/pokemon/0083_Farfetch'd.png deleted file mode 100644 index 1a5c0f3..0000000 Binary files a/Site/static/images/pokemon/0083_Farfetch'd.png and /dev/null differ diff --git a/Site/static/images/pokemon/0083_Farfetch'd_(Galarian_Form).png b/Site/static/images/pokemon/0083_Farfetch'd_(Galarian_Form).png deleted file mode 100644 index 243c924..0000000 Binary files a/Site/static/images/pokemon/0083_Farfetch'd_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0084-01-000-1.png b/Site/static/images/pokemon/0084-01-000-1.png new file mode 100644 index 0000000..827932c Binary files /dev/null and b/Site/static/images/pokemon/0084-01-000-1.png differ diff --git a/Site/static/images/pokemon/0084-01-000-2.png b/Site/static/images/pokemon/0084-01-000-2.png new file mode 100644 index 0000000..fa80b8b Binary files /dev/null and b/Site/static/images/pokemon/0084-01-000-2.png differ diff --git a/Site/static/images/pokemon/0084_Doduo.png b/Site/static/images/pokemon/0084_Doduo.png deleted file mode 100644 index 50dd0f0..0000000 Binary files a/Site/static/images/pokemon/0084_Doduo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0085-01-000-1.png b/Site/static/images/pokemon/0085-01-000-1.png new file mode 100644 index 0000000..94b9897 Binary files /dev/null and b/Site/static/images/pokemon/0085-01-000-1.png differ diff --git a/Site/static/images/pokemon/0085-01-000-2.png b/Site/static/images/pokemon/0085-01-000-2.png new file mode 100644 index 0000000..989c388 Binary files /dev/null and b/Site/static/images/pokemon/0085-01-000-2.png differ diff --git a/Site/static/images/pokemon/0085_Dodrio.png b/Site/static/images/pokemon/0085_Dodrio.png deleted file mode 100644 index cd99a59..0000000 Binary files a/Site/static/images/pokemon/0085_Dodrio.png and /dev/null differ diff --git a/Site/static/images/pokemon/0086-01-000-0.png b/Site/static/images/pokemon/0086-01-000-0.png new file mode 100644 index 0000000..7fcc33e Binary files /dev/null and b/Site/static/images/pokemon/0086-01-000-0.png differ diff --git a/Site/static/images/pokemon/0086_Seel.png b/Site/static/images/pokemon/0086_Seel.png deleted file mode 100644 index 8c5cc8e..0000000 Binary files a/Site/static/images/pokemon/0086_Seel.png and /dev/null differ diff --git a/Site/static/images/pokemon/0087-01-000-0.png b/Site/static/images/pokemon/0087-01-000-0.png new file mode 100644 index 0000000..fccbd84 Binary files /dev/null and b/Site/static/images/pokemon/0087-01-000-0.png differ diff --git a/Site/static/images/pokemon/0087_Dewgong.png b/Site/static/images/pokemon/0087_Dewgong.png deleted file mode 100644 index d2b57bd..0000000 Binary files a/Site/static/images/pokemon/0087_Dewgong.png and /dev/null differ diff --git a/Site/static/images/pokemon/0088-01-000-0.png b/Site/static/images/pokemon/0088-01-000-0.png new file mode 100644 index 0000000..308451d Binary files /dev/null and b/Site/static/images/pokemon/0088-01-000-0.png differ diff --git a/Site/static/images/pokemon/0088-01-001-0.png b/Site/static/images/pokemon/0088-01-001-0.png new file mode 100644 index 0000000..fb1bffc Binary files /dev/null and b/Site/static/images/pokemon/0088-01-001-0.png differ diff --git a/Site/static/images/pokemon/0088_Grimer.png b/Site/static/images/pokemon/0088_Grimer.png deleted file mode 100644 index c0ffaf0..0000000 Binary files a/Site/static/images/pokemon/0088_Grimer.png and /dev/null differ diff --git a/Site/static/images/pokemon/0088_Grimer_(Alolan_Form).png b/Site/static/images/pokemon/0088_Grimer_(Alolan_Form).png deleted file mode 100644 index acbf751..0000000 Binary files a/Site/static/images/pokemon/0088_Grimer_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0089-01-000-0.png b/Site/static/images/pokemon/0089-01-000-0.png new file mode 100644 index 0000000..07aa824 Binary files /dev/null and b/Site/static/images/pokemon/0089-01-000-0.png differ diff --git a/Site/static/images/pokemon/0089-01-001-0.png b/Site/static/images/pokemon/0089-01-001-0.png new file mode 100644 index 0000000..3c8222f Binary files /dev/null and b/Site/static/images/pokemon/0089-01-001-0.png differ diff --git a/Site/static/images/pokemon/0089_Muk.png b/Site/static/images/pokemon/0089_Muk.png deleted file mode 100644 index c3340f6..0000000 Binary files a/Site/static/images/pokemon/0089_Muk.png and /dev/null differ diff --git a/Site/static/images/pokemon/0089_Muk_(Alolan_Form).png b/Site/static/images/pokemon/0089_Muk_(Alolan_Form).png deleted file mode 100644 index 969b9cc..0000000 Binary files a/Site/static/images/pokemon/0089_Muk_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0090-01-000-0.png b/Site/static/images/pokemon/0090-01-000-0.png new file mode 100644 index 0000000..9f9fddc Binary files /dev/null and b/Site/static/images/pokemon/0090-01-000-0.png differ diff --git a/Site/static/images/pokemon/0090_Shellder.png b/Site/static/images/pokemon/0090_Shellder.png deleted file mode 100644 index cd45483..0000000 Binary files a/Site/static/images/pokemon/0090_Shellder.png and /dev/null differ diff --git a/Site/static/images/pokemon/0091-01-000-0.png b/Site/static/images/pokemon/0091-01-000-0.png new file mode 100644 index 0000000..598724f Binary files /dev/null and b/Site/static/images/pokemon/0091-01-000-0.png differ diff --git a/Site/static/images/pokemon/0091_Cloyster.png b/Site/static/images/pokemon/0091_Cloyster.png deleted file mode 100644 index d2fb617..0000000 Binary files a/Site/static/images/pokemon/0091_Cloyster.png and /dev/null differ diff --git a/Site/static/images/pokemon/0092-01-000-0.png b/Site/static/images/pokemon/0092-01-000-0.png new file mode 100644 index 0000000..cbbb0a3 Binary files /dev/null and b/Site/static/images/pokemon/0092-01-000-0.png differ diff --git a/Site/static/images/pokemon/0092_Gastly.png b/Site/static/images/pokemon/0092_Gastly.png deleted file mode 100644 index ce44021..0000000 Binary files a/Site/static/images/pokemon/0092_Gastly.png and /dev/null differ diff --git a/Site/static/images/pokemon/0093-01-000-0.png b/Site/static/images/pokemon/0093-01-000-0.png new file mode 100644 index 0000000..16e1c8d Binary files /dev/null and b/Site/static/images/pokemon/0093-01-000-0.png differ diff --git a/Site/static/images/pokemon/0093_Haunter.png b/Site/static/images/pokemon/0093_Haunter.png deleted file mode 100644 index 980d8c4..0000000 Binary files a/Site/static/images/pokemon/0093_Haunter.png and /dev/null differ diff --git a/Site/static/images/pokemon/0094-01-000-0.png b/Site/static/images/pokemon/0094-01-000-0.png new file mode 100644 index 0000000..52ac354 Binary files /dev/null and b/Site/static/images/pokemon/0094-01-000-0.png differ diff --git a/Site/static/images/pokemon/0094-01-001-0.png b/Site/static/images/pokemon/0094-01-001-0.png new file mode 100644 index 0000000..4f33d83 Binary files /dev/null and b/Site/static/images/pokemon/0094-01-001-0.png differ diff --git a/Site/static/images/pokemon/0094-01-002-0.png b/Site/static/images/pokemon/0094-01-002-0.png new file mode 100644 index 0000000..a36bcd6 Binary files /dev/null and b/Site/static/images/pokemon/0094-01-002-0.png differ diff --git a/Site/static/images/pokemon/0094_Gengar.png b/Site/static/images/pokemon/0094_Gengar.png deleted file mode 100644 index c21f793..0000000 Binary files a/Site/static/images/pokemon/0094_Gengar.png and /dev/null differ diff --git a/Site/static/images/pokemon/0095-01-000-0.png b/Site/static/images/pokemon/0095-01-000-0.png new file mode 100644 index 0000000..19b9a89 Binary files /dev/null and b/Site/static/images/pokemon/0095-01-000-0.png differ diff --git a/Site/static/images/pokemon/0095_Onix.png b/Site/static/images/pokemon/0095_Onix.png deleted file mode 100644 index ea7d3cd..0000000 Binary files a/Site/static/images/pokemon/0095_Onix.png and /dev/null differ diff --git a/Site/static/images/pokemon/0096-01-000-0.png b/Site/static/images/pokemon/0096-01-000-0.png new file mode 100644 index 0000000..e748f6f Binary files /dev/null and b/Site/static/images/pokemon/0096-01-000-0.png differ diff --git a/Site/static/images/pokemon/0096_Drowzee.png b/Site/static/images/pokemon/0096_Drowzee.png deleted file mode 100644 index 26ae26b..0000000 Binary files a/Site/static/images/pokemon/0096_Drowzee.png and /dev/null differ diff --git a/Site/static/images/pokemon/0097-01-000-1.png b/Site/static/images/pokemon/0097-01-000-1.png new file mode 100644 index 0000000..7a9a407 Binary files /dev/null and b/Site/static/images/pokemon/0097-01-000-1.png differ diff --git a/Site/static/images/pokemon/0097-01-000-2.png b/Site/static/images/pokemon/0097-01-000-2.png new file mode 100644 index 0000000..c89dc3e Binary files /dev/null and b/Site/static/images/pokemon/0097-01-000-2.png differ diff --git a/Site/static/images/pokemon/0097_Hypno.png b/Site/static/images/pokemon/0097_Hypno.png deleted file mode 100644 index 8b84a8c..0000000 Binary files a/Site/static/images/pokemon/0097_Hypno.png and /dev/null differ diff --git a/Site/static/images/pokemon/0098-01-000-0.png b/Site/static/images/pokemon/0098-01-000-0.png new file mode 100644 index 0000000..4f0f90e Binary files /dev/null and b/Site/static/images/pokemon/0098-01-000-0.png differ diff --git a/Site/static/images/pokemon/0098_Krabby.png b/Site/static/images/pokemon/0098_Krabby.png deleted file mode 100644 index d87dc7e..0000000 Binary files a/Site/static/images/pokemon/0098_Krabby.png and /dev/null differ diff --git a/Site/static/images/pokemon/0099-01-000-0.png b/Site/static/images/pokemon/0099-01-000-0.png new file mode 100644 index 0000000..8e5886e Binary files /dev/null and b/Site/static/images/pokemon/0099-01-000-0.png differ diff --git a/Site/static/images/pokemon/0099-01-001-0.png b/Site/static/images/pokemon/0099-01-001-0.png new file mode 100644 index 0000000..3e5d581 Binary files /dev/null and b/Site/static/images/pokemon/0099-01-001-0.png differ diff --git a/Site/static/images/pokemon/0099_Kingler.png b/Site/static/images/pokemon/0099_Kingler.png deleted file mode 100644 index 38bacd2..0000000 Binary files a/Site/static/images/pokemon/0099_Kingler.png and /dev/null differ diff --git a/Site/static/images/pokemon/0100-01-000-0.png b/Site/static/images/pokemon/0100-01-000-0.png new file mode 100644 index 0000000..6de2ad2 Binary files /dev/null and b/Site/static/images/pokemon/0100-01-000-0.png differ diff --git a/Site/static/images/pokemon/0100-01-001-0.png b/Site/static/images/pokemon/0100-01-001-0.png new file mode 100644 index 0000000..bc18707 Binary files /dev/null and b/Site/static/images/pokemon/0100-01-001-0.png differ diff --git a/Site/static/images/pokemon/0100_Voltorb.png b/Site/static/images/pokemon/0100_Voltorb.png deleted file mode 100644 index 1f2a2ba..0000000 Binary files a/Site/static/images/pokemon/0100_Voltorb.png and /dev/null differ diff --git a/Site/static/images/pokemon/0100_Voltorb_(Hisuian_Form).png b/Site/static/images/pokemon/0100_Voltorb_(Hisuian_Form).png deleted file mode 100644 index 06fd3f3..0000000 Binary files a/Site/static/images/pokemon/0100_Voltorb_(Hisuian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0101-01-000-0.png b/Site/static/images/pokemon/0101-01-000-0.png new file mode 100644 index 0000000..839c9ae Binary files /dev/null and b/Site/static/images/pokemon/0101-01-000-0.png differ diff --git a/Site/static/images/pokemon/0101-01-001-0.png b/Site/static/images/pokemon/0101-01-001-0.png new file mode 100644 index 0000000..99dbec0 Binary files /dev/null and b/Site/static/images/pokemon/0101-01-001-0.png differ diff --git a/Site/static/images/pokemon/0101_Electrode.png b/Site/static/images/pokemon/0101_Electrode.png deleted file mode 100644 index 51db0be..0000000 Binary files a/Site/static/images/pokemon/0101_Electrode.png and /dev/null differ diff --git a/Site/static/images/pokemon/0101_Electrode_(Hisuian_Form).png b/Site/static/images/pokemon/0101_Electrode_(Hisuian_Form).png deleted file mode 100644 index 43fc025..0000000 Binary files a/Site/static/images/pokemon/0101_Electrode_(Hisuian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0102-01-000-0.png b/Site/static/images/pokemon/0102-01-000-0.png new file mode 100644 index 0000000..4c90823 Binary files /dev/null and b/Site/static/images/pokemon/0102-01-000-0.png differ diff --git a/Site/static/images/pokemon/0102_Exeggcute.png b/Site/static/images/pokemon/0102_Exeggcute.png deleted file mode 100644 index 94c7179..0000000 Binary files a/Site/static/images/pokemon/0102_Exeggcute.png and /dev/null differ diff --git a/Site/static/images/pokemon/0103-01-000-0.png b/Site/static/images/pokemon/0103-01-000-0.png new file mode 100644 index 0000000..4e1c462 Binary files /dev/null and b/Site/static/images/pokemon/0103-01-000-0.png differ diff --git a/Site/static/images/pokemon/0103-01-001-0.png b/Site/static/images/pokemon/0103-01-001-0.png new file mode 100644 index 0000000..02127d3 Binary files /dev/null and b/Site/static/images/pokemon/0103-01-001-0.png differ diff --git a/Site/static/images/pokemon/0103_Exeggutor.png b/Site/static/images/pokemon/0103_Exeggutor.png deleted file mode 100644 index baa6335..0000000 Binary files a/Site/static/images/pokemon/0103_Exeggutor.png and /dev/null differ diff --git a/Site/static/images/pokemon/0103_Exeggutor_(Alolan_Form).png b/Site/static/images/pokemon/0103_Exeggutor_(Alolan_Form).png deleted file mode 100644 index 0e212bf..0000000 Binary files a/Site/static/images/pokemon/0103_Exeggutor_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0104-01-000-0.png b/Site/static/images/pokemon/0104-01-000-0.png new file mode 100644 index 0000000..8cdf903 Binary files /dev/null and b/Site/static/images/pokemon/0104-01-000-0.png differ diff --git a/Site/static/images/pokemon/0104_Cubone.png b/Site/static/images/pokemon/0104_Cubone.png deleted file mode 100644 index 1021a33..0000000 Binary files a/Site/static/images/pokemon/0104_Cubone.png and /dev/null differ diff --git a/Site/static/images/pokemon/0105-01-000-0.png b/Site/static/images/pokemon/0105-01-000-0.png new file mode 100644 index 0000000..007bd39 Binary files /dev/null and b/Site/static/images/pokemon/0105-01-000-0.png differ diff --git a/Site/static/images/pokemon/0105-01-001-0.png b/Site/static/images/pokemon/0105-01-001-0.png new file mode 100644 index 0000000..1ff0898 Binary files /dev/null and b/Site/static/images/pokemon/0105-01-001-0.png differ diff --git a/Site/static/images/pokemon/0105_Marowak.png b/Site/static/images/pokemon/0105_Marowak.png deleted file mode 100644 index 719c586..0000000 Binary files a/Site/static/images/pokemon/0105_Marowak.png and /dev/null differ diff --git a/Site/static/images/pokemon/0105_Marowak_(Alolan_Form).png b/Site/static/images/pokemon/0105_Marowak_(Alolan_Form).png deleted file mode 100644 index 0db9e42..0000000 Binary files a/Site/static/images/pokemon/0105_Marowak_(Alolan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0106-01-000-0.png b/Site/static/images/pokemon/0106-01-000-0.png new file mode 100644 index 0000000..761c2b3 Binary files /dev/null and b/Site/static/images/pokemon/0106-01-000-0.png differ diff --git a/Site/static/images/pokemon/0106_Hitmonlee.png b/Site/static/images/pokemon/0106_Hitmonlee.png deleted file mode 100644 index a31a947..0000000 Binary files a/Site/static/images/pokemon/0106_Hitmonlee.png and /dev/null differ diff --git a/Site/static/images/pokemon/0107-01-000-0.png b/Site/static/images/pokemon/0107-01-000-0.png new file mode 100644 index 0000000..f701768 Binary files /dev/null and b/Site/static/images/pokemon/0107-01-000-0.png differ diff --git a/Site/static/images/pokemon/0107_Hitmonchan.png b/Site/static/images/pokemon/0107_Hitmonchan.png deleted file mode 100644 index 2705dcb..0000000 Binary files a/Site/static/images/pokemon/0107_Hitmonchan.png and /dev/null differ diff --git a/Site/static/images/pokemon/0108-01-000-0.png b/Site/static/images/pokemon/0108-01-000-0.png new file mode 100644 index 0000000..80b5b59 Binary files /dev/null and b/Site/static/images/pokemon/0108-01-000-0.png differ diff --git a/Site/static/images/pokemon/0108_Lickitung.png b/Site/static/images/pokemon/0108_Lickitung.png deleted file mode 100644 index 913aaef..0000000 Binary files a/Site/static/images/pokemon/0108_Lickitung.png and /dev/null differ diff --git a/Site/static/images/pokemon/0109-01-000-0.png b/Site/static/images/pokemon/0109-01-000-0.png new file mode 100644 index 0000000..bbc4fc3 Binary files /dev/null and b/Site/static/images/pokemon/0109-01-000-0.png differ diff --git a/Site/static/images/pokemon/0109_Koffing.png b/Site/static/images/pokemon/0109_Koffing.png deleted file mode 100644 index 5a0c5b8..0000000 Binary files a/Site/static/images/pokemon/0109_Koffing.png and /dev/null differ diff --git a/Site/static/images/pokemon/0110-01-000-0.png b/Site/static/images/pokemon/0110-01-000-0.png new file mode 100644 index 0000000..170ebe0 Binary files /dev/null and b/Site/static/images/pokemon/0110-01-000-0.png differ diff --git a/Site/static/images/pokemon/0110-01-001-0.png b/Site/static/images/pokemon/0110-01-001-0.png new file mode 100644 index 0000000..b5248f0 Binary files /dev/null and b/Site/static/images/pokemon/0110-01-001-0.png differ diff --git a/Site/static/images/pokemon/0110_Weezing.png b/Site/static/images/pokemon/0110_Weezing.png deleted file mode 100644 index f922f6f..0000000 Binary files a/Site/static/images/pokemon/0110_Weezing.png and /dev/null differ diff --git a/Site/static/images/pokemon/0110_Weezing_(Galarian_Form).png b/Site/static/images/pokemon/0110_Weezing_(Galarian_Form).png deleted file mode 100644 index 91cbf2c..0000000 Binary files a/Site/static/images/pokemon/0110_Weezing_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0111-01-000-1.png b/Site/static/images/pokemon/0111-01-000-1.png new file mode 100644 index 0000000..cfdde6a Binary files /dev/null and b/Site/static/images/pokemon/0111-01-000-1.png differ diff --git a/Site/static/images/pokemon/0111-01-000-2.png b/Site/static/images/pokemon/0111-01-000-2.png new file mode 100644 index 0000000..0f59f90 Binary files /dev/null and b/Site/static/images/pokemon/0111-01-000-2.png differ diff --git a/Site/static/images/pokemon/0111_Rhyhorn.png b/Site/static/images/pokemon/0111_Rhyhorn.png deleted file mode 100644 index 0ecdbae..0000000 Binary files a/Site/static/images/pokemon/0111_Rhyhorn.png and /dev/null differ diff --git a/Site/static/images/pokemon/0112-01-000-1.png b/Site/static/images/pokemon/0112-01-000-1.png new file mode 100644 index 0000000..7f9b2cf Binary files /dev/null and b/Site/static/images/pokemon/0112-01-000-1.png differ diff --git a/Site/static/images/pokemon/0112-01-000-2.png b/Site/static/images/pokemon/0112-01-000-2.png new file mode 100644 index 0000000..56c0b67 Binary files /dev/null and b/Site/static/images/pokemon/0112-01-000-2.png differ diff --git a/Site/static/images/pokemon/0112_Rhydon.png b/Site/static/images/pokemon/0112_Rhydon.png deleted file mode 100644 index 8fba6b6..0000000 Binary files a/Site/static/images/pokemon/0112_Rhydon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0113-01-000-0.png b/Site/static/images/pokemon/0113-01-000-0.png new file mode 100644 index 0000000..0114f65 Binary files /dev/null and b/Site/static/images/pokemon/0113-01-000-0.png differ diff --git a/Site/static/images/pokemon/0113_Chansey.png b/Site/static/images/pokemon/0113_Chansey.png deleted file mode 100644 index 57534a3..0000000 Binary files a/Site/static/images/pokemon/0113_Chansey.png and /dev/null differ diff --git a/Site/static/images/pokemon/0114-01-000-0.png b/Site/static/images/pokemon/0114-01-000-0.png new file mode 100644 index 0000000..5d5155e Binary files /dev/null and b/Site/static/images/pokemon/0114-01-000-0.png differ diff --git a/Site/static/images/pokemon/0114_Tangela.png b/Site/static/images/pokemon/0114_Tangela.png deleted file mode 100644 index 328f4cc..0000000 Binary files a/Site/static/images/pokemon/0114_Tangela.png and /dev/null differ diff --git a/Site/static/images/pokemon/0115-01-000-0.png b/Site/static/images/pokemon/0115-01-000-0.png new file mode 100644 index 0000000..a44b935 Binary files /dev/null and b/Site/static/images/pokemon/0115-01-000-0.png differ diff --git a/Site/static/images/pokemon/0115-01-001-0.png b/Site/static/images/pokemon/0115-01-001-0.png new file mode 100644 index 0000000..6293ca5 Binary files /dev/null and b/Site/static/images/pokemon/0115-01-001-0.png differ diff --git a/Site/static/images/pokemon/0115_Kangaskhan.png b/Site/static/images/pokemon/0115_Kangaskhan.png deleted file mode 100644 index ff2c302..0000000 Binary files a/Site/static/images/pokemon/0115_Kangaskhan.png and /dev/null differ diff --git a/Site/static/images/pokemon/0116-01-000-0.png b/Site/static/images/pokemon/0116-01-000-0.png new file mode 100644 index 0000000..471c763 Binary files /dev/null and b/Site/static/images/pokemon/0116-01-000-0.png differ diff --git a/Site/static/images/pokemon/0116_Horsea.png b/Site/static/images/pokemon/0116_Horsea.png deleted file mode 100644 index ccc6e58..0000000 Binary files a/Site/static/images/pokemon/0116_Horsea.png and /dev/null differ diff --git a/Site/static/images/pokemon/0117-01-000-0.png b/Site/static/images/pokemon/0117-01-000-0.png new file mode 100644 index 0000000..92e00d8 Binary files /dev/null and b/Site/static/images/pokemon/0117-01-000-0.png differ diff --git a/Site/static/images/pokemon/0117_Seadra.png b/Site/static/images/pokemon/0117_Seadra.png deleted file mode 100644 index 14cda90..0000000 Binary files a/Site/static/images/pokemon/0117_Seadra.png and /dev/null differ diff --git a/Site/static/images/pokemon/0118-01-000-1.png b/Site/static/images/pokemon/0118-01-000-1.png new file mode 100644 index 0000000..efefae0 Binary files /dev/null and b/Site/static/images/pokemon/0118-01-000-1.png differ diff --git a/Site/static/images/pokemon/0118-01-000-2.png b/Site/static/images/pokemon/0118-01-000-2.png new file mode 100644 index 0000000..c241115 Binary files /dev/null and b/Site/static/images/pokemon/0118-01-000-2.png differ diff --git a/Site/static/images/pokemon/0118_Goldeen.png b/Site/static/images/pokemon/0118_Goldeen.png deleted file mode 100644 index 3ee1f40..0000000 Binary files a/Site/static/images/pokemon/0118_Goldeen.png and /dev/null differ diff --git a/Site/static/images/pokemon/0119-01-000-1.png b/Site/static/images/pokemon/0119-01-000-1.png new file mode 100644 index 0000000..2e2dd20 Binary files /dev/null and b/Site/static/images/pokemon/0119-01-000-1.png differ diff --git a/Site/static/images/pokemon/0119-01-000-2.png b/Site/static/images/pokemon/0119-01-000-2.png new file mode 100644 index 0000000..b3dfba9 Binary files /dev/null and b/Site/static/images/pokemon/0119-01-000-2.png differ diff --git a/Site/static/images/pokemon/0119_Seaking.png b/Site/static/images/pokemon/0119_Seaking.png deleted file mode 100644 index 239a340..0000000 Binary files a/Site/static/images/pokemon/0119_Seaking.png and /dev/null differ diff --git a/Site/static/images/pokemon/0120-01-000-0.png b/Site/static/images/pokemon/0120-01-000-0.png new file mode 100644 index 0000000..dd64f51 Binary files /dev/null and b/Site/static/images/pokemon/0120-01-000-0.png differ diff --git a/Site/static/images/pokemon/0120_Staryu.png b/Site/static/images/pokemon/0120_Staryu.png deleted file mode 100644 index 4f54b7f..0000000 Binary files a/Site/static/images/pokemon/0120_Staryu.png and /dev/null differ diff --git a/Site/static/images/pokemon/0121-01-000-0.png b/Site/static/images/pokemon/0121-01-000-0.png new file mode 100644 index 0000000..7c53410 Binary files /dev/null and b/Site/static/images/pokemon/0121-01-000-0.png differ diff --git a/Site/static/images/pokemon/0121_Starmie.png b/Site/static/images/pokemon/0121_Starmie.png deleted file mode 100644 index 5ae7264..0000000 Binary files a/Site/static/images/pokemon/0121_Starmie.png and /dev/null differ diff --git a/Site/static/images/pokemon/0122-01-000-0.png b/Site/static/images/pokemon/0122-01-000-0.png new file mode 100644 index 0000000..3defd9c Binary files /dev/null and b/Site/static/images/pokemon/0122-01-000-0.png differ diff --git a/Site/static/images/pokemon/0122-01-001-0.png b/Site/static/images/pokemon/0122-01-001-0.png new file mode 100644 index 0000000..733b0b0 Binary files /dev/null and b/Site/static/images/pokemon/0122-01-001-0.png differ diff --git a/Site/static/images/pokemon/0122_Mr._Mime.png b/Site/static/images/pokemon/0122_Mr._Mime.png deleted file mode 100644 index 92c1b3e..0000000 Binary files a/Site/static/images/pokemon/0122_Mr._Mime.png and /dev/null differ diff --git a/Site/static/images/pokemon/0122_Mr._Mime_(Galarian_Form).png b/Site/static/images/pokemon/0122_Mr._Mime_(Galarian_Form).png deleted file mode 100644 index 3154a76..0000000 Binary files a/Site/static/images/pokemon/0122_Mr._Mime_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0123-01-000-1.png b/Site/static/images/pokemon/0123-01-000-1.png new file mode 100644 index 0000000..a0f55b1 Binary files /dev/null and b/Site/static/images/pokemon/0123-01-000-1.png differ diff --git a/Site/static/images/pokemon/0123-01-000-2.png b/Site/static/images/pokemon/0123-01-000-2.png new file mode 100644 index 0000000..94d5ba8 Binary files /dev/null and b/Site/static/images/pokemon/0123-01-000-2.png differ diff --git a/Site/static/images/pokemon/0123_Scyther.png b/Site/static/images/pokemon/0123_Scyther.png deleted file mode 100644 index 5cc7c9c..0000000 Binary files a/Site/static/images/pokemon/0123_Scyther.png and /dev/null differ diff --git a/Site/static/images/pokemon/0124-01-000-0.png b/Site/static/images/pokemon/0124-01-000-0.png new file mode 100644 index 0000000..5f5eaa9 Binary files /dev/null and b/Site/static/images/pokemon/0124-01-000-0.png differ diff --git a/Site/static/images/pokemon/0124_Jynx.png b/Site/static/images/pokemon/0124_Jynx.png deleted file mode 100644 index 5dd853b..0000000 Binary files a/Site/static/images/pokemon/0124_Jynx.png and /dev/null differ diff --git a/Site/static/images/pokemon/0125-01-000-0.png b/Site/static/images/pokemon/0125-01-000-0.png new file mode 100644 index 0000000..1bd856c Binary files /dev/null and b/Site/static/images/pokemon/0125-01-000-0.png differ diff --git a/Site/static/images/pokemon/0125_Electabuzz.png b/Site/static/images/pokemon/0125_Electabuzz.png deleted file mode 100644 index 713ffd6..0000000 Binary files a/Site/static/images/pokemon/0125_Electabuzz.png and /dev/null differ diff --git a/Site/static/images/pokemon/0126-01-000-0.png b/Site/static/images/pokemon/0126-01-000-0.png new file mode 100644 index 0000000..0cfc763 Binary files /dev/null and b/Site/static/images/pokemon/0126-01-000-0.png differ diff --git a/Site/static/images/pokemon/0126_Magmar.png b/Site/static/images/pokemon/0126_Magmar.png deleted file mode 100644 index 4aab3da..0000000 Binary files a/Site/static/images/pokemon/0126_Magmar.png and /dev/null differ diff --git a/Site/static/images/pokemon/0127-01-000-0.png b/Site/static/images/pokemon/0127-01-000-0.png new file mode 100644 index 0000000..cba7876 Binary files /dev/null and b/Site/static/images/pokemon/0127-01-000-0.png differ diff --git a/Site/static/images/pokemon/0127-01-001-0.png b/Site/static/images/pokemon/0127-01-001-0.png new file mode 100644 index 0000000..be40625 Binary files /dev/null and b/Site/static/images/pokemon/0127-01-001-0.png differ diff --git a/Site/static/images/pokemon/0127_Pinsir.png b/Site/static/images/pokemon/0127_Pinsir.png deleted file mode 100644 index a4c454f..0000000 Binary files a/Site/static/images/pokemon/0127_Pinsir.png and /dev/null differ diff --git a/Site/static/images/pokemon/0128-01-000-0.png b/Site/static/images/pokemon/0128-01-000-0.png new file mode 100644 index 0000000..2c0c24f Binary files /dev/null and b/Site/static/images/pokemon/0128-01-000-0.png differ diff --git a/Site/static/images/pokemon/0128-01-001-0.png b/Site/static/images/pokemon/0128-01-001-0.png new file mode 100644 index 0000000..ff08b6d Binary files /dev/null and b/Site/static/images/pokemon/0128-01-001-0.png differ diff --git a/Site/static/images/pokemon/0128-01-002-0.png b/Site/static/images/pokemon/0128-01-002-0.png new file mode 100644 index 0000000..900335c Binary files /dev/null and b/Site/static/images/pokemon/0128-01-002-0.png differ diff --git a/Site/static/images/pokemon/0128-01-003-0.png b/Site/static/images/pokemon/0128-01-003-0.png new file mode 100644 index 0000000..4ee198d Binary files /dev/null and b/Site/static/images/pokemon/0128-01-003-0.png differ diff --git a/Site/static/images/pokemon/0128_Tauros.png b/Site/static/images/pokemon/0128_Tauros.png deleted file mode 100644 index 55f234d..0000000 Binary files a/Site/static/images/pokemon/0128_Tauros.png and /dev/null differ diff --git a/Site/static/images/pokemon/0128_Tauros_(Aqua_Breed).png b/Site/static/images/pokemon/0128_Tauros_(Aqua_Breed).png deleted file mode 100644 index 3569b45..0000000 Binary files a/Site/static/images/pokemon/0128_Tauros_(Aqua_Breed).png and /dev/null differ diff --git a/Site/static/images/pokemon/0128_Tauros_(Blaze_Breed).png b/Site/static/images/pokemon/0128_Tauros_(Blaze_Breed).png deleted file mode 100644 index 1d0c9b3..0000000 Binary files a/Site/static/images/pokemon/0128_Tauros_(Blaze_Breed).png and /dev/null differ diff --git a/Site/static/images/pokemon/0128_Tauros_(Paldean_Form).png b/Site/static/images/pokemon/0128_Tauros_(Paldean_Form).png deleted file mode 100644 index 2b7c15d..0000000 Binary files a/Site/static/images/pokemon/0128_Tauros_(Paldean_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0129-01-000-1.png b/Site/static/images/pokemon/0129-01-000-1.png new file mode 100644 index 0000000..92979f9 Binary files /dev/null and b/Site/static/images/pokemon/0129-01-000-1.png differ diff --git a/Site/static/images/pokemon/0129-01-000-2.png b/Site/static/images/pokemon/0129-01-000-2.png new file mode 100644 index 0000000..1a9e2a9 Binary files /dev/null and b/Site/static/images/pokemon/0129-01-000-2.png differ diff --git a/Site/static/images/pokemon/0129_Magikarp.png b/Site/static/images/pokemon/0129_Magikarp.png deleted file mode 100644 index 1184ae7..0000000 Binary files a/Site/static/images/pokemon/0129_Magikarp.png and /dev/null differ diff --git a/Site/static/images/pokemon/0130-01-000-1.png b/Site/static/images/pokemon/0130-01-000-1.png new file mode 100644 index 0000000..849df16 Binary files /dev/null and b/Site/static/images/pokemon/0130-01-000-1.png differ diff --git a/Site/static/images/pokemon/0130-01-000-2.png b/Site/static/images/pokemon/0130-01-000-2.png new file mode 100644 index 0000000..5acb674 Binary files /dev/null and b/Site/static/images/pokemon/0130-01-000-2.png differ diff --git a/Site/static/images/pokemon/0130-01-001-0.png b/Site/static/images/pokemon/0130-01-001-0.png new file mode 100644 index 0000000..7ba499c Binary files /dev/null and b/Site/static/images/pokemon/0130-01-001-0.png differ diff --git a/Site/static/images/pokemon/0130_Gyarados.png b/Site/static/images/pokemon/0130_Gyarados.png deleted file mode 100644 index a694050..0000000 Binary files a/Site/static/images/pokemon/0130_Gyarados.png and /dev/null differ diff --git a/Site/static/images/pokemon/0131-01-000-0.png b/Site/static/images/pokemon/0131-01-000-0.png new file mode 100644 index 0000000..9d0d1b9 Binary files /dev/null and b/Site/static/images/pokemon/0131-01-000-0.png differ diff --git a/Site/static/images/pokemon/0131-01-001-0.png b/Site/static/images/pokemon/0131-01-001-0.png new file mode 100644 index 0000000..b3d1baa Binary files /dev/null and b/Site/static/images/pokemon/0131-01-001-0.png differ diff --git a/Site/static/images/pokemon/0131_Lapras.png b/Site/static/images/pokemon/0131_Lapras.png deleted file mode 100644 index 9da142d..0000000 Binary files a/Site/static/images/pokemon/0131_Lapras.png and /dev/null differ diff --git a/Site/static/images/pokemon/0132-01-000-0.png b/Site/static/images/pokemon/0132-01-000-0.png new file mode 100644 index 0000000..17aa527 Binary files /dev/null and b/Site/static/images/pokemon/0132-01-000-0.png differ diff --git a/Site/static/images/pokemon/0132_Ditto.png b/Site/static/images/pokemon/0132_Ditto.png deleted file mode 100644 index f47a9e8..0000000 Binary files a/Site/static/images/pokemon/0132_Ditto.png and /dev/null differ diff --git a/Site/static/images/pokemon/0133-01-000-1.png b/Site/static/images/pokemon/0133-01-000-1.png new file mode 100644 index 0000000..b4ff156 Binary files /dev/null and b/Site/static/images/pokemon/0133-01-000-1.png differ diff --git a/Site/static/images/pokemon/0133-01-000-2.png b/Site/static/images/pokemon/0133-01-000-2.png new file mode 100644 index 0000000..14807aa Binary files /dev/null and b/Site/static/images/pokemon/0133-01-000-2.png differ diff --git a/Site/static/images/pokemon/0133-01-001-0.png b/Site/static/images/pokemon/0133-01-001-0.png new file mode 100644 index 0000000..3d41b19 Binary files /dev/null and b/Site/static/images/pokemon/0133-01-001-0.png differ diff --git a/Site/static/images/pokemon/0133_Eevee.png b/Site/static/images/pokemon/0133_Eevee.png deleted file mode 100644 index 0c809fa..0000000 Binary files a/Site/static/images/pokemon/0133_Eevee.png and /dev/null differ diff --git a/Site/static/images/pokemon/0134-01-000-0.png b/Site/static/images/pokemon/0134-01-000-0.png new file mode 100644 index 0000000..9f62f52 Binary files /dev/null and b/Site/static/images/pokemon/0134-01-000-0.png differ diff --git a/Site/static/images/pokemon/0134_Vaporeon.png b/Site/static/images/pokemon/0134_Vaporeon.png deleted file mode 100644 index 7ee4d80..0000000 Binary files a/Site/static/images/pokemon/0134_Vaporeon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0135-01-000-0.png b/Site/static/images/pokemon/0135-01-000-0.png new file mode 100644 index 0000000..8c479d9 Binary files /dev/null and b/Site/static/images/pokemon/0135-01-000-0.png differ diff --git a/Site/static/images/pokemon/0135_Jolteon.png b/Site/static/images/pokemon/0135_Jolteon.png deleted file mode 100644 index a930708..0000000 Binary files a/Site/static/images/pokemon/0135_Jolteon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0136-01-000-0.png b/Site/static/images/pokemon/0136-01-000-0.png new file mode 100644 index 0000000..b930c09 Binary files /dev/null and b/Site/static/images/pokemon/0136-01-000-0.png differ diff --git a/Site/static/images/pokemon/0136_Flareon.png b/Site/static/images/pokemon/0136_Flareon.png deleted file mode 100644 index 5e6f31e..0000000 Binary files a/Site/static/images/pokemon/0136_Flareon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0137-01-000-0.png b/Site/static/images/pokemon/0137-01-000-0.png new file mode 100644 index 0000000..457ce75 Binary files /dev/null and b/Site/static/images/pokemon/0137-01-000-0.png differ diff --git a/Site/static/images/pokemon/0137_Porygon.png b/Site/static/images/pokemon/0137_Porygon.png deleted file mode 100644 index a0b94d0..0000000 Binary files a/Site/static/images/pokemon/0137_Porygon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0138-01-000-0.png b/Site/static/images/pokemon/0138-01-000-0.png new file mode 100644 index 0000000..0e02ba7 Binary files /dev/null and b/Site/static/images/pokemon/0138-01-000-0.png differ diff --git a/Site/static/images/pokemon/0138_Omanyte.png b/Site/static/images/pokemon/0138_Omanyte.png deleted file mode 100644 index f4c054f..0000000 Binary files a/Site/static/images/pokemon/0138_Omanyte.png and /dev/null differ diff --git a/Site/static/images/pokemon/0139-01-000-0.png b/Site/static/images/pokemon/0139-01-000-0.png new file mode 100644 index 0000000..74ba14a Binary files /dev/null and b/Site/static/images/pokemon/0139-01-000-0.png differ diff --git a/Site/static/images/pokemon/0139_Omastar.png b/Site/static/images/pokemon/0139_Omastar.png deleted file mode 100644 index c22cbe6..0000000 Binary files a/Site/static/images/pokemon/0139_Omastar.png and /dev/null differ diff --git a/Site/static/images/pokemon/0140-01-000-0.png b/Site/static/images/pokemon/0140-01-000-0.png new file mode 100644 index 0000000..be5b18a Binary files /dev/null and b/Site/static/images/pokemon/0140-01-000-0.png differ diff --git a/Site/static/images/pokemon/0140_Kabuto.png b/Site/static/images/pokemon/0140_Kabuto.png deleted file mode 100644 index 400309b..0000000 Binary files a/Site/static/images/pokemon/0140_Kabuto.png and /dev/null differ diff --git a/Site/static/images/pokemon/0141-01-000-0.png b/Site/static/images/pokemon/0141-01-000-0.png new file mode 100644 index 0000000..1901553 Binary files /dev/null and b/Site/static/images/pokemon/0141-01-000-0.png differ diff --git a/Site/static/images/pokemon/0141_Kabutops.png b/Site/static/images/pokemon/0141_Kabutops.png deleted file mode 100644 index 19b8107..0000000 Binary files a/Site/static/images/pokemon/0141_Kabutops.png and /dev/null differ diff --git a/Site/static/images/pokemon/0142-01-000-0.png b/Site/static/images/pokemon/0142-01-000-0.png new file mode 100644 index 0000000..3f5c836 Binary files /dev/null and b/Site/static/images/pokemon/0142-01-000-0.png differ diff --git a/Site/static/images/pokemon/0142-01-001-0.png b/Site/static/images/pokemon/0142-01-001-0.png new file mode 100644 index 0000000..30e9cb8 Binary files /dev/null and b/Site/static/images/pokemon/0142-01-001-0.png differ diff --git a/Site/static/images/pokemon/0142_Aerodactyl.png b/Site/static/images/pokemon/0142_Aerodactyl.png deleted file mode 100644 index 54ad709..0000000 Binary files a/Site/static/images/pokemon/0142_Aerodactyl.png and /dev/null differ diff --git a/Site/static/images/pokemon/0143-01-000-0.png b/Site/static/images/pokemon/0143-01-000-0.png new file mode 100644 index 0000000..fa3cc5f Binary files /dev/null and b/Site/static/images/pokemon/0143-01-000-0.png differ diff --git a/Site/static/images/pokemon/0143-01-001-0.png b/Site/static/images/pokemon/0143-01-001-0.png new file mode 100644 index 0000000..69f6860 Binary files /dev/null and b/Site/static/images/pokemon/0143-01-001-0.png differ diff --git a/Site/static/images/pokemon/0143_Snorlax.png b/Site/static/images/pokemon/0143_Snorlax.png deleted file mode 100644 index 9d6842f..0000000 Binary files a/Site/static/images/pokemon/0143_Snorlax.png and /dev/null differ diff --git a/Site/static/images/pokemon/0144-01-000-0.png b/Site/static/images/pokemon/0144-01-000-0.png new file mode 100644 index 0000000..6c1f2f5 Binary files /dev/null and b/Site/static/images/pokemon/0144-01-000-0.png differ diff --git a/Site/static/images/pokemon/0144-01-001-0.png b/Site/static/images/pokemon/0144-01-001-0.png new file mode 100644 index 0000000..2f0b39b Binary files /dev/null and b/Site/static/images/pokemon/0144-01-001-0.png differ diff --git a/Site/static/images/pokemon/0144_Articuno.png b/Site/static/images/pokemon/0144_Articuno.png deleted file mode 100644 index ebcf9d0..0000000 Binary files a/Site/static/images/pokemon/0144_Articuno.png and /dev/null differ diff --git a/Site/static/images/pokemon/0144_Articuno_(Galarian_Form).png b/Site/static/images/pokemon/0144_Articuno_(Galarian_Form).png deleted file mode 100644 index 01397f3..0000000 Binary files a/Site/static/images/pokemon/0144_Articuno_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0145-01-000-0.png b/Site/static/images/pokemon/0145-01-000-0.png new file mode 100644 index 0000000..7abface Binary files /dev/null and b/Site/static/images/pokemon/0145-01-000-0.png differ diff --git a/Site/static/images/pokemon/0145-01-001-0.png b/Site/static/images/pokemon/0145-01-001-0.png new file mode 100644 index 0000000..7a2c2fc Binary files /dev/null and b/Site/static/images/pokemon/0145-01-001-0.png differ diff --git a/Site/static/images/pokemon/0145_Zapdos.png b/Site/static/images/pokemon/0145_Zapdos.png deleted file mode 100644 index f10bcf9..0000000 Binary files a/Site/static/images/pokemon/0145_Zapdos.png and /dev/null differ diff --git a/Site/static/images/pokemon/0145_Zapdos_(Galarian_Form).png b/Site/static/images/pokemon/0145_Zapdos_(Galarian_Form).png deleted file mode 100644 index 8ebe0b0..0000000 Binary files a/Site/static/images/pokemon/0145_Zapdos_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0146-01-000-0.png b/Site/static/images/pokemon/0146-01-000-0.png new file mode 100644 index 0000000..8ab7bd7 Binary files /dev/null and b/Site/static/images/pokemon/0146-01-000-0.png differ diff --git a/Site/static/images/pokemon/0146-01-001-0.png b/Site/static/images/pokemon/0146-01-001-0.png new file mode 100644 index 0000000..77c155f Binary files /dev/null and b/Site/static/images/pokemon/0146-01-001-0.png differ diff --git a/Site/static/images/pokemon/0146_Moltres.png b/Site/static/images/pokemon/0146_Moltres.png deleted file mode 100644 index 6198f5c..0000000 Binary files a/Site/static/images/pokemon/0146_Moltres.png and /dev/null differ diff --git a/Site/static/images/pokemon/0146_Moltres_(Galarian_Form).png b/Site/static/images/pokemon/0146_Moltres_(Galarian_Form).png deleted file mode 100644 index aac7fe5..0000000 Binary files a/Site/static/images/pokemon/0146_Moltres_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0147-01-000-0.png b/Site/static/images/pokemon/0147-01-000-0.png new file mode 100644 index 0000000..25e2572 Binary files /dev/null and b/Site/static/images/pokemon/0147-01-000-0.png differ diff --git a/Site/static/images/pokemon/0147_Dratini.png b/Site/static/images/pokemon/0147_Dratini.png deleted file mode 100644 index b2734f9..0000000 Binary files a/Site/static/images/pokemon/0147_Dratini.png and /dev/null differ diff --git a/Site/static/images/pokemon/0148-01-000-0.png b/Site/static/images/pokemon/0148-01-000-0.png new file mode 100644 index 0000000..cd8d18c Binary files /dev/null and b/Site/static/images/pokemon/0148-01-000-0.png differ diff --git a/Site/static/images/pokemon/0148_Dragonair.png b/Site/static/images/pokemon/0148_Dragonair.png deleted file mode 100644 index 596cbba..0000000 Binary files a/Site/static/images/pokemon/0148_Dragonair.png and /dev/null differ diff --git a/Site/static/images/pokemon/0149-01-000-0.png b/Site/static/images/pokemon/0149-01-000-0.png new file mode 100644 index 0000000..7be4d19 Binary files /dev/null and b/Site/static/images/pokemon/0149-01-000-0.png differ diff --git a/Site/static/images/pokemon/0149_Dragonite.png b/Site/static/images/pokemon/0149_Dragonite.png deleted file mode 100644 index efe3b3f..0000000 Binary files a/Site/static/images/pokemon/0149_Dragonite.png and /dev/null differ diff --git a/Site/static/images/pokemon/0150-01-000-0.png b/Site/static/images/pokemon/0150-01-000-0.png new file mode 100644 index 0000000..8632117 Binary files /dev/null and b/Site/static/images/pokemon/0150-01-000-0.png differ diff --git a/Site/static/images/pokemon/0150-01-001-0.png b/Site/static/images/pokemon/0150-01-001-0.png new file mode 100644 index 0000000..fdf11c9 Binary files /dev/null and b/Site/static/images/pokemon/0150-01-001-0.png differ diff --git a/Site/static/images/pokemon/0150-01-002-0.png b/Site/static/images/pokemon/0150-01-002-0.png new file mode 100644 index 0000000..2d5bbde Binary files /dev/null and b/Site/static/images/pokemon/0150-01-002-0.png differ diff --git a/Site/static/images/pokemon/0150_Mewtwo.png b/Site/static/images/pokemon/0150_Mewtwo.png deleted file mode 100644 index 889ab51..0000000 Binary files a/Site/static/images/pokemon/0150_Mewtwo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0151-01-000-0.png b/Site/static/images/pokemon/0151-01-000-0.png new file mode 100644 index 0000000..f75c68f Binary files /dev/null and b/Site/static/images/pokemon/0151-01-000-0.png differ diff --git a/Site/static/images/pokemon/0151_Mew.png b/Site/static/images/pokemon/0151_Mew.png deleted file mode 100644 index 19f59a7..0000000 Binary files a/Site/static/images/pokemon/0151_Mew.png and /dev/null differ diff --git a/Site/static/images/pokemon/0152-02-000-0.png b/Site/static/images/pokemon/0152-02-000-0.png new file mode 100644 index 0000000..ccf8c1b Binary files /dev/null and b/Site/static/images/pokemon/0152-02-000-0.png differ diff --git a/Site/static/images/pokemon/0152_Chikorita.png b/Site/static/images/pokemon/0152_Chikorita.png deleted file mode 100644 index a54963a..0000000 Binary files a/Site/static/images/pokemon/0152_Chikorita.png and /dev/null differ diff --git a/Site/static/images/pokemon/0153-02-000-0.png b/Site/static/images/pokemon/0153-02-000-0.png new file mode 100644 index 0000000..ae4da44 Binary files /dev/null and b/Site/static/images/pokemon/0153-02-000-0.png differ diff --git a/Site/static/images/pokemon/0153_Bayleef.png b/Site/static/images/pokemon/0153_Bayleef.png deleted file mode 100644 index a189729..0000000 Binary files a/Site/static/images/pokemon/0153_Bayleef.png and /dev/null differ diff --git a/Site/static/images/pokemon/0154-02-000-1.png b/Site/static/images/pokemon/0154-02-000-1.png new file mode 100644 index 0000000..939993d Binary files /dev/null and b/Site/static/images/pokemon/0154-02-000-1.png differ diff --git a/Site/static/images/pokemon/0154-02-000-2.png b/Site/static/images/pokemon/0154-02-000-2.png new file mode 100644 index 0000000..22d8f20 Binary files /dev/null and b/Site/static/images/pokemon/0154-02-000-2.png differ diff --git a/Site/static/images/pokemon/0154_Meganium.png b/Site/static/images/pokemon/0154_Meganium.png deleted file mode 100644 index 2359aeb..0000000 Binary files a/Site/static/images/pokemon/0154_Meganium.png and /dev/null differ diff --git a/Site/static/images/pokemon/0155-02-000-0.png b/Site/static/images/pokemon/0155-02-000-0.png new file mode 100644 index 0000000..a44181d Binary files /dev/null and b/Site/static/images/pokemon/0155-02-000-0.png differ diff --git a/Site/static/images/pokemon/0155_Cyndaquil.png b/Site/static/images/pokemon/0155_Cyndaquil.png deleted file mode 100644 index 44786f6..0000000 Binary files a/Site/static/images/pokemon/0155_Cyndaquil.png and /dev/null differ diff --git a/Site/static/images/pokemon/0156-02-000-0.png b/Site/static/images/pokemon/0156-02-000-0.png new file mode 100644 index 0000000..e920beb Binary files /dev/null and b/Site/static/images/pokemon/0156-02-000-0.png differ diff --git a/Site/static/images/pokemon/0156_Quilava.png b/Site/static/images/pokemon/0156_Quilava.png deleted file mode 100644 index c384e3a..0000000 Binary files a/Site/static/images/pokemon/0156_Quilava.png and /dev/null differ diff --git a/Site/static/images/pokemon/0157-02-000-0.png b/Site/static/images/pokemon/0157-02-000-0.png new file mode 100644 index 0000000..ed2dd60 Binary files /dev/null and b/Site/static/images/pokemon/0157-02-000-0.png differ diff --git a/Site/static/images/pokemon/0157-02-001-0.png b/Site/static/images/pokemon/0157-02-001-0.png new file mode 100644 index 0000000..5cf3ac5 Binary files /dev/null and b/Site/static/images/pokemon/0157-02-001-0.png differ diff --git a/Site/static/images/pokemon/0157_Typhlosion.png b/Site/static/images/pokemon/0157_Typhlosion.png deleted file mode 100644 index b77bf0c..0000000 Binary files a/Site/static/images/pokemon/0157_Typhlosion.png and /dev/null differ diff --git a/Site/static/images/pokemon/0157_Typhlosion_(Hisuian_Form).png b/Site/static/images/pokemon/0157_Typhlosion_(Hisuian_Form).png deleted file mode 100644 index 299d3e9..0000000 Binary files a/Site/static/images/pokemon/0157_Typhlosion_(Hisuian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0158-02-000-0.png b/Site/static/images/pokemon/0158-02-000-0.png new file mode 100644 index 0000000..b7bbe81 Binary files /dev/null and b/Site/static/images/pokemon/0158-02-000-0.png differ diff --git a/Site/static/images/pokemon/0158_Totodile.png b/Site/static/images/pokemon/0158_Totodile.png deleted file mode 100644 index 2d705a3..0000000 Binary files a/Site/static/images/pokemon/0158_Totodile.png and /dev/null differ diff --git a/Site/static/images/pokemon/0159-02-000-0.png b/Site/static/images/pokemon/0159-02-000-0.png new file mode 100644 index 0000000..ccef177 Binary files /dev/null and b/Site/static/images/pokemon/0159-02-000-0.png differ diff --git a/Site/static/images/pokemon/0159_Croconaw.png b/Site/static/images/pokemon/0159_Croconaw.png deleted file mode 100644 index 765b228..0000000 Binary files a/Site/static/images/pokemon/0159_Croconaw.png and /dev/null differ diff --git a/Site/static/images/pokemon/0160-02-000-0.png b/Site/static/images/pokemon/0160-02-000-0.png new file mode 100644 index 0000000..4d7cb3a Binary files /dev/null and b/Site/static/images/pokemon/0160-02-000-0.png differ diff --git a/Site/static/images/pokemon/0160_Feraligatr.png b/Site/static/images/pokemon/0160_Feraligatr.png deleted file mode 100644 index e769a65..0000000 Binary files a/Site/static/images/pokemon/0160_Feraligatr.png and /dev/null differ diff --git a/Site/static/images/pokemon/0161-02-000-0.png b/Site/static/images/pokemon/0161-02-000-0.png new file mode 100644 index 0000000..3f6ca2b Binary files /dev/null and b/Site/static/images/pokemon/0161-02-000-0.png differ diff --git a/Site/static/images/pokemon/0161_Sentret.png b/Site/static/images/pokemon/0161_Sentret.png deleted file mode 100644 index f272cf5..0000000 Binary files a/Site/static/images/pokemon/0161_Sentret.png and /dev/null differ diff --git a/Site/static/images/pokemon/0162-02-000-0.png b/Site/static/images/pokemon/0162-02-000-0.png new file mode 100644 index 0000000..9993101 Binary files /dev/null and b/Site/static/images/pokemon/0162-02-000-0.png differ diff --git a/Site/static/images/pokemon/0162_Furret.png b/Site/static/images/pokemon/0162_Furret.png deleted file mode 100644 index 80bc2cd..0000000 Binary files a/Site/static/images/pokemon/0162_Furret.png and /dev/null differ diff --git a/Site/static/images/pokemon/0163-02-000-0.png b/Site/static/images/pokemon/0163-02-000-0.png new file mode 100644 index 0000000..b9e6ee5 Binary files /dev/null and b/Site/static/images/pokemon/0163-02-000-0.png differ diff --git a/Site/static/images/pokemon/0163_Hoothoot.png b/Site/static/images/pokemon/0163_Hoothoot.png deleted file mode 100644 index cb6d959..0000000 Binary files a/Site/static/images/pokemon/0163_Hoothoot.png and /dev/null differ diff --git a/Site/static/images/pokemon/0164-02-000-0.png b/Site/static/images/pokemon/0164-02-000-0.png new file mode 100644 index 0000000..95ade7c Binary files /dev/null and b/Site/static/images/pokemon/0164-02-000-0.png differ diff --git a/Site/static/images/pokemon/0164_Noctowl.png b/Site/static/images/pokemon/0164_Noctowl.png deleted file mode 100644 index 8f3922a..0000000 Binary files a/Site/static/images/pokemon/0164_Noctowl.png and /dev/null differ diff --git a/Site/static/images/pokemon/0165-02-000-1.png b/Site/static/images/pokemon/0165-02-000-1.png new file mode 100644 index 0000000..7050384 Binary files /dev/null and b/Site/static/images/pokemon/0165-02-000-1.png differ diff --git a/Site/static/images/pokemon/0165-02-000-2.png b/Site/static/images/pokemon/0165-02-000-2.png new file mode 100644 index 0000000..4a98fa5 Binary files /dev/null and b/Site/static/images/pokemon/0165-02-000-2.png differ diff --git a/Site/static/images/pokemon/0165_Ledyba.png b/Site/static/images/pokemon/0165_Ledyba.png deleted file mode 100644 index 5a73db4..0000000 Binary files a/Site/static/images/pokemon/0165_Ledyba.png and /dev/null differ diff --git a/Site/static/images/pokemon/0166-02-000-1.png b/Site/static/images/pokemon/0166-02-000-1.png new file mode 100644 index 0000000..60e541b Binary files /dev/null and b/Site/static/images/pokemon/0166-02-000-1.png differ diff --git a/Site/static/images/pokemon/0166-02-000-2.png b/Site/static/images/pokemon/0166-02-000-2.png new file mode 100644 index 0000000..c61a2f7 Binary files /dev/null and b/Site/static/images/pokemon/0166-02-000-2.png differ diff --git a/Site/static/images/pokemon/0166_Ledian.png b/Site/static/images/pokemon/0166_Ledian.png deleted file mode 100644 index 7011298..0000000 Binary files a/Site/static/images/pokemon/0166_Ledian.png and /dev/null differ diff --git a/Site/static/images/pokemon/0167-02-000-0.png b/Site/static/images/pokemon/0167-02-000-0.png new file mode 100644 index 0000000..6b02eab Binary files /dev/null and b/Site/static/images/pokemon/0167-02-000-0.png differ diff --git a/Site/static/images/pokemon/0167_Spinarak.png b/Site/static/images/pokemon/0167_Spinarak.png deleted file mode 100644 index 5adf094..0000000 Binary files a/Site/static/images/pokemon/0167_Spinarak.png and /dev/null differ diff --git a/Site/static/images/pokemon/0168-02-000-0.png b/Site/static/images/pokemon/0168-02-000-0.png new file mode 100644 index 0000000..3f900e7 Binary files /dev/null and b/Site/static/images/pokemon/0168-02-000-0.png differ diff --git a/Site/static/images/pokemon/0168_Ariados.png b/Site/static/images/pokemon/0168_Ariados.png deleted file mode 100644 index c5b344f..0000000 Binary files a/Site/static/images/pokemon/0168_Ariados.png and /dev/null differ diff --git a/Site/static/images/pokemon/0169-02-000-0.png b/Site/static/images/pokemon/0169-02-000-0.png new file mode 100644 index 0000000..3352b37 Binary files /dev/null and b/Site/static/images/pokemon/0169-02-000-0.png differ diff --git a/Site/static/images/pokemon/0169_Crobat.png b/Site/static/images/pokemon/0169_Crobat.png deleted file mode 100644 index 73cf7ec..0000000 Binary files a/Site/static/images/pokemon/0169_Crobat.png and /dev/null differ diff --git a/Site/static/images/pokemon/0170-02-000-0.png b/Site/static/images/pokemon/0170-02-000-0.png new file mode 100644 index 0000000..7df34e9 Binary files /dev/null and b/Site/static/images/pokemon/0170-02-000-0.png differ diff --git a/Site/static/images/pokemon/0170_Chinchou.png b/Site/static/images/pokemon/0170_Chinchou.png deleted file mode 100644 index 973372e..0000000 Binary files a/Site/static/images/pokemon/0170_Chinchou.png and /dev/null differ diff --git a/Site/static/images/pokemon/0171-02-000-0.png b/Site/static/images/pokemon/0171-02-000-0.png new file mode 100644 index 0000000..9b2e1c6 Binary files /dev/null and b/Site/static/images/pokemon/0171-02-000-0.png differ diff --git a/Site/static/images/pokemon/0171_Lanturn.png b/Site/static/images/pokemon/0171_Lanturn.png deleted file mode 100644 index e76dd45..0000000 Binary files a/Site/static/images/pokemon/0171_Lanturn.png and /dev/null differ diff --git a/Site/static/images/pokemon/0172-02-000-0.png b/Site/static/images/pokemon/0172-02-000-0.png new file mode 100644 index 0000000..89a9d06 Binary files /dev/null and b/Site/static/images/pokemon/0172-02-000-0.png differ diff --git a/Site/static/images/pokemon/0172_Pichu.png b/Site/static/images/pokemon/0172_Pichu.png deleted file mode 100644 index f6932db..0000000 Binary files a/Site/static/images/pokemon/0172_Pichu.png and /dev/null differ diff --git a/Site/static/images/pokemon/0173-02-000-0.png b/Site/static/images/pokemon/0173-02-000-0.png new file mode 100644 index 0000000..1aef575 Binary files /dev/null and b/Site/static/images/pokemon/0173-02-000-0.png differ diff --git a/Site/static/images/pokemon/0173_Cleffa.png b/Site/static/images/pokemon/0173_Cleffa.png deleted file mode 100644 index f24fbe8..0000000 Binary files a/Site/static/images/pokemon/0173_Cleffa.png and /dev/null differ diff --git a/Site/static/images/pokemon/0174-02-000-0.png b/Site/static/images/pokemon/0174-02-000-0.png new file mode 100644 index 0000000..2ca6b54 Binary files /dev/null and b/Site/static/images/pokemon/0174-02-000-0.png differ diff --git a/Site/static/images/pokemon/0174_Igglybuff.png b/Site/static/images/pokemon/0174_Igglybuff.png deleted file mode 100644 index d642363..0000000 Binary files a/Site/static/images/pokemon/0174_Igglybuff.png and /dev/null differ diff --git a/Site/static/images/pokemon/0175-02-000-0.png b/Site/static/images/pokemon/0175-02-000-0.png new file mode 100644 index 0000000..3d40b12 Binary files /dev/null and b/Site/static/images/pokemon/0175-02-000-0.png differ diff --git a/Site/static/images/pokemon/0175_Togepi.png b/Site/static/images/pokemon/0175_Togepi.png deleted file mode 100644 index 2645146..0000000 Binary files a/Site/static/images/pokemon/0175_Togepi.png and /dev/null differ diff --git a/Site/static/images/pokemon/0176-02-000-0.png b/Site/static/images/pokemon/0176-02-000-0.png new file mode 100644 index 0000000..cadcb0b Binary files /dev/null and b/Site/static/images/pokemon/0176-02-000-0.png differ diff --git a/Site/static/images/pokemon/0176_Togetic.png b/Site/static/images/pokemon/0176_Togetic.png deleted file mode 100644 index ea7b2de..0000000 Binary files a/Site/static/images/pokemon/0176_Togetic.png and /dev/null differ diff --git a/Site/static/images/pokemon/0177-02-000-0.png b/Site/static/images/pokemon/0177-02-000-0.png new file mode 100644 index 0000000..bacc5d0 Binary files /dev/null and b/Site/static/images/pokemon/0177-02-000-0.png differ diff --git a/Site/static/images/pokemon/0177_Natu.png b/Site/static/images/pokemon/0177_Natu.png deleted file mode 100644 index 295dce2..0000000 Binary files a/Site/static/images/pokemon/0177_Natu.png and /dev/null differ diff --git a/Site/static/images/pokemon/0178-02-000-1.png b/Site/static/images/pokemon/0178-02-000-1.png new file mode 100644 index 0000000..53c205f Binary files /dev/null and b/Site/static/images/pokemon/0178-02-000-1.png differ diff --git a/Site/static/images/pokemon/0178-02-000-2.png b/Site/static/images/pokemon/0178-02-000-2.png new file mode 100644 index 0000000..b8e616f Binary files /dev/null and b/Site/static/images/pokemon/0178-02-000-2.png differ diff --git a/Site/static/images/pokemon/0178_Xatu.png b/Site/static/images/pokemon/0178_Xatu.png deleted file mode 100644 index c879ecf..0000000 Binary files a/Site/static/images/pokemon/0178_Xatu.png and /dev/null differ diff --git a/Site/static/images/pokemon/0179-02-000-0.png b/Site/static/images/pokemon/0179-02-000-0.png new file mode 100644 index 0000000..49ab88a Binary files /dev/null and b/Site/static/images/pokemon/0179-02-000-0.png differ diff --git a/Site/static/images/pokemon/0179_Mareep.png b/Site/static/images/pokemon/0179_Mareep.png deleted file mode 100644 index 8e3944b..0000000 Binary files a/Site/static/images/pokemon/0179_Mareep.png and /dev/null differ diff --git a/Site/static/images/pokemon/0180-02-000-0.png b/Site/static/images/pokemon/0180-02-000-0.png new file mode 100644 index 0000000..d768edc Binary files /dev/null and b/Site/static/images/pokemon/0180-02-000-0.png differ diff --git a/Site/static/images/pokemon/0180_Flaaffy.png b/Site/static/images/pokemon/0180_Flaaffy.png deleted file mode 100644 index c0ee52a..0000000 Binary files a/Site/static/images/pokemon/0180_Flaaffy.png and /dev/null differ diff --git a/Site/static/images/pokemon/0181-02-000-0.png b/Site/static/images/pokemon/0181-02-000-0.png new file mode 100644 index 0000000..e2b3856 Binary files /dev/null and b/Site/static/images/pokemon/0181-02-000-0.png differ diff --git a/Site/static/images/pokemon/0181-02-001-0.png b/Site/static/images/pokemon/0181-02-001-0.png new file mode 100644 index 0000000..21334d6 Binary files /dev/null and b/Site/static/images/pokemon/0181-02-001-0.png differ diff --git a/Site/static/images/pokemon/0181_Ampharos.png b/Site/static/images/pokemon/0181_Ampharos.png deleted file mode 100644 index 3b654bb..0000000 Binary files a/Site/static/images/pokemon/0181_Ampharos.png and /dev/null differ diff --git a/Site/static/images/pokemon/0182-02-000-0.png b/Site/static/images/pokemon/0182-02-000-0.png new file mode 100644 index 0000000..757d8fd Binary files /dev/null and b/Site/static/images/pokemon/0182-02-000-0.png differ diff --git a/Site/static/images/pokemon/0182_Bellossom.png b/Site/static/images/pokemon/0182_Bellossom.png deleted file mode 100644 index c47034e..0000000 Binary files a/Site/static/images/pokemon/0182_Bellossom.png and /dev/null differ diff --git a/Site/static/images/pokemon/0183-02-000-0.png b/Site/static/images/pokemon/0183-02-000-0.png new file mode 100644 index 0000000..3be8db7 Binary files /dev/null and b/Site/static/images/pokemon/0183-02-000-0.png differ diff --git a/Site/static/images/pokemon/0183_Marill.png b/Site/static/images/pokemon/0183_Marill.png deleted file mode 100644 index 7035585..0000000 Binary files a/Site/static/images/pokemon/0183_Marill.png and /dev/null differ diff --git a/Site/static/images/pokemon/0184-02-000-0.png b/Site/static/images/pokemon/0184-02-000-0.png new file mode 100644 index 0000000..63a7d1c Binary files /dev/null and b/Site/static/images/pokemon/0184-02-000-0.png differ diff --git a/Site/static/images/pokemon/0184_Azumarill.png b/Site/static/images/pokemon/0184_Azumarill.png deleted file mode 100644 index 1a5378a..0000000 Binary files a/Site/static/images/pokemon/0184_Azumarill.png and /dev/null differ diff --git a/Site/static/images/pokemon/0185-02-000-1.png b/Site/static/images/pokemon/0185-02-000-1.png new file mode 100644 index 0000000..a2414ab Binary files /dev/null and b/Site/static/images/pokemon/0185-02-000-1.png differ diff --git a/Site/static/images/pokemon/0185-02-000-2.png b/Site/static/images/pokemon/0185-02-000-2.png new file mode 100644 index 0000000..704014a Binary files /dev/null and b/Site/static/images/pokemon/0185-02-000-2.png differ diff --git a/Site/static/images/pokemon/0185_Sudowoodo.png b/Site/static/images/pokemon/0185_Sudowoodo.png deleted file mode 100644 index 8136b15..0000000 Binary files a/Site/static/images/pokemon/0185_Sudowoodo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0186-02-000-1.png b/Site/static/images/pokemon/0186-02-000-1.png new file mode 100644 index 0000000..3f7cac5 Binary files /dev/null and b/Site/static/images/pokemon/0186-02-000-1.png differ diff --git a/Site/static/images/pokemon/0186-02-000-2.png b/Site/static/images/pokemon/0186-02-000-2.png new file mode 100644 index 0000000..8e2a6ca Binary files /dev/null and b/Site/static/images/pokemon/0186-02-000-2.png differ diff --git a/Site/static/images/pokemon/0186_Politoed.png b/Site/static/images/pokemon/0186_Politoed.png deleted file mode 100644 index fac4c46..0000000 Binary files a/Site/static/images/pokemon/0186_Politoed.png and /dev/null differ diff --git a/Site/static/images/pokemon/0187-02-000-0.png b/Site/static/images/pokemon/0187-02-000-0.png new file mode 100644 index 0000000..bb23dba Binary files /dev/null and b/Site/static/images/pokemon/0187-02-000-0.png differ diff --git a/Site/static/images/pokemon/0187_Hoppip.png b/Site/static/images/pokemon/0187_Hoppip.png deleted file mode 100644 index d071512..0000000 Binary files a/Site/static/images/pokemon/0187_Hoppip.png and /dev/null differ diff --git a/Site/static/images/pokemon/0188-02-000-0.png b/Site/static/images/pokemon/0188-02-000-0.png new file mode 100644 index 0000000..cfd7c15 Binary files /dev/null and b/Site/static/images/pokemon/0188-02-000-0.png differ diff --git a/Site/static/images/pokemon/0188_Skiploom.png b/Site/static/images/pokemon/0188_Skiploom.png deleted file mode 100644 index df7ed38..0000000 Binary files a/Site/static/images/pokemon/0188_Skiploom.png and /dev/null differ diff --git a/Site/static/images/pokemon/0189-02-000-0.png b/Site/static/images/pokemon/0189-02-000-0.png new file mode 100644 index 0000000..69f68cf Binary files /dev/null and b/Site/static/images/pokemon/0189-02-000-0.png differ diff --git a/Site/static/images/pokemon/0189_Jumpluff.png b/Site/static/images/pokemon/0189_Jumpluff.png deleted file mode 100644 index d1bbcd0..0000000 Binary files a/Site/static/images/pokemon/0189_Jumpluff.png and /dev/null differ diff --git a/Site/static/images/pokemon/0190-02-000-1.png b/Site/static/images/pokemon/0190-02-000-1.png new file mode 100644 index 0000000..c6fb0e8 Binary files /dev/null and b/Site/static/images/pokemon/0190-02-000-1.png differ diff --git a/Site/static/images/pokemon/0190-02-000-2.png b/Site/static/images/pokemon/0190-02-000-2.png new file mode 100644 index 0000000..da4d9d3 Binary files /dev/null and b/Site/static/images/pokemon/0190-02-000-2.png differ diff --git a/Site/static/images/pokemon/0190_Aipom.png b/Site/static/images/pokemon/0190_Aipom.png deleted file mode 100644 index 81c3a53..0000000 Binary files a/Site/static/images/pokemon/0190_Aipom.png and /dev/null differ diff --git a/Site/static/images/pokemon/0191-02-000-0.png b/Site/static/images/pokemon/0191-02-000-0.png new file mode 100644 index 0000000..6624489 Binary files /dev/null and b/Site/static/images/pokemon/0191-02-000-0.png differ diff --git a/Site/static/images/pokemon/0191_Sunkern.png b/Site/static/images/pokemon/0191_Sunkern.png deleted file mode 100644 index 8661aad..0000000 Binary files a/Site/static/images/pokemon/0191_Sunkern.png and /dev/null differ diff --git a/Site/static/images/pokemon/0192-02-000-0.png b/Site/static/images/pokemon/0192-02-000-0.png new file mode 100644 index 0000000..0aecd1b Binary files /dev/null and b/Site/static/images/pokemon/0192-02-000-0.png differ diff --git a/Site/static/images/pokemon/0192_Sunflora.png b/Site/static/images/pokemon/0192_Sunflora.png deleted file mode 100644 index b8abb20..0000000 Binary files a/Site/static/images/pokemon/0192_Sunflora.png and /dev/null differ diff --git a/Site/static/images/pokemon/0193-02-000-0.png b/Site/static/images/pokemon/0193-02-000-0.png new file mode 100644 index 0000000..d8c2256 Binary files /dev/null and b/Site/static/images/pokemon/0193-02-000-0.png differ diff --git a/Site/static/images/pokemon/0193_Yanma.png b/Site/static/images/pokemon/0193_Yanma.png deleted file mode 100644 index 95cec47..0000000 Binary files a/Site/static/images/pokemon/0193_Yanma.png and /dev/null differ diff --git a/Site/static/images/pokemon/0194-02-000-1.png b/Site/static/images/pokemon/0194-02-000-1.png new file mode 100644 index 0000000..315185e Binary files /dev/null and b/Site/static/images/pokemon/0194-02-000-1.png differ diff --git a/Site/static/images/pokemon/0194-02-000-2.png b/Site/static/images/pokemon/0194-02-000-2.png new file mode 100644 index 0000000..6c97105 Binary files /dev/null and b/Site/static/images/pokemon/0194-02-000-2.png differ diff --git a/Site/static/images/pokemon/0194-02-001-0.png b/Site/static/images/pokemon/0194-02-001-0.png new file mode 100644 index 0000000..7beee4e Binary files /dev/null and b/Site/static/images/pokemon/0194-02-001-0.png differ diff --git a/Site/static/images/pokemon/0194_Wooper.png b/Site/static/images/pokemon/0194_Wooper.png deleted file mode 100644 index 6db7a12..0000000 Binary files a/Site/static/images/pokemon/0194_Wooper.png and /dev/null differ diff --git a/Site/static/images/pokemon/0194_Wooper_(Paldean_Form).png b/Site/static/images/pokemon/0194_Wooper_(Paldean_Form).png deleted file mode 100644 index 053314e..0000000 Binary files a/Site/static/images/pokemon/0194_Wooper_(Paldean_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0195-02-000-1.png b/Site/static/images/pokemon/0195-02-000-1.png new file mode 100644 index 0000000..76102e8 Binary files /dev/null and b/Site/static/images/pokemon/0195-02-000-1.png differ diff --git a/Site/static/images/pokemon/0195-02-000-2.png b/Site/static/images/pokemon/0195-02-000-2.png new file mode 100644 index 0000000..ac398b8 Binary files /dev/null and b/Site/static/images/pokemon/0195-02-000-2.png differ diff --git a/Site/static/images/pokemon/0195_Quagsire.png b/Site/static/images/pokemon/0195_Quagsire.png deleted file mode 100644 index 14c7dbe..0000000 Binary files a/Site/static/images/pokemon/0195_Quagsire.png and /dev/null differ diff --git a/Site/static/images/pokemon/0196-02-000-0.png b/Site/static/images/pokemon/0196-02-000-0.png new file mode 100644 index 0000000..9f4853f Binary files /dev/null and b/Site/static/images/pokemon/0196-02-000-0.png differ diff --git a/Site/static/images/pokemon/0196_Espeon.png b/Site/static/images/pokemon/0196_Espeon.png deleted file mode 100644 index f08bdcf..0000000 Binary files a/Site/static/images/pokemon/0196_Espeon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0197-02-000-0.png b/Site/static/images/pokemon/0197-02-000-0.png new file mode 100644 index 0000000..2542ffb Binary files /dev/null and b/Site/static/images/pokemon/0197-02-000-0.png differ diff --git a/Site/static/images/pokemon/0197_Umbreon.png b/Site/static/images/pokemon/0197_Umbreon.png deleted file mode 100644 index 1ee0df6..0000000 Binary files a/Site/static/images/pokemon/0197_Umbreon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0198-02-000-1.png b/Site/static/images/pokemon/0198-02-000-1.png new file mode 100644 index 0000000..f9eb726 Binary files /dev/null and b/Site/static/images/pokemon/0198-02-000-1.png differ diff --git a/Site/static/images/pokemon/0198-02-000-2.png b/Site/static/images/pokemon/0198-02-000-2.png new file mode 100644 index 0000000..961ea55 Binary files /dev/null and b/Site/static/images/pokemon/0198-02-000-2.png differ diff --git a/Site/static/images/pokemon/0198_Murkrow.png b/Site/static/images/pokemon/0198_Murkrow.png deleted file mode 100644 index 0d2c4f3..0000000 Binary files a/Site/static/images/pokemon/0198_Murkrow.png and /dev/null differ diff --git a/Site/static/images/pokemon/0199-02-000-0.png b/Site/static/images/pokemon/0199-02-000-0.png new file mode 100644 index 0000000..f86acd5 Binary files /dev/null and b/Site/static/images/pokemon/0199-02-000-0.png differ diff --git a/Site/static/images/pokemon/0199-02-001-0.png b/Site/static/images/pokemon/0199-02-001-0.png new file mode 100644 index 0000000..f435d0e Binary files /dev/null and b/Site/static/images/pokemon/0199-02-001-0.png differ diff --git a/Site/static/images/pokemon/0199_Slowking.png b/Site/static/images/pokemon/0199_Slowking.png deleted file mode 100644 index e16e79e..0000000 Binary files a/Site/static/images/pokemon/0199_Slowking.png and /dev/null differ diff --git a/Site/static/images/pokemon/0199_Slowking_(Galarian_Form).png b/Site/static/images/pokemon/0199_Slowking_(Galarian_Form).png deleted file mode 100644 index 56f5841..0000000 Binary files a/Site/static/images/pokemon/0199_Slowking_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0200-02-000-0.png b/Site/static/images/pokemon/0200-02-000-0.png new file mode 100644 index 0000000..336fd46 Binary files /dev/null and b/Site/static/images/pokemon/0200-02-000-0.png differ diff --git a/Site/static/images/pokemon/0200_Misdreavus.png b/Site/static/images/pokemon/0200_Misdreavus.png deleted file mode 100644 index bb82fac..0000000 Binary files a/Site/static/images/pokemon/0200_Misdreavus.png and /dev/null differ diff --git a/Site/static/images/pokemon/0201-02-001-0.png b/Site/static/images/pokemon/0201-02-001-0.png new file mode 100644 index 0000000..e33aec7 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-001-0.png differ diff --git a/Site/static/images/pokemon/0201-02-002-0.png b/Site/static/images/pokemon/0201-02-002-0.png new file mode 100644 index 0000000..cef48d8 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-002-0.png differ diff --git a/Site/static/images/pokemon/0201-02-003-0.png b/Site/static/images/pokemon/0201-02-003-0.png new file mode 100644 index 0000000..cd119b9 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-003-0.png differ diff --git a/Site/static/images/pokemon/0201-02-004-0.png b/Site/static/images/pokemon/0201-02-004-0.png new file mode 100644 index 0000000..40c183a Binary files /dev/null and b/Site/static/images/pokemon/0201-02-004-0.png differ diff --git a/Site/static/images/pokemon/0201-02-005-0.png b/Site/static/images/pokemon/0201-02-005-0.png new file mode 100644 index 0000000..997c94a Binary files /dev/null and b/Site/static/images/pokemon/0201-02-005-0.png differ diff --git a/Site/static/images/pokemon/0201-02-006-0.png b/Site/static/images/pokemon/0201-02-006-0.png new file mode 100644 index 0000000..8cbac20 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-006-0.png differ diff --git a/Site/static/images/pokemon/0201-02-007-0.png b/Site/static/images/pokemon/0201-02-007-0.png new file mode 100644 index 0000000..dd83881 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-007-0.png differ diff --git a/Site/static/images/pokemon/0201-02-008-0.png b/Site/static/images/pokemon/0201-02-008-0.png new file mode 100644 index 0000000..2b7014c Binary files /dev/null and b/Site/static/images/pokemon/0201-02-008-0.png differ diff --git a/Site/static/images/pokemon/0201-02-009-0.png b/Site/static/images/pokemon/0201-02-009-0.png new file mode 100644 index 0000000..6e61198 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-009-0.png differ diff --git a/Site/static/images/pokemon/0201-02-010-0.png b/Site/static/images/pokemon/0201-02-010-0.png new file mode 100644 index 0000000..1f69d68 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-010-0.png differ diff --git a/Site/static/images/pokemon/0201-02-011-0.png b/Site/static/images/pokemon/0201-02-011-0.png new file mode 100644 index 0000000..a82819b Binary files /dev/null and b/Site/static/images/pokemon/0201-02-011-0.png differ diff --git a/Site/static/images/pokemon/0201-02-012-0.png b/Site/static/images/pokemon/0201-02-012-0.png new file mode 100644 index 0000000..9c77fbf Binary files /dev/null and b/Site/static/images/pokemon/0201-02-012-0.png differ diff --git a/Site/static/images/pokemon/0201-02-013-0.png b/Site/static/images/pokemon/0201-02-013-0.png new file mode 100644 index 0000000..68f3676 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-013-0.png differ diff --git a/Site/static/images/pokemon/0201-02-014-0.png b/Site/static/images/pokemon/0201-02-014-0.png new file mode 100644 index 0000000..cf18361 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-014-0.png differ diff --git a/Site/static/images/pokemon/0201-02-015-0.png b/Site/static/images/pokemon/0201-02-015-0.png new file mode 100644 index 0000000..2cc71a9 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-015-0.png differ diff --git a/Site/static/images/pokemon/0201-02-016-0.png b/Site/static/images/pokemon/0201-02-016-0.png new file mode 100644 index 0000000..2c02c74 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-016-0.png differ diff --git a/Site/static/images/pokemon/0201-02-017-0.png b/Site/static/images/pokemon/0201-02-017-0.png new file mode 100644 index 0000000..e6a18f2 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-017-0.png differ diff --git a/Site/static/images/pokemon/0201-02-018-0.png b/Site/static/images/pokemon/0201-02-018-0.png new file mode 100644 index 0000000..2790696 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-018-0.png differ diff --git a/Site/static/images/pokemon/0201-02-019-0.png b/Site/static/images/pokemon/0201-02-019-0.png new file mode 100644 index 0000000..ee540d6 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-019-0.png differ diff --git a/Site/static/images/pokemon/0201-02-020-0.png b/Site/static/images/pokemon/0201-02-020-0.png new file mode 100644 index 0000000..7c7d685 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-020-0.png differ diff --git a/Site/static/images/pokemon/0201-02-021-0.png b/Site/static/images/pokemon/0201-02-021-0.png new file mode 100644 index 0000000..c571864 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-021-0.png differ diff --git a/Site/static/images/pokemon/0201-02-022-0.png b/Site/static/images/pokemon/0201-02-022-0.png new file mode 100644 index 0000000..b6658f4 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-022-0.png differ diff --git a/Site/static/images/pokemon/0201-02-023-0.png b/Site/static/images/pokemon/0201-02-023-0.png new file mode 100644 index 0000000..4b78259 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-023-0.png differ diff --git a/Site/static/images/pokemon/0201-02-024-0.png b/Site/static/images/pokemon/0201-02-024-0.png new file mode 100644 index 0000000..7f634bb Binary files /dev/null and b/Site/static/images/pokemon/0201-02-024-0.png differ diff --git a/Site/static/images/pokemon/0201-02-025-0.png b/Site/static/images/pokemon/0201-02-025-0.png new file mode 100644 index 0000000..9ac532a Binary files /dev/null and b/Site/static/images/pokemon/0201-02-025-0.png differ diff --git a/Site/static/images/pokemon/0201-02-026-0.png b/Site/static/images/pokemon/0201-02-026-0.png new file mode 100644 index 0000000..63427e4 Binary files /dev/null and b/Site/static/images/pokemon/0201-02-026-0.png differ diff --git a/Site/static/images/pokemon/0201-02-027-0.png b/Site/static/images/pokemon/0201-02-027-0.png new file mode 100644 index 0000000..36e69bb Binary files /dev/null and b/Site/static/images/pokemon/0201-02-027-0.png differ diff --git a/Site/static/images/pokemon/0201-02-028-0.png b/Site/static/images/pokemon/0201-02-028-0.png new file mode 100644 index 0000000..d3871ea Binary files /dev/null and b/Site/static/images/pokemon/0201-02-028-0.png differ diff --git a/Site/static/images/pokemon/0201_Unown.png b/Site/static/images/pokemon/0201_Unown.png deleted file mode 100644 index 305cc30..0000000 Binary files a/Site/static/images/pokemon/0201_Unown.png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(!).png b/Site/static/images/pokemon/0201_Unown_(!).png deleted file mode 100644 index 6f787b1..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(!).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(B).png b/Site/static/images/pokemon/0201_Unown_(B).png deleted file mode 100644 index d722387..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(B).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(C).png b/Site/static/images/pokemon/0201_Unown_(C).png deleted file mode 100644 index 476ebab..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(C).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(D).png b/Site/static/images/pokemon/0201_Unown_(D).png deleted file mode 100644 index 2d638d2..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(D).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(E).png b/Site/static/images/pokemon/0201_Unown_(E).png deleted file mode 100644 index ed0798c..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(E).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(F).png b/Site/static/images/pokemon/0201_Unown_(F).png deleted file mode 100644 index 0eb7bbb..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(F).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(G).png b/Site/static/images/pokemon/0201_Unown_(G).png deleted file mode 100644 index 957aa06..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(G).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(H).png b/Site/static/images/pokemon/0201_Unown_(H).png deleted file mode 100644 index 16f07ca..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(H).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(I).png b/Site/static/images/pokemon/0201_Unown_(I).png deleted file mode 100644 index bf4e53b..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(I).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(J).png b/Site/static/images/pokemon/0201_Unown_(J).png deleted file mode 100644 index 97b1b72..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(J).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(K).png b/Site/static/images/pokemon/0201_Unown_(K).png deleted file mode 100644 index 3f80ab5..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(K).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(L).png b/Site/static/images/pokemon/0201_Unown_(L).png deleted file mode 100644 index 5ed6309..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(L).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(M).png b/Site/static/images/pokemon/0201_Unown_(M).png deleted file mode 100644 index ba26cf0..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(M).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(N).png b/Site/static/images/pokemon/0201_Unown_(N).png deleted file mode 100644 index 68a1d95..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(N).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(O).png b/Site/static/images/pokemon/0201_Unown_(O).png deleted file mode 100644 index 9283279..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(O).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(P).png b/Site/static/images/pokemon/0201_Unown_(P).png deleted file mode 100644 index 7b530c2..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(P).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(Q).png b/Site/static/images/pokemon/0201_Unown_(Q).png deleted file mode 100644 index d45414d..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(Q).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(R).png b/Site/static/images/pokemon/0201_Unown_(R).png deleted file mode 100644 index a3a69a3..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(R).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(S).png b/Site/static/images/pokemon/0201_Unown_(S).png deleted file mode 100644 index bd73f20..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(S).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(T).png b/Site/static/images/pokemon/0201_Unown_(T).png deleted file mode 100644 index d0b22e2..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(T).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(U).png b/Site/static/images/pokemon/0201_Unown_(U).png deleted file mode 100644 index c370e12..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(U).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(V).png b/Site/static/images/pokemon/0201_Unown_(V).png deleted file mode 100644 index 817e2cc..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(V).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(W).png b/Site/static/images/pokemon/0201_Unown_(W).png deleted file mode 100644 index aad14f5..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(W).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(X).png b/Site/static/images/pokemon/0201_Unown_(X).png deleted file mode 100644 index 5928000..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(X).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(Y).png b/Site/static/images/pokemon/0201_Unown_(Y).png deleted file mode 100644 index 11cc541..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(Y).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(Z).png b/Site/static/images/pokemon/0201_Unown_(Z).png deleted file mode 100644 index d8388c8..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(Z).png and /dev/null differ diff --git a/Site/static/images/pokemon/0201_Unown_(questionmark).png b/Site/static/images/pokemon/0201_Unown_(questionmark).png deleted file mode 100644 index 3f9e0ae..0000000 Binary files a/Site/static/images/pokemon/0201_Unown_(questionmark).png and /dev/null differ diff --git a/Site/static/images/pokemon/0202-02-000-1.png b/Site/static/images/pokemon/0202-02-000-1.png new file mode 100644 index 0000000..02635f2 Binary files /dev/null and b/Site/static/images/pokemon/0202-02-000-1.png differ diff --git a/Site/static/images/pokemon/0202-02-000-2.png b/Site/static/images/pokemon/0202-02-000-2.png new file mode 100644 index 0000000..1718cd4 Binary files /dev/null and b/Site/static/images/pokemon/0202-02-000-2.png differ diff --git a/Site/static/images/pokemon/0202_Wobbuffet.png b/Site/static/images/pokemon/0202_Wobbuffet.png deleted file mode 100644 index e6331c8..0000000 Binary files a/Site/static/images/pokemon/0202_Wobbuffet.png and /dev/null differ diff --git a/Site/static/images/pokemon/0203-02-000-1.png b/Site/static/images/pokemon/0203-02-000-1.png new file mode 100644 index 0000000..3b030e5 Binary files /dev/null and b/Site/static/images/pokemon/0203-02-000-1.png differ diff --git a/Site/static/images/pokemon/0203-02-000-2.png b/Site/static/images/pokemon/0203-02-000-2.png new file mode 100644 index 0000000..0fa2400 Binary files /dev/null and b/Site/static/images/pokemon/0203-02-000-2.png differ diff --git a/Site/static/images/pokemon/0203_Girafarig.png b/Site/static/images/pokemon/0203_Girafarig.png deleted file mode 100644 index c8b16a8..0000000 Binary files a/Site/static/images/pokemon/0203_Girafarig.png and /dev/null differ diff --git a/Site/static/images/pokemon/0204-02-000-0.png b/Site/static/images/pokemon/0204-02-000-0.png new file mode 100644 index 0000000..aff2408 Binary files /dev/null and b/Site/static/images/pokemon/0204-02-000-0.png differ diff --git a/Site/static/images/pokemon/0204_Pineco.png b/Site/static/images/pokemon/0204_Pineco.png deleted file mode 100644 index c0e056f..0000000 Binary files a/Site/static/images/pokemon/0204_Pineco.png and /dev/null differ diff --git a/Site/static/images/pokemon/0205-02-000-0.png b/Site/static/images/pokemon/0205-02-000-0.png new file mode 100644 index 0000000..7e67590 Binary files /dev/null and b/Site/static/images/pokemon/0205-02-000-0.png differ diff --git a/Site/static/images/pokemon/0205_Forretress.png b/Site/static/images/pokemon/0205_Forretress.png deleted file mode 100644 index 60ed85a..0000000 Binary files a/Site/static/images/pokemon/0205_Forretress.png and /dev/null differ diff --git a/Site/static/images/pokemon/0206-02-000-0.png b/Site/static/images/pokemon/0206-02-000-0.png new file mode 100644 index 0000000..0cf73ac Binary files /dev/null and b/Site/static/images/pokemon/0206-02-000-0.png differ diff --git a/Site/static/images/pokemon/0206_Dunsparce.png b/Site/static/images/pokemon/0206_Dunsparce.png deleted file mode 100644 index e20b019..0000000 Binary files a/Site/static/images/pokemon/0206_Dunsparce.png and /dev/null differ diff --git a/Site/static/images/pokemon/0207-02-000-1.png b/Site/static/images/pokemon/0207-02-000-1.png new file mode 100644 index 0000000..e2a9a13 Binary files /dev/null and b/Site/static/images/pokemon/0207-02-000-1.png differ diff --git a/Site/static/images/pokemon/0207-02-000-2.png b/Site/static/images/pokemon/0207-02-000-2.png new file mode 100644 index 0000000..d3a7a0d Binary files /dev/null and b/Site/static/images/pokemon/0207-02-000-2.png differ diff --git a/Site/static/images/pokemon/0207_Gligar.png b/Site/static/images/pokemon/0207_Gligar.png deleted file mode 100644 index a12f207..0000000 Binary files a/Site/static/images/pokemon/0207_Gligar.png and /dev/null differ diff --git a/Site/static/images/pokemon/0208-02-000-1.png b/Site/static/images/pokemon/0208-02-000-1.png new file mode 100644 index 0000000..19e2a9f Binary files /dev/null and b/Site/static/images/pokemon/0208-02-000-1.png differ diff --git a/Site/static/images/pokemon/0208-02-000-2.png b/Site/static/images/pokemon/0208-02-000-2.png new file mode 100644 index 0000000..8c2fdfb Binary files /dev/null and b/Site/static/images/pokemon/0208-02-000-2.png differ diff --git a/Site/static/images/pokemon/0208-02-001-0.png b/Site/static/images/pokemon/0208-02-001-0.png new file mode 100644 index 0000000..3c5c881 Binary files /dev/null and b/Site/static/images/pokemon/0208-02-001-0.png differ diff --git a/Site/static/images/pokemon/0208_Steelix.png b/Site/static/images/pokemon/0208_Steelix.png deleted file mode 100644 index 1b61397..0000000 Binary files a/Site/static/images/pokemon/0208_Steelix.png and /dev/null differ diff --git a/Site/static/images/pokemon/0209-02-000-0.png b/Site/static/images/pokemon/0209-02-000-0.png new file mode 100644 index 0000000..5b97504 Binary files /dev/null and b/Site/static/images/pokemon/0209-02-000-0.png differ diff --git a/Site/static/images/pokemon/0209_Snubbull.png b/Site/static/images/pokemon/0209_Snubbull.png deleted file mode 100644 index 33c0854..0000000 Binary files a/Site/static/images/pokemon/0209_Snubbull.png and /dev/null differ diff --git a/Site/static/images/pokemon/0210-02-000-0.png b/Site/static/images/pokemon/0210-02-000-0.png new file mode 100644 index 0000000..77c63d4 Binary files /dev/null and b/Site/static/images/pokemon/0210-02-000-0.png differ diff --git a/Site/static/images/pokemon/0210_Granbull.png b/Site/static/images/pokemon/0210_Granbull.png deleted file mode 100644 index e414c7e..0000000 Binary files a/Site/static/images/pokemon/0210_Granbull.png and /dev/null differ diff --git a/Site/static/images/pokemon/0211-02-000-0.png b/Site/static/images/pokemon/0211-02-000-0.png new file mode 100644 index 0000000..1e23e9d Binary files /dev/null and b/Site/static/images/pokemon/0211-02-000-0.png differ diff --git a/Site/static/images/pokemon/0211-02-001-0.png b/Site/static/images/pokemon/0211-02-001-0.png new file mode 100644 index 0000000..3afd7a6 Binary files /dev/null and b/Site/static/images/pokemon/0211-02-001-0.png differ diff --git a/Site/static/images/pokemon/0211_Qwilfish.png b/Site/static/images/pokemon/0211_Qwilfish.png deleted file mode 100644 index fa31fa9..0000000 Binary files a/Site/static/images/pokemon/0211_Qwilfish.png and /dev/null differ diff --git a/Site/static/images/pokemon/0211_Qwilfish_(Hisuian_Form).png b/Site/static/images/pokemon/0211_Qwilfish_(Hisuian_Form).png deleted file mode 100644 index 2a9977b..0000000 Binary files a/Site/static/images/pokemon/0211_Qwilfish_(Hisuian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0212-02-000-1.png b/Site/static/images/pokemon/0212-02-000-1.png new file mode 100644 index 0000000..96ea4e3 Binary files /dev/null and b/Site/static/images/pokemon/0212-02-000-1.png differ diff --git a/Site/static/images/pokemon/0212-02-000-2.png b/Site/static/images/pokemon/0212-02-000-2.png new file mode 100644 index 0000000..e32594c Binary files /dev/null and b/Site/static/images/pokemon/0212-02-000-2.png differ diff --git a/Site/static/images/pokemon/0212-02-001-0.png b/Site/static/images/pokemon/0212-02-001-0.png new file mode 100644 index 0000000..950e194 Binary files /dev/null and b/Site/static/images/pokemon/0212-02-001-0.png differ diff --git a/Site/static/images/pokemon/0212_Scizor.png b/Site/static/images/pokemon/0212_Scizor.png deleted file mode 100644 index 8b96cf5..0000000 Binary files a/Site/static/images/pokemon/0212_Scizor.png and /dev/null differ diff --git a/Site/static/images/pokemon/0213-02-000-0.png b/Site/static/images/pokemon/0213-02-000-0.png new file mode 100644 index 0000000..84688fd Binary files /dev/null and b/Site/static/images/pokemon/0213-02-000-0.png differ diff --git a/Site/static/images/pokemon/0213_Shuckle.png b/Site/static/images/pokemon/0213_Shuckle.png deleted file mode 100644 index 8f8b35d..0000000 Binary files a/Site/static/images/pokemon/0213_Shuckle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0214-02-000-1.png b/Site/static/images/pokemon/0214-02-000-1.png new file mode 100644 index 0000000..9cf966d Binary files /dev/null and b/Site/static/images/pokemon/0214-02-000-1.png differ diff --git a/Site/static/images/pokemon/0214-02-000-2.png b/Site/static/images/pokemon/0214-02-000-2.png new file mode 100644 index 0000000..db27925 Binary files /dev/null and b/Site/static/images/pokemon/0214-02-000-2.png differ diff --git a/Site/static/images/pokemon/0214-02-001-0.png b/Site/static/images/pokemon/0214-02-001-0.png new file mode 100644 index 0000000..64ca5bb Binary files /dev/null and b/Site/static/images/pokemon/0214-02-001-0.png differ diff --git a/Site/static/images/pokemon/0214_Heracross.png b/Site/static/images/pokemon/0214_Heracross.png deleted file mode 100644 index eb7d1f6..0000000 Binary files a/Site/static/images/pokemon/0214_Heracross.png and /dev/null differ diff --git a/Site/static/images/pokemon/0215-02-000-1.png b/Site/static/images/pokemon/0215-02-000-1.png new file mode 100644 index 0000000..b36a559 Binary files /dev/null and b/Site/static/images/pokemon/0215-02-000-1.png differ diff --git a/Site/static/images/pokemon/0215-02-000-2.png b/Site/static/images/pokemon/0215-02-000-2.png new file mode 100644 index 0000000..14c49cd Binary files /dev/null and b/Site/static/images/pokemon/0215-02-000-2.png differ diff --git a/Site/static/images/pokemon/0215_Sneasel.png b/Site/static/images/pokemon/0215_Sneasel.png deleted file mode 100644 index 548d246..0000000 Binary files a/Site/static/images/pokemon/0215_Sneasel.png and /dev/null differ diff --git a/Site/static/images/pokemon/0215_Sneasel_(Hisuian_Form).png b/Site/static/images/pokemon/0215_Sneasel_(Hisuian_Form).png deleted file mode 100644 index 7cadcc3..0000000 Binary files a/Site/static/images/pokemon/0215_Sneasel_(Hisuian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0216-02-000-0.png b/Site/static/images/pokemon/0216-02-000-0.png new file mode 100644 index 0000000..b335a17 Binary files /dev/null and b/Site/static/images/pokemon/0216-02-000-0.png differ diff --git a/Site/static/images/pokemon/0216_Teddiursa.png b/Site/static/images/pokemon/0216_Teddiursa.png deleted file mode 100644 index b20e663..0000000 Binary files a/Site/static/images/pokemon/0216_Teddiursa.png and /dev/null differ diff --git a/Site/static/images/pokemon/0217-02-000-1.png b/Site/static/images/pokemon/0217-02-000-1.png new file mode 100644 index 0000000..0a59356 Binary files /dev/null and b/Site/static/images/pokemon/0217-02-000-1.png differ diff --git a/Site/static/images/pokemon/0217-02-000-2.png b/Site/static/images/pokemon/0217-02-000-2.png new file mode 100644 index 0000000..41844d4 Binary files /dev/null and b/Site/static/images/pokemon/0217-02-000-2.png differ diff --git a/Site/static/images/pokemon/0217_Ursaring.png b/Site/static/images/pokemon/0217_Ursaring.png deleted file mode 100644 index 6ec96e4..0000000 Binary files a/Site/static/images/pokemon/0217_Ursaring.png and /dev/null differ diff --git a/Site/static/images/pokemon/0218-02-000-0.png b/Site/static/images/pokemon/0218-02-000-0.png new file mode 100644 index 0000000..33af6dd Binary files /dev/null and b/Site/static/images/pokemon/0218-02-000-0.png differ diff --git a/Site/static/images/pokemon/0218_Slugma.png b/Site/static/images/pokemon/0218_Slugma.png deleted file mode 100644 index 91e2d33..0000000 Binary files a/Site/static/images/pokemon/0218_Slugma.png and /dev/null differ diff --git a/Site/static/images/pokemon/0219-02-000-0.png b/Site/static/images/pokemon/0219-02-000-0.png new file mode 100644 index 0000000..eb88244 Binary files /dev/null and b/Site/static/images/pokemon/0219-02-000-0.png differ diff --git a/Site/static/images/pokemon/0219_Magcargo.png b/Site/static/images/pokemon/0219_Magcargo.png deleted file mode 100644 index 8253f70..0000000 Binary files a/Site/static/images/pokemon/0219_Magcargo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0220-02-000-0.png b/Site/static/images/pokemon/0220-02-000-0.png new file mode 100644 index 0000000..88c7925 Binary files /dev/null and b/Site/static/images/pokemon/0220-02-000-0.png differ diff --git a/Site/static/images/pokemon/0220_Swinub.png b/Site/static/images/pokemon/0220_Swinub.png deleted file mode 100644 index fb9c3c3..0000000 Binary files a/Site/static/images/pokemon/0220_Swinub.png and /dev/null differ diff --git a/Site/static/images/pokemon/0221-02-000-1.png b/Site/static/images/pokemon/0221-02-000-1.png new file mode 100644 index 0000000..787e764 Binary files /dev/null and b/Site/static/images/pokemon/0221-02-000-1.png differ diff --git a/Site/static/images/pokemon/0221-02-000-2.png b/Site/static/images/pokemon/0221-02-000-2.png new file mode 100644 index 0000000..28132a9 Binary files /dev/null and b/Site/static/images/pokemon/0221-02-000-2.png differ diff --git a/Site/static/images/pokemon/0221_Piloswine.png b/Site/static/images/pokemon/0221_Piloswine.png deleted file mode 100644 index 0325d99..0000000 Binary files a/Site/static/images/pokemon/0221_Piloswine.png and /dev/null differ diff --git a/Site/static/images/pokemon/0222-02-000-0.png b/Site/static/images/pokemon/0222-02-000-0.png new file mode 100644 index 0000000..63b1fd7 Binary files /dev/null and b/Site/static/images/pokemon/0222-02-000-0.png differ diff --git a/Site/static/images/pokemon/0222-02-001-0.png b/Site/static/images/pokemon/0222-02-001-0.png new file mode 100644 index 0000000..69fd3c2 Binary files /dev/null and b/Site/static/images/pokemon/0222-02-001-0.png differ diff --git a/Site/static/images/pokemon/0222_Corsola.png b/Site/static/images/pokemon/0222_Corsola.png deleted file mode 100644 index 5e3e28f..0000000 Binary files a/Site/static/images/pokemon/0222_Corsola.png and /dev/null differ diff --git a/Site/static/images/pokemon/0222_Corsola_(Galarian_Form).png b/Site/static/images/pokemon/0222_Corsola_(Galarian_Form).png deleted file mode 100644 index 2423059..0000000 Binary files a/Site/static/images/pokemon/0222_Corsola_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0223-02-000-0.png b/Site/static/images/pokemon/0223-02-000-0.png new file mode 100644 index 0000000..6d28bb1 Binary files /dev/null and b/Site/static/images/pokemon/0223-02-000-0.png differ diff --git a/Site/static/images/pokemon/0223_Remoraid.png b/Site/static/images/pokemon/0223_Remoraid.png deleted file mode 100644 index ce70aad..0000000 Binary files a/Site/static/images/pokemon/0223_Remoraid.png and /dev/null differ diff --git a/Site/static/images/pokemon/0224-02-000-1.png b/Site/static/images/pokemon/0224-02-000-1.png new file mode 100644 index 0000000..f0125de Binary files /dev/null and b/Site/static/images/pokemon/0224-02-000-1.png differ diff --git a/Site/static/images/pokemon/0224-02-000-2.png b/Site/static/images/pokemon/0224-02-000-2.png new file mode 100644 index 0000000..12c86f7 Binary files /dev/null and b/Site/static/images/pokemon/0224-02-000-2.png differ diff --git a/Site/static/images/pokemon/0224_Octillery.png b/Site/static/images/pokemon/0224_Octillery.png deleted file mode 100644 index 52b3fe2..0000000 Binary files a/Site/static/images/pokemon/0224_Octillery.png and /dev/null differ diff --git a/Site/static/images/pokemon/0225-02-000-0.png b/Site/static/images/pokemon/0225-02-000-0.png new file mode 100644 index 0000000..4e364a7 Binary files /dev/null and b/Site/static/images/pokemon/0225-02-000-0.png differ diff --git a/Site/static/images/pokemon/0225_Delibird.png b/Site/static/images/pokemon/0225_Delibird.png deleted file mode 100644 index 2801c68..0000000 Binary files a/Site/static/images/pokemon/0225_Delibird.png and /dev/null differ diff --git a/Site/static/images/pokemon/0226-02-000-0.png b/Site/static/images/pokemon/0226-02-000-0.png new file mode 100644 index 0000000..9431cde Binary files /dev/null and b/Site/static/images/pokemon/0226-02-000-0.png differ diff --git a/Site/static/images/pokemon/0226_Mantine.png b/Site/static/images/pokemon/0226_Mantine.png deleted file mode 100644 index 85e0f0b..0000000 Binary files a/Site/static/images/pokemon/0226_Mantine.png and /dev/null differ diff --git a/Site/static/images/pokemon/0227-02-000-0.png b/Site/static/images/pokemon/0227-02-000-0.png new file mode 100644 index 0000000..786a516 Binary files /dev/null and b/Site/static/images/pokemon/0227-02-000-0.png differ diff --git a/Site/static/images/pokemon/0227_Skarmory.png b/Site/static/images/pokemon/0227_Skarmory.png deleted file mode 100644 index 7b3207a..0000000 Binary files a/Site/static/images/pokemon/0227_Skarmory.png and /dev/null differ diff --git a/Site/static/images/pokemon/0228-02-000-0.png b/Site/static/images/pokemon/0228-02-000-0.png new file mode 100644 index 0000000..d302d5f Binary files /dev/null and b/Site/static/images/pokemon/0228-02-000-0.png differ diff --git a/Site/static/images/pokemon/0228_Houndour.png b/Site/static/images/pokemon/0228_Houndour.png deleted file mode 100644 index fe3f6a9..0000000 Binary files a/Site/static/images/pokemon/0228_Houndour.png and /dev/null differ diff --git a/Site/static/images/pokemon/0229-02-000-1.png b/Site/static/images/pokemon/0229-02-000-1.png new file mode 100644 index 0000000..f921225 Binary files /dev/null and b/Site/static/images/pokemon/0229-02-000-1.png differ diff --git a/Site/static/images/pokemon/0229-02-000-2.png b/Site/static/images/pokemon/0229-02-000-2.png new file mode 100644 index 0000000..20924c0 Binary files /dev/null and b/Site/static/images/pokemon/0229-02-000-2.png differ diff --git a/Site/static/images/pokemon/0229-02-001-0.png b/Site/static/images/pokemon/0229-02-001-0.png new file mode 100644 index 0000000..7c13ca5 Binary files /dev/null and b/Site/static/images/pokemon/0229-02-001-0.png differ diff --git a/Site/static/images/pokemon/0229_Houndoom.png b/Site/static/images/pokemon/0229_Houndoom.png deleted file mode 100644 index 1d95c89..0000000 Binary files a/Site/static/images/pokemon/0229_Houndoom.png and /dev/null differ diff --git a/Site/static/images/pokemon/0230-02-000-0.png b/Site/static/images/pokemon/0230-02-000-0.png new file mode 100644 index 0000000..825b178 Binary files /dev/null and b/Site/static/images/pokemon/0230-02-000-0.png differ diff --git a/Site/static/images/pokemon/0230_Kingdra.png b/Site/static/images/pokemon/0230_Kingdra.png deleted file mode 100644 index 92a40e2..0000000 Binary files a/Site/static/images/pokemon/0230_Kingdra.png and /dev/null differ diff --git a/Site/static/images/pokemon/0231-02-000-0.png b/Site/static/images/pokemon/0231-02-000-0.png new file mode 100644 index 0000000..b78ac2e Binary files /dev/null and b/Site/static/images/pokemon/0231-02-000-0.png differ diff --git a/Site/static/images/pokemon/0231_Phanpy.png b/Site/static/images/pokemon/0231_Phanpy.png deleted file mode 100644 index b11a52f..0000000 Binary files a/Site/static/images/pokemon/0231_Phanpy.png and /dev/null differ diff --git a/Site/static/images/pokemon/0232-02-000-1.png b/Site/static/images/pokemon/0232-02-000-1.png new file mode 100644 index 0000000..9b2b364 Binary files /dev/null and b/Site/static/images/pokemon/0232-02-000-1.png differ diff --git a/Site/static/images/pokemon/0232-02-000-2.png b/Site/static/images/pokemon/0232-02-000-2.png new file mode 100644 index 0000000..6a244a7 Binary files /dev/null and b/Site/static/images/pokemon/0232-02-000-2.png differ diff --git a/Site/static/images/pokemon/0232_Donphan.png b/Site/static/images/pokemon/0232_Donphan.png deleted file mode 100644 index fb3ebfa..0000000 Binary files a/Site/static/images/pokemon/0232_Donphan.png and /dev/null differ diff --git a/Site/static/images/pokemon/0233-02-000-0.png b/Site/static/images/pokemon/0233-02-000-0.png new file mode 100644 index 0000000..8ce5bf5 Binary files /dev/null and b/Site/static/images/pokemon/0233-02-000-0.png differ diff --git a/Site/static/images/pokemon/0233_Porygon2.png b/Site/static/images/pokemon/0233_Porygon2.png deleted file mode 100644 index 040434e..0000000 Binary files a/Site/static/images/pokemon/0233_Porygon2.png and /dev/null differ diff --git a/Site/static/images/pokemon/0234-02-000-0.png b/Site/static/images/pokemon/0234-02-000-0.png new file mode 100644 index 0000000..8540d49 Binary files /dev/null and b/Site/static/images/pokemon/0234-02-000-0.png differ diff --git a/Site/static/images/pokemon/0234_Stantler.png b/Site/static/images/pokemon/0234_Stantler.png deleted file mode 100644 index d7cde75..0000000 Binary files a/Site/static/images/pokemon/0234_Stantler.png and /dev/null differ diff --git a/Site/static/images/pokemon/0235-02-000-0.png b/Site/static/images/pokemon/0235-02-000-0.png new file mode 100644 index 0000000..23a710b Binary files /dev/null and b/Site/static/images/pokemon/0235-02-000-0.png differ diff --git a/Site/static/images/pokemon/0235_Smeargle.png b/Site/static/images/pokemon/0235_Smeargle.png deleted file mode 100644 index d4ba07d..0000000 Binary files a/Site/static/images/pokemon/0235_Smeargle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0236-02-000-0.png b/Site/static/images/pokemon/0236-02-000-0.png new file mode 100644 index 0000000..5aa33c8 Binary files /dev/null and b/Site/static/images/pokemon/0236-02-000-0.png differ diff --git a/Site/static/images/pokemon/0236_Tyrogue.png b/Site/static/images/pokemon/0236_Tyrogue.png deleted file mode 100644 index 373eb64..0000000 Binary files a/Site/static/images/pokemon/0236_Tyrogue.png and /dev/null differ diff --git a/Site/static/images/pokemon/0237-02-000-0.png b/Site/static/images/pokemon/0237-02-000-0.png new file mode 100644 index 0000000..0b994a0 Binary files /dev/null and b/Site/static/images/pokemon/0237-02-000-0.png differ diff --git a/Site/static/images/pokemon/0237_Hitmontop.png b/Site/static/images/pokemon/0237_Hitmontop.png deleted file mode 100644 index ff7ab05..0000000 Binary files a/Site/static/images/pokemon/0237_Hitmontop.png and /dev/null differ diff --git a/Site/static/images/pokemon/0238-02-000-0.png b/Site/static/images/pokemon/0238-02-000-0.png new file mode 100644 index 0000000..e543a7e Binary files /dev/null and b/Site/static/images/pokemon/0238-02-000-0.png differ diff --git a/Site/static/images/pokemon/0238_Smoochum.png b/Site/static/images/pokemon/0238_Smoochum.png deleted file mode 100644 index 3807260..0000000 Binary files a/Site/static/images/pokemon/0238_Smoochum.png and /dev/null differ diff --git a/Site/static/images/pokemon/0239-02-000-0.png b/Site/static/images/pokemon/0239-02-000-0.png new file mode 100644 index 0000000..59b3fe4 Binary files /dev/null and b/Site/static/images/pokemon/0239-02-000-0.png differ diff --git a/Site/static/images/pokemon/0239_Elekid.png b/Site/static/images/pokemon/0239_Elekid.png deleted file mode 100644 index 82f343b..0000000 Binary files a/Site/static/images/pokemon/0239_Elekid.png and /dev/null differ diff --git a/Site/static/images/pokemon/0240-02-000-0.png b/Site/static/images/pokemon/0240-02-000-0.png new file mode 100644 index 0000000..d3d5c10 Binary files /dev/null and b/Site/static/images/pokemon/0240-02-000-0.png differ diff --git a/Site/static/images/pokemon/0240_Magby.png b/Site/static/images/pokemon/0240_Magby.png deleted file mode 100644 index 3815c38..0000000 Binary files a/Site/static/images/pokemon/0240_Magby.png and /dev/null differ diff --git a/Site/static/images/pokemon/0241-02-000-0.png b/Site/static/images/pokemon/0241-02-000-0.png new file mode 100644 index 0000000..27bef8d Binary files /dev/null and b/Site/static/images/pokemon/0241-02-000-0.png differ diff --git a/Site/static/images/pokemon/0241_Miltank.png b/Site/static/images/pokemon/0241_Miltank.png deleted file mode 100644 index 1385c85..0000000 Binary files a/Site/static/images/pokemon/0241_Miltank.png and /dev/null differ diff --git a/Site/static/images/pokemon/0242-02-000-0.png b/Site/static/images/pokemon/0242-02-000-0.png new file mode 100644 index 0000000..a1bd930 Binary files /dev/null and b/Site/static/images/pokemon/0242-02-000-0.png differ diff --git a/Site/static/images/pokemon/0242_Blissey.png b/Site/static/images/pokemon/0242_Blissey.png deleted file mode 100644 index bec0205..0000000 Binary files a/Site/static/images/pokemon/0242_Blissey.png and /dev/null differ diff --git a/Site/static/images/pokemon/0243-02-000-0.png b/Site/static/images/pokemon/0243-02-000-0.png new file mode 100644 index 0000000..f6f67bc Binary files /dev/null and b/Site/static/images/pokemon/0243-02-000-0.png differ diff --git a/Site/static/images/pokemon/0243_Raikou.png b/Site/static/images/pokemon/0243_Raikou.png deleted file mode 100644 index 9fa79f1..0000000 Binary files a/Site/static/images/pokemon/0243_Raikou.png and /dev/null differ diff --git a/Site/static/images/pokemon/0244-02-000-0.png b/Site/static/images/pokemon/0244-02-000-0.png new file mode 100644 index 0000000..510eaf0 Binary files /dev/null and b/Site/static/images/pokemon/0244-02-000-0.png differ diff --git a/Site/static/images/pokemon/0244_Entei.png b/Site/static/images/pokemon/0244_Entei.png deleted file mode 100644 index cd23e2c..0000000 Binary files a/Site/static/images/pokemon/0244_Entei.png and /dev/null differ diff --git a/Site/static/images/pokemon/0245-02-000-0.png b/Site/static/images/pokemon/0245-02-000-0.png new file mode 100644 index 0000000..4acdf63 Binary files /dev/null and b/Site/static/images/pokemon/0245-02-000-0.png differ diff --git a/Site/static/images/pokemon/0245_Suicune.png b/Site/static/images/pokemon/0245_Suicune.png deleted file mode 100644 index cc82019..0000000 Binary files a/Site/static/images/pokemon/0245_Suicune.png and /dev/null differ diff --git a/Site/static/images/pokemon/0246-02-000-0.png b/Site/static/images/pokemon/0246-02-000-0.png new file mode 100644 index 0000000..476e29a Binary files /dev/null and b/Site/static/images/pokemon/0246-02-000-0.png differ diff --git a/Site/static/images/pokemon/0246_Larvitar.png b/Site/static/images/pokemon/0246_Larvitar.png deleted file mode 100644 index 4a617f5..0000000 Binary files a/Site/static/images/pokemon/0246_Larvitar.png and /dev/null differ diff --git a/Site/static/images/pokemon/0247-02-000-0.png b/Site/static/images/pokemon/0247-02-000-0.png new file mode 100644 index 0000000..8de09f4 Binary files /dev/null and b/Site/static/images/pokemon/0247-02-000-0.png differ diff --git a/Site/static/images/pokemon/0247_Pupitar.png b/Site/static/images/pokemon/0247_Pupitar.png deleted file mode 100644 index d947196..0000000 Binary files a/Site/static/images/pokemon/0247_Pupitar.png and /dev/null differ diff --git a/Site/static/images/pokemon/0248-02-000-0.png b/Site/static/images/pokemon/0248-02-000-0.png new file mode 100644 index 0000000..9e66efc Binary files /dev/null and b/Site/static/images/pokemon/0248-02-000-0.png differ diff --git a/Site/static/images/pokemon/0248-02-001-0.png b/Site/static/images/pokemon/0248-02-001-0.png new file mode 100644 index 0000000..0bb626a Binary files /dev/null and b/Site/static/images/pokemon/0248-02-001-0.png differ diff --git a/Site/static/images/pokemon/0248_Tyranitar.png b/Site/static/images/pokemon/0248_Tyranitar.png deleted file mode 100644 index ccbc153..0000000 Binary files a/Site/static/images/pokemon/0248_Tyranitar.png and /dev/null differ diff --git a/Site/static/images/pokemon/0249-02-000-0.png b/Site/static/images/pokemon/0249-02-000-0.png new file mode 100644 index 0000000..0810963 Binary files /dev/null and b/Site/static/images/pokemon/0249-02-000-0.png differ diff --git a/Site/static/images/pokemon/0249_Lugia.png b/Site/static/images/pokemon/0249_Lugia.png deleted file mode 100644 index decb050..0000000 Binary files a/Site/static/images/pokemon/0249_Lugia.png and /dev/null differ diff --git a/Site/static/images/pokemon/0250-02-000-0.png b/Site/static/images/pokemon/0250-02-000-0.png new file mode 100644 index 0000000..3152159 Binary files /dev/null and b/Site/static/images/pokemon/0250-02-000-0.png differ diff --git a/Site/static/images/pokemon/0250_Ho-Oh.png b/Site/static/images/pokemon/0250_Ho-Oh.png deleted file mode 100644 index ff3904d..0000000 Binary files a/Site/static/images/pokemon/0250_Ho-Oh.png and /dev/null differ diff --git a/Site/static/images/pokemon/0251-02-000-0.png b/Site/static/images/pokemon/0251-02-000-0.png new file mode 100644 index 0000000..eec3be6 Binary files /dev/null and b/Site/static/images/pokemon/0251-02-000-0.png differ diff --git a/Site/static/images/pokemon/0251_Celebi.png b/Site/static/images/pokemon/0251_Celebi.png deleted file mode 100644 index 1af2935..0000000 Binary files a/Site/static/images/pokemon/0251_Celebi.png and /dev/null differ diff --git a/Site/static/images/pokemon/0252-03-000-0.png b/Site/static/images/pokemon/0252-03-000-0.png new file mode 100644 index 0000000..89dd9f7 Binary files /dev/null and b/Site/static/images/pokemon/0252-03-000-0.png differ diff --git a/Site/static/images/pokemon/0252_Treecko.png b/Site/static/images/pokemon/0252_Treecko.png deleted file mode 100644 index 5c0e5ca..0000000 Binary files a/Site/static/images/pokemon/0252_Treecko.png and /dev/null differ diff --git a/Site/static/images/pokemon/0253-03-000-0.png b/Site/static/images/pokemon/0253-03-000-0.png new file mode 100644 index 0000000..289d4b5 Binary files /dev/null and b/Site/static/images/pokemon/0253-03-000-0.png differ diff --git a/Site/static/images/pokemon/0253_Grovyle.png b/Site/static/images/pokemon/0253_Grovyle.png deleted file mode 100644 index 4982e1b..0000000 Binary files a/Site/static/images/pokemon/0253_Grovyle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0254-03-000-0.png b/Site/static/images/pokemon/0254-03-000-0.png new file mode 100644 index 0000000..df83cea Binary files /dev/null and b/Site/static/images/pokemon/0254-03-000-0.png differ diff --git a/Site/static/images/pokemon/0254-03-001-0.png b/Site/static/images/pokemon/0254-03-001-0.png new file mode 100644 index 0000000..cabe528 Binary files /dev/null and b/Site/static/images/pokemon/0254-03-001-0.png differ diff --git a/Site/static/images/pokemon/0254_Sceptile.png b/Site/static/images/pokemon/0254_Sceptile.png deleted file mode 100644 index 6597077..0000000 Binary files a/Site/static/images/pokemon/0254_Sceptile.png and /dev/null differ diff --git a/Site/static/images/pokemon/0255-03-000-1.png b/Site/static/images/pokemon/0255-03-000-1.png new file mode 100644 index 0000000..e8ed12d Binary files /dev/null and b/Site/static/images/pokemon/0255-03-000-1.png differ diff --git a/Site/static/images/pokemon/0255-03-000-2.png b/Site/static/images/pokemon/0255-03-000-2.png new file mode 100644 index 0000000..e8ed12d Binary files /dev/null and b/Site/static/images/pokemon/0255-03-000-2.png differ diff --git a/Site/static/images/pokemon/0255_Torchic.png b/Site/static/images/pokemon/0255_Torchic.png deleted file mode 100644 index d21681e..0000000 Binary files a/Site/static/images/pokemon/0255_Torchic.png and /dev/null differ diff --git a/Site/static/images/pokemon/0256-03-000-1.png b/Site/static/images/pokemon/0256-03-000-1.png new file mode 100644 index 0000000..fc3be5b Binary files /dev/null and b/Site/static/images/pokemon/0256-03-000-1.png differ diff --git a/Site/static/images/pokemon/0256-03-000-2.png b/Site/static/images/pokemon/0256-03-000-2.png new file mode 100644 index 0000000..3090555 Binary files /dev/null and b/Site/static/images/pokemon/0256-03-000-2.png differ diff --git a/Site/static/images/pokemon/0256_Combusken.png b/Site/static/images/pokemon/0256_Combusken.png deleted file mode 100644 index 630e8de..0000000 Binary files a/Site/static/images/pokemon/0256_Combusken.png and /dev/null differ diff --git a/Site/static/images/pokemon/0257-03-000-1.png b/Site/static/images/pokemon/0257-03-000-1.png new file mode 100644 index 0000000..544b394 Binary files /dev/null and b/Site/static/images/pokemon/0257-03-000-1.png differ diff --git a/Site/static/images/pokemon/0257-03-000-2.png b/Site/static/images/pokemon/0257-03-000-2.png new file mode 100644 index 0000000..67ab35e Binary files /dev/null and b/Site/static/images/pokemon/0257-03-000-2.png differ diff --git a/Site/static/images/pokemon/0257-03-001-0.png b/Site/static/images/pokemon/0257-03-001-0.png new file mode 100644 index 0000000..735d78a Binary files /dev/null and b/Site/static/images/pokemon/0257-03-001-0.png differ diff --git a/Site/static/images/pokemon/0257_Blaziken.png b/Site/static/images/pokemon/0257_Blaziken.png deleted file mode 100644 index 2f84dfa..0000000 Binary files a/Site/static/images/pokemon/0257_Blaziken.png and /dev/null differ diff --git a/Site/static/images/pokemon/0258-03-000-0.png b/Site/static/images/pokemon/0258-03-000-0.png new file mode 100644 index 0000000..50c11d3 Binary files /dev/null and b/Site/static/images/pokemon/0258-03-000-0.png differ diff --git a/Site/static/images/pokemon/0258_Mudkip.png b/Site/static/images/pokemon/0258_Mudkip.png deleted file mode 100644 index f8241bc..0000000 Binary files a/Site/static/images/pokemon/0258_Mudkip.png and /dev/null differ diff --git a/Site/static/images/pokemon/0259-03-000-0.png b/Site/static/images/pokemon/0259-03-000-0.png new file mode 100644 index 0000000..e9a2100 Binary files /dev/null and b/Site/static/images/pokemon/0259-03-000-0.png differ diff --git a/Site/static/images/pokemon/0259_Marshtomp.png b/Site/static/images/pokemon/0259_Marshtomp.png deleted file mode 100644 index b90e51e..0000000 Binary files a/Site/static/images/pokemon/0259_Marshtomp.png and /dev/null differ diff --git a/Site/static/images/pokemon/0260-03-000-0.png b/Site/static/images/pokemon/0260-03-000-0.png new file mode 100644 index 0000000..09d9cf3 Binary files /dev/null and b/Site/static/images/pokemon/0260-03-000-0.png differ diff --git a/Site/static/images/pokemon/0260-03-001-0.png b/Site/static/images/pokemon/0260-03-001-0.png new file mode 100644 index 0000000..fa1edfc Binary files /dev/null and b/Site/static/images/pokemon/0260-03-001-0.png differ diff --git a/Site/static/images/pokemon/0260_Swampert.png b/Site/static/images/pokemon/0260_Swampert.png deleted file mode 100644 index 78eb549..0000000 Binary files a/Site/static/images/pokemon/0260_Swampert.png and /dev/null differ diff --git a/Site/static/images/pokemon/0261-03-000-0.png b/Site/static/images/pokemon/0261-03-000-0.png new file mode 100644 index 0000000..e84430e Binary files /dev/null and b/Site/static/images/pokemon/0261-03-000-0.png differ diff --git a/Site/static/images/pokemon/0261_Poochyena.png b/Site/static/images/pokemon/0261_Poochyena.png deleted file mode 100644 index 9209c24..0000000 Binary files a/Site/static/images/pokemon/0261_Poochyena.png and /dev/null differ diff --git a/Site/static/images/pokemon/0262-03-000-0.png b/Site/static/images/pokemon/0262-03-000-0.png new file mode 100644 index 0000000..c0a1e7e Binary files /dev/null and b/Site/static/images/pokemon/0262-03-000-0.png differ diff --git a/Site/static/images/pokemon/0262_Mightyena.png b/Site/static/images/pokemon/0262_Mightyena.png deleted file mode 100644 index 2853478..0000000 Binary files a/Site/static/images/pokemon/0262_Mightyena.png and /dev/null differ diff --git a/Site/static/images/pokemon/0263-03-000-0.png b/Site/static/images/pokemon/0263-03-000-0.png new file mode 100644 index 0000000..d360213 Binary files /dev/null and b/Site/static/images/pokemon/0263-03-000-0.png differ diff --git a/Site/static/images/pokemon/0263-03-001-0.png b/Site/static/images/pokemon/0263-03-001-0.png new file mode 100644 index 0000000..8e17234 Binary files /dev/null and b/Site/static/images/pokemon/0263-03-001-0.png differ diff --git a/Site/static/images/pokemon/0263_Zigzagoon.png b/Site/static/images/pokemon/0263_Zigzagoon.png deleted file mode 100644 index 30f85f7..0000000 Binary files a/Site/static/images/pokemon/0263_Zigzagoon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0263_Zigzagoon_(Galarian_Form).png b/Site/static/images/pokemon/0263_Zigzagoon_(Galarian_Form).png deleted file mode 100644 index 02c9f0a..0000000 Binary files a/Site/static/images/pokemon/0263_Zigzagoon_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0264-03-000-0.png b/Site/static/images/pokemon/0264-03-000-0.png new file mode 100644 index 0000000..c1f8d13 Binary files /dev/null and b/Site/static/images/pokemon/0264-03-000-0.png differ diff --git a/Site/static/images/pokemon/0264-03-001-0.png b/Site/static/images/pokemon/0264-03-001-0.png new file mode 100644 index 0000000..8bf34b1 Binary files /dev/null and b/Site/static/images/pokemon/0264-03-001-0.png differ diff --git a/Site/static/images/pokemon/0264_Linoone.png b/Site/static/images/pokemon/0264_Linoone.png deleted file mode 100644 index 656ab27..0000000 Binary files a/Site/static/images/pokemon/0264_Linoone.png and /dev/null differ diff --git a/Site/static/images/pokemon/0264_Linoone_(Galarian_Form).png b/Site/static/images/pokemon/0264_Linoone_(Galarian_Form).png deleted file mode 100644 index b85ea01..0000000 Binary files a/Site/static/images/pokemon/0264_Linoone_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0265-03-000-0.png b/Site/static/images/pokemon/0265-03-000-0.png new file mode 100644 index 0000000..29b0f7d Binary files /dev/null and b/Site/static/images/pokemon/0265-03-000-0.png differ diff --git a/Site/static/images/pokemon/0265_Wurmple.png b/Site/static/images/pokemon/0265_Wurmple.png deleted file mode 100644 index a91966d..0000000 Binary files a/Site/static/images/pokemon/0265_Wurmple.png and /dev/null differ diff --git a/Site/static/images/pokemon/0266-03-000-0.png b/Site/static/images/pokemon/0266-03-000-0.png new file mode 100644 index 0000000..9399057 Binary files /dev/null and b/Site/static/images/pokemon/0266-03-000-0.png differ diff --git a/Site/static/images/pokemon/0266_Silcoon.png b/Site/static/images/pokemon/0266_Silcoon.png deleted file mode 100644 index 8b8c7c1..0000000 Binary files a/Site/static/images/pokemon/0266_Silcoon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0267-03-000-1.png b/Site/static/images/pokemon/0267-03-000-1.png new file mode 100644 index 0000000..5a2860a Binary files /dev/null and b/Site/static/images/pokemon/0267-03-000-1.png differ diff --git a/Site/static/images/pokemon/0267-03-000-2.png b/Site/static/images/pokemon/0267-03-000-2.png new file mode 100644 index 0000000..1fc076f Binary files /dev/null and b/Site/static/images/pokemon/0267-03-000-2.png differ diff --git a/Site/static/images/pokemon/0267_Beautifly.png b/Site/static/images/pokemon/0267_Beautifly.png deleted file mode 100644 index c7ef73c..0000000 Binary files a/Site/static/images/pokemon/0267_Beautifly.png and /dev/null differ diff --git a/Site/static/images/pokemon/0268-03-000-0.png b/Site/static/images/pokemon/0268-03-000-0.png new file mode 100644 index 0000000..fa9103c Binary files /dev/null and b/Site/static/images/pokemon/0268-03-000-0.png differ diff --git a/Site/static/images/pokemon/0268_Cascoon.png b/Site/static/images/pokemon/0268_Cascoon.png deleted file mode 100644 index b2ade62..0000000 Binary files a/Site/static/images/pokemon/0268_Cascoon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0269-03-000-1.png b/Site/static/images/pokemon/0269-03-000-1.png new file mode 100644 index 0000000..1dd2f0c Binary files /dev/null and b/Site/static/images/pokemon/0269-03-000-1.png differ diff --git a/Site/static/images/pokemon/0269-03-000-2.png b/Site/static/images/pokemon/0269-03-000-2.png new file mode 100644 index 0000000..64875bb Binary files /dev/null and b/Site/static/images/pokemon/0269-03-000-2.png differ diff --git a/Site/static/images/pokemon/0269_Dustox.png b/Site/static/images/pokemon/0269_Dustox.png deleted file mode 100644 index 0c618c1..0000000 Binary files a/Site/static/images/pokemon/0269_Dustox.png and /dev/null differ diff --git a/Site/static/images/pokemon/0270-03-000-0.png b/Site/static/images/pokemon/0270-03-000-0.png new file mode 100644 index 0000000..1184816 Binary files /dev/null and b/Site/static/images/pokemon/0270-03-000-0.png differ diff --git a/Site/static/images/pokemon/0270_Lotad.png b/Site/static/images/pokemon/0270_Lotad.png deleted file mode 100644 index f761fd1..0000000 Binary files a/Site/static/images/pokemon/0270_Lotad.png and /dev/null differ diff --git a/Site/static/images/pokemon/0271-03-000-0.png b/Site/static/images/pokemon/0271-03-000-0.png new file mode 100644 index 0000000..3913e2e Binary files /dev/null and b/Site/static/images/pokemon/0271-03-000-0.png differ diff --git a/Site/static/images/pokemon/0271_Lombre.png b/Site/static/images/pokemon/0271_Lombre.png deleted file mode 100644 index 030f6f7..0000000 Binary files a/Site/static/images/pokemon/0271_Lombre.png and /dev/null differ diff --git a/Site/static/images/pokemon/0272-03-000-1.png b/Site/static/images/pokemon/0272-03-000-1.png new file mode 100644 index 0000000..3a2578b Binary files /dev/null and b/Site/static/images/pokemon/0272-03-000-1.png differ diff --git a/Site/static/images/pokemon/0272-03-000-2.png b/Site/static/images/pokemon/0272-03-000-2.png new file mode 100644 index 0000000..80159c7 Binary files /dev/null and b/Site/static/images/pokemon/0272-03-000-2.png differ diff --git a/Site/static/images/pokemon/0272_Ludicolo.png b/Site/static/images/pokemon/0272_Ludicolo.png deleted file mode 100644 index 569ff8d..0000000 Binary files a/Site/static/images/pokemon/0272_Ludicolo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0273-03-000-0.png b/Site/static/images/pokemon/0273-03-000-0.png new file mode 100644 index 0000000..b9588de Binary files /dev/null and b/Site/static/images/pokemon/0273-03-000-0.png differ diff --git a/Site/static/images/pokemon/0273_Seedot.png b/Site/static/images/pokemon/0273_Seedot.png deleted file mode 100644 index 42aa9d4..0000000 Binary files a/Site/static/images/pokemon/0273_Seedot.png and /dev/null differ diff --git a/Site/static/images/pokemon/0274-03-000-1.png b/Site/static/images/pokemon/0274-03-000-1.png new file mode 100644 index 0000000..2cd5d1d Binary files /dev/null and b/Site/static/images/pokemon/0274-03-000-1.png differ diff --git a/Site/static/images/pokemon/0274-03-000-2.png b/Site/static/images/pokemon/0274-03-000-2.png new file mode 100644 index 0000000..ee9d542 Binary files /dev/null and b/Site/static/images/pokemon/0274-03-000-2.png differ diff --git a/Site/static/images/pokemon/0274_Nuzleaf.png b/Site/static/images/pokemon/0274_Nuzleaf.png deleted file mode 100644 index 3a2d173..0000000 Binary files a/Site/static/images/pokemon/0274_Nuzleaf.png and /dev/null differ diff --git a/Site/static/images/pokemon/0275-03-000-1.png b/Site/static/images/pokemon/0275-03-000-1.png new file mode 100644 index 0000000..a506775 Binary files /dev/null and b/Site/static/images/pokemon/0275-03-000-1.png differ diff --git a/Site/static/images/pokemon/0275-03-000-2.png b/Site/static/images/pokemon/0275-03-000-2.png new file mode 100644 index 0000000..16e1054 Binary files /dev/null and b/Site/static/images/pokemon/0275-03-000-2.png differ diff --git a/Site/static/images/pokemon/0275_Shiftry.png b/Site/static/images/pokemon/0275_Shiftry.png deleted file mode 100644 index 1d4827f..0000000 Binary files a/Site/static/images/pokemon/0275_Shiftry.png and /dev/null differ diff --git a/Site/static/images/pokemon/0276-03-000-0.png b/Site/static/images/pokemon/0276-03-000-0.png new file mode 100644 index 0000000..92c2d22 Binary files /dev/null and b/Site/static/images/pokemon/0276-03-000-0.png differ diff --git a/Site/static/images/pokemon/0276_Taillow.png b/Site/static/images/pokemon/0276_Taillow.png deleted file mode 100644 index b8a902a..0000000 Binary files a/Site/static/images/pokemon/0276_Taillow.png and /dev/null differ diff --git a/Site/static/images/pokemon/0277-03-000-0.png b/Site/static/images/pokemon/0277-03-000-0.png new file mode 100644 index 0000000..87015fe Binary files /dev/null and b/Site/static/images/pokemon/0277-03-000-0.png differ diff --git a/Site/static/images/pokemon/0277_Swellow.png b/Site/static/images/pokemon/0277_Swellow.png deleted file mode 100644 index ac277ad..0000000 Binary files a/Site/static/images/pokemon/0277_Swellow.png and /dev/null differ diff --git a/Site/static/images/pokemon/0278-03-000-0.png b/Site/static/images/pokemon/0278-03-000-0.png new file mode 100644 index 0000000..5a1ce99 Binary files /dev/null and b/Site/static/images/pokemon/0278-03-000-0.png differ diff --git a/Site/static/images/pokemon/0278_Wingull.png b/Site/static/images/pokemon/0278_Wingull.png deleted file mode 100644 index 1371f2b..0000000 Binary files a/Site/static/images/pokemon/0278_Wingull.png and /dev/null differ diff --git a/Site/static/images/pokemon/0279-03-000-0.png b/Site/static/images/pokemon/0279-03-000-0.png new file mode 100644 index 0000000..420a6da Binary files /dev/null and b/Site/static/images/pokemon/0279-03-000-0.png differ diff --git a/Site/static/images/pokemon/0279_Pelipper.png b/Site/static/images/pokemon/0279_Pelipper.png deleted file mode 100644 index cd37bdb..0000000 Binary files a/Site/static/images/pokemon/0279_Pelipper.png and /dev/null differ diff --git a/Site/static/images/pokemon/0280-03-000-0.png b/Site/static/images/pokemon/0280-03-000-0.png new file mode 100644 index 0000000..a48af41 Binary files /dev/null and b/Site/static/images/pokemon/0280-03-000-0.png differ diff --git a/Site/static/images/pokemon/0280_Ralts.png b/Site/static/images/pokemon/0280_Ralts.png deleted file mode 100644 index 38e52c1..0000000 Binary files a/Site/static/images/pokemon/0280_Ralts.png and /dev/null differ diff --git a/Site/static/images/pokemon/0281-03-000-0.png b/Site/static/images/pokemon/0281-03-000-0.png new file mode 100644 index 0000000..5a531cc Binary files /dev/null and b/Site/static/images/pokemon/0281-03-000-0.png differ diff --git a/Site/static/images/pokemon/0281_Kirlia.png b/Site/static/images/pokemon/0281_Kirlia.png deleted file mode 100644 index 582bc77..0000000 Binary files a/Site/static/images/pokemon/0281_Kirlia.png and /dev/null differ diff --git a/Site/static/images/pokemon/0282-03-000-0.png b/Site/static/images/pokemon/0282-03-000-0.png new file mode 100644 index 0000000..0b86e2f Binary files /dev/null and b/Site/static/images/pokemon/0282-03-000-0.png differ diff --git a/Site/static/images/pokemon/0282-03-001-0.png b/Site/static/images/pokemon/0282-03-001-0.png new file mode 100644 index 0000000..faf8c32 Binary files /dev/null and b/Site/static/images/pokemon/0282-03-001-0.png differ diff --git a/Site/static/images/pokemon/0282_Gardevoir.png b/Site/static/images/pokemon/0282_Gardevoir.png deleted file mode 100644 index b4c38c5..0000000 Binary files a/Site/static/images/pokemon/0282_Gardevoir.png and /dev/null differ diff --git a/Site/static/images/pokemon/0283-03-000-0.png b/Site/static/images/pokemon/0283-03-000-0.png new file mode 100644 index 0000000..fb7cb46 Binary files /dev/null and b/Site/static/images/pokemon/0283-03-000-0.png differ diff --git a/Site/static/images/pokemon/0283_Surskit.png b/Site/static/images/pokemon/0283_Surskit.png deleted file mode 100644 index 553a8b0..0000000 Binary files a/Site/static/images/pokemon/0283_Surskit.png and /dev/null differ diff --git a/Site/static/images/pokemon/0284-03-000-0.png b/Site/static/images/pokemon/0284-03-000-0.png new file mode 100644 index 0000000..74bf36c Binary files /dev/null and b/Site/static/images/pokemon/0284-03-000-0.png differ diff --git a/Site/static/images/pokemon/0284_Masquerain.png b/Site/static/images/pokemon/0284_Masquerain.png deleted file mode 100644 index 4dc83e9..0000000 Binary files a/Site/static/images/pokemon/0284_Masquerain.png and /dev/null differ diff --git a/Site/static/images/pokemon/0285-03-000-0.png b/Site/static/images/pokemon/0285-03-000-0.png new file mode 100644 index 0000000..5bcd455 Binary files /dev/null and b/Site/static/images/pokemon/0285-03-000-0.png differ diff --git a/Site/static/images/pokemon/0285_Shroomish.png b/Site/static/images/pokemon/0285_Shroomish.png deleted file mode 100644 index 35c96e8..0000000 Binary files a/Site/static/images/pokemon/0285_Shroomish.png and /dev/null differ diff --git a/Site/static/images/pokemon/0286-03-000-0.png b/Site/static/images/pokemon/0286-03-000-0.png new file mode 100644 index 0000000..60387e1 Binary files /dev/null and b/Site/static/images/pokemon/0286-03-000-0.png differ diff --git a/Site/static/images/pokemon/0286_Breloom.png b/Site/static/images/pokemon/0286_Breloom.png deleted file mode 100644 index 9f0070a..0000000 Binary files a/Site/static/images/pokemon/0286_Breloom.png and /dev/null differ diff --git a/Site/static/images/pokemon/0287-03-000-0.png b/Site/static/images/pokemon/0287-03-000-0.png new file mode 100644 index 0000000..59c12dc Binary files /dev/null and b/Site/static/images/pokemon/0287-03-000-0.png differ diff --git a/Site/static/images/pokemon/0287_Slakoth.png b/Site/static/images/pokemon/0287_Slakoth.png deleted file mode 100644 index de948ae..0000000 Binary files a/Site/static/images/pokemon/0287_Slakoth.png and /dev/null differ diff --git a/Site/static/images/pokemon/0288-03-000-0.png b/Site/static/images/pokemon/0288-03-000-0.png new file mode 100644 index 0000000..c619cf9 Binary files /dev/null and b/Site/static/images/pokemon/0288-03-000-0.png differ diff --git a/Site/static/images/pokemon/0288_Vigoroth.png b/Site/static/images/pokemon/0288_Vigoroth.png deleted file mode 100644 index 8fc66cd..0000000 Binary files a/Site/static/images/pokemon/0288_Vigoroth.png and /dev/null differ diff --git a/Site/static/images/pokemon/0289-03-000-0.png b/Site/static/images/pokemon/0289-03-000-0.png new file mode 100644 index 0000000..80144a8 Binary files /dev/null and b/Site/static/images/pokemon/0289-03-000-0.png differ diff --git a/Site/static/images/pokemon/0289_Slaking.png b/Site/static/images/pokemon/0289_Slaking.png deleted file mode 100644 index 1b7cab0..0000000 Binary files a/Site/static/images/pokemon/0289_Slaking.png and /dev/null differ diff --git a/Site/static/images/pokemon/0290-03-000-0.png b/Site/static/images/pokemon/0290-03-000-0.png new file mode 100644 index 0000000..ee349cf Binary files /dev/null and b/Site/static/images/pokemon/0290-03-000-0.png differ diff --git a/Site/static/images/pokemon/0290_Nincada.png b/Site/static/images/pokemon/0290_Nincada.png deleted file mode 100644 index 57d5476..0000000 Binary files a/Site/static/images/pokemon/0290_Nincada.png and /dev/null differ diff --git a/Site/static/images/pokemon/0291-03-000-0.png b/Site/static/images/pokemon/0291-03-000-0.png new file mode 100644 index 0000000..f7528f5 Binary files /dev/null and b/Site/static/images/pokemon/0291-03-000-0.png differ diff --git a/Site/static/images/pokemon/0291_Ninjask.png b/Site/static/images/pokemon/0291_Ninjask.png deleted file mode 100644 index b1369c5..0000000 Binary files a/Site/static/images/pokemon/0291_Ninjask.png and /dev/null differ diff --git a/Site/static/images/pokemon/0292-03-000-0.png b/Site/static/images/pokemon/0292-03-000-0.png new file mode 100644 index 0000000..6cd01e1 Binary files /dev/null and b/Site/static/images/pokemon/0292-03-000-0.png differ diff --git a/Site/static/images/pokemon/0292_Shedinja.png b/Site/static/images/pokemon/0292_Shedinja.png deleted file mode 100644 index 2381506..0000000 Binary files a/Site/static/images/pokemon/0292_Shedinja.png and /dev/null differ diff --git a/Site/static/images/pokemon/0293-03-000-0.png b/Site/static/images/pokemon/0293-03-000-0.png new file mode 100644 index 0000000..f2ed1a4 Binary files /dev/null and b/Site/static/images/pokemon/0293-03-000-0.png differ diff --git a/Site/static/images/pokemon/0293_Whismur.png b/Site/static/images/pokemon/0293_Whismur.png deleted file mode 100644 index 7687430..0000000 Binary files a/Site/static/images/pokemon/0293_Whismur.png and /dev/null differ diff --git a/Site/static/images/pokemon/0294-03-000-0.png b/Site/static/images/pokemon/0294-03-000-0.png new file mode 100644 index 0000000..2a70439 Binary files /dev/null and b/Site/static/images/pokemon/0294-03-000-0.png differ diff --git a/Site/static/images/pokemon/0294_Loudred.png b/Site/static/images/pokemon/0294_Loudred.png deleted file mode 100644 index fa7535b..0000000 Binary files a/Site/static/images/pokemon/0294_Loudred.png and /dev/null differ diff --git a/Site/static/images/pokemon/0295-03-000-0.png b/Site/static/images/pokemon/0295-03-000-0.png new file mode 100644 index 0000000..b3bfad1 Binary files /dev/null and b/Site/static/images/pokemon/0295-03-000-0.png differ diff --git a/Site/static/images/pokemon/0295_Exploud.png b/Site/static/images/pokemon/0295_Exploud.png deleted file mode 100644 index d696c75..0000000 Binary files a/Site/static/images/pokemon/0295_Exploud.png and /dev/null differ diff --git a/Site/static/images/pokemon/0296-03-000-0.png b/Site/static/images/pokemon/0296-03-000-0.png new file mode 100644 index 0000000..ba897e6 Binary files /dev/null and b/Site/static/images/pokemon/0296-03-000-0.png differ diff --git a/Site/static/images/pokemon/0296_Makuhita.png b/Site/static/images/pokemon/0296_Makuhita.png deleted file mode 100644 index 824198b..0000000 Binary files a/Site/static/images/pokemon/0296_Makuhita.png and /dev/null differ diff --git a/Site/static/images/pokemon/0297-03-000-0.png b/Site/static/images/pokemon/0297-03-000-0.png new file mode 100644 index 0000000..8238058 Binary files /dev/null and b/Site/static/images/pokemon/0297-03-000-0.png differ diff --git a/Site/static/images/pokemon/0297_Hariyama.png b/Site/static/images/pokemon/0297_Hariyama.png deleted file mode 100644 index 82057f6..0000000 Binary files a/Site/static/images/pokemon/0297_Hariyama.png and /dev/null differ diff --git a/Site/static/images/pokemon/0298-03-000-0.png b/Site/static/images/pokemon/0298-03-000-0.png new file mode 100644 index 0000000..e9a7aca Binary files /dev/null and b/Site/static/images/pokemon/0298-03-000-0.png differ diff --git a/Site/static/images/pokemon/0298_Azurill.png b/Site/static/images/pokemon/0298_Azurill.png deleted file mode 100644 index 87c1bc1..0000000 Binary files a/Site/static/images/pokemon/0298_Azurill.png and /dev/null differ diff --git a/Site/static/images/pokemon/0299-03-000-0.png b/Site/static/images/pokemon/0299-03-000-0.png new file mode 100644 index 0000000..53aa8a7 Binary files /dev/null and b/Site/static/images/pokemon/0299-03-000-0.png differ diff --git a/Site/static/images/pokemon/0299_Nosepass.png b/Site/static/images/pokemon/0299_Nosepass.png deleted file mode 100644 index e9f83aa..0000000 Binary files a/Site/static/images/pokemon/0299_Nosepass.png and /dev/null differ diff --git a/Site/static/images/pokemon/0300-03-000-0.png b/Site/static/images/pokemon/0300-03-000-0.png new file mode 100644 index 0000000..818e494 Binary files /dev/null and b/Site/static/images/pokemon/0300-03-000-0.png differ diff --git a/Site/static/images/pokemon/0300_Skitty.png b/Site/static/images/pokemon/0300_Skitty.png deleted file mode 100644 index 36f4ddb..0000000 Binary files a/Site/static/images/pokemon/0300_Skitty.png and /dev/null differ diff --git a/Site/static/images/pokemon/0301-03-000-0.png b/Site/static/images/pokemon/0301-03-000-0.png new file mode 100644 index 0000000..e8b6ddc Binary files /dev/null and b/Site/static/images/pokemon/0301-03-000-0.png differ diff --git a/Site/static/images/pokemon/0301_Delcatty.png b/Site/static/images/pokemon/0301_Delcatty.png deleted file mode 100644 index 42675a3..0000000 Binary files a/Site/static/images/pokemon/0301_Delcatty.png and /dev/null differ diff --git a/Site/static/images/pokemon/0302-03-000-0.png b/Site/static/images/pokemon/0302-03-000-0.png new file mode 100644 index 0000000..3699325 Binary files /dev/null and b/Site/static/images/pokemon/0302-03-000-0.png differ diff --git a/Site/static/images/pokemon/0302-03-001-0.png b/Site/static/images/pokemon/0302-03-001-0.png new file mode 100644 index 0000000..37719fb Binary files /dev/null and b/Site/static/images/pokemon/0302-03-001-0.png differ diff --git a/Site/static/images/pokemon/0302_Sableye.png b/Site/static/images/pokemon/0302_Sableye.png deleted file mode 100644 index b01820f..0000000 Binary files a/Site/static/images/pokemon/0302_Sableye.png and /dev/null differ diff --git a/Site/static/images/pokemon/0303-03-000-0.png b/Site/static/images/pokemon/0303-03-000-0.png new file mode 100644 index 0000000..8c8ca8f Binary files /dev/null and b/Site/static/images/pokemon/0303-03-000-0.png differ diff --git a/Site/static/images/pokemon/0303-03-001-0.png b/Site/static/images/pokemon/0303-03-001-0.png new file mode 100644 index 0000000..e36a1a9 Binary files /dev/null and b/Site/static/images/pokemon/0303-03-001-0.png differ diff --git a/Site/static/images/pokemon/0303_Mawile.png b/Site/static/images/pokemon/0303_Mawile.png deleted file mode 100644 index 5b6c0fa..0000000 Binary files a/Site/static/images/pokemon/0303_Mawile.png and /dev/null differ diff --git a/Site/static/images/pokemon/0304-03-000-0.png b/Site/static/images/pokemon/0304-03-000-0.png new file mode 100644 index 0000000..84852f6 Binary files /dev/null and b/Site/static/images/pokemon/0304-03-000-0.png differ diff --git a/Site/static/images/pokemon/0304_Aron.png b/Site/static/images/pokemon/0304_Aron.png deleted file mode 100644 index fddcc29..0000000 Binary files a/Site/static/images/pokemon/0304_Aron.png and /dev/null differ diff --git a/Site/static/images/pokemon/0305-03-000-0.png b/Site/static/images/pokemon/0305-03-000-0.png new file mode 100644 index 0000000..65cab7a Binary files /dev/null and b/Site/static/images/pokemon/0305-03-000-0.png differ diff --git a/Site/static/images/pokemon/0305_Lairon.png b/Site/static/images/pokemon/0305_Lairon.png deleted file mode 100644 index b7233f8..0000000 Binary files a/Site/static/images/pokemon/0305_Lairon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0306-03-000-0.png b/Site/static/images/pokemon/0306-03-000-0.png new file mode 100644 index 0000000..95040ad Binary files /dev/null and b/Site/static/images/pokemon/0306-03-000-0.png differ diff --git a/Site/static/images/pokemon/0306-03-001-0.png b/Site/static/images/pokemon/0306-03-001-0.png new file mode 100644 index 0000000..5f694a3 Binary files /dev/null and b/Site/static/images/pokemon/0306-03-001-0.png differ diff --git a/Site/static/images/pokemon/0306_Aggron.png b/Site/static/images/pokemon/0306_Aggron.png deleted file mode 100644 index 6f6aca8..0000000 Binary files a/Site/static/images/pokemon/0306_Aggron.png and /dev/null differ diff --git a/Site/static/images/pokemon/0307-03-000-1.png b/Site/static/images/pokemon/0307-03-000-1.png new file mode 100644 index 0000000..ed86c86 Binary files /dev/null and b/Site/static/images/pokemon/0307-03-000-1.png differ diff --git a/Site/static/images/pokemon/0307-03-000-2.png b/Site/static/images/pokemon/0307-03-000-2.png new file mode 100644 index 0000000..d81522e Binary files /dev/null and b/Site/static/images/pokemon/0307-03-000-2.png differ diff --git a/Site/static/images/pokemon/0307_Meditite.png b/Site/static/images/pokemon/0307_Meditite.png deleted file mode 100644 index a11100a..0000000 Binary files a/Site/static/images/pokemon/0307_Meditite.png and /dev/null differ diff --git a/Site/static/images/pokemon/0308-03-000-1.png b/Site/static/images/pokemon/0308-03-000-1.png new file mode 100644 index 0000000..0d8ddbb Binary files /dev/null and b/Site/static/images/pokemon/0308-03-000-1.png differ diff --git a/Site/static/images/pokemon/0308-03-000-2.png b/Site/static/images/pokemon/0308-03-000-2.png new file mode 100644 index 0000000..639bfec Binary files /dev/null and b/Site/static/images/pokemon/0308-03-000-2.png differ diff --git a/Site/static/images/pokemon/0308-03-001-0.png b/Site/static/images/pokemon/0308-03-001-0.png new file mode 100644 index 0000000..f4b0db4 Binary files /dev/null and b/Site/static/images/pokemon/0308-03-001-0.png differ diff --git a/Site/static/images/pokemon/0308_Medicham.png b/Site/static/images/pokemon/0308_Medicham.png deleted file mode 100644 index e2ff38c..0000000 Binary files a/Site/static/images/pokemon/0308_Medicham.png and /dev/null differ diff --git a/Site/static/images/pokemon/0309-03-000-0.png b/Site/static/images/pokemon/0309-03-000-0.png new file mode 100644 index 0000000..a16a872 Binary files /dev/null and b/Site/static/images/pokemon/0309-03-000-0.png differ diff --git a/Site/static/images/pokemon/0309_Electrike.png b/Site/static/images/pokemon/0309_Electrike.png deleted file mode 100644 index ddaef1f..0000000 Binary files a/Site/static/images/pokemon/0309_Electrike.png and /dev/null differ diff --git a/Site/static/images/pokemon/0310-03-000-0.png b/Site/static/images/pokemon/0310-03-000-0.png new file mode 100644 index 0000000..02489a0 Binary files /dev/null and b/Site/static/images/pokemon/0310-03-000-0.png differ diff --git a/Site/static/images/pokemon/0310-03-001-0.png b/Site/static/images/pokemon/0310-03-001-0.png new file mode 100644 index 0000000..c56fe0e Binary files /dev/null and b/Site/static/images/pokemon/0310-03-001-0.png differ diff --git a/Site/static/images/pokemon/0310_Manectric.png b/Site/static/images/pokemon/0310_Manectric.png deleted file mode 100644 index c997ab0..0000000 Binary files a/Site/static/images/pokemon/0310_Manectric.png and /dev/null differ diff --git a/Site/static/images/pokemon/0311-03-000-0.png b/Site/static/images/pokemon/0311-03-000-0.png new file mode 100644 index 0000000..63a3fc1 Binary files /dev/null and b/Site/static/images/pokemon/0311-03-000-0.png differ diff --git a/Site/static/images/pokemon/0311_Plusle.png b/Site/static/images/pokemon/0311_Plusle.png deleted file mode 100644 index bf891c4..0000000 Binary files a/Site/static/images/pokemon/0311_Plusle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0312-03-000-0.png b/Site/static/images/pokemon/0312-03-000-0.png new file mode 100644 index 0000000..6be00b3 Binary files /dev/null and b/Site/static/images/pokemon/0312-03-000-0.png differ diff --git a/Site/static/images/pokemon/0312_Minun.png b/Site/static/images/pokemon/0312_Minun.png deleted file mode 100644 index ca58edf..0000000 Binary files a/Site/static/images/pokemon/0312_Minun.png and /dev/null differ diff --git a/Site/static/images/pokemon/0313-03-000-0.png b/Site/static/images/pokemon/0313-03-000-0.png new file mode 100644 index 0000000..721bd98 Binary files /dev/null and b/Site/static/images/pokemon/0313-03-000-0.png differ diff --git a/Site/static/images/pokemon/0313_Volbeat.png b/Site/static/images/pokemon/0313_Volbeat.png deleted file mode 100644 index f5a0a79..0000000 Binary files a/Site/static/images/pokemon/0313_Volbeat.png and /dev/null differ diff --git a/Site/static/images/pokemon/0314-03-000-0.png b/Site/static/images/pokemon/0314-03-000-0.png new file mode 100644 index 0000000..a0c59a0 Binary files /dev/null and b/Site/static/images/pokemon/0314-03-000-0.png differ diff --git a/Site/static/images/pokemon/0314_Illumise.png b/Site/static/images/pokemon/0314_Illumise.png deleted file mode 100644 index b84b9b1..0000000 Binary files a/Site/static/images/pokemon/0314_Illumise.png and /dev/null differ diff --git a/Site/static/images/pokemon/0315-03-000-1.png b/Site/static/images/pokemon/0315-03-000-1.png new file mode 100644 index 0000000..5de7368 Binary files /dev/null and b/Site/static/images/pokemon/0315-03-000-1.png differ diff --git a/Site/static/images/pokemon/0315-03-000-2.png b/Site/static/images/pokemon/0315-03-000-2.png new file mode 100644 index 0000000..3d545fa Binary files /dev/null and b/Site/static/images/pokemon/0315-03-000-2.png differ diff --git a/Site/static/images/pokemon/0315_Roselia.png b/Site/static/images/pokemon/0315_Roselia.png deleted file mode 100644 index aab4c3c..0000000 Binary files a/Site/static/images/pokemon/0315_Roselia.png and /dev/null differ diff --git a/Site/static/images/pokemon/0316-03-000-1.png b/Site/static/images/pokemon/0316-03-000-1.png new file mode 100644 index 0000000..cdcff4d Binary files /dev/null and b/Site/static/images/pokemon/0316-03-000-1.png differ diff --git a/Site/static/images/pokemon/0316-03-000-2.png b/Site/static/images/pokemon/0316-03-000-2.png new file mode 100644 index 0000000..44ae40f Binary files /dev/null and b/Site/static/images/pokemon/0316-03-000-2.png differ diff --git a/Site/static/images/pokemon/0316_Gulpin.png b/Site/static/images/pokemon/0316_Gulpin.png deleted file mode 100644 index 6e6c6c2..0000000 Binary files a/Site/static/images/pokemon/0316_Gulpin.png and /dev/null differ diff --git a/Site/static/images/pokemon/0317-03-000-1.png b/Site/static/images/pokemon/0317-03-000-1.png new file mode 100644 index 0000000..0068b49 Binary files /dev/null and b/Site/static/images/pokemon/0317-03-000-1.png differ diff --git a/Site/static/images/pokemon/0317-03-000-2.png b/Site/static/images/pokemon/0317-03-000-2.png new file mode 100644 index 0000000..a6bc405 Binary files /dev/null and b/Site/static/images/pokemon/0317-03-000-2.png differ diff --git a/Site/static/images/pokemon/0317_Swalot.png b/Site/static/images/pokemon/0317_Swalot.png deleted file mode 100644 index 68c4fb3..0000000 Binary files a/Site/static/images/pokemon/0317_Swalot.png and /dev/null differ diff --git a/Site/static/images/pokemon/0318-03-000-0.png b/Site/static/images/pokemon/0318-03-000-0.png new file mode 100644 index 0000000..82422f5 Binary files /dev/null and b/Site/static/images/pokemon/0318-03-000-0.png differ diff --git a/Site/static/images/pokemon/0318_Carvanha.png b/Site/static/images/pokemon/0318_Carvanha.png deleted file mode 100644 index a8d82c3..0000000 Binary files a/Site/static/images/pokemon/0318_Carvanha.png and /dev/null differ diff --git a/Site/static/images/pokemon/0319-03-000-0.png b/Site/static/images/pokemon/0319-03-000-0.png new file mode 100644 index 0000000..b0dd44c Binary files /dev/null and b/Site/static/images/pokemon/0319-03-000-0.png differ diff --git a/Site/static/images/pokemon/0319-03-001-0.png b/Site/static/images/pokemon/0319-03-001-0.png new file mode 100644 index 0000000..822c281 Binary files /dev/null and b/Site/static/images/pokemon/0319-03-001-0.png differ diff --git a/Site/static/images/pokemon/0319_Sharpedo.png b/Site/static/images/pokemon/0319_Sharpedo.png deleted file mode 100644 index d72f9b3..0000000 Binary files a/Site/static/images/pokemon/0319_Sharpedo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0320-03-000-0.png b/Site/static/images/pokemon/0320-03-000-0.png new file mode 100644 index 0000000..dc43a3e Binary files /dev/null and b/Site/static/images/pokemon/0320-03-000-0.png differ diff --git a/Site/static/images/pokemon/0320_Wailmer.png b/Site/static/images/pokemon/0320_Wailmer.png deleted file mode 100644 index b5d5768..0000000 Binary files a/Site/static/images/pokemon/0320_Wailmer.png and /dev/null differ diff --git a/Site/static/images/pokemon/0321-03-000-0.png b/Site/static/images/pokemon/0321-03-000-0.png new file mode 100644 index 0000000..46ef2e7 Binary files /dev/null and b/Site/static/images/pokemon/0321-03-000-0.png differ diff --git a/Site/static/images/pokemon/0321_Wailord.png b/Site/static/images/pokemon/0321_Wailord.png deleted file mode 100644 index cf3d045..0000000 Binary files a/Site/static/images/pokemon/0321_Wailord.png and /dev/null differ diff --git a/Site/static/images/pokemon/0322-03-000-1.png b/Site/static/images/pokemon/0322-03-000-1.png new file mode 100644 index 0000000..bac94d7 Binary files /dev/null and b/Site/static/images/pokemon/0322-03-000-1.png differ diff --git a/Site/static/images/pokemon/0322-03-000-2.png b/Site/static/images/pokemon/0322-03-000-2.png new file mode 100644 index 0000000..c18fbec Binary files /dev/null and b/Site/static/images/pokemon/0322-03-000-2.png differ diff --git a/Site/static/images/pokemon/0322_Numel.png b/Site/static/images/pokemon/0322_Numel.png deleted file mode 100644 index faa08d4..0000000 Binary files a/Site/static/images/pokemon/0322_Numel.png and /dev/null differ diff --git a/Site/static/images/pokemon/0323-03-000-1.png b/Site/static/images/pokemon/0323-03-000-1.png new file mode 100644 index 0000000..adac7c6 Binary files /dev/null and b/Site/static/images/pokemon/0323-03-000-1.png differ diff --git a/Site/static/images/pokemon/0323-03-000-2.png b/Site/static/images/pokemon/0323-03-000-2.png new file mode 100644 index 0000000..b520735 Binary files /dev/null and b/Site/static/images/pokemon/0323-03-000-2.png differ diff --git a/Site/static/images/pokemon/0323-03-001-0.png b/Site/static/images/pokemon/0323-03-001-0.png new file mode 100644 index 0000000..99a5e15 Binary files /dev/null and b/Site/static/images/pokemon/0323-03-001-0.png differ diff --git a/Site/static/images/pokemon/0323_Camerupt.png b/Site/static/images/pokemon/0323_Camerupt.png deleted file mode 100644 index 797ad36..0000000 Binary files a/Site/static/images/pokemon/0323_Camerupt.png and /dev/null differ diff --git a/Site/static/images/pokemon/0324-03-000-0.png b/Site/static/images/pokemon/0324-03-000-0.png new file mode 100644 index 0000000..0ff32e1 Binary files /dev/null and b/Site/static/images/pokemon/0324-03-000-0.png differ diff --git a/Site/static/images/pokemon/0324_Torkoal.png b/Site/static/images/pokemon/0324_Torkoal.png deleted file mode 100644 index 58ed61a..0000000 Binary files a/Site/static/images/pokemon/0324_Torkoal.png and /dev/null differ diff --git a/Site/static/images/pokemon/0325-03-000-0.png b/Site/static/images/pokemon/0325-03-000-0.png new file mode 100644 index 0000000..0495b42 Binary files /dev/null and b/Site/static/images/pokemon/0325-03-000-0.png differ diff --git a/Site/static/images/pokemon/0325_Spoink.png b/Site/static/images/pokemon/0325_Spoink.png deleted file mode 100644 index bf3b3c5..0000000 Binary files a/Site/static/images/pokemon/0325_Spoink.png and /dev/null differ diff --git a/Site/static/images/pokemon/0326-03-000-0.png b/Site/static/images/pokemon/0326-03-000-0.png new file mode 100644 index 0000000..d47b51b Binary files /dev/null and b/Site/static/images/pokemon/0326-03-000-0.png differ diff --git a/Site/static/images/pokemon/0326_Grumpig.png b/Site/static/images/pokemon/0326_Grumpig.png deleted file mode 100644 index d0c25d7..0000000 Binary files a/Site/static/images/pokemon/0326_Grumpig.png and /dev/null differ diff --git a/Site/static/images/pokemon/0327-03-000-0.png b/Site/static/images/pokemon/0327-03-000-0.png new file mode 100644 index 0000000..5607d1a Binary files /dev/null and b/Site/static/images/pokemon/0327-03-000-0.png differ diff --git a/Site/static/images/pokemon/0327_Spinda.png b/Site/static/images/pokemon/0327_Spinda.png deleted file mode 100644 index 2eed0e6..0000000 Binary files a/Site/static/images/pokemon/0327_Spinda.png and /dev/null differ diff --git a/Site/static/images/pokemon/0328-03-000-0.png b/Site/static/images/pokemon/0328-03-000-0.png new file mode 100644 index 0000000..776ce8f Binary files /dev/null and b/Site/static/images/pokemon/0328-03-000-0.png differ diff --git a/Site/static/images/pokemon/0328_Trapinch.png b/Site/static/images/pokemon/0328_Trapinch.png deleted file mode 100644 index 037ccfd..0000000 Binary files a/Site/static/images/pokemon/0328_Trapinch.png and /dev/null differ diff --git a/Site/static/images/pokemon/0329-03-000-0.png b/Site/static/images/pokemon/0329-03-000-0.png new file mode 100644 index 0000000..9efe3aa Binary files /dev/null and b/Site/static/images/pokemon/0329-03-000-0.png differ diff --git a/Site/static/images/pokemon/0329_Vibrava.png b/Site/static/images/pokemon/0329_Vibrava.png deleted file mode 100644 index 34fc262..0000000 Binary files a/Site/static/images/pokemon/0329_Vibrava.png and /dev/null differ diff --git a/Site/static/images/pokemon/0330-03-000-0.png b/Site/static/images/pokemon/0330-03-000-0.png new file mode 100644 index 0000000..3eb5415 Binary files /dev/null and b/Site/static/images/pokemon/0330-03-000-0.png differ diff --git a/Site/static/images/pokemon/0330_Flygon.png b/Site/static/images/pokemon/0330_Flygon.png deleted file mode 100644 index e178386..0000000 Binary files a/Site/static/images/pokemon/0330_Flygon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0331-03-000-0.png b/Site/static/images/pokemon/0331-03-000-0.png new file mode 100644 index 0000000..08510f6 Binary files /dev/null and b/Site/static/images/pokemon/0331-03-000-0.png differ diff --git a/Site/static/images/pokemon/0331_Cacnea.png b/Site/static/images/pokemon/0331_Cacnea.png deleted file mode 100644 index c39b64a..0000000 Binary files a/Site/static/images/pokemon/0331_Cacnea.png and /dev/null differ diff --git a/Site/static/images/pokemon/0332-03-000-1.png b/Site/static/images/pokemon/0332-03-000-1.png new file mode 100644 index 0000000..9ad1597 Binary files /dev/null and b/Site/static/images/pokemon/0332-03-000-1.png differ diff --git a/Site/static/images/pokemon/0332-03-000-2.png b/Site/static/images/pokemon/0332-03-000-2.png new file mode 100644 index 0000000..fb0ef80 Binary files /dev/null and b/Site/static/images/pokemon/0332-03-000-2.png differ diff --git a/Site/static/images/pokemon/0332_Cacturne.png b/Site/static/images/pokemon/0332_Cacturne.png deleted file mode 100644 index 8c9ac27..0000000 Binary files a/Site/static/images/pokemon/0332_Cacturne.png and /dev/null differ diff --git a/Site/static/images/pokemon/0333-03-000-0.png b/Site/static/images/pokemon/0333-03-000-0.png new file mode 100644 index 0000000..3271cc4 Binary files /dev/null and b/Site/static/images/pokemon/0333-03-000-0.png differ diff --git a/Site/static/images/pokemon/0333_Swablu.png b/Site/static/images/pokemon/0333_Swablu.png deleted file mode 100644 index 8b3e12c..0000000 Binary files a/Site/static/images/pokemon/0333_Swablu.png and /dev/null differ diff --git a/Site/static/images/pokemon/0334-03-000-0.png b/Site/static/images/pokemon/0334-03-000-0.png new file mode 100644 index 0000000..e77cdb9 Binary files /dev/null and b/Site/static/images/pokemon/0334-03-000-0.png differ diff --git a/Site/static/images/pokemon/0334-03-001-0.png b/Site/static/images/pokemon/0334-03-001-0.png new file mode 100644 index 0000000..d465135 Binary files /dev/null and b/Site/static/images/pokemon/0334-03-001-0.png differ diff --git a/Site/static/images/pokemon/0334_Altaria.png b/Site/static/images/pokemon/0334_Altaria.png deleted file mode 100644 index 019da49..0000000 Binary files a/Site/static/images/pokemon/0334_Altaria.png and /dev/null differ diff --git a/Site/static/images/pokemon/0335-03-000-0.png b/Site/static/images/pokemon/0335-03-000-0.png new file mode 100644 index 0000000..f3b4c54 Binary files /dev/null and b/Site/static/images/pokemon/0335-03-000-0.png differ diff --git a/Site/static/images/pokemon/0335_Zangoose.png b/Site/static/images/pokemon/0335_Zangoose.png deleted file mode 100644 index 0957202..0000000 Binary files a/Site/static/images/pokemon/0335_Zangoose.png and /dev/null differ diff --git a/Site/static/images/pokemon/0336-03-000-0.png b/Site/static/images/pokemon/0336-03-000-0.png new file mode 100644 index 0000000..3ddd317 Binary files /dev/null and b/Site/static/images/pokemon/0336-03-000-0.png differ diff --git a/Site/static/images/pokemon/0336_Seviper.png b/Site/static/images/pokemon/0336_Seviper.png deleted file mode 100644 index d0d342f..0000000 Binary files a/Site/static/images/pokemon/0336_Seviper.png and /dev/null differ diff --git a/Site/static/images/pokemon/0337-03-000-0.png b/Site/static/images/pokemon/0337-03-000-0.png new file mode 100644 index 0000000..c48e112 Binary files /dev/null and b/Site/static/images/pokemon/0337-03-000-0.png differ diff --git a/Site/static/images/pokemon/0337_Lunatone.png b/Site/static/images/pokemon/0337_Lunatone.png deleted file mode 100644 index a1a67be..0000000 Binary files a/Site/static/images/pokemon/0337_Lunatone.png and /dev/null differ diff --git a/Site/static/images/pokemon/0338-03-000-0.png b/Site/static/images/pokemon/0338-03-000-0.png new file mode 100644 index 0000000..d5d82dd Binary files /dev/null and b/Site/static/images/pokemon/0338-03-000-0.png differ diff --git a/Site/static/images/pokemon/0338_Solrock.png b/Site/static/images/pokemon/0338_Solrock.png deleted file mode 100644 index ef5fa60..0000000 Binary files a/Site/static/images/pokemon/0338_Solrock.png and /dev/null differ diff --git a/Site/static/images/pokemon/0339-03-000-0.png b/Site/static/images/pokemon/0339-03-000-0.png new file mode 100644 index 0000000..4b35901 Binary files /dev/null and b/Site/static/images/pokemon/0339-03-000-0.png differ diff --git a/Site/static/images/pokemon/0339_Barboach.png b/Site/static/images/pokemon/0339_Barboach.png deleted file mode 100644 index 5905603..0000000 Binary files a/Site/static/images/pokemon/0339_Barboach.png and /dev/null differ diff --git a/Site/static/images/pokemon/0340-03-000-0.png b/Site/static/images/pokemon/0340-03-000-0.png new file mode 100644 index 0000000..94bfc86 Binary files /dev/null and b/Site/static/images/pokemon/0340-03-000-0.png differ diff --git a/Site/static/images/pokemon/0340_Whiscash.png b/Site/static/images/pokemon/0340_Whiscash.png deleted file mode 100644 index 901bf95..0000000 Binary files a/Site/static/images/pokemon/0340_Whiscash.png and /dev/null differ diff --git a/Site/static/images/pokemon/0341-03-000-0.png b/Site/static/images/pokemon/0341-03-000-0.png new file mode 100644 index 0000000..75f057e Binary files /dev/null and b/Site/static/images/pokemon/0341-03-000-0.png differ diff --git a/Site/static/images/pokemon/0341_Corphish.png b/Site/static/images/pokemon/0341_Corphish.png deleted file mode 100644 index 331c635..0000000 Binary files a/Site/static/images/pokemon/0341_Corphish.png and /dev/null differ diff --git a/Site/static/images/pokemon/0342-03-000-0.png b/Site/static/images/pokemon/0342-03-000-0.png new file mode 100644 index 0000000..4f7c609 Binary files /dev/null and b/Site/static/images/pokemon/0342-03-000-0.png differ diff --git a/Site/static/images/pokemon/0342_Crawdaunt.png b/Site/static/images/pokemon/0342_Crawdaunt.png deleted file mode 100644 index a5dcb2b..0000000 Binary files a/Site/static/images/pokemon/0342_Crawdaunt.png and /dev/null differ diff --git a/Site/static/images/pokemon/0343-03-000-0.png b/Site/static/images/pokemon/0343-03-000-0.png new file mode 100644 index 0000000..fb30e14 Binary files /dev/null and b/Site/static/images/pokemon/0343-03-000-0.png differ diff --git a/Site/static/images/pokemon/0343_Baltoy.png b/Site/static/images/pokemon/0343_Baltoy.png deleted file mode 100644 index 08093a0..0000000 Binary files a/Site/static/images/pokemon/0343_Baltoy.png and /dev/null differ diff --git a/Site/static/images/pokemon/0344-03-000-0.png b/Site/static/images/pokemon/0344-03-000-0.png new file mode 100644 index 0000000..8a72efd Binary files /dev/null and b/Site/static/images/pokemon/0344-03-000-0.png differ diff --git a/Site/static/images/pokemon/0344_Claydol.png b/Site/static/images/pokemon/0344_Claydol.png deleted file mode 100644 index 4fb11ca..0000000 Binary files a/Site/static/images/pokemon/0344_Claydol.png and /dev/null differ diff --git a/Site/static/images/pokemon/0345-03-000-0.png b/Site/static/images/pokemon/0345-03-000-0.png new file mode 100644 index 0000000..9e051cc Binary files /dev/null and b/Site/static/images/pokemon/0345-03-000-0.png differ diff --git a/Site/static/images/pokemon/0345_Lileep.png b/Site/static/images/pokemon/0345_Lileep.png deleted file mode 100644 index d051d7c..0000000 Binary files a/Site/static/images/pokemon/0345_Lileep.png and /dev/null differ diff --git a/Site/static/images/pokemon/0346-03-000-0.png b/Site/static/images/pokemon/0346-03-000-0.png new file mode 100644 index 0000000..c855a29 Binary files /dev/null and b/Site/static/images/pokemon/0346-03-000-0.png differ diff --git a/Site/static/images/pokemon/0346_Cradily.png b/Site/static/images/pokemon/0346_Cradily.png deleted file mode 100644 index 34536e6..0000000 Binary files a/Site/static/images/pokemon/0346_Cradily.png and /dev/null differ diff --git a/Site/static/images/pokemon/0347-03-000-0.png b/Site/static/images/pokemon/0347-03-000-0.png new file mode 100644 index 0000000..bfb339c Binary files /dev/null and b/Site/static/images/pokemon/0347-03-000-0.png differ diff --git a/Site/static/images/pokemon/0347_Anorith.png b/Site/static/images/pokemon/0347_Anorith.png deleted file mode 100644 index 7207c66..0000000 Binary files a/Site/static/images/pokemon/0347_Anorith.png and /dev/null differ diff --git a/Site/static/images/pokemon/0348-03-000-0.png b/Site/static/images/pokemon/0348-03-000-0.png new file mode 100644 index 0000000..c77adab Binary files /dev/null and b/Site/static/images/pokemon/0348-03-000-0.png differ diff --git a/Site/static/images/pokemon/0348_Armaldo.png b/Site/static/images/pokemon/0348_Armaldo.png deleted file mode 100644 index 865735f..0000000 Binary files a/Site/static/images/pokemon/0348_Armaldo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0349-03-000-0.png b/Site/static/images/pokemon/0349-03-000-0.png new file mode 100644 index 0000000..0b600b4 Binary files /dev/null and b/Site/static/images/pokemon/0349-03-000-0.png differ diff --git a/Site/static/images/pokemon/0349_Feebas.png b/Site/static/images/pokemon/0349_Feebas.png deleted file mode 100644 index 433c11b..0000000 Binary files a/Site/static/images/pokemon/0349_Feebas.png and /dev/null differ diff --git a/Site/static/images/pokemon/0350-03-000-1.png b/Site/static/images/pokemon/0350-03-000-1.png new file mode 100644 index 0000000..466237d Binary files /dev/null and b/Site/static/images/pokemon/0350-03-000-1.png differ diff --git a/Site/static/images/pokemon/0350-03-000-2.png b/Site/static/images/pokemon/0350-03-000-2.png new file mode 100644 index 0000000..f4a417b Binary files /dev/null and b/Site/static/images/pokemon/0350-03-000-2.png differ diff --git a/Site/static/images/pokemon/0350_Milotic.png b/Site/static/images/pokemon/0350_Milotic.png deleted file mode 100644 index 62c2848..0000000 Binary files a/Site/static/images/pokemon/0350_Milotic.png and /dev/null differ diff --git a/Site/static/images/pokemon/0351-03-000-0.png b/Site/static/images/pokemon/0351-03-000-0.png new file mode 100644 index 0000000..c501198 Binary files /dev/null and b/Site/static/images/pokemon/0351-03-000-0.png differ diff --git a/Site/static/images/pokemon/0351-03-001-0.png b/Site/static/images/pokemon/0351-03-001-0.png new file mode 100644 index 0000000..b5785e8 Binary files /dev/null and b/Site/static/images/pokemon/0351-03-001-0.png differ diff --git a/Site/static/images/pokemon/0351-03-002-0.png b/Site/static/images/pokemon/0351-03-002-0.png new file mode 100644 index 0000000..79bc9d6 Binary files /dev/null and b/Site/static/images/pokemon/0351-03-002-0.png differ diff --git a/Site/static/images/pokemon/0351-03-003-0.png b/Site/static/images/pokemon/0351-03-003-0.png new file mode 100644 index 0000000..edcb4ca Binary files /dev/null and b/Site/static/images/pokemon/0351-03-003-0.png differ diff --git a/Site/static/images/pokemon/0351_Castform.png b/Site/static/images/pokemon/0351_Castform.png deleted file mode 100644 index bfc3418..0000000 Binary files a/Site/static/images/pokemon/0351_Castform.png and /dev/null differ diff --git a/Site/static/images/pokemon/0352-03-000-0.png b/Site/static/images/pokemon/0352-03-000-0.png new file mode 100644 index 0000000..7381d12 Binary files /dev/null and b/Site/static/images/pokemon/0352-03-000-0.png differ diff --git a/Site/static/images/pokemon/0352_Kecleon.png b/Site/static/images/pokemon/0352_Kecleon.png deleted file mode 100644 index df69166..0000000 Binary files a/Site/static/images/pokemon/0352_Kecleon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0353-03-000-0.png b/Site/static/images/pokemon/0353-03-000-0.png new file mode 100644 index 0000000..dff3f18 Binary files /dev/null and b/Site/static/images/pokemon/0353-03-000-0.png differ diff --git a/Site/static/images/pokemon/0353_Shuppet.png b/Site/static/images/pokemon/0353_Shuppet.png deleted file mode 100644 index 9cf5311..0000000 Binary files a/Site/static/images/pokemon/0353_Shuppet.png and /dev/null differ diff --git a/Site/static/images/pokemon/0354-03-000-0.png b/Site/static/images/pokemon/0354-03-000-0.png new file mode 100644 index 0000000..cb67e35 Binary files /dev/null and b/Site/static/images/pokemon/0354-03-000-0.png differ diff --git a/Site/static/images/pokemon/0354-03-001-0.png b/Site/static/images/pokemon/0354-03-001-0.png new file mode 100644 index 0000000..bb8744a Binary files /dev/null and b/Site/static/images/pokemon/0354-03-001-0.png differ diff --git a/Site/static/images/pokemon/0354_Banette.png b/Site/static/images/pokemon/0354_Banette.png deleted file mode 100644 index 2545549..0000000 Binary files a/Site/static/images/pokemon/0354_Banette.png and /dev/null differ diff --git a/Site/static/images/pokemon/0355-03-000-0.png b/Site/static/images/pokemon/0355-03-000-0.png new file mode 100644 index 0000000..8ef2c4b Binary files /dev/null and b/Site/static/images/pokemon/0355-03-000-0.png differ diff --git a/Site/static/images/pokemon/0355_Duskull.png b/Site/static/images/pokemon/0355_Duskull.png deleted file mode 100644 index c9fbb78..0000000 Binary files a/Site/static/images/pokemon/0355_Duskull.png and /dev/null differ diff --git a/Site/static/images/pokemon/0356-03-000-0.png b/Site/static/images/pokemon/0356-03-000-0.png new file mode 100644 index 0000000..e67c061 Binary files /dev/null and b/Site/static/images/pokemon/0356-03-000-0.png differ diff --git a/Site/static/images/pokemon/0356_Dusclops.png b/Site/static/images/pokemon/0356_Dusclops.png deleted file mode 100644 index 77b0ff8..0000000 Binary files a/Site/static/images/pokemon/0356_Dusclops.png and /dev/null differ diff --git a/Site/static/images/pokemon/0357-03-000-0.png b/Site/static/images/pokemon/0357-03-000-0.png new file mode 100644 index 0000000..07d2371 Binary files /dev/null and b/Site/static/images/pokemon/0357-03-000-0.png differ diff --git a/Site/static/images/pokemon/0357_Tropius.png b/Site/static/images/pokemon/0357_Tropius.png deleted file mode 100644 index 7eed3a6..0000000 Binary files a/Site/static/images/pokemon/0357_Tropius.png and /dev/null differ diff --git a/Site/static/images/pokemon/0358-03-000-0.png b/Site/static/images/pokemon/0358-03-000-0.png new file mode 100644 index 0000000..e6f638a Binary files /dev/null and b/Site/static/images/pokemon/0358-03-000-0.png differ diff --git a/Site/static/images/pokemon/0358_Chimecho.png b/Site/static/images/pokemon/0358_Chimecho.png deleted file mode 100644 index 58ae42f..0000000 Binary files a/Site/static/images/pokemon/0358_Chimecho.png and /dev/null differ diff --git a/Site/static/images/pokemon/0359-03-000-0.png b/Site/static/images/pokemon/0359-03-000-0.png new file mode 100644 index 0000000..4136078 Binary files /dev/null and b/Site/static/images/pokemon/0359-03-000-0.png differ diff --git a/Site/static/images/pokemon/0359-03-001-0.png b/Site/static/images/pokemon/0359-03-001-0.png new file mode 100644 index 0000000..62d3e6e Binary files /dev/null and b/Site/static/images/pokemon/0359-03-001-0.png differ diff --git a/Site/static/images/pokemon/0359_Absol.png b/Site/static/images/pokemon/0359_Absol.png deleted file mode 100644 index d05026c..0000000 Binary files a/Site/static/images/pokemon/0359_Absol.png and /dev/null differ diff --git a/Site/static/images/pokemon/0360-03-000-0.png b/Site/static/images/pokemon/0360-03-000-0.png new file mode 100644 index 0000000..afaec9e Binary files /dev/null and b/Site/static/images/pokemon/0360-03-000-0.png differ diff --git a/Site/static/images/pokemon/0360_Wynaut.png b/Site/static/images/pokemon/0360_Wynaut.png deleted file mode 100644 index 415d86d..0000000 Binary files a/Site/static/images/pokemon/0360_Wynaut.png and /dev/null differ diff --git a/Site/static/images/pokemon/0361-03-000-0.png b/Site/static/images/pokemon/0361-03-000-0.png new file mode 100644 index 0000000..a2bf0f2 Binary files /dev/null and b/Site/static/images/pokemon/0361-03-000-0.png differ diff --git a/Site/static/images/pokemon/0361_Snorunt.png b/Site/static/images/pokemon/0361_Snorunt.png deleted file mode 100644 index 76a2b0f..0000000 Binary files a/Site/static/images/pokemon/0361_Snorunt.png and /dev/null differ diff --git a/Site/static/images/pokemon/0362-03-000-0.png b/Site/static/images/pokemon/0362-03-000-0.png new file mode 100644 index 0000000..2783ca3 Binary files /dev/null and b/Site/static/images/pokemon/0362-03-000-0.png differ diff --git a/Site/static/images/pokemon/0362-03-001-0.png b/Site/static/images/pokemon/0362-03-001-0.png new file mode 100644 index 0000000..c0276ea Binary files /dev/null and b/Site/static/images/pokemon/0362-03-001-0.png differ diff --git a/Site/static/images/pokemon/0362_Glalie.png b/Site/static/images/pokemon/0362_Glalie.png deleted file mode 100644 index b089f8d..0000000 Binary files a/Site/static/images/pokemon/0362_Glalie.png and /dev/null differ diff --git a/Site/static/images/pokemon/0363-03-000-0.png b/Site/static/images/pokemon/0363-03-000-0.png new file mode 100644 index 0000000..715f0d4 Binary files /dev/null and b/Site/static/images/pokemon/0363-03-000-0.png differ diff --git a/Site/static/images/pokemon/0363_Spheal.png b/Site/static/images/pokemon/0363_Spheal.png deleted file mode 100644 index baa847b..0000000 Binary files a/Site/static/images/pokemon/0363_Spheal.png and /dev/null differ diff --git a/Site/static/images/pokemon/0364-03-000-0.png b/Site/static/images/pokemon/0364-03-000-0.png new file mode 100644 index 0000000..5ca5a89 Binary files /dev/null and b/Site/static/images/pokemon/0364-03-000-0.png differ diff --git a/Site/static/images/pokemon/0364_Sealeo.png b/Site/static/images/pokemon/0364_Sealeo.png deleted file mode 100644 index b7fd4f4..0000000 Binary files a/Site/static/images/pokemon/0364_Sealeo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0365-03-000-0.png b/Site/static/images/pokemon/0365-03-000-0.png new file mode 100644 index 0000000..046791f Binary files /dev/null and b/Site/static/images/pokemon/0365-03-000-0.png differ diff --git a/Site/static/images/pokemon/0365_Walrein.png b/Site/static/images/pokemon/0365_Walrein.png deleted file mode 100644 index 0025679..0000000 Binary files a/Site/static/images/pokemon/0365_Walrein.png and /dev/null differ diff --git a/Site/static/images/pokemon/0366-03-000-0.png b/Site/static/images/pokemon/0366-03-000-0.png new file mode 100644 index 0000000..548f19d Binary files /dev/null and b/Site/static/images/pokemon/0366-03-000-0.png differ diff --git a/Site/static/images/pokemon/0366_Clamperl.png b/Site/static/images/pokemon/0366_Clamperl.png deleted file mode 100644 index 18a060d..0000000 Binary files a/Site/static/images/pokemon/0366_Clamperl.png and /dev/null differ diff --git a/Site/static/images/pokemon/0367-03-000-0.png b/Site/static/images/pokemon/0367-03-000-0.png new file mode 100644 index 0000000..364fe2f Binary files /dev/null and b/Site/static/images/pokemon/0367-03-000-0.png differ diff --git a/Site/static/images/pokemon/0367_Huntail.png b/Site/static/images/pokemon/0367_Huntail.png deleted file mode 100644 index 14cd7ac..0000000 Binary files a/Site/static/images/pokemon/0367_Huntail.png and /dev/null differ diff --git a/Site/static/images/pokemon/0368-03-000-0.png b/Site/static/images/pokemon/0368-03-000-0.png new file mode 100644 index 0000000..d96b7c5 Binary files /dev/null and b/Site/static/images/pokemon/0368-03-000-0.png differ diff --git a/Site/static/images/pokemon/0368_Gorebyss.png b/Site/static/images/pokemon/0368_Gorebyss.png deleted file mode 100644 index 0b50daa..0000000 Binary files a/Site/static/images/pokemon/0368_Gorebyss.png and /dev/null differ diff --git a/Site/static/images/pokemon/0369-03-000-1.png b/Site/static/images/pokemon/0369-03-000-1.png new file mode 100644 index 0000000..1b189df Binary files /dev/null and b/Site/static/images/pokemon/0369-03-000-1.png differ diff --git a/Site/static/images/pokemon/0369-03-000-2.png b/Site/static/images/pokemon/0369-03-000-2.png new file mode 100644 index 0000000..cc79901 Binary files /dev/null and b/Site/static/images/pokemon/0369-03-000-2.png differ diff --git a/Site/static/images/pokemon/0369_Relicanth.png b/Site/static/images/pokemon/0369_Relicanth.png deleted file mode 100644 index 662a742..0000000 Binary files a/Site/static/images/pokemon/0369_Relicanth.png and /dev/null differ diff --git a/Site/static/images/pokemon/0370-03-000-0.png b/Site/static/images/pokemon/0370-03-000-0.png new file mode 100644 index 0000000..2e6045e Binary files /dev/null and b/Site/static/images/pokemon/0370-03-000-0.png differ diff --git a/Site/static/images/pokemon/0370_Luvdisc.png b/Site/static/images/pokemon/0370_Luvdisc.png deleted file mode 100644 index cfd9780..0000000 Binary files a/Site/static/images/pokemon/0370_Luvdisc.png and /dev/null differ diff --git a/Site/static/images/pokemon/0371-03-000-0.png b/Site/static/images/pokemon/0371-03-000-0.png new file mode 100644 index 0000000..69a738f Binary files /dev/null and b/Site/static/images/pokemon/0371-03-000-0.png differ diff --git a/Site/static/images/pokemon/0371_Bagon.png b/Site/static/images/pokemon/0371_Bagon.png deleted file mode 100644 index 4756264..0000000 Binary files a/Site/static/images/pokemon/0371_Bagon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0372-03-000-0.png b/Site/static/images/pokemon/0372-03-000-0.png new file mode 100644 index 0000000..8d8173c Binary files /dev/null and b/Site/static/images/pokemon/0372-03-000-0.png differ diff --git a/Site/static/images/pokemon/0372_Shelgon.png b/Site/static/images/pokemon/0372_Shelgon.png deleted file mode 100644 index 5ce1023..0000000 Binary files a/Site/static/images/pokemon/0372_Shelgon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0373-03-000-0.png b/Site/static/images/pokemon/0373-03-000-0.png new file mode 100644 index 0000000..3e66ecf Binary files /dev/null and b/Site/static/images/pokemon/0373-03-000-0.png differ diff --git a/Site/static/images/pokemon/0373-03-001-0.png b/Site/static/images/pokemon/0373-03-001-0.png new file mode 100644 index 0000000..4aeccd9 Binary files /dev/null and b/Site/static/images/pokemon/0373-03-001-0.png differ diff --git a/Site/static/images/pokemon/0373_Salamence.png b/Site/static/images/pokemon/0373_Salamence.png deleted file mode 100644 index e233ef2..0000000 Binary files a/Site/static/images/pokemon/0373_Salamence.png and /dev/null differ diff --git a/Site/static/images/pokemon/0374-03-000-0.png b/Site/static/images/pokemon/0374-03-000-0.png new file mode 100644 index 0000000..6f547bc Binary files /dev/null and b/Site/static/images/pokemon/0374-03-000-0.png differ diff --git a/Site/static/images/pokemon/0374_Beldum.png b/Site/static/images/pokemon/0374_Beldum.png deleted file mode 100644 index d144c03..0000000 Binary files a/Site/static/images/pokemon/0374_Beldum.png and /dev/null differ diff --git a/Site/static/images/pokemon/0375-03-000-0.png b/Site/static/images/pokemon/0375-03-000-0.png new file mode 100644 index 0000000..409b14f Binary files /dev/null and b/Site/static/images/pokemon/0375-03-000-0.png differ diff --git a/Site/static/images/pokemon/0375_Metang.png b/Site/static/images/pokemon/0375_Metang.png deleted file mode 100644 index c24c3c2..0000000 Binary files a/Site/static/images/pokemon/0375_Metang.png and /dev/null differ diff --git a/Site/static/images/pokemon/0376-03-000-0.png b/Site/static/images/pokemon/0376-03-000-0.png new file mode 100644 index 0000000..0abd2f2 Binary files /dev/null and b/Site/static/images/pokemon/0376-03-000-0.png differ diff --git a/Site/static/images/pokemon/0376-03-001-0.png b/Site/static/images/pokemon/0376-03-001-0.png new file mode 100644 index 0000000..3635fad Binary files /dev/null and b/Site/static/images/pokemon/0376-03-001-0.png differ diff --git a/Site/static/images/pokemon/0376_Metagross.png b/Site/static/images/pokemon/0376_Metagross.png deleted file mode 100644 index a6ba7b1..0000000 Binary files a/Site/static/images/pokemon/0376_Metagross.png and /dev/null differ diff --git a/Site/static/images/pokemon/0377-03-000-0.png b/Site/static/images/pokemon/0377-03-000-0.png new file mode 100644 index 0000000..f8413d3 Binary files /dev/null and b/Site/static/images/pokemon/0377-03-000-0.png differ diff --git a/Site/static/images/pokemon/0377_Regirock.png b/Site/static/images/pokemon/0377_Regirock.png deleted file mode 100644 index d3a6dbb..0000000 Binary files a/Site/static/images/pokemon/0377_Regirock.png and /dev/null differ diff --git a/Site/static/images/pokemon/0378-03-000-0.png b/Site/static/images/pokemon/0378-03-000-0.png new file mode 100644 index 0000000..21111cb Binary files /dev/null and b/Site/static/images/pokemon/0378-03-000-0.png differ diff --git a/Site/static/images/pokemon/0378_Regice.png b/Site/static/images/pokemon/0378_Regice.png deleted file mode 100644 index 63043a1..0000000 Binary files a/Site/static/images/pokemon/0378_Regice.png and /dev/null differ diff --git a/Site/static/images/pokemon/0379-03-000-0.png b/Site/static/images/pokemon/0379-03-000-0.png new file mode 100644 index 0000000..03b278c Binary files /dev/null and b/Site/static/images/pokemon/0379-03-000-0.png differ diff --git a/Site/static/images/pokemon/0379_Registeel.png b/Site/static/images/pokemon/0379_Registeel.png deleted file mode 100644 index 3df029c..0000000 Binary files a/Site/static/images/pokemon/0379_Registeel.png and /dev/null differ diff --git a/Site/static/images/pokemon/0380-03-000-0.png b/Site/static/images/pokemon/0380-03-000-0.png new file mode 100644 index 0000000..3188b22 Binary files /dev/null and b/Site/static/images/pokemon/0380-03-000-0.png differ diff --git a/Site/static/images/pokemon/0380-03-001-0.png b/Site/static/images/pokemon/0380-03-001-0.png new file mode 100644 index 0000000..14dd488 Binary files /dev/null and b/Site/static/images/pokemon/0380-03-001-0.png differ diff --git a/Site/static/images/pokemon/0380_Latias.png b/Site/static/images/pokemon/0380_Latias.png deleted file mode 100644 index fada5d8..0000000 Binary files a/Site/static/images/pokemon/0380_Latias.png and /dev/null differ diff --git a/Site/static/images/pokemon/0381-03-000-0.png b/Site/static/images/pokemon/0381-03-000-0.png new file mode 100644 index 0000000..94feb44 Binary files /dev/null and b/Site/static/images/pokemon/0381-03-000-0.png differ diff --git a/Site/static/images/pokemon/0381-03-001-0.png b/Site/static/images/pokemon/0381-03-001-0.png new file mode 100644 index 0000000..ccb81f2 Binary files /dev/null and b/Site/static/images/pokemon/0381-03-001-0.png differ diff --git a/Site/static/images/pokemon/0381_Latios.png b/Site/static/images/pokemon/0381_Latios.png deleted file mode 100644 index b74d906..0000000 Binary files a/Site/static/images/pokemon/0381_Latios.png and /dev/null differ diff --git a/Site/static/images/pokemon/0382-03-000-0.png b/Site/static/images/pokemon/0382-03-000-0.png new file mode 100644 index 0000000..8cbf65a Binary files /dev/null and b/Site/static/images/pokemon/0382-03-000-0.png differ diff --git a/Site/static/images/pokemon/0382-03-001-0.png b/Site/static/images/pokemon/0382-03-001-0.png new file mode 100644 index 0000000..6ad472a Binary files /dev/null and b/Site/static/images/pokemon/0382-03-001-0.png differ diff --git a/Site/static/images/pokemon/0382_Kyogre.png b/Site/static/images/pokemon/0382_Kyogre.png deleted file mode 100644 index deba279..0000000 Binary files a/Site/static/images/pokemon/0382_Kyogre.png and /dev/null differ diff --git a/Site/static/images/pokemon/0383-03-000-0.png b/Site/static/images/pokemon/0383-03-000-0.png new file mode 100644 index 0000000..3b5dd9d Binary files /dev/null and b/Site/static/images/pokemon/0383-03-000-0.png differ diff --git a/Site/static/images/pokemon/0383-03-001-0.png b/Site/static/images/pokemon/0383-03-001-0.png new file mode 100644 index 0000000..b759356 Binary files /dev/null and b/Site/static/images/pokemon/0383-03-001-0.png differ diff --git a/Site/static/images/pokemon/0383_Groudon.png b/Site/static/images/pokemon/0383_Groudon.png deleted file mode 100644 index 7c6316e..0000000 Binary files a/Site/static/images/pokemon/0383_Groudon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0384-03-000-0.png b/Site/static/images/pokemon/0384-03-000-0.png new file mode 100644 index 0000000..64d7e78 Binary files /dev/null and b/Site/static/images/pokemon/0384-03-000-0.png differ diff --git a/Site/static/images/pokemon/0384-03-001-0.png b/Site/static/images/pokemon/0384-03-001-0.png new file mode 100644 index 0000000..7c81180 Binary files /dev/null and b/Site/static/images/pokemon/0384-03-001-0.png differ diff --git a/Site/static/images/pokemon/0384_Rayquaza.png b/Site/static/images/pokemon/0384_Rayquaza.png deleted file mode 100644 index a481d6f..0000000 Binary files a/Site/static/images/pokemon/0384_Rayquaza.png and /dev/null differ diff --git a/Site/static/images/pokemon/0385-03-000-0.png b/Site/static/images/pokemon/0385-03-000-0.png new file mode 100644 index 0000000..a0add3e Binary files /dev/null and b/Site/static/images/pokemon/0385-03-000-0.png differ diff --git a/Site/static/images/pokemon/0385_Jirachi.png b/Site/static/images/pokemon/0385_Jirachi.png deleted file mode 100644 index 68ba942..0000000 Binary files a/Site/static/images/pokemon/0385_Jirachi.png and /dev/null differ diff --git a/Site/static/images/pokemon/0386-03-001-0.png b/Site/static/images/pokemon/0386-03-001-0.png new file mode 100644 index 0000000..bd6516c Binary files /dev/null and b/Site/static/images/pokemon/0386-03-001-0.png differ diff --git a/Site/static/images/pokemon/0386-03-002-0.png b/Site/static/images/pokemon/0386-03-002-0.png new file mode 100644 index 0000000..ca88c17 Binary files /dev/null and b/Site/static/images/pokemon/0386-03-002-0.png differ diff --git a/Site/static/images/pokemon/0386-03-003-0.png b/Site/static/images/pokemon/0386-03-003-0.png new file mode 100644 index 0000000..fedd1e6 Binary files /dev/null and b/Site/static/images/pokemon/0386-03-003-0.png differ diff --git a/Site/static/images/pokemon/0386-03-004-0.png b/Site/static/images/pokemon/0386-03-004-0.png new file mode 100644 index 0000000..cb9630f Binary files /dev/null and b/Site/static/images/pokemon/0386-03-004-0.png differ diff --git a/Site/static/images/pokemon/0386_Deoxys.png b/Site/static/images/pokemon/0386_Deoxys.png deleted file mode 100644 index 8829850..0000000 Binary files a/Site/static/images/pokemon/0386_Deoxys.png and /dev/null differ diff --git a/Site/static/images/pokemon/0386_Deoxys_(Attack_Forme).png b/Site/static/images/pokemon/0386_Deoxys_(Attack_Forme).png deleted file mode 100644 index 07c7252..0000000 Binary files a/Site/static/images/pokemon/0386_Deoxys_(Attack_Forme).png and /dev/null differ diff --git a/Site/static/images/pokemon/0386_Deoxys_(Defense_Forme).png b/Site/static/images/pokemon/0386_Deoxys_(Defense_Forme).png deleted file mode 100644 index 7793f79..0000000 Binary files a/Site/static/images/pokemon/0386_Deoxys_(Defense_Forme).png and /dev/null differ diff --git a/Site/static/images/pokemon/0386_Deoxys_(Speed_Forme).png b/Site/static/images/pokemon/0386_Deoxys_(Speed_Forme).png deleted file mode 100644 index 7978bad..0000000 Binary files a/Site/static/images/pokemon/0386_Deoxys_(Speed_Forme).png and /dev/null differ diff --git a/Site/static/images/pokemon/0387-04-000-0.png b/Site/static/images/pokemon/0387-04-000-0.png new file mode 100644 index 0000000..c59ba99 Binary files /dev/null and b/Site/static/images/pokemon/0387-04-000-0.png differ diff --git a/Site/static/images/pokemon/0387_Turtwig.png b/Site/static/images/pokemon/0387_Turtwig.png deleted file mode 100644 index 29828c3..0000000 Binary files a/Site/static/images/pokemon/0387_Turtwig.png and /dev/null differ diff --git a/Site/static/images/pokemon/0388-04-000-0.png b/Site/static/images/pokemon/0388-04-000-0.png new file mode 100644 index 0000000..abaec17 Binary files /dev/null and b/Site/static/images/pokemon/0388-04-000-0.png differ diff --git a/Site/static/images/pokemon/0388_Grotle.png b/Site/static/images/pokemon/0388_Grotle.png deleted file mode 100644 index f0c2705..0000000 Binary files a/Site/static/images/pokemon/0388_Grotle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0389-04-000-0.png b/Site/static/images/pokemon/0389-04-000-0.png new file mode 100644 index 0000000..0907ff5 Binary files /dev/null and b/Site/static/images/pokemon/0389-04-000-0.png differ diff --git a/Site/static/images/pokemon/0389_Torterra.png b/Site/static/images/pokemon/0389_Torterra.png deleted file mode 100644 index fc4e9f0..0000000 Binary files a/Site/static/images/pokemon/0389_Torterra.png and /dev/null differ diff --git a/Site/static/images/pokemon/0390-04-000-0.png b/Site/static/images/pokemon/0390-04-000-0.png new file mode 100644 index 0000000..42c1215 Binary files /dev/null and b/Site/static/images/pokemon/0390-04-000-0.png differ diff --git a/Site/static/images/pokemon/0390_Chimchar.png b/Site/static/images/pokemon/0390_Chimchar.png deleted file mode 100644 index 1fb1864..0000000 Binary files a/Site/static/images/pokemon/0390_Chimchar.png and /dev/null differ diff --git a/Site/static/images/pokemon/0391-04-000-0.png b/Site/static/images/pokemon/0391-04-000-0.png new file mode 100644 index 0000000..4118926 Binary files /dev/null and b/Site/static/images/pokemon/0391-04-000-0.png differ diff --git a/Site/static/images/pokemon/0391_Monferno.png b/Site/static/images/pokemon/0391_Monferno.png deleted file mode 100644 index 84d5912..0000000 Binary files a/Site/static/images/pokemon/0391_Monferno.png and /dev/null differ diff --git a/Site/static/images/pokemon/0392-04-000-0.png b/Site/static/images/pokemon/0392-04-000-0.png new file mode 100644 index 0000000..5e066dc Binary files /dev/null and b/Site/static/images/pokemon/0392-04-000-0.png differ diff --git a/Site/static/images/pokemon/0392_Infernape.png b/Site/static/images/pokemon/0392_Infernape.png deleted file mode 100644 index f3f02a1..0000000 Binary files a/Site/static/images/pokemon/0392_Infernape.png and /dev/null differ diff --git a/Site/static/images/pokemon/0393-04-000-0.png b/Site/static/images/pokemon/0393-04-000-0.png new file mode 100644 index 0000000..a9d2f78 Binary files /dev/null and b/Site/static/images/pokemon/0393-04-000-0.png differ diff --git a/Site/static/images/pokemon/0393_Piplup.png b/Site/static/images/pokemon/0393_Piplup.png deleted file mode 100644 index c7e42ed..0000000 Binary files a/Site/static/images/pokemon/0393_Piplup.png and /dev/null differ diff --git a/Site/static/images/pokemon/0394-04-000-0.png b/Site/static/images/pokemon/0394-04-000-0.png new file mode 100644 index 0000000..dfde6d3 Binary files /dev/null and b/Site/static/images/pokemon/0394-04-000-0.png differ diff --git a/Site/static/images/pokemon/0394_Prinplup.png b/Site/static/images/pokemon/0394_Prinplup.png deleted file mode 100644 index 1ecc978..0000000 Binary files a/Site/static/images/pokemon/0394_Prinplup.png and /dev/null differ diff --git a/Site/static/images/pokemon/0395-04-000-0.png b/Site/static/images/pokemon/0395-04-000-0.png new file mode 100644 index 0000000..e781ba2 Binary files /dev/null and b/Site/static/images/pokemon/0395-04-000-0.png differ diff --git a/Site/static/images/pokemon/0395_Empoleon.png b/Site/static/images/pokemon/0395_Empoleon.png deleted file mode 100644 index 388edaf..0000000 Binary files a/Site/static/images/pokemon/0395_Empoleon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0396-04-000-1.png b/Site/static/images/pokemon/0396-04-000-1.png new file mode 100644 index 0000000..f49bb75 Binary files /dev/null and b/Site/static/images/pokemon/0396-04-000-1.png differ diff --git a/Site/static/images/pokemon/0396-04-000-2.png b/Site/static/images/pokemon/0396-04-000-2.png new file mode 100644 index 0000000..bc99ba5 Binary files /dev/null and b/Site/static/images/pokemon/0396-04-000-2.png differ diff --git a/Site/static/images/pokemon/0396_Starly.png b/Site/static/images/pokemon/0396_Starly.png deleted file mode 100644 index d7b9a49..0000000 Binary files a/Site/static/images/pokemon/0396_Starly.png and /dev/null differ diff --git a/Site/static/images/pokemon/0397-04-000-1.png b/Site/static/images/pokemon/0397-04-000-1.png new file mode 100644 index 0000000..ba2ccdd Binary files /dev/null and b/Site/static/images/pokemon/0397-04-000-1.png differ diff --git a/Site/static/images/pokemon/0397-04-000-2.png b/Site/static/images/pokemon/0397-04-000-2.png new file mode 100644 index 0000000..4b61731 Binary files /dev/null and b/Site/static/images/pokemon/0397-04-000-2.png differ diff --git a/Site/static/images/pokemon/0397_Staravia.png b/Site/static/images/pokemon/0397_Staravia.png deleted file mode 100644 index e26340d..0000000 Binary files a/Site/static/images/pokemon/0397_Staravia.png and /dev/null differ diff --git a/Site/static/images/pokemon/0398-04-000-1.png b/Site/static/images/pokemon/0398-04-000-1.png new file mode 100644 index 0000000..b613f42 Binary files /dev/null and b/Site/static/images/pokemon/0398-04-000-1.png differ diff --git a/Site/static/images/pokemon/0398-04-000-2.png b/Site/static/images/pokemon/0398-04-000-2.png new file mode 100644 index 0000000..a2ffb77 Binary files /dev/null and b/Site/static/images/pokemon/0398-04-000-2.png differ diff --git a/Site/static/images/pokemon/0398_Staraptor.png b/Site/static/images/pokemon/0398_Staraptor.png deleted file mode 100644 index 0c5ceb2..0000000 Binary files a/Site/static/images/pokemon/0398_Staraptor.png and /dev/null differ diff --git a/Site/static/images/pokemon/0399-04-000-1.png b/Site/static/images/pokemon/0399-04-000-1.png new file mode 100644 index 0000000..a752179 Binary files /dev/null and b/Site/static/images/pokemon/0399-04-000-1.png differ diff --git a/Site/static/images/pokemon/0399-04-000-2.png b/Site/static/images/pokemon/0399-04-000-2.png new file mode 100644 index 0000000..b2460d9 Binary files /dev/null and b/Site/static/images/pokemon/0399-04-000-2.png differ diff --git a/Site/static/images/pokemon/0399_Bidoof.png b/Site/static/images/pokemon/0399_Bidoof.png deleted file mode 100644 index 9f4a7eb..0000000 Binary files a/Site/static/images/pokemon/0399_Bidoof.png and /dev/null differ diff --git a/Site/static/images/pokemon/0400-04-000-1.png b/Site/static/images/pokemon/0400-04-000-1.png new file mode 100644 index 0000000..5838c79 Binary files /dev/null and b/Site/static/images/pokemon/0400-04-000-1.png differ diff --git a/Site/static/images/pokemon/0400-04-000-2.png b/Site/static/images/pokemon/0400-04-000-2.png new file mode 100644 index 0000000..90c01df Binary files /dev/null and b/Site/static/images/pokemon/0400-04-000-2.png differ diff --git a/Site/static/images/pokemon/0400_Bibarel.png b/Site/static/images/pokemon/0400_Bibarel.png deleted file mode 100644 index 5824c71..0000000 Binary files a/Site/static/images/pokemon/0400_Bibarel.png and /dev/null differ diff --git a/Site/static/images/pokemon/0401-04-000-1.png b/Site/static/images/pokemon/0401-04-000-1.png new file mode 100644 index 0000000..e19ffbf Binary files /dev/null and b/Site/static/images/pokemon/0401-04-000-1.png differ diff --git a/Site/static/images/pokemon/0401-04-000-2.png b/Site/static/images/pokemon/0401-04-000-2.png new file mode 100644 index 0000000..2d83f44 Binary files /dev/null and b/Site/static/images/pokemon/0401-04-000-2.png differ diff --git a/Site/static/images/pokemon/0401_Kricketot.png b/Site/static/images/pokemon/0401_Kricketot.png deleted file mode 100644 index bb587e6..0000000 Binary files a/Site/static/images/pokemon/0401_Kricketot.png and /dev/null differ diff --git a/Site/static/images/pokemon/0402-04-000-1.png b/Site/static/images/pokemon/0402-04-000-1.png new file mode 100644 index 0000000..fc0f5a1 Binary files /dev/null and b/Site/static/images/pokemon/0402-04-000-1.png differ diff --git a/Site/static/images/pokemon/0402-04-000-2.png b/Site/static/images/pokemon/0402-04-000-2.png new file mode 100644 index 0000000..c379fda Binary files /dev/null and b/Site/static/images/pokemon/0402-04-000-2.png differ diff --git a/Site/static/images/pokemon/0402_Kricketune.png b/Site/static/images/pokemon/0402_Kricketune.png deleted file mode 100644 index ded248e..0000000 Binary files a/Site/static/images/pokemon/0402_Kricketune.png and /dev/null differ diff --git a/Site/static/images/pokemon/0403-04-000-1.png b/Site/static/images/pokemon/0403-04-000-1.png new file mode 100644 index 0000000..4250829 Binary files /dev/null and b/Site/static/images/pokemon/0403-04-000-1.png differ diff --git a/Site/static/images/pokemon/0403-04-000-2.png b/Site/static/images/pokemon/0403-04-000-2.png new file mode 100644 index 0000000..9fdfa47 Binary files /dev/null and b/Site/static/images/pokemon/0403-04-000-2.png differ diff --git a/Site/static/images/pokemon/0403_Shinx.png b/Site/static/images/pokemon/0403_Shinx.png deleted file mode 100644 index c5fc905..0000000 Binary files a/Site/static/images/pokemon/0403_Shinx.png and /dev/null differ diff --git a/Site/static/images/pokemon/0404-04-000-1.png b/Site/static/images/pokemon/0404-04-000-1.png new file mode 100644 index 0000000..34f31d5 Binary files /dev/null and b/Site/static/images/pokemon/0404-04-000-1.png differ diff --git a/Site/static/images/pokemon/0404-04-000-2.png b/Site/static/images/pokemon/0404-04-000-2.png new file mode 100644 index 0000000..7039ca9 Binary files /dev/null and b/Site/static/images/pokemon/0404-04-000-2.png differ diff --git a/Site/static/images/pokemon/0404_Luxio.png b/Site/static/images/pokemon/0404_Luxio.png deleted file mode 100644 index 3d66d84..0000000 Binary files a/Site/static/images/pokemon/0404_Luxio.png and /dev/null differ diff --git a/Site/static/images/pokemon/0405-04-000-1.png b/Site/static/images/pokemon/0405-04-000-1.png new file mode 100644 index 0000000..51a4d15 Binary files /dev/null and b/Site/static/images/pokemon/0405-04-000-1.png differ diff --git a/Site/static/images/pokemon/0405-04-000-2.png b/Site/static/images/pokemon/0405-04-000-2.png new file mode 100644 index 0000000..09075b6 Binary files /dev/null and b/Site/static/images/pokemon/0405-04-000-2.png differ diff --git a/Site/static/images/pokemon/0405_Luxray.png b/Site/static/images/pokemon/0405_Luxray.png deleted file mode 100644 index a5a2b49..0000000 Binary files a/Site/static/images/pokemon/0405_Luxray.png and /dev/null differ diff --git a/Site/static/images/pokemon/0406-04-000-0.png b/Site/static/images/pokemon/0406-04-000-0.png new file mode 100644 index 0000000..6ae4773 Binary files /dev/null and b/Site/static/images/pokemon/0406-04-000-0.png differ diff --git a/Site/static/images/pokemon/0406_Budew.png b/Site/static/images/pokemon/0406_Budew.png deleted file mode 100644 index dfd0503..0000000 Binary files a/Site/static/images/pokemon/0406_Budew.png and /dev/null differ diff --git a/Site/static/images/pokemon/0407-04-000-1.png b/Site/static/images/pokemon/0407-04-000-1.png new file mode 100644 index 0000000..a21e3b6 Binary files /dev/null and b/Site/static/images/pokemon/0407-04-000-1.png differ diff --git a/Site/static/images/pokemon/0407-04-000-2.png b/Site/static/images/pokemon/0407-04-000-2.png new file mode 100644 index 0000000..b4d6c14 Binary files /dev/null and b/Site/static/images/pokemon/0407-04-000-2.png differ diff --git a/Site/static/images/pokemon/0407_Roserade.png b/Site/static/images/pokemon/0407_Roserade.png deleted file mode 100644 index 6d93c5a..0000000 Binary files a/Site/static/images/pokemon/0407_Roserade.png and /dev/null differ diff --git a/Site/static/images/pokemon/0408-04-000-0.png b/Site/static/images/pokemon/0408-04-000-0.png new file mode 100644 index 0000000..1f26a44 Binary files /dev/null and b/Site/static/images/pokemon/0408-04-000-0.png differ diff --git a/Site/static/images/pokemon/0408_Cranidos.png b/Site/static/images/pokemon/0408_Cranidos.png deleted file mode 100644 index 3b65a31..0000000 Binary files a/Site/static/images/pokemon/0408_Cranidos.png and /dev/null differ diff --git a/Site/static/images/pokemon/0409-04-000-0.png b/Site/static/images/pokemon/0409-04-000-0.png new file mode 100644 index 0000000..7ff7b06 Binary files /dev/null and b/Site/static/images/pokemon/0409-04-000-0.png differ diff --git a/Site/static/images/pokemon/0409_Rampardos.png b/Site/static/images/pokemon/0409_Rampardos.png deleted file mode 100644 index 06c7410..0000000 Binary files a/Site/static/images/pokemon/0409_Rampardos.png and /dev/null differ diff --git a/Site/static/images/pokemon/0410-04-000-0.png b/Site/static/images/pokemon/0410-04-000-0.png new file mode 100644 index 0000000..52dba62 Binary files /dev/null and b/Site/static/images/pokemon/0410-04-000-0.png differ diff --git a/Site/static/images/pokemon/0410_Shieldon.png b/Site/static/images/pokemon/0410_Shieldon.png deleted file mode 100644 index 1962a5b..0000000 Binary files a/Site/static/images/pokemon/0410_Shieldon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0411-04-000-0.png b/Site/static/images/pokemon/0411-04-000-0.png new file mode 100644 index 0000000..497e1d8 Binary files /dev/null and b/Site/static/images/pokemon/0411-04-000-0.png differ diff --git a/Site/static/images/pokemon/0411_Bastiodon.png b/Site/static/images/pokemon/0411_Bastiodon.png deleted file mode 100644 index b941d27..0000000 Binary files a/Site/static/images/pokemon/0411_Bastiodon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0412-04-001-0.png b/Site/static/images/pokemon/0412-04-001-0.png new file mode 100644 index 0000000..868d2ed Binary files /dev/null and b/Site/static/images/pokemon/0412-04-001-0.png differ diff --git a/Site/static/images/pokemon/0412-04-002-0.png b/Site/static/images/pokemon/0412-04-002-0.png new file mode 100644 index 0000000..a0a412a Binary files /dev/null and b/Site/static/images/pokemon/0412-04-002-0.png differ diff --git a/Site/static/images/pokemon/0412-04-003-0.png b/Site/static/images/pokemon/0412-04-003-0.png new file mode 100644 index 0000000..9c1b53d Binary files /dev/null and b/Site/static/images/pokemon/0412-04-003-0.png differ diff --git a/Site/static/images/pokemon/0412_Burmy.png b/Site/static/images/pokemon/0412_Burmy.png deleted file mode 100644 index bfcf95b..0000000 Binary files a/Site/static/images/pokemon/0412_Burmy.png and /dev/null differ diff --git a/Site/static/images/pokemon/0412_Burmy_(Sandy_Cloak).png b/Site/static/images/pokemon/0412_Burmy_(Sandy_Cloak).png deleted file mode 100644 index 6e0cc57..0000000 Binary files a/Site/static/images/pokemon/0412_Burmy_(Sandy_Cloak).png and /dev/null differ diff --git a/Site/static/images/pokemon/0412_Burmy_(Trash_Cloak).png b/Site/static/images/pokemon/0412_Burmy_(Trash_Cloak).png deleted file mode 100644 index e8c5085..0000000 Binary files a/Site/static/images/pokemon/0412_Burmy_(Trash_Cloak).png and /dev/null differ diff --git a/Site/static/images/pokemon/0413-04-001-0.png b/Site/static/images/pokemon/0413-04-001-0.png new file mode 100644 index 0000000..c855710 Binary files /dev/null and b/Site/static/images/pokemon/0413-04-001-0.png differ diff --git a/Site/static/images/pokemon/0413-04-002-0.png b/Site/static/images/pokemon/0413-04-002-0.png new file mode 100644 index 0000000..fe4a396 Binary files /dev/null and b/Site/static/images/pokemon/0413-04-002-0.png differ diff --git a/Site/static/images/pokemon/0413-04-003-0.png b/Site/static/images/pokemon/0413-04-003-0.png new file mode 100644 index 0000000..a19cd5a Binary files /dev/null and b/Site/static/images/pokemon/0413-04-003-0.png differ diff --git a/Site/static/images/pokemon/0413_Wormadam.png b/Site/static/images/pokemon/0413_Wormadam.png deleted file mode 100644 index ad68c34..0000000 Binary files a/Site/static/images/pokemon/0413_Wormadam.png and /dev/null differ diff --git a/Site/static/images/pokemon/0413_Wormadam_(Sandy_Cloak).png b/Site/static/images/pokemon/0413_Wormadam_(Sandy_Cloak).png deleted file mode 100644 index 5fea984..0000000 Binary files a/Site/static/images/pokemon/0413_Wormadam_(Sandy_Cloak).png and /dev/null differ diff --git a/Site/static/images/pokemon/0413_Wormadam_(Trash_Cloak).png b/Site/static/images/pokemon/0413_Wormadam_(Trash_Cloak).png deleted file mode 100644 index bd87823..0000000 Binary files a/Site/static/images/pokemon/0413_Wormadam_(Trash_Cloak).png and /dev/null differ diff --git a/Site/static/images/pokemon/0414-04-000-0.png b/Site/static/images/pokemon/0414-04-000-0.png new file mode 100644 index 0000000..50b4bd8 Binary files /dev/null and b/Site/static/images/pokemon/0414-04-000-0.png differ diff --git a/Site/static/images/pokemon/0414_Mothim.png b/Site/static/images/pokemon/0414_Mothim.png deleted file mode 100644 index b89ca78..0000000 Binary files a/Site/static/images/pokemon/0414_Mothim.png and /dev/null differ diff --git a/Site/static/images/pokemon/0415-04-000-1.png b/Site/static/images/pokemon/0415-04-000-1.png new file mode 100644 index 0000000..c2aa9d6 Binary files /dev/null and b/Site/static/images/pokemon/0415-04-000-1.png differ diff --git a/Site/static/images/pokemon/0415-04-000-2.png b/Site/static/images/pokemon/0415-04-000-2.png new file mode 100644 index 0000000..cccd93b Binary files /dev/null and b/Site/static/images/pokemon/0415-04-000-2.png differ diff --git a/Site/static/images/pokemon/0415_Combee.png b/Site/static/images/pokemon/0415_Combee.png deleted file mode 100644 index 7a3d0d6..0000000 Binary files a/Site/static/images/pokemon/0415_Combee.png and /dev/null differ diff --git a/Site/static/images/pokemon/0416-04-000-0.png b/Site/static/images/pokemon/0416-04-000-0.png new file mode 100644 index 0000000..01b78c2 Binary files /dev/null and b/Site/static/images/pokemon/0416-04-000-0.png differ diff --git a/Site/static/images/pokemon/0416_Vespiquen.png b/Site/static/images/pokemon/0416_Vespiquen.png deleted file mode 100644 index 0569282..0000000 Binary files a/Site/static/images/pokemon/0416_Vespiquen.png and /dev/null differ diff --git a/Site/static/images/pokemon/0417-04-000-1.png b/Site/static/images/pokemon/0417-04-000-1.png new file mode 100644 index 0000000..55b3d15 Binary files /dev/null and b/Site/static/images/pokemon/0417-04-000-1.png differ diff --git a/Site/static/images/pokemon/0417-04-000-2.png b/Site/static/images/pokemon/0417-04-000-2.png new file mode 100644 index 0000000..a4c3615 Binary files /dev/null and b/Site/static/images/pokemon/0417-04-000-2.png differ diff --git a/Site/static/images/pokemon/0417_Pachirisu.png b/Site/static/images/pokemon/0417_Pachirisu.png deleted file mode 100644 index 83f9438..0000000 Binary files a/Site/static/images/pokemon/0417_Pachirisu.png and /dev/null differ diff --git a/Site/static/images/pokemon/0418-04-000-1.png b/Site/static/images/pokemon/0418-04-000-1.png new file mode 100644 index 0000000..4229c3d Binary files /dev/null and b/Site/static/images/pokemon/0418-04-000-1.png differ diff --git a/Site/static/images/pokemon/0418-04-000-2.png b/Site/static/images/pokemon/0418-04-000-2.png new file mode 100644 index 0000000..518e9f4 Binary files /dev/null and b/Site/static/images/pokemon/0418-04-000-2.png differ diff --git a/Site/static/images/pokemon/0418_Buizel.png b/Site/static/images/pokemon/0418_Buizel.png deleted file mode 100644 index cf35115..0000000 Binary files a/Site/static/images/pokemon/0418_Buizel.png and /dev/null differ diff --git a/Site/static/images/pokemon/0419-04-000-1.png b/Site/static/images/pokemon/0419-04-000-1.png new file mode 100644 index 0000000..405969f Binary files /dev/null and b/Site/static/images/pokemon/0419-04-000-1.png differ diff --git a/Site/static/images/pokemon/0419-04-000-2.png b/Site/static/images/pokemon/0419-04-000-2.png new file mode 100644 index 0000000..e38bf2b Binary files /dev/null and b/Site/static/images/pokemon/0419-04-000-2.png differ diff --git a/Site/static/images/pokemon/0419_Floatzel.png b/Site/static/images/pokemon/0419_Floatzel.png deleted file mode 100644 index cc8c1b9..0000000 Binary files a/Site/static/images/pokemon/0419_Floatzel.png and /dev/null differ diff --git a/Site/static/images/pokemon/0420-04-000-0.png b/Site/static/images/pokemon/0420-04-000-0.png new file mode 100644 index 0000000..89e36ca Binary files /dev/null and b/Site/static/images/pokemon/0420-04-000-0.png differ diff --git a/Site/static/images/pokemon/0420_Cherubi.png b/Site/static/images/pokemon/0420_Cherubi.png deleted file mode 100644 index 5e8e5f2..0000000 Binary files a/Site/static/images/pokemon/0420_Cherubi.png and /dev/null differ diff --git a/Site/static/images/pokemon/0421-04-001-0.png b/Site/static/images/pokemon/0421-04-001-0.png new file mode 100644 index 0000000..0adadb8 Binary files /dev/null and b/Site/static/images/pokemon/0421-04-001-0.png differ diff --git a/Site/static/images/pokemon/0421-04-002-0.png b/Site/static/images/pokemon/0421-04-002-0.png new file mode 100644 index 0000000..6f7afe6 Binary files /dev/null and b/Site/static/images/pokemon/0421-04-002-0.png differ diff --git a/Site/static/images/pokemon/0421_Cherrim.png b/Site/static/images/pokemon/0421_Cherrim.png deleted file mode 100644 index 75b47d2..0000000 Binary files a/Site/static/images/pokemon/0421_Cherrim.png and /dev/null differ diff --git a/Site/static/images/pokemon/0422-04-001-0.png b/Site/static/images/pokemon/0422-04-001-0.png new file mode 100644 index 0000000..6eac471 Binary files /dev/null and b/Site/static/images/pokemon/0422-04-001-0.png differ diff --git a/Site/static/images/pokemon/0422-04-002-0.png b/Site/static/images/pokemon/0422-04-002-0.png new file mode 100644 index 0000000..7d540cf Binary files /dev/null and b/Site/static/images/pokemon/0422-04-002-0.png differ diff --git a/Site/static/images/pokemon/0422_Shellos.png b/Site/static/images/pokemon/0422_Shellos.png deleted file mode 100644 index 4240d94..0000000 Binary files a/Site/static/images/pokemon/0422_Shellos.png and /dev/null differ diff --git a/Site/static/images/pokemon/0422_Shellos_(East_Sea).png b/Site/static/images/pokemon/0422_Shellos_(East_Sea).png deleted file mode 100644 index a12744c..0000000 Binary files a/Site/static/images/pokemon/0422_Shellos_(East_Sea).png and /dev/null differ diff --git a/Site/static/images/pokemon/0423-04-001-0.png b/Site/static/images/pokemon/0423-04-001-0.png new file mode 100644 index 0000000..b510ce9 Binary files /dev/null and b/Site/static/images/pokemon/0423-04-001-0.png differ diff --git a/Site/static/images/pokemon/0423-04-002-0.png b/Site/static/images/pokemon/0423-04-002-0.png new file mode 100644 index 0000000..b0d200d Binary files /dev/null and b/Site/static/images/pokemon/0423-04-002-0.png differ diff --git a/Site/static/images/pokemon/0423_Gastrodon.png b/Site/static/images/pokemon/0423_Gastrodon.png deleted file mode 100644 index 954722d..0000000 Binary files a/Site/static/images/pokemon/0423_Gastrodon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0423_Gastrodon_(East_Sea).png b/Site/static/images/pokemon/0423_Gastrodon_(East_Sea).png deleted file mode 100644 index 6f81fef..0000000 Binary files a/Site/static/images/pokemon/0423_Gastrodon_(East_Sea).png and /dev/null differ diff --git a/Site/static/images/pokemon/0424-04-000-1.png b/Site/static/images/pokemon/0424-04-000-1.png new file mode 100644 index 0000000..ceb710e Binary files /dev/null and b/Site/static/images/pokemon/0424-04-000-1.png differ diff --git a/Site/static/images/pokemon/0424-04-000-2.png b/Site/static/images/pokemon/0424-04-000-2.png new file mode 100644 index 0000000..ee68836 Binary files /dev/null and b/Site/static/images/pokemon/0424-04-000-2.png differ diff --git a/Site/static/images/pokemon/0424_Ambipom.png b/Site/static/images/pokemon/0424_Ambipom.png deleted file mode 100644 index 67119b7..0000000 Binary files a/Site/static/images/pokemon/0424_Ambipom.png and /dev/null differ diff --git a/Site/static/images/pokemon/0425-04-000-0.png b/Site/static/images/pokemon/0425-04-000-0.png new file mode 100644 index 0000000..956234a Binary files /dev/null and b/Site/static/images/pokemon/0425-04-000-0.png differ diff --git a/Site/static/images/pokemon/0425_Drifloon.png b/Site/static/images/pokemon/0425_Drifloon.png deleted file mode 100644 index c67600a..0000000 Binary files a/Site/static/images/pokemon/0425_Drifloon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0426-04-000-0.png b/Site/static/images/pokemon/0426-04-000-0.png new file mode 100644 index 0000000..b897612 Binary files /dev/null and b/Site/static/images/pokemon/0426-04-000-0.png differ diff --git a/Site/static/images/pokemon/0426_Drifblim.png b/Site/static/images/pokemon/0426_Drifblim.png deleted file mode 100644 index 50d674a..0000000 Binary files a/Site/static/images/pokemon/0426_Drifblim.png and /dev/null differ diff --git a/Site/static/images/pokemon/0427-04-000-0.png b/Site/static/images/pokemon/0427-04-000-0.png new file mode 100644 index 0000000..10bc6ae Binary files /dev/null and b/Site/static/images/pokemon/0427-04-000-0.png differ diff --git a/Site/static/images/pokemon/0427_Buneary.png b/Site/static/images/pokemon/0427_Buneary.png deleted file mode 100644 index a501340..0000000 Binary files a/Site/static/images/pokemon/0427_Buneary.png and /dev/null differ diff --git a/Site/static/images/pokemon/0428-04-000-0.png b/Site/static/images/pokemon/0428-04-000-0.png new file mode 100644 index 0000000..f4e7acf Binary files /dev/null and b/Site/static/images/pokemon/0428-04-000-0.png differ diff --git a/Site/static/images/pokemon/0428-04-001-0.png b/Site/static/images/pokemon/0428-04-001-0.png new file mode 100644 index 0000000..d8b71a3 Binary files /dev/null and b/Site/static/images/pokemon/0428-04-001-0.png differ diff --git a/Site/static/images/pokemon/0428_Lopunny.png b/Site/static/images/pokemon/0428_Lopunny.png deleted file mode 100644 index 77c8802..0000000 Binary files a/Site/static/images/pokemon/0428_Lopunny.png and /dev/null differ diff --git a/Site/static/images/pokemon/0429-04-000-0.png b/Site/static/images/pokemon/0429-04-000-0.png new file mode 100644 index 0000000..4c256aa Binary files /dev/null and b/Site/static/images/pokemon/0429-04-000-0.png differ diff --git a/Site/static/images/pokemon/0429_Mismagius.png b/Site/static/images/pokemon/0429_Mismagius.png deleted file mode 100644 index 8e658ed..0000000 Binary files a/Site/static/images/pokemon/0429_Mismagius.png and /dev/null differ diff --git a/Site/static/images/pokemon/0430-04-000-0.png b/Site/static/images/pokemon/0430-04-000-0.png new file mode 100644 index 0000000..2111ac6 Binary files /dev/null and b/Site/static/images/pokemon/0430-04-000-0.png differ diff --git a/Site/static/images/pokemon/0430_Honchkrow.png b/Site/static/images/pokemon/0430_Honchkrow.png deleted file mode 100644 index 75bd291..0000000 Binary files a/Site/static/images/pokemon/0430_Honchkrow.png and /dev/null differ diff --git a/Site/static/images/pokemon/0431-04-000-0.png b/Site/static/images/pokemon/0431-04-000-0.png new file mode 100644 index 0000000..fc6f19a Binary files /dev/null and b/Site/static/images/pokemon/0431-04-000-0.png differ diff --git a/Site/static/images/pokemon/0431_Glameow.png b/Site/static/images/pokemon/0431_Glameow.png deleted file mode 100644 index e141351..0000000 Binary files a/Site/static/images/pokemon/0431_Glameow.png and /dev/null differ diff --git a/Site/static/images/pokemon/0432-04-000-0.png b/Site/static/images/pokemon/0432-04-000-0.png new file mode 100644 index 0000000..c131b63 Binary files /dev/null and b/Site/static/images/pokemon/0432-04-000-0.png differ diff --git a/Site/static/images/pokemon/0432_Purugly.png b/Site/static/images/pokemon/0432_Purugly.png deleted file mode 100644 index 3755dce..0000000 Binary files a/Site/static/images/pokemon/0432_Purugly.png and /dev/null differ diff --git a/Site/static/images/pokemon/0433-04-000-0.png b/Site/static/images/pokemon/0433-04-000-0.png new file mode 100644 index 0000000..3d5f14d Binary files /dev/null and b/Site/static/images/pokemon/0433-04-000-0.png differ diff --git a/Site/static/images/pokemon/0433_Chingling.png b/Site/static/images/pokemon/0433_Chingling.png deleted file mode 100644 index 7ecf0a6..0000000 Binary files a/Site/static/images/pokemon/0433_Chingling.png and /dev/null differ diff --git a/Site/static/images/pokemon/0434-04-000-0.png b/Site/static/images/pokemon/0434-04-000-0.png new file mode 100644 index 0000000..c6fc811 Binary files /dev/null and b/Site/static/images/pokemon/0434-04-000-0.png differ diff --git a/Site/static/images/pokemon/0434_Stunky.png b/Site/static/images/pokemon/0434_Stunky.png deleted file mode 100644 index 825f6bc..0000000 Binary files a/Site/static/images/pokemon/0434_Stunky.png and /dev/null differ diff --git a/Site/static/images/pokemon/0435-04-000-0.png b/Site/static/images/pokemon/0435-04-000-0.png new file mode 100644 index 0000000..01b8399 Binary files /dev/null and b/Site/static/images/pokemon/0435-04-000-0.png differ diff --git a/Site/static/images/pokemon/0435_Skuntank.png b/Site/static/images/pokemon/0435_Skuntank.png deleted file mode 100644 index b6605df..0000000 Binary files a/Site/static/images/pokemon/0435_Skuntank.png and /dev/null differ diff --git a/Site/static/images/pokemon/0436-04-000-0.png b/Site/static/images/pokemon/0436-04-000-0.png new file mode 100644 index 0000000..fa0fabf Binary files /dev/null and b/Site/static/images/pokemon/0436-04-000-0.png differ diff --git a/Site/static/images/pokemon/0436_Bronzor.png b/Site/static/images/pokemon/0436_Bronzor.png deleted file mode 100644 index be2fbdb..0000000 Binary files a/Site/static/images/pokemon/0436_Bronzor.png and /dev/null differ diff --git a/Site/static/images/pokemon/0437-04-000-0.png b/Site/static/images/pokemon/0437-04-000-0.png new file mode 100644 index 0000000..a95f5ec Binary files /dev/null and b/Site/static/images/pokemon/0437-04-000-0.png differ diff --git a/Site/static/images/pokemon/0437_Bronzong.png b/Site/static/images/pokemon/0437_Bronzong.png deleted file mode 100644 index 3c6cc0f..0000000 Binary files a/Site/static/images/pokemon/0437_Bronzong.png and /dev/null differ diff --git a/Site/static/images/pokemon/0438-04-000-0.png b/Site/static/images/pokemon/0438-04-000-0.png new file mode 100644 index 0000000..f381aae Binary files /dev/null and b/Site/static/images/pokemon/0438-04-000-0.png differ diff --git a/Site/static/images/pokemon/0438_Bonsly.png b/Site/static/images/pokemon/0438_Bonsly.png deleted file mode 100644 index b967c15..0000000 Binary files a/Site/static/images/pokemon/0438_Bonsly.png and /dev/null differ diff --git a/Site/static/images/pokemon/0439-04-000-0.png b/Site/static/images/pokemon/0439-04-000-0.png new file mode 100644 index 0000000..fc6ddfb Binary files /dev/null and b/Site/static/images/pokemon/0439-04-000-0.png differ diff --git a/Site/static/images/pokemon/0439_Mime_Jr..png b/Site/static/images/pokemon/0439_Mime_Jr..png deleted file mode 100644 index 4006cee..0000000 Binary files a/Site/static/images/pokemon/0439_Mime_Jr..png and /dev/null differ diff --git a/Site/static/images/pokemon/0440-04-000-0.png b/Site/static/images/pokemon/0440-04-000-0.png new file mode 100644 index 0000000..c4a52ab Binary files /dev/null and b/Site/static/images/pokemon/0440-04-000-0.png differ diff --git a/Site/static/images/pokemon/0440_Happiny.png b/Site/static/images/pokemon/0440_Happiny.png deleted file mode 100644 index 42196f2..0000000 Binary files a/Site/static/images/pokemon/0440_Happiny.png and /dev/null differ diff --git a/Site/static/images/pokemon/0441-04-000-0.png b/Site/static/images/pokemon/0441-04-000-0.png new file mode 100644 index 0000000..69e573b Binary files /dev/null and b/Site/static/images/pokemon/0441-04-000-0.png differ diff --git a/Site/static/images/pokemon/0441_Chatot.png b/Site/static/images/pokemon/0441_Chatot.png deleted file mode 100644 index 3260ea6..0000000 Binary files a/Site/static/images/pokemon/0441_Chatot.png and /dev/null differ diff --git a/Site/static/images/pokemon/0442-04-000-0.png b/Site/static/images/pokemon/0442-04-000-0.png new file mode 100644 index 0000000..f82138d Binary files /dev/null and b/Site/static/images/pokemon/0442-04-000-0.png differ diff --git a/Site/static/images/pokemon/0442_Spiritomb.png b/Site/static/images/pokemon/0442_Spiritomb.png deleted file mode 100644 index c65db08..0000000 Binary files a/Site/static/images/pokemon/0442_Spiritomb.png and /dev/null differ diff --git a/Site/static/images/pokemon/0443-04-000-1.png b/Site/static/images/pokemon/0443-04-000-1.png new file mode 100644 index 0000000..10327b9 Binary files /dev/null and b/Site/static/images/pokemon/0443-04-000-1.png differ diff --git a/Site/static/images/pokemon/0443-04-000-2.png b/Site/static/images/pokemon/0443-04-000-2.png new file mode 100644 index 0000000..062903f Binary files /dev/null and b/Site/static/images/pokemon/0443-04-000-2.png differ diff --git a/Site/static/images/pokemon/0443_Gible.png b/Site/static/images/pokemon/0443_Gible.png deleted file mode 100644 index acd3445..0000000 Binary files a/Site/static/images/pokemon/0443_Gible.png and /dev/null differ diff --git a/Site/static/images/pokemon/0444-04-000-1.png b/Site/static/images/pokemon/0444-04-000-1.png new file mode 100644 index 0000000..72a8b6e Binary files /dev/null and b/Site/static/images/pokemon/0444-04-000-1.png differ diff --git a/Site/static/images/pokemon/0444-04-000-2.png b/Site/static/images/pokemon/0444-04-000-2.png new file mode 100644 index 0000000..407444d Binary files /dev/null and b/Site/static/images/pokemon/0444-04-000-2.png differ diff --git a/Site/static/images/pokemon/0444_Gabite.png b/Site/static/images/pokemon/0444_Gabite.png deleted file mode 100644 index 650403d..0000000 Binary files a/Site/static/images/pokemon/0444_Gabite.png and /dev/null differ diff --git a/Site/static/images/pokemon/0445-04-000-1.png b/Site/static/images/pokemon/0445-04-000-1.png new file mode 100644 index 0000000..a15a8c0 Binary files /dev/null and b/Site/static/images/pokemon/0445-04-000-1.png differ diff --git a/Site/static/images/pokemon/0445-04-000-2.png b/Site/static/images/pokemon/0445-04-000-2.png new file mode 100644 index 0000000..a1a7227 Binary files /dev/null and b/Site/static/images/pokemon/0445-04-000-2.png differ diff --git a/Site/static/images/pokemon/0445-04-001-0.png b/Site/static/images/pokemon/0445-04-001-0.png new file mode 100644 index 0000000..806f6c0 Binary files /dev/null and b/Site/static/images/pokemon/0445-04-001-0.png differ diff --git a/Site/static/images/pokemon/0445_Garchomp.png b/Site/static/images/pokemon/0445_Garchomp.png deleted file mode 100644 index f5fa07d..0000000 Binary files a/Site/static/images/pokemon/0445_Garchomp.png and /dev/null differ diff --git a/Site/static/images/pokemon/0446-04-000-0.png b/Site/static/images/pokemon/0446-04-000-0.png new file mode 100644 index 0000000..304f322 Binary files /dev/null and b/Site/static/images/pokemon/0446-04-000-0.png differ diff --git a/Site/static/images/pokemon/0446_Munchlax.png b/Site/static/images/pokemon/0446_Munchlax.png deleted file mode 100644 index 41446f2..0000000 Binary files a/Site/static/images/pokemon/0446_Munchlax.png and /dev/null differ diff --git a/Site/static/images/pokemon/0447-04-000-0.png b/Site/static/images/pokemon/0447-04-000-0.png new file mode 100644 index 0000000..cd287f7 Binary files /dev/null and b/Site/static/images/pokemon/0447-04-000-0.png differ diff --git a/Site/static/images/pokemon/0447_Riolu.png b/Site/static/images/pokemon/0447_Riolu.png deleted file mode 100644 index ebd5701..0000000 Binary files a/Site/static/images/pokemon/0447_Riolu.png and /dev/null differ diff --git a/Site/static/images/pokemon/0448-04-000-0.png b/Site/static/images/pokemon/0448-04-000-0.png new file mode 100644 index 0000000..1b3481c Binary files /dev/null and b/Site/static/images/pokemon/0448-04-000-0.png differ diff --git a/Site/static/images/pokemon/0448-04-001-0.png b/Site/static/images/pokemon/0448-04-001-0.png new file mode 100644 index 0000000..a6d4c6b Binary files /dev/null and b/Site/static/images/pokemon/0448-04-001-0.png differ diff --git a/Site/static/images/pokemon/0448_Lucario.png b/Site/static/images/pokemon/0448_Lucario.png deleted file mode 100644 index 2baebb4..0000000 Binary files a/Site/static/images/pokemon/0448_Lucario.png and /dev/null differ diff --git a/Site/static/images/pokemon/0449-04-000-1.png b/Site/static/images/pokemon/0449-04-000-1.png new file mode 100644 index 0000000..bbfa305 Binary files /dev/null and b/Site/static/images/pokemon/0449-04-000-1.png differ diff --git a/Site/static/images/pokemon/0449-04-000-2.png b/Site/static/images/pokemon/0449-04-000-2.png new file mode 100644 index 0000000..30d26dc Binary files /dev/null and b/Site/static/images/pokemon/0449-04-000-2.png differ diff --git a/Site/static/images/pokemon/0449_Hippopotas.png b/Site/static/images/pokemon/0449_Hippopotas.png deleted file mode 100644 index 793d649..0000000 Binary files a/Site/static/images/pokemon/0449_Hippopotas.png and /dev/null differ diff --git a/Site/static/images/pokemon/0450-04-000-1.png b/Site/static/images/pokemon/0450-04-000-1.png new file mode 100644 index 0000000..b2c2a89 Binary files /dev/null and b/Site/static/images/pokemon/0450-04-000-1.png differ diff --git a/Site/static/images/pokemon/0450-04-000-2.png b/Site/static/images/pokemon/0450-04-000-2.png new file mode 100644 index 0000000..c72daf4 Binary files /dev/null and b/Site/static/images/pokemon/0450-04-000-2.png differ diff --git a/Site/static/images/pokemon/0450_Hippowdon.png b/Site/static/images/pokemon/0450_Hippowdon.png deleted file mode 100644 index 0c77e54..0000000 Binary files a/Site/static/images/pokemon/0450_Hippowdon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0451-04-000-0.png b/Site/static/images/pokemon/0451-04-000-0.png new file mode 100644 index 0000000..8997489 Binary files /dev/null and b/Site/static/images/pokemon/0451-04-000-0.png differ diff --git a/Site/static/images/pokemon/0451_Skorupi.png b/Site/static/images/pokemon/0451_Skorupi.png deleted file mode 100644 index 3196ed4..0000000 Binary files a/Site/static/images/pokemon/0451_Skorupi.png and /dev/null differ diff --git a/Site/static/images/pokemon/0452-04-000-0.png b/Site/static/images/pokemon/0452-04-000-0.png new file mode 100644 index 0000000..86b0371 Binary files /dev/null and b/Site/static/images/pokemon/0452-04-000-0.png differ diff --git a/Site/static/images/pokemon/0452_Drapion.png b/Site/static/images/pokemon/0452_Drapion.png deleted file mode 100644 index 570bfc5..0000000 Binary files a/Site/static/images/pokemon/0452_Drapion.png and /dev/null differ diff --git a/Site/static/images/pokemon/0453-04-000-1.png b/Site/static/images/pokemon/0453-04-000-1.png new file mode 100644 index 0000000..a44cedd Binary files /dev/null and b/Site/static/images/pokemon/0453-04-000-1.png differ diff --git a/Site/static/images/pokemon/0453-04-000-2.png b/Site/static/images/pokemon/0453-04-000-2.png new file mode 100644 index 0000000..180c2bf Binary files /dev/null and b/Site/static/images/pokemon/0453-04-000-2.png differ diff --git a/Site/static/images/pokemon/0453_Croagunk.png b/Site/static/images/pokemon/0453_Croagunk.png deleted file mode 100644 index ade930d..0000000 Binary files a/Site/static/images/pokemon/0453_Croagunk.png and /dev/null differ diff --git a/Site/static/images/pokemon/0454-04-000-1.png b/Site/static/images/pokemon/0454-04-000-1.png new file mode 100644 index 0000000..5b42136 Binary files /dev/null and b/Site/static/images/pokemon/0454-04-000-1.png differ diff --git a/Site/static/images/pokemon/0454-04-000-2.png b/Site/static/images/pokemon/0454-04-000-2.png new file mode 100644 index 0000000..67129be Binary files /dev/null and b/Site/static/images/pokemon/0454-04-000-2.png differ diff --git a/Site/static/images/pokemon/0454_Toxicroak.png b/Site/static/images/pokemon/0454_Toxicroak.png deleted file mode 100644 index 63229e1..0000000 Binary files a/Site/static/images/pokemon/0454_Toxicroak.png and /dev/null differ diff --git a/Site/static/images/pokemon/0455-04-000-0.png b/Site/static/images/pokemon/0455-04-000-0.png new file mode 100644 index 0000000..6b6720b Binary files /dev/null and b/Site/static/images/pokemon/0455-04-000-0.png differ diff --git a/Site/static/images/pokemon/0455_Carnivine.png b/Site/static/images/pokemon/0455_Carnivine.png deleted file mode 100644 index e7b979f..0000000 Binary files a/Site/static/images/pokemon/0455_Carnivine.png and /dev/null differ diff --git a/Site/static/images/pokemon/0456-04-000-1.png b/Site/static/images/pokemon/0456-04-000-1.png new file mode 100644 index 0000000..502321f Binary files /dev/null and b/Site/static/images/pokemon/0456-04-000-1.png differ diff --git a/Site/static/images/pokemon/0456-04-000-2.png b/Site/static/images/pokemon/0456-04-000-2.png new file mode 100644 index 0000000..2ae67f5 Binary files /dev/null and b/Site/static/images/pokemon/0456-04-000-2.png differ diff --git a/Site/static/images/pokemon/0456_Finneon.png b/Site/static/images/pokemon/0456_Finneon.png deleted file mode 100644 index 395866c..0000000 Binary files a/Site/static/images/pokemon/0456_Finneon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0457-04-000-1.png b/Site/static/images/pokemon/0457-04-000-1.png new file mode 100644 index 0000000..0007746 Binary files /dev/null and b/Site/static/images/pokemon/0457-04-000-1.png differ diff --git a/Site/static/images/pokemon/0457-04-000-2.png b/Site/static/images/pokemon/0457-04-000-2.png new file mode 100644 index 0000000..e9a1b59 Binary files /dev/null and b/Site/static/images/pokemon/0457-04-000-2.png differ diff --git a/Site/static/images/pokemon/0457_Lumineon.png b/Site/static/images/pokemon/0457_Lumineon.png deleted file mode 100644 index 6b620a2..0000000 Binary files a/Site/static/images/pokemon/0457_Lumineon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0458-04-000-0.png b/Site/static/images/pokemon/0458-04-000-0.png new file mode 100644 index 0000000..af8b392 Binary files /dev/null and b/Site/static/images/pokemon/0458-04-000-0.png differ diff --git a/Site/static/images/pokemon/0458_Mantyke.png b/Site/static/images/pokemon/0458_Mantyke.png deleted file mode 100644 index b407a29..0000000 Binary files a/Site/static/images/pokemon/0458_Mantyke.png and /dev/null differ diff --git a/Site/static/images/pokemon/0459-04-000-1.png b/Site/static/images/pokemon/0459-04-000-1.png new file mode 100644 index 0000000..59195f6 Binary files /dev/null and b/Site/static/images/pokemon/0459-04-000-1.png differ diff --git a/Site/static/images/pokemon/0459-04-000-2.png b/Site/static/images/pokemon/0459-04-000-2.png new file mode 100644 index 0000000..c493e0f Binary files /dev/null and b/Site/static/images/pokemon/0459-04-000-2.png differ diff --git a/Site/static/images/pokemon/0459_Snover.png b/Site/static/images/pokemon/0459_Snover.png deleted file mode 100644 index 541c58a..0000000 Binary files a/Site/static/images/pokemon/0459_Snover.png and /dev/null differ diff --git a/Site/static/images/pokemon/0460-04-000-1.png b/Site/static/images/pokemon/0460-04-000-1.png new file mode 100644 index 0000000..28b19c1 Binary files /dev/null and b/Site/static/images/pokemon/0460-04-000-1.png differ diff --git a/Site/static/images/pokemon/0460-04-000-2.png b/Site/static/images/pokemon/0460-04-000-2.png new file mode 100644 index 0000000..3c03f4f Binary files /dev/null and b/Site/static/images/pokemon/0460-04-000-2.png differ diff --git a/Site/static/images/pokemon/0460-04-001-0.png b/Site/static/images/pokemon/0460-04-001-0.png new file mode 100644 index 0000000..b5d035a Binary files /dev/null and b/Site/static/images/pokemon/0460-04-001-0.png differ diff --git a/Site/static/images/pokemon/0460_Abomasnow.png b/Site/static/images/pokemon/0460_Abomasnow.png deleted file mode 100644 index fbc01d4..0000000 Binary files a/Site/static/images/pokemon/0460_Abomasnow.png and /dev/null differ diff --git a/Site/static/images/pokemon/0461-04-000-1.png b/Site/static/images/pokemon/0461-04-000-1.png new file mode 100644 index 0000000..ef54fb3 Binary files /dev/null and b/Site/static/images/pokemon/0461-04-000-1.png differ diff --git a/Site/static/images/pokemon/0461-04-000-2.png b/Site/static/images/pokemon/0461-04-000-2.png new file mode 100644 index 0000000..1951b34 Binary files /dev/null and b/Site/static/images/pokemon/0461-04-000-2.png differ diff --git a/Site/static/images/pokemon/0461_Weavile.png b/Site/static/images/pokemon/0461_Weavile.png deleted file mode 100644 index db9bef9..0000000 Binary files a/Site/static/images/pokemon/0461_Weavile.png and /dev/null differ diff --git a/Site/static/images/pokemon/0462-04-000-0.png b/Site/static/images/pokemon/0462-04-000-0.png new file mode 100644 index 0000000..69d7b4a Binary files /dev/null and b/Site/static/images/pokemon/0462-04-000-0.png differ diff --git a/Site/static/images/pokemon/0462_Magnezone.png b/Site/static/images/pokemon/0462_Magnezone.png deleted file mode 100644 index 5425c39..0000000 Binary files a/Site/static/images/pokemon/0462_Magnezone.png and /dev/null differ diff --git a/Site/static/images/pokemon/0463-04-000-0.png b/Site/static/images/pokemon/0463-04-000-0.png new file mode 100644 index 0000000..696b81c Binary files /dev/null and b/Site/static/images/pokemon/0463-04-000-0.png differ diff --git a/Site/static/images/pokemon/0463_Lickilicky.png b/Site/static/images/pokemon/0463_Lickilicky.png deleted file mode 100644 index dc0b39c..0000000 Binary files a/Site/static/images/pokemon/0463_Lickilicky.png and /dev/null differ diff --git a/Site/static/images/pokemon/0464-04-000-1.png b/Site/static/images/pokemon/0464-04-000-1.png new file mode 100644 index 0000000..8c9b822 Binary files /dev/null and b/Site/static/images/pokemon/0464-04-000-1.png differ diff --git a/Site/static/images/pokemon/0464-04-000-2.png b/Site/static/images/pokemon/0464-04-000-2.png new file mode 100644 index 0000000..f48af71 Binary files /dev/null and b/Site/static/images/pokemon/0464-04-000-2.png differ diff --git a/Site/static/images/pokemon/0464_Rhyperior.png b/Site/static/images/pokemon/0464_Rhyperior.png deleted file mode 100644 index 479785a..0000000 Binary files a/Site/static/images/pokemon/0464_Rhyperior.png and /dev/null differ diff --git a/Site/static/images/pokemon/0465-04-000-1.png b/Site/static/images/pokemon/0465-04-000-1.png new file mode 100644 index 0000000..e016372 Binary files /dev/null and b/Site/static/images/pokemon/0465-04-000-1.png differ diff --git a/Site/static/images/pokemon/0465-04-000-2.png b/Site/static/images/pokemon/0465-04-000-2.png new file mode 100644 index 0000000..eb2d25f Binary files /dev/null and b/Site/static/images/pokemon/0465-04-000-2.png differ diff --git a/Site/static/images/pokemon/0465_Tangrowth.png b/Site/static/images/pokemon/0465_Tangrowth.png deleted file mode 100644 index 0c7a636..0000000 Binary files a/Site/static/images/pokemon/0465_Tangrowth.png and /dev/null differ diff --git a/Site/static/images/pokemon/0466-04-000-0.png b/Site/static/images/pokemon/0466-04-000-0.png new file mode 100644 index 0000000..3fc126f Binary files /dev/null and b/Site/static/images/pokemon/0466-04-000-0.png differ diff --git a/Site/static/images/pokemon/0466_Electivire.png b/Site/static/images/pokemon/0466_Electivire.png deleted file mode 100644 index c889e13..0000000 Binary files a/Site/static/images/pokemon/0466_Electivire.png and /dev/null differ diff --git a/Site/static/images/pokemon/0467-04-000-0.png b/Site/static/images/pokemon/0467-04-000-0.png new file mode 100644 index 0000000..2590424 Binary files /dev/null and b/Site/static/images/pokemon/0467-04-000-0.png differ diff --git a/Site/static/images/pokemon/0467_Magmortar.png b/Site/static/images/pokemon/0467_Magmortar.png deleted file mode 100644 index 3f0f30c..0000000 Binary files a/Site/static/images/pokemon/0467_Magmortar.png and /dev/null differ diff --git a/Site/static/images/pokemon/0468-04-000-0.png b/Site/static/images/pokemon/0468-04-000-0.png new file mode 100644 index 0000000..1781704 Binary files /dev/null and b/Site/static/images/pokemon/0468-04-000-0.png differ diff --git a/Site/static/images/pokemon/0468_Togekiss.png b/Site/static/images/pokemon/0468_Togekiss.png deleted file mode 100644 index 0e2eee1..0000000 Binary files a/Site/static/images/pokemon/0468_Togekiss.png and /dev/null differ diff --git a/Site/static/images/pokemon/0469-04-000-0.png b/Site/static/images/pokemon/0469-04-000-0.png new file mode 100644 index 0000000..b372f90 Binary files /dev/null and b/Site/static/images/pokemon/0469-04-000-0.png differ diff --git a/Site/static/images/pokemon/0469_Yanmega.png b/Site/static/images/pokemon/0469_Yanmega.png deleted file mode 100644 index dc172a8..0000000 Binary files a/Site/static/images/pokemon/0469_Yanmega.png and /dev/null differ diff --git a/Site/static/images/pokemon/0470-04-000-0.png b/Site/static/images/pokemon/0470-04-000-0.png new file mode 100644 index 0000000..191f9b9 Binary files /dev/null and b/Site/static/images/pokemon/0470-04-000-0.png differ diff --git a/Site/static/images/pokemon/0470_Leafeon.png b/Site/static/images/pokemon/0470_Leafeon.png deleted file mode 100644 index 957fc15..0000000 Binary files a/Site/static/images/pokemon/0470_Leafeon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0471-04-000-0.png b/Site/static/images/pokemon/0471-04-000-0.png new file mode 100644 index 0000000..0301e98 Binary files /dev/null and b/Site/static/images/pokemon/0471-04-000-0.png differ diff --git a/Site/static/images/pokemon/0471_Glaceon.png b/Site/static/images/pokemon/0471_Glaceon.png deleted file mode 100644 index 7e74e40..0000000 Binary files a/Site/static/images/pokemon/0471_Glaceon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0472-04-000-0.png b/Site/static/images/pokemon/0472-04-000-0.png new file mode 100644 index 0000000..61214f4 Binary files /dev/null and b/Site/static/images/pokemon/0472-04-000-0.png differ diff --git a/Site/static/images/pokemon/0472_Gliscor.png b/Site/static/images/pokemon/0472_Gliscor.png deleted file mode 100644 index 546a855..0000000 Binary files a/Site/static/images/pokemon/0472_Gliscor.png and /dev/null differ diff --git a/Site/static/images/pokemon/0473-04-000-1.png b/Site/static/images/pokemon/0473-04-000-1.png new file mode 100644 index 0000000..900f100 Binary files /dev/null and b/Site/static/images/pokemon/0473-04-000-1.png differ diff --git a/Site/static/images/pokemon/0473-04-000-2.png b/Site/static/images/pokemon/0473-04-000-2.png new file mode 100644 index 0000000..dc0f35d Binary files /dev/null and b/Site/static/images/pokemon/0473-04-000-2.png differ diff --git a/Site/static/images/pokemon/0473_Mamoswine.png b/Site/static/images/pokemon/0473_Mamoswine.png deleted file mode 100644 index 2104897..0000000 Binary files a/Site/static/images/pokemon/0473_Mamoswine.png and /dev/null differ diff --git a/Site/static/images/pokemon/0474-04-000-0.png b/Site/static/images/pokemon/0474-04-000-0.png new file mode 100644 index 0000000..a18b128 Binary files /dev/null and b/Site/static/images/pokemon/0474-04-000-0.png differ diff --git a/Site/static/images/pokemon/0474_Porygon-Z.png b/Site/static/images/pokemon/0474_Porygon-Z.png deleted file mode 100644 index 28023d4..0000000 Binary files a/Site/static/images/pokemon/0474_Porygon-Z.png and /dev/null differ diff --git a/Site/static/images/pokemon/0475-04-000-0.png b/Site/static/images/pokemon/0475-04-000-0.png new file mode 100644 index 0000000..5547729 Binary files /dev/null and b/Site/static/images/pokemon/0475-04-000-0.png differ diff --git a/Site/static/images/pokemon/0475-04-001-0.png b/Site/static/images/pokemon/0475-04-001-0.png new file mode 100644 index 0000000..cd338b3 Binary files /dev/null and b/Site/static/images/pokemon/0475-04-001-0.png differ diff --git a/Site/static/images/pokemon/0475_Gallade.png b/Site/static/images/pokemon/0475_Gallade.png deleted file mode 100644 index 09b29e5..0000000 Binary files a/Site/static/images/pokemon/0475_Gallade.png and /dev/null differ diff --git a/Site/static/images/pokemon/0476-04-000-0.png b/Site/static/images/pokemon/0476-04-000-0.png new file mode 100644 index 0000000..2f6b50c Binary files /dev/null and b/Site/static/images/pokemon/0476-04-000-0.png differ diff --git a/Site/static/images/pokemon/0476_Probopass.png b/Site/static/images/pokemon/0476_Probopass.png deleted file mode 100644 index 93ec2d6..0000000 Binary files a/Site/static/images/pokemon/0476_Probopass.png and /dev/null differ diff --git a/Site/static/images/pokemon/0477-04-000-0.png b/Site/static/images/pokemon/0477-04-000-0.png new file mode 100644 index 0000000..661a4b5 Binary files /dev/null and b/Site/static/images/pokemon/0477-04-000-0.png differ diff --git a/Site/static/images/pokemon/0477_Dusknoir.png b/Site/static/images/pokemon/0477_Dusknoir.png deleted file mode 100644 index 072345b..0000000 Binary files a/Site/static/images/pokemon/0477_Dusknoir.png and /dev/null differ diff --git a/Site/static/images/pokemon/0478-04-000-0.png b/Site/static/images/pokemon/0478-04-000-0.png new file mode 100644 index 0000000..391bdbe Binary files /dev/null and b/Site/static/images/pokemon/0478-04-000-0.png differ diff --git a/Site/static/images/pokemon/0478_Froslass.png b/Site/static/images/pokemon/0478_Froslass.png deleted file mode 100644 index bdf26d8..0000000 Binary files a/Site/static/images/pokemon/0478_Froslass.png and /dev/null differ diff --git a/Site/static/images/pokemon/0479-04-000-0.png b/Site/static/images/pokemon/0479-04-000-0.png new file mode 100644 index 0000000..1fa841f Binary files /dev/null and b/Site/static/images/pokemon/0479-04-000-0.png differ diff --git a/Site/static/images/pokemon/0479-04-001-0.png b/Site/static/images/pokemon/0479-04-001-0.png new file mode 100644 index 0000000..b04f91e Binary files /dev/null and b/Site/static/images/pokemon/0479-04-001-0.png differ diff --git a/Site/static/images/pokemon/0479-04-002-0.png b/Site/static/images/pokemon/0479-04-002-0.png new file mode 100644 index 0000000..80bb7a8 Binary files /dev/null and b/Site/static/images/pokemon/0479-04-002-0.png differ diff --git a/Site/static/images/pokemon/0479-04-003-0.png b/Site/static/images/pokemon/0479-04-003-0.png new file mode 100644 index 0000000..a9f6278 Binary files /dev/null and b/Site/static/images/pokemon/0479-04-003-0.png differ diff --git a/Site/static/images/pokemon/0479-04-004-0.png b/Site/static/images/pokemon/0479-04-004-0.png new file mode 100644 index 0000000..8d803a7 Binary files /dev/null and b/Site/static/images/pokemon/0479-04-004-0.png differ diff --git a/Site/static/images/pokemon/0479-04-005-0.png b/Site/static/images/pokemon/0479-04-005-0.png new file mode 100644 index 0000000..2373c2f Binary files /dev/null and b/Site/static/images/pokemon/0479-04-005-0.png differ diff --git a/Site/static/images/pokemon/0479_Rotom.png b/Site/static/images/pokemon/0479_Rotom.png deleted file mode 100644 index d015cd3..0000000 Binary files a/Site/static/images/pokemon/0479_Rotom.png and /dev/null differ diff --git a/Site/static/images/pokemon/0479_Rotom_(Fan_Rotom).png b/Site/static/images/pokemon/0479_Rotom_(Fan_Rotom).png deleted file mode 100644 index ebae4e4..0000000 Binary files a/Site/static/images/pokemon/0479_Rotom_(Fan_Rotom).png and /dev/null differ diff --git a/Site/static/images/pokemon/0479_Rotom_(Frost_Rotom).png b/Site/static/images/pokemon/0479_Rotom_(Frost_Rotom).png deleted file mode 100644 index 6bc1aa6..0000000 Binary files a/Site/static/images/pokemon/0479_Rotom_(Frost_Rotom).png and /dev/null differ diff --git a/Site/static/images/pokemon/0479_Rotom_(Heat_Rotom).png b/Site/static/images/pokemon/0479_Rotom_(Heat_Rotom).png deleted file mode 100644 index 62d8c44..0000000 Binary files a/Site/static/images/pokemon/0479_Rotom_(Heat_Rotom).png and /dev/null differ diff --git a/Site/static/images/pokemon/0479_Rotom_(Mow_Rotom).png b/Site/static/images/pokemon/0479_Rotom_(Mow_Rotom).png deleted file mode 100644 index ea8d4f9..0000000 Binary files a/Site/static/images/pokemon/0479_Rotom_(Mow_Rotom).png and /dev/null differ diff --git a/Site/static/images/pokemon/0479_Rotom_(Wash_Rotom).png b/Site/static/images/pokemon/0479_Rotom_(Wash_Rotom).png deleted file mode 100644 index 8b85753..0000000 Binary files a/Site/static/images/pokemon/0479_Rotom_(Wash_Rotom).png and /dev/null differ diff --git a/Site/static/images/pokemon/0480-04-000-0.png b/Site/static/images/pokemon/0480-04-000-0.png new file mode 100644 index 0000000..6649815 Binary files /dev/null and b/Site/static/images/pokemon/0480-04-000-0.png differ diff --git a/Site/static/images/pokemon/0480_Uxie.png b/Site/static/images/pokemon/0480_Uxie.png deleted file mode 100644 index b46f372..0000000 Binary files a/Site/static/images/pokemon/0480_Uxie.png and /dev/null differ diff --git a/Site/static/images/pokemon/0481-04-000-0.png b/Site/static/images/pokemon/0481-04-000-0.png new file mode 100644 index 0000000..41cca97 Binary files /dev/null and b/Site/static/images/pokemon/0481-04-000-0.png differ diff --git a/Site/static/images/pokemon/0481_Mesprit.png b/Site/static/images/pokemon/0481_Mesprit.png deleted file mode 100644 index 7076dce..0000000 Binary files a/Site/static/images/pokemon/0481_Mesprit.png and /dev/null differ diff --git a/Site/static/images/pokemon/0482-04-000-0.png b/Site/static/images/pokemon/0482-04-000-0.png new file mode 100644 index 0000000..1dff6da Binary files /dev/null and b/Site/static/images/pokemon/0482-04-000-0.png differ diff --git a/Site/static/images/pokemon/0482_Azelf.png b/Site/static/images/pokemon/0482_Azelf.png deleted file mode 100644 index 63975e8..0000000 Binary files a/Site/static/images/pokemon/0482_Azelf.png and /dev/null differ diff --git a/Site/static/images/pokemon/0483-04-000-0.png b/Site/static/images/pokemon/0483-04-000-0.png new file mode 100644 index 0000000..cc1c81c Binary files /dev/null and b/Site/static/images/pokemon/0483-04-000-0.png differ diff --git a/Site/static/images/pokemon/0483-04-001-0.png b/Site/static/images/pokemon/0483-04-001-0.png new file mode 100644 index 0000000..ab27325 Binary files /dev/null and b/Site/static/images/pokemon/0483-04-001-0.png differ diff --git a/Site/static/images/pokemon/0483_Dialga.png b/Site/static/images/pokemon/0483_Dialga.png deleted file mode 100644 index 065496e..0000000 Binary files a/Site/static/images/pokemon/0483_Dialga.png and /dev/null differ diff --git a/Site/static/images/pokemon/0484-04-000-0.png b/Site/static/images/pokemon/0484-04-000-0.png new file mode 100644 index 0000000..a180186 Binary files /dev/null and b/Site/static/images/pokemon/0484-04-000-0.png differ diff --git a/Site/static/images/pokemon/0484-04-001-0.png b/Site/static/images/pokemon/0484-04-001-0.png new file mode 100644 index 0000000..06b035b Binary files /dev/null and b/Site/static/images/pokemon/0484-04-001-0.png differ diff --git a/Site/static/images/pokemon/0484_Palkia.png b/Site/static/images/pokemon/0484_Palkia.png deleted file mode 100644 index d524803..0000000 Binary files a/Site/static/images/pokemon/0484_Palkia.png and /dev/null differ diff --git a/Site/static/images/pokemon/0485-04-000-0.png b/Site/static/images/pokemon/0485-04-000-0.png new file mode 100644 index 0000000..b832954 Binary files /dev/null and b/Site/static/images/pokemon/0485-04-000-0.png differ diff --git a/Site/static/images/pokemon/0485_Heatran.png b/Site/static/images/pokemon/0485_Heatran.png deleted file mode 100644 index 6bec17d..0000000 Binary files a/Site/static/images/pokemon/0485_Heatran.png and /dev/null differ diff --git a/Site/static/images/pokemon/0486-04-000-0.png b/Site/static/images/pokemon/0486-04-000-0.png new file mode 100644 index 0000000..73792d6 Binary files /dev/null and b/Site/static/images/pokemon/0486-04-000-0.png differ diff --git a/Site/static/images/pokemon/0486_Regigigas.png b/Site/static/images/pokemon/0486_Regigigas.png deleted file mode 100644 index 732c4b5..0000000 Binary files a/Site/static/images/pokemon/0486_Regigigas.png and /dev/null differ diff --git a/Site/static/images/pokemon/0487-04-001-0.png b/Site/static/images/pokemon/0487-04-001-0.png new file mode 100644 index 0000000..5fc0ab4 Binary files /dev/null and b/Site/static/images/pokemon/0487-04-001-0.png differ diff --git a/Site/static/images/pokemon/0487-04-002-0.png b/Site/static/images/pokemon/0487-04-002-0.png new file mode 100644 index 0000000..a3bb58d Binary files /dev/null and b/Site/static/images/pokemon/0487-04-002-0.png differ diff --git a/Site/static/images/pokemon/0487_Giratina.png b/Site/static/images/pokemon/0487_Giratina.png deleted file mode 100644 index 5375670..0000000 Binary files a/Site/static/images/pokemon/0487_Giratina.png and /dev/null differ diff --git a/Site/static/images/pokemon/0488-04-000-0.png b/Site/static/images/pokemon/0488-04-000-0.png new file mode 100644 index 0000000..c113f4a Binary files /dev/null and b/Site/static/images/pokemon/0488-04-000-0.png differ diff --git a/Site/static/images/pokemon/0488_Cresselia.png b/Site/static/images/pokemon/0488_Cresselia.png deleted file mode 100644 index 9f7a98c..0000000 Binary files a/Site/static/images/pokemon/0488_Cresselia.png and /dev/null differ diff --git a/Site/static/images/pokemon/0489-04-000-0.png b/Site/static/images/pokemon/0489-04-000-0.png new file mode 100644 index 0000000..9e1a463 Binary files /dev/null and b/Site/static/images/pokemon/0489-04-000-0.png differ diff --git a/Site/static/images/pokemon/0489_Phione.png b/Site/static/images/pokemon/0489_Phione.png deleted file mode 100644 index af43955..0000000 Binary files a/Site/static/images/pokemon/0489_Phione.png and /dev/null differ diff --git a/Site/static/images/pokemon/0490-04-000-0.png b/Site/static/images/pokemon/0490-04-000-0.png new file mode 100644 index 0000000..0d6ace1 Binary files /dev/null and b/Site/static/images/pokemon/0490-04-000-0.png differ diff --git a/Site/static/images/pokemon/0490_Manaphy.png b/Site/static/images/pokemon/0490_Manaphy.png deleted file mode 100644 index 6210173..0000000 Binary files a/Site/static/images/pokemon/0490_Manaphy.png and /dev/null differ diff --git a/Site/static/images/pokemon/0491-04-000-0.png b/Site/static/images/pokemon/0491-04-000-0.png new file mode 100644 index 0000000..7e40a2f Binary files /dev/null and b/Site/static/images/pokemon/0491-04-000-0.png differ diff --git a/Site/static/images/pokemon/0491_Darkrai.png b/Site/static/images/pokemon/0491_Darkrai.png deleted file mode 100644 index 8b25a09..0000000 Binary files a/Site/static/images/pokemon/0491_Darkrai.png and /dev/null differ diff --git a/Site/static/images/pokemon/0492-04-001-0.png b/Site/static/images/pokemon/0492-04-001-0.png new file mode 100644 index 0000000..d9b61f1 Binary files /dev/null and b/Site/static/images/pokemon/0492-04-001-0.png differ diff --git a/Site/static/images/pokemon/0492-04-002-0.png b/Site/static/images/pokemon/0492-04-002-0.png new file mode 100644 index 0000000..fb8d2e0 Binary files /dev/null and b/Site/static/images/pokemon/0492-04-002-0.png differ diff --git a/Site/static/images/pokemon/0492_Shaymin.png b/Site/static/images/pokemon/0492_Shaymin.png deleted file mode 100644 index 1e61f34..0000000 Binary files a/Site/static/images/pokemon/0492_Shaymin.png and /dev/null differ diff --git a/Site/static/images/pokemon/0492_Shaymin_(Sky_Forme).png b/Site/static/images/pokemon/0492_Shaymin_(Sky_Forme).png deleted file mode 100644 index 02f8f8f..0000000 Binary files a/Site/static/images/pokemon/0492_Shaymin_(Sky_Forme).png and /dev/null differ diff --git a/Site/static/images/pokemon/0493-04-001-0.png b/Site/static/images/pokemon/0493-04-001-0.png new file mode 100644 index 0000000..2df0010 Binary files /dev/null and b/Site/static/images/pokemon/0493-04-001-0.png differ diff --git a/Site/static/images/pokemon/0493-04-002-0.png b/Site/static/images/pokemon/0493-04-002-0.png new file mode 100644 index 0000000..1fbd147 Binary files /dev/null and b/Site/static/images/pokemon/0493-04-002-0.png differ diff --git a/Site/static/images/pokemon/0493-04-003-0.png b/Site/static/images/pokemon/0493-04-003-0.png new file mode 100644 index 0000000..b34a40f Binary files /dev/null and b/Site/static/images/pokemon/0493-04-003-0.png differ diff --git a/Site/static/images/pokemon/0493-04-004-0.png b/Site/static/images/pokemon/0493-04-004-0.png new file mode 100644 index 0000000..28d655d Binary files /dev/null and b/Site/static/images/pokemon/0493-04-004-0.png differ diff --git a/Site/static/images/pokemon/0493-04-005-0.png b/Site/static/images/pokemon/0493-04-005-0.png new file mode 100644 index 0000000..4960afd Binary files /dev/null and b/Site/static/images/pokemon/0493-04-005-0.png differ diff --git a/Site/static/images/pokemon/0493-04-006-0.png b/Site/static/images/pokemon/0493-04-006-0.png new file mode 100644 index 0000000..e3baafb Binary files /dev/null and b/Site/static/images/pokemon/0493-04-006-0.png differ diff --git a/Site/static/images/pokemon/0493-04-007-0.png b/Site/static/images/pokemon/0493-04-007-0.png new file mode 100644 index 0000000..c589516 Binary files /dev/null and b/Site/static/images/pokemon/0493-04-007-0.png differ diff --git a/Site/static/images/pokemon/0493-04-008-0.png b/Site/static/images/pokemon/0493-04-008-0.png new file mode 100644 index 0000000..d28b579 Binary files /dev/null and b/Site/static/images/pokemon/0493-04-008-0.png differ diff --git a/Site/static/images/pokemon/0493-04-009-0.png b/Site/static/images/pokemon/0493-04-009-0.png new file mode 100644 index 0000000..30895b3 Binary files /dev/null and b/Site/static/images/pokemon/0493-04-009-0.png differ diff --git a/Site/static/images/pokemon/0493-04-010-0.png b/Site/static/images/pokemon/0493-04-010-0.png new file mode 100644 index 0000000..f79abf6 Binary files /dev/null and b/Site/static/images/pokemon/0493-04-010-0.png differ diff --git a/Site/static/images/pokemon/0493-04-011-0.png b/Site/static/images/pokemon/0493-04-011-0.png new file mode 100644 index 0000000..7795125 Binary files /dev/null and b/Site/static/images/pokemon/0493-04-011-0.png differ diff --git a/Site/static/images/pokemon/0493-04-012-0.png b/Site/static/images/pokemon/0493-04-012-0.png new file mode 100644 index 0000000..c234099 Binary files /dev/null and b/Site/static/images/pokemon/0493-04-012-0.png differ diff --git a/Site/static/images/pokemon/0493-04-013-0.png b/Site/static/images/pokemon/0493-04-013-0.png new file mode 100644 index 0000000..a2413c9 Binary files /dev/null and b/Site/static/images/pokemon/0493-04-013-0.png differ diff --git a/Site/static/images/pokemon/0493-04-014-0.png b/Site/static/images/pokemon/0493-04-014-0.png new file mode 100644 index 0000000..a6505c3 Binary files /dev/null and b/Site/static/images/pokemon/0493-04-014-0.png differ diff --git a/Site/static/images/pokemon/0493-04-015-0.png b/Site/static/images/pokemon/0493-04-015-0.png new file mode 100644 index 0000000..e428217 Binary files /dev/null and b/Site/static/images/pokemon/0493-04-015-0.png differ diff --git a/Site/static/images/pokemon/0493-04-016-0.png b/Site/static/images/pokemon/0493-04-016-0.png new file mode 100644 index 0000000..909804a Binary files /dev/null and b/Site/static/images/pokemon/0493-04-016-0.png differ diff --git a/Site/static/images/pokemon/0493-04-017-0.png b/Site/static/images/pokemon/0493-04-017-0.png new file mode 100644 index 0000000..3298018 Binary files /dev/null and b/Site/static/images/pokemon/0493-04-017-0.png differ diff --git a/Site/static/images/pokemon/0493-04-018-0.png b/Site/static/images/pokemon/0493-04-018-0.png new file mode 100644 index 0000000..0a0acdd Binary files /dev/null and b/Site/static/images/pokemon/0493-04-018-0.png differ diff --git a/Site/static/images/pokemon/0493_Arceus.png b/Site/static/images/pokemon/0493_Arceus.png deleted file mode 100644 index 43b7396..0000000 Binary files a/Site/static/images/pokemon/0493_Arceus.png and /dev/null differ diff --git a/Site/static/images/pokemon/0494-05-000-0.png b/Site/static/images/pokemon/0494-05-000-0.png new file mode 100644 index 0000000..6dfa4b2 Binary files /dev/null and b/Site/static/images/pokemon/0494-05-000-0.png differ diff --git a/Site/static/images/pokemon/0494_Victini.png b/Site/static/images/pokemon/0494_Victini.png deleted file mode 100644 index 31763f2..0000000 Binary files a/Site/static/images/pokemon/0494_Victini.png and /dev/null differ diff --git a/Site/static/images/pokemon/0495-05-000-0.png b/Site/static/images/pokemon/0495-05-000-0.png new file mode 100644 index 0000000..5d62407 Binary files /dev/null and b/Site/static/images/pokemon/0495-05-000-0.png differ diff --git a/Site/static/images/pokemon/0495_Snivy.png b/Site/static/images/pokemon/0495_Snivy.png deleted file mode 100644 index 5523ba1..0000000 Binary files a/Site/static/images/pokemon/0495_Snivy.png and /dev/null differ diff --git a/Site/static/images/pokemon/0496-05-000-0.png b/Site/static/images/pokemon/0496-05-000-0.png new file mode 100644 index 0000000..a3303ca Binary files /dev/null and b/Site/static/images/pokemon/0496-05-000-0.png differ diff --git a/Site/static/images/pokemon/0496_Servine.png b/Site/static/images/pokemon/0496_Servine.png deleted file mode 100644 index 3876720..0000000 Binary files a/Site/static/images/pokemon/0496_Servine.png and /dev/null differ diff --git a/Site/static/images/pokemon/0497-05-000-0.png b/Site/static/images/pokemon/0497-05-000-0.png new file mode 100644 index 0000000..ecba3a9 Binary files /dev/null and b/Site/static/images/pokemon/0497-05-000-0.png differ diff --git a/Site/static/images/pokemon/0497_Serperior.png b/Site/static/images/pokemon/0497_Serperior.png deleted file mode 100644 index 46fe92e..0000000 Binary files a/Site/static/images/pokemon/0497_Serperior.png and /dev/null differ diff --git a/Site/static/images/pokemon/0498-05-000-0.png b/Site/static/images/pokemon/0498-05-000-0.png new file mode 100644 index 0000000..0140283 Binary files /dev/null and b/Site/static/images/pokemon/0498-05-000-0.png differ diff --git a/Site/static/images/pokemon/0498_Tepig.png b/Site/static/images/pokemon/0498_Tepig.png deleted file mode 100644 index 1077910..0000000 Binary files a/Site/static/images/pokemon/0498_Tepig.png and /dev/null differ diff --git a/Site/static/images/pokemon/0499-05-000-0.png b/Site/static/images/pokemon/0499-05-000-0.png new file mode 100644 index 0000000..1d4517b Binary files /dev/null and b/Site/static/images/pokemon/0499-05-000-0.png differ diff --git a/Site/static/images/pokemon/0499_Pignite.png b/Site/static/images/pokemon/0499_Pignite.png deleted file mode 100644 index 0ae3371..0000000 Binary files a/Site/static/images/pokemon/0499_Pignite.png and /dev/null differ diff --git a/Site/static/images/pokemon/0500-05-000-0.png b/Site/static/images/pokemon/0500-05-000-0.png new file mode 100644 index 0000000..27b9057 Binary files /dev/null and b/Site/static/images/pokemon/0500-05-000-0.png differ diff --git a/Site/static/images/pokemon/0500_Emboar.png b/Site/static/images/pokemon/0500_Emboar.png deleted file mode 100644 index b77e055..0000000 Binary files a/Site/static/images/pokemon/0500_Emboar.png and /dev/null differ diff --git a/Site/static/images/pokemon/0501-05-000-0.png b/Site/static/images/pokemon/0501-05-000-0.png new file mode 100644 index 0000000..23f8853 Binary files /dev/null and b/Site/static/images/pokemon/0501-05-000-0.png differ diff --git a/Site/static/images/pokemon/0501_Oshawott.png b/Site/static/images/pokemon/0501_Oshawott.png deleted file mode 100644 index 9d17680..0000000 Binary files a/Site/static/images/pokemon/0501_Oshawott.png and /dev/null differ diff --git a/Site/static/images/pokemon/0502-05-000-0.png b/Site/static/images/pokemon/0502-05-000-0.png new file mode 100644 index 0000000..5016837 Binary files /dev/null and b/Site/static/images/pokemon/0502-05-000-0.png differ diff --git a/Site/static/images/pokemon/0502_Dewott.png b/Site/static/images/pokemon/0502_Dewott.png deleted file mode 100644 index c4a9ead..0000000 Binary files a/Site/static/images/pokemon/0502_Dewott.png and /dev/null differ diff --git a/Site/static/images/pokemon/0503-05-000-0.png b/Site/static/images/pokemon/0503-05-000-0.png new file mode 100644 index 0000000..ded5723 Binary files /dev/null and b/Site/static/images/pokemon/0503-05-000-0.png differ diff --git a/Site/static/images/pokemon/0503-05-001-0.png b/Site/static/images/pokemon/0503-05-001-0.png new file mode 100644 index 0000000..fc3b838 Binary files /dev/null and b/Site/static/images/pokemon/0503-05-001-0.png differ diff --git a/Site/static/images/pokemon/0503_Samurott.png b/Site/static/images/pokemon/0503_Samurott.png deleted file mode 100644 index 1ae0480..0000000 Binary files a/Site/static/images/pokemon/0503_Samurott.png and /dev/null differ diff --git a/Site/static/images/pokemon/0503_Samurott_(Hisuian_Form).png b/Site/static/images/pokemon/0503_Samurott_(Hisuian_Form).png deleted file mode 100644 index cd97067..0000000 Binary files a/Site/static/images/pokemon/0503_Samurott_(Hisuian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0504-05-000-0.png b/Site/static/images/pokemon/0504-05-000-0.png new file mode 100644 index 0000000..5436504 Binary files /dev/null and b/Site/static/images/pokemon/0504-05-000-0.png differ diff --git a/Site/static/images/pokemon/0504_Patrat.png b/Site/static/images/pokemon/0504_Patrat.png deleted file mode 100644 index 7ace943..0000000 Binary files a/Site/static/images/pokemon/0504_Patrat.png and /dev/null differ diff --git a/Site/static/images/pokemon/0505-05-000-0.png b/Site/static/images/pokemon/0505-05-000-0.png new file mode 100644 index 0000000..1716d2c Binary files /dev/null and b/Site/static/images/pokemon/0505-05-000-0.png differ diff --git a/Site/static/images/pokemon/0505_Watchog.png b/Site/static/images/pokemon/0505_Watchog.png deleted file mode 100644 index 857cbb8..0000000 Binary files a/Site/static/images/pokemon/0505_Watchog.png and /dev/null differ diff --git a/Site/static/images/pokemon/0506-05-000-0.png b/Site/static/images/pokemon/0506-05-000-0.png new file mode 100644 index 0000000..b2247c7 Binary files /dev/null and b/Site/static/images/pokemon/0506-05-000-0.png differ diff --git a/Site/static/images/pokemon/0506_Lillipup.png b/Site/static/images/pokemon/0506_Lillipup.png deleted file mode 100644 index 97d2dee..0000000 Binary files a/Site/static/images/pokemon/0506_Lillipup.png and /dev/null differ diff --git a/Site/static/images/pokemon/0507-05-000-0.png b/Site/static/images/pokemon/0507-05-000-0.png new file mode 100644 index 0000000..caf4acc Binary files /dev/null and b/Site/static/images/pokemon/0507-05-000-0.png differ diff --git a/Site/static/images/pokemon/0507_Herdier.png b/Site/static/images/pokemon/0507_Herdier.png deleted file mode 100644 index 01b70f9..0000000 Binary files a/Site/static/images/pokemon/0507_Herdier.png and /dev/null differ diff --git a/Site/static/images/pokemon/0508-05-000-0.png b/Site/static/images/pokemon/0508-05-000-0.png new file mode 100644 index 0000000..1014488 Binary files /dev/null and b/Site/static/images/pokemon/0508-05-000-0.png differ diff --git a/Site/static/images/pokemon/0508_Stoutland.png b/Site/static/images/pokemon/0508_Stoutland.png deleted file mode 100644 index 23dcfb2..0000000 Binary files a/Site/static/images/pokemon/0508_Stoutland.png and /dev/null differ diff --git a/Site/static/images/pokemon/0509-05-000-0.png b/Site/static/images/pokemon/0509-05-000-0.png new file mode 100644 index 0000000..bd18a28 Binary files /dev/null and b/Site/static/images/pokemon/0509-05-000-0.png differ diff --git a/Site/static/images/pokemon/0509_Purrloin.png b/Site/static/images/pokemon/0509_Purrloin.png deleted file mode 100644 index 51c09c0..0000000 Binary files a/Site/static/images/pokemon/0509_Purrloin.png and /dev/null differ diff --git a/Site/static/images/pokemon/0510-05-000-0.png b/Site/static/images/pokemon/0510-05-000-0.png new file mode 100644 index 0000000..89bf963 Binary files /dev/null and b/Site/static/images/pokemon/0510-05-000-0.png differ diff --git a/Site/static/images/pokemon/0510_Liepard.png b/Site/static/images/pokemon/0510_Liepard.png deleted file mode 100644 index 7992f1d..0000000 Binary files a/Site/static/images/pokemon/0510_Liepard.png and /dev/null differ diff --git a/Site/static/images/pokemon/0511-05-000-0.png b/Site/static/images/pokemon/0511-05-000-0.png new file mode 100644 index 0000000..3f48b1c Binary files /dev/null and b/Site/static/images/pokemon/0511-05-000-0.png differ diff --git a/Site/static/images/pokemon/0511_Pansage.png b/Site/static/images/pokemon/0511_Pansage.png deleted file mode 100644 index d0a78e9..0000000 Binary files a/Site/static/images/pokemon/0511_Pansage.png and /dev/null differ diff --git a/Site/static/images/pokemon/0512-05-000-0.png b/Site/static/images/pokemon/0512-05-000-0.png new file mode 100644 index 0000000..34f8147 Binary files /dev/null and b/Site/static/images/pokemon/0512-05-000-0.png differ diff --git a/Site/static/images/pokemon/0512_Simisage.png b/Site/static/images/pokemon/0512_Simisage.png deleted file mode 100644 index bbff9d5..0000000 Binary files a/Site/static/images/pokemon/0512_Simisage.png and /dev/null differ diff --git a/Site/static/images/pokemon/0513-05-000-0.png b/Site/static/images/pokemon/0513-05-000-0.png new file mode 100644 index 0000000..f45d794 Binary files /dev/null and b/Site/static/images/pokemon/0513-05-000-0.png differ diff --git a/Site/static/images/pokemon/0513_Pansear.png b/Site/static/images/pokemon/0513_Pansear.png deleted file mode 100644 index 64a0bc0..0000000 Binary files a/Site/static/images/pokemon/0513_Pansear.png and /dev/null differ diff --git a/Site/static/images/pokemon/0514-05-000-0.png b/Site/static/images/pokemon/0514-05-000-0.png new file mode 100644 index 0000000..ce2e885 Binary files /dev/null and b/Site/static/images/pokemon/0514-05-000-0.png differ diff --git a/Site/static/images/pokemon/0514_Simisear.png b/Site/static/images/pokemon/0514_Simisear.png deleted file mode 100644 index 47d6aa9..0000000 Binary files a/Site/static/images/pokemon/0514_Simisear.png and /dev/null differ diff --git a/Site/static/images/pokemon/0515-05-000-0.png b/Site/static/images/pokemon/0515-05-000-0.png new file mode 100644 index 0000000..900c390 Binary files /dev/null and b/Site/static/images/pokemon/0515-05-000-0.png differ diff --git a/Site/static/images/pokemon/0515_Panpour.png b/Site/static/images/pokemon/0515_Panpour.png deleted file mode 100644 index 0c8d247..0000000 Binary files a/Site/static/images/pokemon/0515_Panpour.png and /dev/null differ diff --git a/Site/static/images/pokemon/0516-05-000-0.png b/Site/static/images/pokemon/0516-05-000-0.png new file mode 100644 index 0000000..592a912 Binary files /dev/null and b/Site/static/images/pokemon/0516-05-000-0.png differ diff --git a/Site/static/images/pokemon/0516_Simipour.png b/Site/static/images/pokemon/0516_Simipour.png deleted file mode 100644 index 7d682c2..0000000 Binary files a/Site/static/images/pokemon/0516_Simipour.png and /dev/null differ diff --git a/Site/static/images/pokemon/0517-05-000-0.png b/Site/static/images/pokemon/0517-05-000-0.png new file mode 100644 index 0000000..7069b4c Binary files /dev/null and b/Site/static/images/pokemon/0517-05-000-0.png differ diff --git a/Site/static/images/pokemon/0517_Munna.png b/Site/static/images/pokemon/0517_Munna.png deleted file mode 100644 index ba085c3..0000000 Binary files a/Site/static/images/pokemon/0517_Munna.png and /dev/null differ diff --git a/Site/static/images/pokemon/0518-05-000-0.png b/Site/static/images/pokemon/0518-05-000-0.png new file mode 100644 index 0000000..7370d30 Binary files /dev/null and b/Site/static/images/pokemon/0518-05-000-0.png differ diff --git a/Site/static/images/pokemon/0518_Musharna.png b/Site/static/images/pokemon/0518_Musharna.png deleted file mode 100644 index 02e42b4..0000000 Binary files a/Site/static/images/pokemon/0518_Musharna.png and /dev/null differ diff --git a/Site/static/images/pokemon/0519-05-000-0.png b/Site/static/images/pokemon/0519-05-000-0.png new file mode 100644 index 0000000..d5e83b0 Binary files /dev/null and b/Site/static/images/pokemon/0519-05-000-0.png differ diff --git a/Site/static/images/pokemon/0519_Pidove.png b/Site/static/images/pokemon/0519_Pidove.png deleted file mode 100644 index e7cee59..0000000 Binary files a/Site/static/images/pokemon/0519_Pidove.png and /dev/null differ diff --git a/Site/static/images/pokemon/0520-05-000-0.png b/Site/static/images/pokemon/0520-05-000-0.png new file mode 100644 index 0000000..a7186b9 Binary files /dev/null and b/Site/static/images/pokemon/0520-05-000-0.png differ diff --git a/Site/static/images/pokemon/0520_Tranquill.png b/Site/static/images/pokemon/0520_Tranquill.png deleted file mode 100644 index 93deb3b..0000000 Binary files a/Site/static/images/pokemon/0520_Tranquill.png and /dev/null differ diff --git a/Site/static/images/pokemon/0521-05-000-1.png b/Site/static/images/pokemon/0521-05-000-1.png new file mode 100644 index 0000000..2c6e662 Binary files /dev/null and b/Site/static/images/pokemon/0521-05-000-1.png differ diff --git a/Site/static/images/pokemon/0521-05-000-2.png b/Site/static/images/pokemon/0521-05-000-2.png new file mode 100644 index 0000000..ee8404f Binary files /dev/null and b/Site/static/images/pokemon/0521-05-000-2.png differ diff --git a/Site/static/images/pokemon/0521_Unfezant.png b/Site/static/images/pokemon/0521_Unfezant.png deleted file mode 100644 index 6670771..0000000 Binary files a/Site/static/images/pokemon/0521_Unfezant.png and /dev/null differ diff --git a/Site/static/images/pokemon/0522-05-000-0.png b/Site/static/images/pokemon/0522-05-000-0.png new file mode 100644 index 0000000..7023f42 Binary files /dev/null and b/Site/static/images/pokemon/0522-05-000-0.png differ diff --git a/Site/static/images/pokemon/0522_Blitzle.png b/Site/static/images/pokemon/0522_Blitzle.png deleted file mode 100644 index 6560a96..0000000 Binary files a/Site/static/images/pokemon/0522_Blitzle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0523-05-000-0.png b/Site/static/images/pokemon/0523-05-000-0.png new file mode 100644 index 0000000..752899d Binary files /dev/null and b/Site/static/images/pokemon/0523-05-000-0.png differ diff --git a/Site/static/images/pokemon/0523_Zebstrika.png b/Site/static/images/pokemon/0523_Zebstrika.png deleted file mode 100644 index c3f3939..0000000 Binary files a/Site/static/images/pokemon/0523_Zebstrika.png and /dev/null differ diff --git a/Site/static/images/pokemon/0524-05-000-0.png b/Site/static/images/pokemon/0524-05-000-0.png new file mode 100644 index 0000000..6e555a2 Binary files /dev/null and b/Site/static/images/pokemon/0524-05-000-0.png differ diff --git a/Site/static/images/pokemon/0524_Roggenrola.png b/Site/static/images/pokemon/0524_Roggenrola.png deleted file mode 100644 index 488ff36..0000000 Binary files a/Site/static/images/pokemon/0524_Roggenrola.png and /dev/null differ diff --git a/Site/static/images/pokemon/0525-05-000-0.png b/Site/static/images/pokemon/0525-05-000-0.png new file mode 100644 index 0000000..fa7ab7e Binary files /dev/null and b/Site/static/images/pokemon/0525-05-000-0.png differ diff --git a/Site/static/images/pokemon/0525_Boldore.png b/Site/static/images/pokemon/0525_Boldore.png deleted file mode 100644 index c00235f..0000000 Binary files a/Site/static/images/pokemon/0525_Boldore.png and /dev/null differ diff --git a/Site/static/images/pokemon/0526-05-000-0.png b/Site/static/images/pokemon/0526-05-000-0.png new file mode 100644 index 0000000..ff8ead0 Binary files /dev/null and b/Site/static/images/pokemon/0526-05-000-0.png differ diff --git a/Site/static/images/pokemon/0526_Gigalith.png b/Site/static/images/pokemon/0526_Gigalith.png deleted file mode 100644 index 6de9d9c..0000000 Binary files a/Site/static/images/pokemon/0526_Gigalith.png and /dev/null differ diff --git a/Site/static/images/pokemon/0527-05-000-0.png b/Site/static/images/pokemon/0527-05-000-0.png new file mode 100644 index 0000000..bbfe9bd Binary files /dev/null and b/Site/static/images/pokemon/0527-05-000-0.png differ diff --git a/Site/static/images/pokemon/0527_Woobat.png b/Site/static/images/pokemon/0527_Woobat.png deleted file mode 100644 index f664c3b..0000000 Binary files a/Site/static/images/pokemon/0527_Woobat.png and /dev/null differ diff --git a/Site/static/images/pokemon/0528-05-000-0.png b/Site/static/images/pokemon/0528-05-000-0.png new file mode 100644 index 0000000..90adb95 Binary files /dev/null and b/Site/static/images/pokemon/0528-05-000-0.png differ diff --git a/Site/static/images/pokemon/0528_Swoobat.png b/Site/static/images/pokemon/0528_Swoobat.png deleted file mode 100644 index f0411d4..0000000 Binary files a/Site/static/images/pokemon/0528_Swoobat.png and /dev/null differ diff --git a/Site/static/images/pokemon/0529-05-000-0.png b/Site/static/images/pokemon/0529-05-000-0.png new file mode 100644 index 0000000..a3572db Binary files /dev/null and b/Site/static/images/pokemon/0529-05-000-0.png differ diff --git a/Site/static/images/pokemon/0529_Drilbur.png b/Site/static/images/pokemon/0529_Drilbur.png deleted file mode 100644 index a8b5828..0000000 Binary files a/Site/static/images/pokemon/0529_Drilbur.png and /dev/null differ diff --git a/Site/static/images/pokemon/0530-05-000-0.png b/Site/static/images/pokemon/0530-05-000-0.png new file mode 100644 index 0000000..dfe7325 Binary files /dev/null and b/Site/static/images/pokemon/0530-05-000-0.png differ diff --git a/Site/static/images/pokemon/0530_Excadrill.png b/Site/static/images/pokemon/0530_Excadrill.png deleted file mode 100644 index 920fb19..0000000 Binary files a/Site/static/images/pokemon/0530_Excadrill.png and /dev/null differ diff --git a/Site/static/images/pokemon/0531-05-000-0.png b/Site/static/images/pokemon/0531-05-000-0.png new file mode 100644 index 0000000..27538b4 Binary files /dev/null and b/Site/static/images/pokemon/0531-05-000-0.png differ diff --git a/Site/static/images/pokemon/0531-05-001-0.png b/Site/static/images/pokemon/0531-05-001-0.png new file mode 100644 index 0000000..0a10577 Binary files /dev/null and b/Site/static/images/pokemon/0531-05-001-0.png differ diff --git a/Site/static/images/pokemon/0531_Audino.png b/Site/static/images/pokemon/0531_Audino.png deleted file mode 100644 index 2c176d8..0000000 Binary files a/Site/static/images/pokemon/0531_Audino.png and /dev/null differ diff --git a/Site/static/images/pokemon/0532-05-000-0.png b/Site/static/images/pokemon/0532-05-000-0.png new file mode 100644 index 0000000..930595c Binary files /dev/null and b/Site/static/images/pokemon/0532-05-000-0.png differ diff --git a/Site/static/images/pokemon/0532_Timburr.png b/Site/static/images/pokemon/0532_Timburr.png deleted file mode 100644 index 8c2181b..0000000 Binary files a/Site/static/images/pokemon/0532_Timburr.png and /dev/null differ diff --git a/Site/static/images/pokemon/0533-05-000-0.png b/Site/static/images/pokemon/0533-05-000-0.png new file mode 100644 index 0000000..a5bfc52 Binary files /dev/null and b/Site/static/images/pokemon/0533-05-000-0.png differ diff --git a/Site/static/images/pokemon/0533_Gurdurr.png b/Site/static/images/pokemon/0533_Gurdurr.png deleted file mode 100644 index fc1f521..0000000 Binary files a/Site/static/images/pokemon/0533_Gurdurr.png and /dev/null differ diff --git a/Site/static/images/pokemon/0534-05-000-0.png b/Site/static/images/pokemon/0534-05-000-0.png new file mode 100644 index 0000000..d15929c Binary files /dev/null and b/Site/static/images/pokemon/0534-05-000-0.png differ diff --git a/Site/static/images/pokemon/0534_Conkeldurr.png b/Site/static/images/pokemon/0534_Conkeldurr.png deleted file mode 100644 index cffa6b5..0000000 Binary files a/Site/static/images/pokemon/0534_Conkeldurr.png and /dev/null differ diff --git a/Site/static/images/pokemon/0535-05-000-0.png b/Site/static/images/pokemon/0535-05-000-0.png new file mode 100644 index 0000000..eec750f Binary files /dev/null and b/Site/static/images/pokemon/0535-05-000-0.png differ diff --git a/Site/static/images/pokemon/0535_Tympole.png b/Site/static/images/pokemon/0535_Tympole.png deleted file mode 100644 index 60f0da2..0000000 Binary files a/Site/static/images/pokemon/0535_Tympole.png and /dev/null differ diff --git a/Site/static/images/pokemon/0536-05-000-0.png b/Site/static/images/pokemon/0536-05-000-0.png new file mode 100644 index 0000000..34210f1 Binary files /dev/null and b/Site/static/images/pokemon/0536-05-000-0.png differ diff --git a/Site/static/images/pokemon/0536_Palpitoad.png b/Site/static/images/pokemon/0536_Palpitoad.png deleted file mode 100644 index 242baf1..0000000 Binary files a/Site/static/images/pokemon/0536_Palpitoad.png and /dev/null differ diff --git a/Site/static/images/pokemon/0537-05-000-0.png b/Site/static/images/pokemon/0537-05-000-0.png new file mode 100644 index 0000000..bbf5e69 Binary files /dev/null and b/Site/static/images/pokemon/0537-05-000-0.png differ diff --git a/Site/static/images/pokemon/0537_Seismitoad.png b/Site/static/images/pokemon/0537_Seismitoad.png deleted file mode 100644 index a521da8..0000000 Binary files a/Site/static/images/pokemon/0537_Seismitoad.png and /dev/null differ diff --git a/Site/static/images/pokemon/0538-05-000-0.png b/Site/static/images/pokemon/0538-05-000-0.png new file mode 100644 index 0000000..db73546 Binary files /dev/null and b/Site/static/images/pokemon/0538-05-000-0.png differ diff --git a/Site/static/images/pokemon/0538_Throh.png b/Site/static/images/pokemon/0538_Throh.png deleted file mode 100644 index ed61666..0000000 Binary files a/Site/static/images/pokemon/0538_Throh.png and /dev/null differ diff --git a/Site/static/images/pokemon/0539-05-000-0.png b/Site/static/images/pokemon/0539-05-000-0.png new file mode 100644 index 0000000..b25e9dd Binary files /dev/null and b/Site/static/images/pokemon/0539-05-000-0.png differ diff --git a/Site/static/images/pokemon/0539_Sawk.png b/Site/static/images/pokemon/0539_Sawk.png deleted file mode 100644 index b4e6d2c..0000000 Binary files a/Site/static/images/pokemon/0539_Sawk.png and /dev/null differ diff --git a/Site/static/images/pokemon/0540-05-000-0.png b/Site/static/images/pokemon/0540-05-000-0.png new file mode 100644 index 0000000..20c39bc Binary files /dev/null and b/Site/static/images/pokemon/0540-05-000-0.png differ diff --git a/Site/static/images/pokemon/0540_Sewaddle.png b/Site/static/images/pokemon/0540_Sewaddle.png deleted file mode 100644 index 9d22c4f..0000000 Binary files a/Site/static/images/pokemon/0540_Sewaddle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0541-05-000-0.png b/Site/static/images/pokemon/0541-05-000-0.png new file mode 100644 index 0000000..864c233 Binary files /dev/null and b/Site/static/images/pokemon/0541-05-000-0.png differ diff --git a/Site/static/images/pokemon/0541_Swadloon.png b/Site/static/images/pokemon/0541_Swadloon.png deleted file mode 100644 index 89e723f..0000000 Binary files a/Site/static/images/pokemon/0541_Swadloon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0542-05-000-0.png b/Site/static/images/pokemon/0542-05-000-0.png new file mode 100644 index 0000000..7698357 Binary files /dev/null and b/Site/static/images/pokemon/0542-05-000-0.png differ diff --git a/Site/static/images/pokemon/0542_Leavanny.png b/Site/static/images/pokemon/0542_Leavanny.png deleted file mode 100644 index 5c9077f..0000000 Binary files a/Site/static/images/pokemon/0542_Leavanny.png and /dev/null differ diff --git a/Site/static/images/pokemon/0543-05-000-0.png b/Site/static/images/pokemon/0543-05-000-0.png new file mode 100644 index 0000000..9b9f96f Binary files /dev/null and b/Site/static/images/pokemon/0543-05-000-0.png differ diff --git a/Site/static/images/pokemon/0543_Venipede.png b/Site/static/images/pokemon/0543_Venipede.png deleted file mode 100644 index 40edb02..0000000 Binary files a/Site/static/images/pokemon/0543_Venipede.png and /dev/null differ diff --git a/Site/static/images/pokemon/0544-05-000-0.png b/Site/static/images/pokemon/0544-05-000-0.png new file mode 100644 index 0000000..b68f261 Binary files /dev/null and b/Site/static/images/pokemon/0544-05-000-0.png differ diff --git a/Site/static/images/pokemon/0544_Whirlipede.png b/Site/static/images/pokemon/0544_Whirlipede.png deleted file mode 100644 index 38b3d07..0000000 Binary files a/Site/static/images/pokemon/0544_Whirlipede.png and /dev/null differ diff --git a/Site/static/images/pokemon/0545-05-000-0.png b/Site/static/images/pokemon/0545-05-000-0.png new file mode 100644 index 0000000..2f3cf1e Binary files /dev/null and b/Site/static/images/pokemon/0545-05-000-0.png differ diff --git a/Site/static/images/pokemon/0545_Scolipede.png b/Site/static/images/pokemon/0545_Scolipede.png deleted file mode 100644 index 5688fcf..0000000 Binary files a/Site/static/images/pokemon/0545_Scolipede.png and /dev/null differ diff --git a/Site/static/images/pokemon/0546-05-000-0.png b/Site/static/images/pokemon/0546-05-000-0.png new file mode 100644 index 0000000..16853bf Binary files /dev/null and b/Site/static/images/pokemon/0546-05-000-0.png differ diff --git a/Site/static/images/pokemon/0546_Cottonee.png b/Site/static/images/pokemon/0546_Cottonee.png deleted file mode 100644 index ce9c084..0000000 Binary files a/Site/static/images/pokemon/0546_Cottonee.png and /dev/null differ diff --git a/Site/static/images/pokemon/0547-05-000-0.png b/Site/static/images/pokemon/0547-05-000-0.png new file mode 100644 index 0000000..86cccdf Binary files /dev/null and b/Site/static/images/pokemon/0547-05-000-0.png differ diff --git a/Site/static/images/pokemon/0547_Whimsicott.png b/Site/static/images/pokemon/0547_Whimsicott.png deleted file mode 100644 index 9507109..0000000 Binary files a/Site/static/images/pokemon/0547_Whimsicott.png and /dev/null differ diff --git a/Site/static/images/pokemon/0548-05-000-0.png b/Site/static/images/pokemon/0548-05-000-0.png new file mode 100644 index 0000000..e93ec09 Binary files /dev/null and b/Site/static/images/pokemon/0548-05-000-0.png differ diff --git a/Site/static/images/pokemon/0548_Petilil.png b/Site/static/images/pokemon/0548_Petilil.png deleted file mode 100644 index 392217a..0000000 Binary files a/Site/static/images/pokemon/0548_Petilil.png and /dev/null differ diff --git a/Site/static/images/pokemon/0549-05-000-0.png b/Site/static/images/pokemon/0549-05-000-0.png new file mode 100644 index 0000000..d7c52ef Binary files /dev/null and b/Site/static/images/pokemon/0549-05-000-0.png differ diff --git a/Site/static/images/pokemon/0549-05-001-0.png b/Site/static/images/pokemon/0549-05-001-0.png new file mode 100644 index 0000000..d363c8c Binary files /dev/null and b/Site/static/images/pokemon/0549-05-001-0.png differ diff --git a/Site/static/images/pokemon/0549_Lilligant.png b/Site/static/images/pokemon/0549_Lilligant.png deleted file mode 100644 index 1339fd3..0000000 Binary files a/Site/static/images/pokemon/0549_Lilligant.png and /dev/null differ diff --git a/Site/static/images/pokemon/0549_Lilligant_(Hisuian_Form).png b/Site/static/images/pokemon/0549_Lilligant_(Hisuian_Form).png deleted file mode 100644 index c26518a..0000000 Binary files a/Site/static/images/pokemon/0549_Lilligant_(Hisuian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0550-05-001-0.png b/Site/static/images/pokemon/0550-05-001-0.png new file mode 100644 index 0000000..6828e99 Binary files /dev/null and b/Site/static/images/pokemon/0550-05-001-0.png differ diff --git a/Site/static/images/pokemon/0550-05-002-0.png b/Site/static/images/pokemon/0550-05-002-0.png new file mode 100644 index 0000000..291673d Binary files /dev/null and b/Site/static/images/pokemon/0550-05-002-0.png differ diff --git a/Site/static/images/pokemon/0550-05-003-0.png b/Site/static/images/pokemon/0550-05-003-0.png new file mode 100644 index 0000000..90cf39a Binary files /dev/null and b/Site/static/images/pokemon/0550-05-003-0.png differ diff --git a/Site/static/images/pokemon/0550_Basculin.png b/Site/static/images/pokemon/0550_Basculin.png deleted file mode 100644 index 48b6a99..0000000 Binary files a/Site/static/images/pokemon/0550_Basculin.png and /dev/null differ diff --git a/Site/static/images/pokemon/0550_Basculin_(Blue-Striped_Form).png b/Site/static/images/pokemon/0550_Basculin_(Blue-Striped_Form).png deleted file mode 100644 index a85384d..0000000 Binary files a/Site/static/images/pokemon/0550_Basculin_(Blue-Striped_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0550_Basculin_(White-Striped_Form).png b/Site/static/images/pokemon/0550_Basculin_(White-Striped_Form).png deleted file mode 100644 index 0228f7e..0000000 Binary files a/Site/static/images/pokemon/0550_Basculin_(White-Striped_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0551-05-000-0.png b/Site/static/images/pokemon/0551-05-000-0.png new file mode 100644 index 0000000..33877e1 Binary files /dev/null and b/Site/static/images/pokemon/0551-05-000-0.png differ diff --git a/Site/static/images/pokemon/0551_Sandile.png b/Site/static/images/pokemon/0551_Sandile.png deleted file mode 100644 index 9be0f6d..0000000 Binary files a/Site/static/images/pokemon/0551_Sandile.png and /dev/null differ diff --git a/Site/static/images/pokemon/0552-05-000-0.png b/Site/static/images/pokemon/0552-05-000-0.png new file mode 100644 index 0000000..21893af Binary files /dev/null and b/Site/static/images/pokemon/0552-05-000-0.png differ diff --git a/Site/static/images/pokemon/0552_Krokorok.png b/Site/static/images/pokemon/0552_Krokorok.png deleted file mode 100644 index 3305af8..0000000 Binary files a/Site/static/images/pokemon/0552_Krokorok.png and /dev/null differ diff --git a/Site/static/images/pokemon/0553-05-000-0.png b/Site/static/images/pokemon/0553-05-000-0.png new file mode 100644 index 0000000..d9212ec Binary files /dev/null and b/Site/static/images/pokemon/0553-05-000-0.png differ diff --git a/Site/static/images/pokemon/0553_Krookodile.png b/Site/static/images/pokemon/0553_Krookodile.png deleted file mode 100644 index a970295..0000000 Binary files a/Site/static/images/pokemon/0553_Krookodile.png and /dev/null differ diff --git a/Site/static/images/pokemon/0554-05-000-0.png b/Site/static/images/pokemon/0554-05-000-0.png new file mode 100644 index 0000000..fc769ba Binary files /dev/null and b/Site/static/images/pokemon/0554-05-000-0.png differ diff --git a/Site/static/images/pokemon/0554-05-001-0.png b/Site/static/images/pokemon/0554-05-001-0.png new file mode 100644 index 0000000..c454aaa Binary files /dev/null and b/Site/static/images/pokemon/0554-05-001-0.png differ diff --git a/Site/static/images/pokemon/0554_Darumaka.png b/Site/static/images/pokemon/0554_Darumaka.png deleted file mode 100644 index eeeef6c..0000000 Binary files a/Site/static/images/pokemon/0554_Darumaka.png and /dev/null differ diff --git a/Site/static/images/pokemon/0554_Darumaka_(Galarian_Form).png b/Site/static/images/pokemon/0554_Darumaka_(Galarian_Form).png deleted file mode 100644 index b92e7e3..0000000 Binary files a/Site/static/images/pokemon/0554_Darumaka_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0555-05-001-0.png b/Site/static/images/pokemon/0555-05-001-0.png new file mode 100644 index 0000000..0304df1 Binary files /dev/null and b/Site/static/images/pokemon/0555-05-001-0.png differ diff --git a/Site/static/images/pokemon/0555-05-002-0.png b/Site/static/images/pokemon/0555-05-002-0.png new file mode 100644 index 0000000..ca59d77 Binary files /dev/null and b/Site/static/images/pokemon/0555-05-002-0.png differ diff --git a/Site/static/images/pokemon/0555-05-003-0.png b/Site/static/images/pokemon/0555-05-003-0.png new file mode 100644 index 0000000..e5675cd Binary files /dev/null and b/Site/static/images/pokemon/0555-05-003-0.png differ diff --git a/Site/static/images/pokemon/0555-05-004-0.png b/Site/static/images/pokemon/0555-05-004-0.png new file mode 100644 index 0000000..3ffe593 Binary files /dev/null and b/Site/static/images/pokemon/0555-05-004-0.png differ diff --git a/Site/static/images/pokemon/0555_Darmanitan.png b/Site/static/images/pokemon/0555_Darmanitan.png deleted file mode 100644 index 2ada0c4..0000000 Binary files a/Site/static/images/pokemon/0555_Darmanitan.png and /dev/null differ diff --git a/Site/static/images/pokemon/0555_Darmanitan_(Galarian_Form).png b/Site/static/images/pokemon/0555_Darmanitan_(Galarian_Form).png deleted file mode 100644 index 89e9959..0000000 Binary files a/Site/static/images/pokemon/0555_Darmanitan_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0556-05-000-0.png b/Site/static/images/pokemon/0556-05-000-0.png new file mode 100644 index 0000000..13223aa Binary files /dev/null and b/Site/static/images/pokemon/0556-05-000-0.png differ diff --git a/Site/static/images/pokemon/0556_Maractus.png b/Site/static/images/pokemon/0556_Maractus.png deleted file mode 100644 index 012d826..0000000 Binary files a/Site/static/images/pokemon/0556_Maractus.png and /dev/null differ diff --git a/Site/static/images/pokemon/0557-05-000-0.png b/Site/static/images/pokemon/0557-05-000-0.png new file mode 100644 index 0000000..2274e76 Binary files /dev/null and b/Site/static/images/pokemon/0557-05-000-0.png differ diff --git a/Site/static/images/pokemon/0557_Dwebble.png b/Site/static/images/pokemon/0557_Dwebble.png deleted file mode 100644 index 41e601f..0000000 Binary files a/Site/static/images/pokemon/0557_Dwebble.png and /dev/null differ diff --git a/Site/static/images/pokemon/0558-05-000-0.png b/Site/static/images/pokemon/0558-05-000-0.png new file mode 100644 index 0000000..4440a70 Binary files /dev/null and b/Site/static/images/pokemon/0558-05-000-0.png differ diff --git a/Site/static/images/pokemon/0558_Crustle.png b/Site/static/images/pokemon/0558_Crustle.png deleted file mode 100644 index cf8613e..0000000 Binary files a/Site/static/images/pokemon/0558_Crustle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0559-05-000-0.png b/Site/static/images/pokemon/0559-05-000-0.png new file mode 100644 index 0000000..500fec1 Binary files /dev/null and b/Site/static/images/pokemon/0559-05-000-0.png differ diff --git a/Site/static/images/pokemon/0559_Scraggy.png b/Site/static/images/pokemon/0559_Scraggy.png deleted file mode 100644 index 0d103bb..0000000 Binary files a/Site/static/images/pokemon/0559_Scraggy.png and /dev/null differ diff --git a/Site/static/images/pokemon/0560-05-000-0.png b/Site/static/images/pokemon/0560-05-000-0.png new file mode 100644 index 0000000..b8f7b8d Binary files /dev/null and b/Site/static/images/pokemon/0560-05-000-0.png differ diff --git a/Site/static/images/pokemon/0560_Scrafty.png b/Site/static/images/pokemon/0560_Scrafty.png deleted file mode 100644 index 47d260d..0000000 Binary files a/Site/static/images/pokemon/0560_Scrafty.png and /dev/null differ diff --git a/Site/static/images/pokemon/0561-05-000-0.png b/Site/static/images/pokemon/0561-05-000-0.png new file mode 100644 index 0000000..4804e49 Binary files /dev/null and b/Site/static/images/pokemon/0561-05-000-0.png differ diff --git a/Site/static/images/pokemon/0561_Sigilyph.png b/Site/static/images/pokemon/0561_Sigilyph.png deleted file mode 100644 index c6d397e..0000000 Binary files a/Site/static/images/pokemon/0561_Sigilyph.png and /dev/null differ diff --git a/Site/static/images/pokemon/0562-05-000-0.png b/Site/static/images/pokemon/0562-05-000-0.png new file mode 100644 index 0000000..132fa73 Binary files /dev/null and b/Site/static/images/pokemon/0562-05-000-0.png differ diff --git a/Site/static/images/pokemon/0562-05-001-0.png b/Site/static/images/pokemon/0562-05-001-0.png new file mode 100644 index 0000000..c445702 Binary files /dev/null and b/Site/static/images/pokemon/0562-05-001-0.png differ diff --git a/Site/static/images/pokemon/0562_Yamask.png b/Site/static/images/pokemon/0562_Yamask.png deleted file mode 100644 index 985bc25..0000000 Binary files a/Site/static/images/pokemon/0562_Yamask.png and /dev/null differ diff --git a/Site/static/images/pokemon/0562_Yamask_(Galarian_Form).png b/Site/static/images/pokemon/0562_Yamask_(Galarian_Form).png deleted file mode 100644 index be04cc9..0000000 Binary files a/Site/static/images/pokemon/0562_Yamask_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0563-05-000-0.png b/Site/static/images/pokemon/0563-05-000-0.png new file mode 100644 index 0000000..a55affe Binary files /dev/null and b/Site/static/images/pokemon/0563-05-000-0.png differ diff --git a/Site/static/images/pokemon/0563_Cofagrigus.png b/Site/static/images/pokemon/0563_Cofagrigus.png deleted file mode 100644 index 4bdaef9..0000000 Binary files a/Site/static/images/pokemon/0563_Cofagrigus.png and /dev/null differ diff --git a/Site/static/images/pokemon/0564-05-000-0.png b/Site/static/images/pokemon/0564-05-000-0.png new file mode 100644 index 0000000..8368817 Binary files /dev/null and b/Site/static/images/pokemon/0564-05-000-0.png differ diff --git a/Site/static/images/pokemon/0564_Tirtouga.png b/Site/static/images/pokemon/0564_Tirtouga.png deleted file mode 100644 index ad1cef6..0000000 Binary files a/Site/static/images/pokemon/0564_Tirtouga.png and /dev/null differ diff --git a/Site/static/images/pokemon/0565-05-000-0.png b/Site/static/images/pokemon/0565-05-000-0.png new file mode 100644 index 0000000..2a470ec Binary files /dev/null and b/Site/static/images/pokemon/0565-05-000-0.png differ diff --git a/Site/static/images/pokemon/0565_Carracosta.png b/Site/static/images/pokemon/0565_Carracosta.png deleted file mode 100644 index af490ed..0000000 Binary files a/Site/static/images/pokemon/0565_Carracosta.png and /dev/null differ diff --git a/Site/static/images/pokemon/0566-05-000-0.png b/Site/static/images/pokemon/0566-05-000-0.png new file mode 100644 index 0000000..768993a Binary files /dev/null and b/Site/static/images/pokemon/0566-05-000-0.png differ diff --git a/Site/static/images/pokemon/0566_Archen.png b/Site/static/images/pokemon/0566_Archen.png deleted file mode 100644 index 08a8598..0000000 Binary files a/Site/static/images/pokemon/0566_Archen.png and /dev/null differ diff --git a/Site/static/images/pokemon/0567-05-000-0.png b/Site/static/images/pokemon/0567-05-000-0.png new file mode 100644 index 0000000..a6063bc Binary files /dev/null and b/Site/static/images/pokemon/0567-05-000-0.png differ diff --git a/Site/static/images/pokemon/0567_Archeops.png b/Site/static/images/pokemon/0567_Archeops.png deleted file mode 100644 index 5ea639a..0000000 Binary files a/Site/static/images/pokemon/0567_Archeops.png and /dev/null differ diff --git a/Site/static/images/pokemon/0568-05-000-0.png b/Site/static/images/pokemon/0568-05-000-0.png new file mode 100644 index 0000000..eb43e69 Binary files /dev/null and b/Site/static/images/pokemon/0568-05-000-0.png differ diff --git a/Site/static/images/pokemon/0568_Trubbish.png b/Site/static/images/pokemon/0568_Trubbish.png deleted file mode 100644 index b002fd2..0000000 Binary files a/Site/static/images/pokemon/0568_Trubbish.png and /dev/null differ diff --git a/Site/static/images/pokemon/0569-05-000-0.png b/Site/static/images/pokemon/0569-05-000-0.png new file mode 100644 index 0000000..1643a94 Binary files /dev/null and b/Site/static/images/pokemon/0569-05-000-0.png differ diff --git a/Site/static/images/pokemon/0569-05-001-0.png b/Site/static/images/pokemon/0569-05-001-0.png new file mode 100644 index 0000000..384ab6d Binary files /dev/null and b/Site/static/images/pokemon/0569-05-001-0.png differ diff --git a/Site/static/images/pokemon/0569_Garbodor.png b/Site/static/images/pokemon/0569_Garbodor.png deleted file mode 100644 index 8f3c404..0000000 Binary files a/Site/static/images/pokemon/0569_Garbodor.png and /dev/null differ diff --git a/Site/static/images/pokemon/0570-05-000-0.png b/Site/static/images/pokemon/0570-05-000-0.png new file mode 100644 index 0000000..291640f Binary files /dev/null and b/Site/static/images/pokemon/0570-05-000-0.png differ diff --git a/Site/static/images/pokemon/0570-05-001-0.png b/Site/static/images/pokemon/0570-05-001-0.png new file mode 100644 index 0000000..6883289 Binary files /dev/null and b/Site/static/images/pokemon/0570-05-001-0.png differ diff --git a/Site/static/images/pokemon/0570_Zorua.png b/Site/static/images/pokemon/0570_Zorua.png deleted file mode 100644 index d0bdfd1..0000000 Binary files a/Site/static/images/pokemon/0570_Zorua.png and /dev/null differ diff --git a/Site/static/images/pokemon/0570_Zorua_(Hisuian_Form).png b/Site/static/images/pokemon/0570_Zorua_(Hisuian_Form).png deleted file mode 100644 index e63aac9..0000000 Binary files a/Site/static/images/pokemon/0570_Zorua_(Hisuian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0571-05-000-0.png b/Site/static/images/pokemon/0571-05-000-0.png new file mode 100644 index 0000000..b06ac4e Binary files /dev/null and b/Site/static/images/pokemon/0571-05-000-0.png differ diff --git a/Site/static/images/pokemon/0571-05-001-0.png b/Site/static/images/pokemon/0571-05-001-0.png new file mode 100644 index 0000000..267e413 Binary files /dev/null and b/Site/static/images/pokemon/0571-05-001-0.png differ diff --git a/Site/static/images/pokemon/0571_Zoroark.png b/Site/static/images/pokemon/0571_Zoroark.png deleted file mode 100644 index fef323d..0000000 Binary files a/Site/static/images/pokemon/0571_Zoroark.png and /dev/null differ diff --git a/Site/static/images/pokemon/0571_Zoroark_(Hisuian_Form).png b/Site/static/images/pokemon/0571_Zoroark_(Hisuian_Form).png deleted file mode 100644 index eb228f9..0000000 Binary files a/Site/static/images/pokemon/0571_Zoroark_(Hisuian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0572-05-000-0.png b/Site/static/images/pokemon/0572-05-000-0.png new file mode 100644 index 0000000..eec7494 Binary files /dev/null and b/Site/static/images/pokemon/0572-05-000-0.png differ diff --git a/Site/static/images/pokemon/0572_Minccino.png b/Site/static/images/pokemon/0572_Minccino.png deleted file mode 100644 index 6233e53..0000000 Binary files a/Site/static/images/pokemon/0572_Minccino.png and /dev/null differ diff --git a/Site/static/images/pokemon/0573-05-000-0.png b/Site/static/images/pokemon/0573-05-000-0.png new file mode 100644 index 0000000..9c607b2 Binary files /dev/null and b/Site/static/images/pokemon/0573-05-000-0.png differ diff --git a/Site/static/images/pokemon/0573_Cinccino.png b/Site/static/images/pokemon/0573_Cinccino.png deleted file mode 100644 index 1b0229d..0000000 Binary files a/Site/static/images/pokemon/0573_Cinccino.png and /dev/null differ diff --git a/Site/static/images/pokemon/0574-05-000-0.png b/Site/static/images/pokemon/0574-05-000-0.png new file mode 100644 index 0000000..7bf23ee Binary files /dev/null and b/Site/static/images/pokemon/0574-05-000-0.png differ diff --git a/Site/static/images/pokemon/0574_Gothita.png b/Site/static/images/pokemon/0574_Gothita.png deleted file mode 100644 index 4515c27..0000000 Binary files a/Site/static/images/pokemon/0574_Gothita.png and /dev/null differ diff --git a/Site/static/images/pokemon/0575-05-000-0.png b/Site/static/images/pokemon/0575-05-000-0.png new file mode 100644 index 0000000..df026c4 Binary files /dev/null and b/Site/static/images/pokemon/0575-05-000-0.png differ diff --git a/Site/static/images/pokemon/0575_Gothorita.png b/Site/static/images/pokemon/0575_Gothorita.png deleted file mode 100644 index 42eb742..0000000 Binary files a/Site/static/images/pokemon/0575_Gothorita.png and /dev/null differ diff --git a/Site/static/images/pokemon/0576-05-000-0.png b/Site/static/images/pokemon/0576-05-000-0.png new file mode 100644 index 0000000..a5d15cc Binary files /dev/null and b/Site/static/images/pokemon/0576-05-000-0.png differ diff --git a/Site/static/images/pokemon/0576_Gothitelle.png b/Site/static/images/pokemon/0576_Gothitelle.png deleted file mode 100644 index 3c4d27a..0000000 Binary files a/Site/static/images/pokemon/0576_Gothitelle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0577-05-000-0.png b/Site/static/images/pokemon/0577-05-000-0.png new file mode 100644 index 0000000..0f3e9fc Binary files /dev/null and b/Site/static/images/pokemon/0577-05-000-0.png differ diff --git a/Site/static/images/pokemon/0577_Solosis.png b/Site/static/images/pokemon/0577_Solosis.png deleted file mode 100644 index e45cc5d..0000000 Binary files a/Site/static/images/pokemon/0577_Solosis.png and /dev/null differ diff --git a/Site/static/images/pokemon/0578-05-000-0.png b/Site/static/images/pokemon/0578-05-000-0.png new file mode 100644 index 0000000..a43bc65 Binary files /dev/null and b/Site/static/images/pokemon/0578-05-000-0.png differ diff --git a/Site/static/images/pokemon/0578_Duosion.png b/Site/static/images/pokemon/0578_Duosion.png deleted file mode 100644 index c72a7d9..0000000 Binary files a/Site/static/images/pokemon/0578_Duosion.png and /dev/null differ diff --git a/Site/static/images/pokemon/0579-05-000-0.png b/Site/static/images/pokemon/0579-05-000-0.png new file mode 100644 index 0000000..6a845cb Binary files /dev/null and b/Site/static/images/pokemon/0579-05-000-0.png differ diff --git a/Site/static/images/pokemon/0579_Reuniclus.png b/Site/static/images/pokemon/0579_Reuniclus.png deleted file mode 100644 index f6dcad2..0000000 Binary files a/Site/static/images/pokemon/0579_Reuniclus.png and /dev/null differ diff --git a/Site/static/images/pokemon/0580-05-000-0.png b/Site/static/images/pokemon/0580-05-000-0.png new file mode 100644 index 0000000..58fee7d Binary files /dev/null and b/Site/static/images/pokemon/0580-05-000-0.png differ diff --git a/Site/static/images/pokemon/0580_Ducklett.png b/Site/static/images/pokemon/0580_Ducklett.png deleted file mode 100644 index cd09070..0000000 Binary files a/Site/static/images/pokemon/0580_Ducklett.png and /dev/null differ diff --git a/Site/static/images/pokemon/0581-05-000-0.png b/Site/static/images/pokemon/0581-05-000-0.png new file mode 100644 index 0000000..595a93c Binary files /dev/null and b/Site/static/images/pokemon/0581-05-000-0.png differ diff --git a/Site/static/images/pokemon/0581_Swanna.png b/Site/static/images/pokemon/0581_Swanna.png deleted file mode 100644 index ede5a5f..0000000 Binary files a/Site/static/images/pokemon/0581_Swanna.png and /dev/null differ diff --git a/Site/static/images/pokemon/0582-05-000-0.png b/Site/static/images/pokemon/0582-05-000-0.png new file mode 100644 index 0000000..17c8b60 Binary files /dev/null and b/Site/static/images/pokemon/0582-05-000-0.png differ diff --git a/Site/static/images/pokemon/0582_Vanillite.png b/Site/static/images/pokemon/0582_Vanillite.png deleted file mode 100644 index b33213b..0000000 Binary files a/Site/static/images/pokemon/0582_Vanillite.png and /dev/null differ diff --git a/Site/static/images/pokemon/0583-05-000-0.png b/Site/static/images/pokemon/0583-05-000-0.png new file mode 100644 index 0000000..d2dbb2c Binary files /dev/null and b/Site/static/images/pokemon/0583-05-000-0.png differ diff --git a/Site/static/images/pokemon/0583_Vanillish.png b/Site/static/images/pokemon/0583_Vanillish.png deleted file mode 100644 index 031f7fd..0000000 Binary files a/Site/static/images/pokemon/0583_Vanillish.png and /dev/null differ diff --git a/Site/static/images/pokemon/0584-05-000-0.png b/Site/static/images/pokemon/0584-05-000-0.png new file mode 100644 index 0000000..4da4881 Binary files /dev/null and b/Site/static/images/pokemon/0584-05-000-0.png differ diff --git a/Site/static/images/pokemon/0584_Vanilluxe.png b/Site/static/images/pokemon/0584_Vanilluxe.png deleted file mode 100644 index 6aa7911..0000000 Binary files a/Site/static/images/pokemon/0584_Vanilluxe.png and /dev/null differ diff --git a/Site/static/images/pokemon/0585-05-001-0.png b/Site/static/images/pokemon/0585-05-001-0.png new file mode 100644 index 0000000..2e8778e Binary files /dev/null and b/Site/static/images/pokemon/0585-05-001-0.png differ diff --git a/Site/static/images/pokemon/0585-05-002-0.png b/Site/static/images/pokemon/0585-05-002-0.png new file mode 100644 index 0000000..9d02ce7 Binary files /dev/null and b/Site/static/images/pokemon/0585-05-002-0.png differ diff --git a/Site/static/images/pokemon/0585-05-003-0.png b/Site/static/images/pokemon/0585-05-003-0.png new file mode 100644 index 0000000..121e076 Binary files /dev/null and b/Site/static/images/pokemon/0585-05-003-0.png differ diff --git a/Site/static/images/pokemon/0585-05-004-0.png b/Site/static/images/pokemon/0585-05-004-0.png new file mode 100644 index 0000000..8d93251 Binary files /dev/null and b/Site/static/images/pokemon/0585-05-004-0.png differ diff --git a/Site/static/images/pokemon/0585_Deerling.png b/Site/static/images/pokemon/0585_Deerling.png deleted file mode 100644 index 89fcd1a..0000000 Binary files a/Site/static/images/pokemon/0585_Deerling.png and /dev/null differ diff --git a/Site/static/images/pokemon/0585_Deerling_(Autumn_Form).png b/Site/static/images/pokemon/0585_Deerling_(Autumn_Form).png deleted file mode 100644 index 96c7426..0000000 Binary files a/Site/static/images/pokemon/0585_Deerling_(Autumn_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0585_Deerling_(Summer_Form).png b/Site/static/images/pokemon/0585_Deerling_(Summer_Form).png deleted file mode 100644 index a4e88c9..0000000 Binary files a/Site/static/images/pokemon/0585_Deerling_(Summer_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0585_Deerling_(Winter_Form).png b/Site/static/images/pokemon/0585_Deerling_(Winter_Form).png deleted file mode 100644 index d056b43..0000000 Binary files a/Site/static/images/pokemon/0585_Deerling_(Winter_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0586-05-001-0.png b/Site/static/images/pokemon/0586-05-001-0.png new file mode 100644 index 0000000..f471754 Binary files /dev/null and b/Site/static/images/pokemon/0586-05-001-0.png differ diff --git a/Site/static/images/pokemon/0586-05-002-0.png b/Site/static/images/pokemon/0586-05-002-0.png new file mode 100644 index 0000000..01e62f6 Binary files /dev/null and b/Site/static/images/pokemon/0586-05-002-0.png differ diff --git a/Site/static/images/pokemon/0586-05-003-0.png b/Site/static/images/pokemon/0586-05-003-0.png new file mode 100644 index 0000000..ac23d63 Binary files /dev/null and b/Site/static/images/pokemon/0586-05-003-0.png differ diff --git a/Site/static/images/pokemon/0586-05-004-0.png b/Site/static/images/pokemon/0586-05-004-0.png new file mode 100644 index 0000000..a1f1a17 Binary files /dev/null and b/Site/static/images/pokemon/0586-05-004-0.png differ diff --git a/Site/static/images/pokemon/0586_Sawsbuck.png b/Site/static/images/pokemon/0586_Sawsbuck.png deleted file mode 100644 index d424e83..0000000 Binary files a/Site/static/images/pokemon/0586_Sawsbuck.png and /dev/null differ diff --git a/Site/static/images/pokemon/0586_Sawsbuck_(Autumn_Form).png b/Site/static/images/pokemon/0586_Sawsbuck_(Autumn_Form).png deleted file mode 100644 index e150f0c..0000000 Binary files a/Site/static/images/pokemon/0586_Sawsbuck_(Autumn_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0586_Sawsbuck_(Summer_Form).png b/Site/static/images/pokemon/0586_Sawsbuck_(Summer_Form).png deleted file mode 100644 index c377bf9..0000000 Binary files a/Site/static/images/pokemon/0586_Sawsbuck_(Summer_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0586_Sawsbuck_(Winter_Form).png b/Site/static/images/pokemon/0586_Sawsbuck_(Winter_Form).png deleted file mode 100644 index 83e58b3..0000000 Binary files a/Site/static/images/pokemon/0586_Sawsbuck_(Winter_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0587-05-000-0.png b/Site/static/images/pokemon/0587-05-000-0.png new file mode 100644 index 0000000..6730a44 Binary files /dev/null and b/Site/static/images/pokemon/0587-05-000-0.png differ diff --git a/Site/static/images/pokemon/0587_Emolga.png b/Site/static/images/pokemon/0587_Emolga.png deleted file mode 100644 index 6a832cc..0000000 Binary files a/Site/static/images/pokemon/0587_Emolga.png and /dev/null differ diff --git a/Site/static/images/pokemon/0588-05-000-0.png b/Site/static/images/pokemon/0588-05-000-0.png new file mode 100644 index 0000000..b54029b Binary files /dev/null and b/Site/static/images/pokemon/0588-05-000-0.png differ diff --git a/Site/static/images/pokemon/0588_Karrablast.png b/Site/static/images/pokemon/0588_Karrablast.png deleted file mode 100644 index e637584..0000000 Binary files a/Site/static/images/pokemon/0588_Karrablast.png and /dev/null differ diff --git a/Site/static/images/pokemon/0589-05-000-0.png b/Site/static/images/pokemon/0589-05-000-0.png new file mode 100644 index 0000000..6acdca8 Binary files /dev/null and b/Site/static/images/pokemon/0589-05-000-0.png differ diff --git a/Site/static/images/pokemon/0589_Escavalier.png b/Site/static/images/pokemon/0589_Escavalier.png deleted file mode 100644 index 5c7056d..0000000 Binary files a/Site/static/images/pokemon/0589_Escavalier.png and /dev/null differ diff --git a/Site/static/images/pokemon/0590-05-000-0.png b/Site/static/images/pokemon/0590-05-000-0.png new file mode 100644 index 0000000..b491dae Binary files /dev/null and b/Site/static/images/pokemon/0590-05-000-0.png differ diff --git a/Site/static/images/pokemon/0590_Foongus.png b/Site/static/images/pokemon/0590_Foongus.png deleted file mode 100644 index 910ffdf..0000000 Binary files a/Site/static/images/pokemon/0590_Foongus.png and /dev/null differ diff --git a/Site/static/images/pokemon/0591-05-000-0.png b/Site/static/images/pokemon/0591-05-000-0.png new file mode 100644 index 0000000..a4aecc0 Binary files /dev/null and b/Site/static/images/pokemon/0591-05-000-0.png differ diff --git a/Site/static/images/pokemon/0591_Amoonguss.png b/Site/static/images/pokemon/0591_Amoonguss.png deleted file mode 100644 index 015d18b..0000000 Binary files a/Site/static/images/pokemon/0591_Amoonguss.png and /dev/null differ diff --git a/Site/static/images/pokemon/0592-05-000-1.png b/Site/static/images/pokemon/0592-05-000-1.png new file mode 100644 index 0000000..f939cfb Binary files /dev/null and b/Site/static/images/pokemon/0592-05-000-1.png differ diff --git a/Site/static/images/pokemon/0592-05-000-2.png b/Site/static/images/pokemon/0592-05-000-2.png new file mode 100644 index 0000000..bc432ed Binary files /dev/null and b/Site/static/images/pokemon/0592-05-000-2.png differ diff --git a/Site/static/images/pokemon/0592_Frillish.png b/Site/static/images/pokemon/0592_Frillish.png deleted file mode 100644 index 7bff864..0000000 Binary files a/Site/static/images/pokemon/0592_Frillish.png and /dev/null differ diff --git a/Site/static/images/pokemon/0593-05-000-1.png b/Site/static/images/pokemon/0593-05-000-1.png new file mode 100644 index 0000000..f49ee46 Binary files /dev/null and b/Site/static/images/pokemon/0593-05-000-1.png differ diff --git a/Site/static/images/pokemon/0593-05-000-2.png b/Site/static/images/pokemon/0593-05-000-2.png new file mode 100644 index 0000000..ee424ed Binary files /dev/null and b/Site/static/images/pokemon/0593-05-000-2.png differ diff --git a/Site/static/images/pokemon/0593_Jellicent.png b/Site/static/images/pokemon/0593_Jellicent.png deleted file mode 100644 index 35734d2..0000000 Binary files a/Site/static/images/pokemon/0593_Jellicent.png and /dev/null differ diff --git a/Site/static/images/pokemon/0594-05-000-0.png b/Site/static/images/pokemon/0594-05-000-0.png new file mode 100644 index 0000000..c4aed58 Binary files /dev/null and b/Site/static/images/pokemon/0594-05-000-0.png differ diff --git a/Site/static/images/pokemon/0594_Alomomola.png b/Site/static/images/pokemon/0594_Alomomola.png deleted file mode 100644 index 748bd45..0000000 Binary files a/Site/static/images/pokemon/0594_Alomomola.png and /dev/null differ diff --git a/Site/static/images/pokemon/0595-05-000-0.png b/Site/static/images/pokemon/0595-05-000-0.png new file mode 100644 index 0000000..1ae0242 Binary files /dev/null and b/Site/static/images/pokemon/0595-05-000-0.png differ diff --git a/Site/static/images/pokemon/0595_Joltik.png b/Site/static/images/pokemon/0595_Joltik.png deleted file mode 100644 index addb0ac..0000000 Binary files a/Site/static/images/pokemon/0595_Joltik.png and /dev/null differ diff --git a/Site/static/images/pokemon/0596-05-000-0.png b/Site/static/images/pokemon/0596-05-000-0.png new file mode 100644 index 0000000..fc24ded Binary files /dev/null and b/Site/static/images/pokemon/0596-05-000-0.png differ diff --git a/Site/static/images/pokemon/0596_Galvantula.png b/Site/static/images/pokemon/0596_Galvantula.png deleted file mode 100644 index 92af2a3..0000000 Binary files a/Site/static/images/pokemon/0596_Galvantula.png and /dev/null differ diff --git a/Site/static/images/pokemon/0597-05-000-0.png b/Site/static/images/pokemon/0597-05-000-0.png new file mode 100644 index 0000000..8c76fff Binary files /dev/null and b/Site/static/images/pokemon/0597-05-000-0.png differ diff --git a/Site/static/images/pokemon/0597_Ferroseed.png b/Site/static/images/pokemon/0597_Ferroseed.png deleted file mode 100644 index 8d8b696..0000000 Binary files a/Site/static/images/pokemon/0597_Ferroseed.png and /dev/null differ diff --git a/Site/static/images/pokemon/0598-05-000-0.png b/Site/static/images/pokemon/0598-05-000-0.png new file mode 100644 index 0000000..d2c3a5f Binary files /dev/null and b/Site/static/images/pokemon/0598-05-000-0.png differ diff --git a/Site/static/images/pokemon/0598_Ferrothorn.png b/Site/static/images/pokemon/0598_Ferrothorn.png deleted file mode 100644 index be1811b..0000000 Binary files a/Site/static/images/pokemon/0598_Ferrothorn.png and /dev/null differ diff --git a/Site/static/images/pokemon/0599-05-000-0.png b/Site/static/images/pokemon/0599-05-000-0.png new file mode 100644 index 0000000..3cdff69 Binary files /dev/null and b/Site/static/images/pokemon/0599-05-000-0.png differ diff --git a/Site/static/images/pokemon/0599_Klink.png b/Site/static/images/pokemon/0599_Klink.png deleted file mode 100644 index 21332b7..0000000 Binary files a/Site/static/images/pokemon/0599_Klink.png and /dev/null differ diff --git a/Site/static/images/pokemon/0600-05-000-0.png b/Site/static/images/pokemon/0600-05-000-0.png new file mode 100644 index 0000000..f450be8 Binary files /dev/null and b/Site/static/images/pokemon/0600-05-000-0.png differ diff --git a/Site/static/images/pokemon/0600_Klang.png b/Site/static/images/pokemon/0600_Klang.png deleted file mode 100644 index 6589e85..0000000 Binary files a/Site/static/images/pokemon/0600_Klang.png and /dev/null differ diff --git a/Site/static/images/pokemon/0601-05-000-0.png b/Site/static/images/pokemon/0601-05-000-0.png new file mode 100644 index 0000000..1a9ae1c Binary files /dev/null and b/Site/static/images/pokemon/0601-05-000-0.png differ diff --git a/Site/static/images/pokemon/0601_Klinklang.png b/Site/static/images/pokemon/0601_Klinklang.png deleted file mode 100644 index e9533e2..0000000 Binary files a/Site/static/images/pokemon/0601_Klinklang.png and /dev/null differ diff --git a/Site/static/images/pokemon/0602-05-000-0.png b/Site/static/images/pokemon/0602-05-000-0.png new file mode 100644 index 0000000..396e3b8 Binary files /dev/null and b/Site/static/images/pokemon/0602-05-000-0.png differ diff --git a/Site/static/images/pokemon/0602_Tynamo.png b/Site/static/images/pokemon/0602_Tynamo.png deleted file mode 100644 index db364bb..0000000 Binary files a/Site/static/images/pokemon/0602_Tynamo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0603-05-000-0.png b/Site/static/images/pokemon/0603-05-000-0.png new file mode 100644 index 0000000..399aff6 Binary files /dev/null and b/Site/static/images/pokemon/0603-05-000-0.png differ diff --git a/Site/static/images/pokemon/0603_Eelektrik.png b/Site/static/images/pokemon/0603_Eelektrik.png deleted file mode 100644 index 7572367..0000000 Binary files a/Site/static/images/pokemon/0603_Eelektrik.png and /dev/null differ diff --git a/Site/static/images/pokemon/0604-05-000-0.png b/Site/static/images/pokemon/0604-05-000-0.png new file mode 100644 index 0000000..00d2581 Binary files /dev/null and b/Site/static/images/pokemon/0604-05-000-0.png differ diff --git a/Site/static/images/pokemon/0604_Eelektross.png b/Site/static/images/pokemon/0604_Eelektross.png deleted file mode 100644 index 809554e..0000000 Binary files a/Site/static/images/pokemon/0604_Eelektross.png and /dev/null differ diff --git a/Site/static/images/pokemon/0605-05-000-0.png b/Site/static/images/pokemon/0605-05-000-0.png new file mode 100644 index 0000000..2b13f51 Binary files /dev/null and b/Site/static/images/pokemon/0605-05-000-0.png differ diff --git a/Site/static/images/pokemon/0605_Elgyem.png b/Site/static/images/pokemon/0605_Elgyem.png deleted file mode 100644 index 2d47db9..0000000 Binary files a/Site/static/images/pokemon/0605_Elgyem.png and /dev/null differ diff --git a/Site/static/images/pokemon/0606-05-000-0.png b/Site/static/images/pokemon/0606-05-000-0.png new file mode 100644 index 0000000..8cedae8 Binary files /dev/null and b/Site/static/images/pokemon/0606-05-000-0.png differ diff --git a/Site/static/images/pokemon/0606_Beheeyem.png b/Site/static/images/pokemon/0606_Beheeyem.png deleted file mode 100644 index ac2a1e6..0000000 Binary files a/Site/static/images/pokemon/0606_Beheeyem.png and /dev/null differ diff --git a/Site/static/images/pokemon/0607-05-000-0.png b/Site/static/images/pokemon/0607-05-000-0.png new file mode 100644 index 0000000..a0701b2 Binary files /dev/null and b/Site/static/images/pokemon/0607-05-000-0.png differ diff --git a/Site/static/images/pokemon/0607_Litwick.png b/Site/static/images/pokemon/0607_Litwick.png deleted file mode 100644 index 6ef5dbb..0000000 Binary files a/Site/static/images/pokemon/0607_Litwick.png and /dev/null differ diff --git a/Site/static/images/pokemon/0608-05-000-0.png b/Site/static/images/pokemon/0608-05-000-0.png new file mode 100644 index 0000000..3d56e64 Binary files /dev/null and b/Site/static/images/pokemon/0608-05-000-0.png differ diff --git a/Site/static/images/pokemon/0608_Lampent.png b/Site/static/images/pokemon/0608_Lampent.png deleted file mode 100644 index f4980b4..0000000 Binary files a/Site/static/images/pokemon/0608_Lampent.png and /dev/null differ diff --git a/Site/static/images/pokemon/0609-05-000-0.png b/Site/static/images/pokemon/0609-05-000-0.png new file mode 100644 index 0000000..94c5b95 Binary files /dev/null and b/Site/static/images/pokemon/0609-05-000-0.png differ diff --git a/Site/static/images/pokemon/0609_Chandelure.png b/Site/static/images/pokemon/0609_Chandelure.png deleted file mode 100644 index 85940db..0000000 Binary files a/Site/static/images/pokemon/0609_Chandelure.png and /dev/null differ diff --git a/Site/static/images/pokemon/0610-05-000-0.png b/Site/static/images/pokemon/0610-05-000-0.png new file mode 100644 index 0000000..e4c8d28 Binary files /dev/null and b/Site/static/images/pokemon/0610-05-000-0.png differ diff --git a/Site/static/images/pokemon/0610_Axew.png b/Site/static/images/pokemon/0610_Axew.png deleted file mode 100644 index 1a57eab..0000000 Binary files a/Site/static/images/pokemon/0610_Axew.png and /dev/null differ diff --git a/Site/static/images/pokemon/0611-05-000-0.png b/Site/static/images/pokemon/0611-05-000-0.png new file mode 100644 index 0000000..1964a60 Binary files /dev/null and b/Site/static/images/pokemon/0611-05-000-0.png differ diff --git a/Site/static/images/pokemon/0611_Fraxure.png b/Site/static/images/pokemon/0611_Fraxure.png deleted file mode 100644 index f9f2ac8..0000000 Binary files a/Site/static/images/pokemon/0611_Fraxure.png and /dev/null differ diff --git a/Site/static/images/pokemon/0612-05-000-0.png b/Site/static/images/pokemon/0612-05-000-0.png new file mode 100644 index 0000000..645183e Binary files /dev/null and b/Site/static/images/pokemon/0612-05-000-0.png differ diff --git a/Site/static/images/pokemon/0612_Haxorus.png b/Site/static/images/pokemon/0612_Haxorus.png deleted file mode 100644 index 77c5367..0000000 Binary files a/Site/static/images/pokemon/0612_Haxorus.png and /dev/null differ diff --git a/Site/static/images/pokemon/0613-05-000-0.png b/Site/static/images/pokemon/0613-05-000-0.png new file mode 100644 index 0000000..79c9dfc Binary files /dev/null and b/Site/static/images/pokemon/0613-05-000-0.png differ diff --git a/Site/static/images/pokemon/0613_Cubchoo.png b/Site/static/images/pokemon/0613_Cubchoo.png deleted file mode 100644 index 72b8122..0000000 Binary files a/Site/static/images/pokemon/0613_Cubchoo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0614-05-000-0.png b/Site/static/images/pokemon/0614-05-000-0.png new file mode 100644 index 0000000..11898b4 Binary files /dev/null and b/Site/static/images/pokemon/0614-05-000-0.png differ diff --git a/Site/static/images/pokemon/0614_Beartic.png b/Site/static/images/pokemon/0614_Beartic.png deleted file mode 100644 index 1a1ba02..0000000 Binary files a/Site/static/images/pokemon/0614_Beartic.png and /dev/null differ diff --git a/Site/static/images/pokemon/0615-05-000-0.png b/Site/static/images/pokemon/0615-05-000-0.png new file mode 100644 index 0000000..af25c7b Binary files /dev/null and b/Site/static/images/pokemon/0615-05-000-0.png differ diff --git a/Site/static/images/pokemon/0615_Cryogonal.png b/Site/static/images/pokemon/0615_Cryogonal.png deleted file mode 100644 index ce4334c..0000000 Binary files a/Site/static/images/pokemon/0615_Cryogonal.png and /dev/null differ diff --git a/Site/static/images/pokemon/0616-05-000-0.png b/Site/static/images/pokemon/0616-05-000-0.png new file mode 100644 index 0000000..704b828 Binary files /dev/null and b/Site/static/images/pokemon/0616-05-000-0.png differ diff --git a/Site/static/images/pokemon/0616_Shelmet.png b/Site/static/images/pokemon/0616_Shelmet.png deleted file mode 100644 index 8a9f882..0000000 Binary files a/Site/static/images/pokemon/0616_Shelmet.png and /dev/null differ diff --git a/Site/static/images/pokemon/0617-05-000-0.png b/Site/static/images/pokemon/0617-05-000-0.png new file mode 100644 index 0000000..2cefd3e Binary files /dev/null and b/Site/static/images/pokemon/0617-05-000-0.png differ diff --git a/Site/static/images/pokemon/0617_Accelgor.png b/Site/static/images/pokemon/0617_Accelgor.png deleted file mode 100644 index 0c70249..0000000 Binary files a/Site/static/images/pokemon/0617_Accelgor.png and /dev/null differ diff --git a/Site/static/images/pokemon/0618-05-000-0.png b/Site/static/images/pokemon/0618-05-000-0.png new file mode 100644 index 0000000..4864776 Binary files /dev/null and b/Site/static/images/pokemon/0618-05-000-0.png differ diff --git a/Site/static/images/pokemon/0618-05-001-0.png b/Site/static/images/pokemon/0618-05-001-0.png new file mode 100644 index 0000000..ca6b9ad Binary files /dev/null and b/Site/static/images/pokemon/0618-05-001-0.png differ diff --git a/Site/static/images/pokemon/0618_Stunfisk.png b/Site/static/images/pokemon/0618_Stunfisk.png deleted file mode 100644 index b9412f6..0000000 Binary files a/Site/static/images/pokemon/0618_Stunfisk.png and /dev/null differ diff --git a/Site/static/images/pokemon/0618_Stunfisk_(Galarian_Form).png b/Site/static/images/pokemon/0618_Stunfisk_(Galarian_Form).png deleted file mode 100644 index 33f0f1b..0000000 Binary files a/Site/static/images/pokemon/0618_Stunfisk_(Galarian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0619-05-000-0.png b/Site/static/images/pokemon/0619-05-000-0.png new file mode 100644 index 0000000..7f4e905 Binary files /dev/null and b/Site/static/images/pokemon/0619-05-000-0.png differ diff --git a/Site/static/images/pokemon/0619_Mienfoo.png b/Site/static/images/pokemon/0619_Mienfoo.png deleted file mode 100644 index 8d88138..0000000 Binary files a/Site/static/images/pokemon/0619_Mienfoo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0620-05-000-0.png b/Site/static/images/pokemon/0620-05-000-0.png new file mode 100644 index 0000000..471814d Binary files /dev/null and b/Site/static/images/pokemon/0620-05-000-0.png differ diff --git a/Site/static/images/pokemon/0620_Mienshao.png b/Site/static/images/pokemon/0620_Mienshao.png deleted file mode 100644 index 4375862..0000000 Binary files a/Site/static/images/pokemon/0620_Mienshao.png and /dev/null differ diff --git a/Site/static/images/pokemon/0621-05-000-0.png b/Site/static/images/pokemon/0621-05-000-0.png new file mode 100644 index 0000000..0e869fd Binary files /dev/null and b/Site/static/images/pokemon/0621-05-000-0.png differ diff --git a/Site/static/images/pokemon/0621_Druddigon.png b/Site/static/images/pokemon/0621_Druddigon.png deleted file mode 100644 index 790f1b3..0000000 Binary files a/Site/static/images/pokemon/0621_Druddigon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0622-05-000-0.png b/Site/static/images/pokemon/0622-05-000-0.png new file mode 100644 index 0000000..03c5152 Binary files /dev/null and b/Site/static/images/pokemon/0622-05-000-0.png differ diff --git a/Site/static/images/pokemon/0622_Golett.png b/Site/static/images/pokemon/0622_Golett.png deleted file mode 100644 index eb9e50b..0000000 Binary files a/Site/static/images/pokemon/0622_Golett.png and /dev/null differ diff --git a/Site/static/images/pokemon/0623-05-000-0.png b/Site/static/images/pokemon/0623-05-000-0.png new file mode 100644 index 0000000..c85bb10 Binary files /dev/null and b/Site/static/images/pokemon/0623-05-000-0.png differ diff --git a/Site/static/images/pokemon/0623_Golurk.png b/Site/static/images/pokemon/0623_Golurk.png deleted file mode 100644 index c912926..0000000 Binary files a/Site/static/images/pokemon/0623_Golurk.png and /dev/null differ diff --git a/Site/static/images/pokemon/0624-05-000-0.png b/Site/static/images/pokemon/0624-05-000-0.png new file mode 100644 index 0000000..975283d Binary files /dev/null and b/Site/static/images/pokemon/0624-05-000-0.png differ diff --git a/Site/static/images/pokemon/0624_Pawniard.png b/Site/static/images/pokemon/0624_Pawniard.png deleted file mode 100644 index a60ea80..0000000 Binary files a/Site/static/images/pokemon/0624_Pawniard.png and /dev/null differ diff --git a/Site/static/images/pokemon/0625-05-000-0.png b/Site/static/images/pokemon/0625-05-000-0.png new file mode 100644 index 0000000..9265e2b Binary files /dev/null and b/Site/static/images/pokemon/0625-05-000-0.png differ diff --git a/Site/static/images/pokemon/0625_Bisharp.png b/Site/static/images/pokemon/0625_Bisharp.png deleted file mode 100644 index 922b3e8..0000000 Binary files a/Site/static/images/pokemon/0625_Bisharp.png and /dev/null differ diff --git a/Site/static/images/pokemon/0626-05-000-0.png b/Site/static/images/pokemon/0626-05-000-0.png new file mode 100644 index 0000000..c6217e7 Binary files /dev/null and b/Site/static/images/pokemon/0626-05-000-0.png differ diff --git a/Site/static/images/pokemon/0626_Bouffalant.png b/Site/static/images/pokemon/0626_Bouffalant.png deleted file mode 100644 index 0a00927..0000000 Binary files a/Site/static/images/pokemon/0626_Bouffalant.png and /dev/null differ diff --git a/Site/static/images/pokemon/0627-05-000-0.png b/Site/static/images/pokemon/0627-05-000-0.png new file mode 100644 index 0000000..8e3184f Binary files /dev/null and b/Site/static/images/pokemon/0627-05-000-0.png differ diff --git a/Site/static/images/pokemon/0627_Rufflet.png b/Site/static/images/pokemon/0627_Rufflet.png deleted file mode 100644 index 704eb36..0000000 Binary files a/Site/static/images/pokemon/0627_Rufflet.png and /dev/null differ diff --git a/Site/static/images/pokemon/0628-05-000-0.png b/Site/static/images/pokemon/0628-05-000-0.png new file mode 100644 index 0000000..45ec514 Binary files /dev/null and b/Site/static/images/pokemon/0628-05-000-0.png differ diff --git a/Site/static/images/pokemon/0628-05-001-0.png b/Site/static/images/pokemon/0628-05-001-0.png new file mode 100644 index 0000000..f525315 Binary files /dev/null and b/Site/static/images/pokemon/0628-05-001-0.png differ diff --git a/Site/static/images/pokemon/0628_Braviary.png b/Site/static/images/pokemon/0628_Braviary.png deleted file mode 100644 index 880f2fc..0000000 Binary files a/Site/static/images/pokemon/0628_Braviary.png and /dev/null differ diff --git a/Site/static/images/pokemon/0628_Braviary_(Hisuian_Form).png b/Site/static/images/pokemon/0628_Braviary_(Hisuian_Form).png deleted file mode 100644 index e77491c..0000000 Binary files a/Site/static/images/pokemon/0628_Braviary_(Hisuian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0629-05-000-0.png b/Site/static/images/pokemon/0629-05-000-0.png new file mode 100644 index 0000000..177b1cb Binary files /dev/null and b/Site/static/images/pokemon/0629-05-000-0.png differ diff --git a/Site/static/images/pokemon/0629_Vullaby.png b/Site/static/images/pokemon/0629_Vullaby.png deleted file mode 100644 index a2e7800..0000000 Binary files a/Site/static/images/pokemon/0629_Vullaby.png and /dev/null differ diff --git a/Site/static/images/pokemon/0630-05-000-0.png b/Site/static/images/pokemon/0630-05-000-0.png new file mode 100644 index 0000000..d424855 Binary files /dev/null and b/Site/static/images/pokemon/0630-05-000-0.png differ diff --git a/Site/static/images/pokemon/0630_Mandibuzz.png b/Site/static/images/pokemon/0630_Mandibuzz.png deleted file mode 100644 index 8f3950b..0000000 Binary files a/Site/static/images/pokemon/0630_Mandibuzz.png and /dev/null differ diff --git a/Site/static/images/pokemon/0631-05-000-0.png b/Site/static/images/pokemon/0631-05-000-0.png new file mode 100644 index 0000000..f0a1716 Binary files /dev/null and b/Site/static/images/pokemon/0631-05-000-0.png differ diff --git a/Site/static/images/pokemon/0631_Heatmor.png b/Site/static/images/pokemon/0631_Heatmor.png deleted file mode 100644 index 5f1b1db..0000000 Binary files a/Site/static/images/pokemon/0631_Heatmor.png and /dev/null differ diff --git a/Site/static/images/pokemon/0632-05-000-0.png b/Site/static/images/pokemon/0632-05-000-0.png new file mode 100644 index 0000000..c026e75 Binary files /dev/null and b/Site/static/images/pokemon/0632-05-000-0.png differ diff --git a/Site/static/images/pokemon/0632_Durant.png b/Site/static/images/pokemon/0632_Durant.png deleted file mode 100644 index 8b9fa07..0000000 Binary files a/Site/static/images/pokemon/0632_Durant.png and /dev/null differ diff --git a/Site/static/images/pokemon/0633-05-000-0.png b/Site/static/images/pokemon/0633-05-000-0.png new file mode 100644 index 0000000..c077d5c Binary files /dev/null and b/Site/static/images/pokemon/0633-05-000-0.png differ diff --git a/Site/static/images/pokemon/0633_Deino.png b/Site/static/images/pokemon/0633_Deino.png deleted file mode 100644 index b383713..0000000 Binary files a/Site/static/images/pokemon/0633_Deino.png and /dev/null differ diff --git a/Site/static/images/pokemon/0634-05-000-0.png b/Site/static/images/pokemon/0634-05-000-0.png new file mode 100644 index 0000000..795bc17 Binary files /dev/null and b/Site/static/images/pokemon/0634-05-000-0.png differ diff --git a/Site/static/images/pokemon/0634_Zweilous.png b/Site/static/images/pokemon/0634_Zweilous.png deleted file mode 100644 index ccea326..0000000 Binary files a/Site/static/images/pokemon/0634_Zweilous.png and /dev/null differ diff --git a/Site/static/images/pokemon/0635-05-000-0.png b/Site/static/images/pokemon/0635-05-000-0.png new file mode 100644 index 0000000..aeac97c Binary files /dev/null and b/Site/static/images/pokemon/0635-05-000-0.png differ diff --git a/Site/static/images/pokemon/0635_Hydreigon.png b/Site/static/images/pokemon/0635_Hydreigon.png deleted file mode 100644 index af31f9f..0000000 Binary files a/Site/static/images/pokemon/0635_Hydreigon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0636-05-000-0.png b/Site/static/images/pokemon/0636-05-000-0.png new file mode 100644 index 0000000..058433c Binary files /dev/null and b/Site/static/images/pokemon/0636-05-000-0.png differ diff --git a/Site/static/images/pokemon/0636_Larvesta.png b/Site/static/images/pokemon/0636_Larvesta.png deleted file mode 100644 index 48b087e..0000000 Binary files a/Site/static/images/pokemon/0636_Larvesta.png and /dev/null differ diff --git a/Site/static/images/pokemon/0637-05-000-0.png b/Site/static/images/pokemon/0637-05-000-0.png new file mode 100644 index 0000000..b1a7173 Binary files /dev/null and b/Site/static/images/pokemon/0637-05-000-0.png differ diff --git a/Site/static/images/pokemon/0637_Volcarona.png b/Site/static/images/pokemon/0637_Volcarona.png deleted file mode 100644 index 991fb97..0000000 Binary files a/Site/static/images/pokemon/0637_Volcarona.png and /dev/null differ diff --git a/Site/static/images/pokemon/0638-05-000-0.png b/Site/static/images/pokemon/0638-05-000-0.png new file mode 100644 index 0000000..666934e Binary files /dev/null and b/Site/static/images/pokemon/0638-05-000-0.png differ diff --git a/Site/static/images/pokemon/0638_Cobalion.png b/Site/static/images/pokemon/0638_Cobalion.png deleted file mode 100644 index db9adcc..0000000 Binary files a/Site/static/images/pokemon/0638_Cobalion.png and /dev/null differ diff --git a/Site/static/images/pokemon/0639-05-000-0.png b/Site/static/images/pokemon/0639-05-000-0.png new file mode 100644 index 0000000..8defcad Binary files /dev/null and b/Site/static/images/pokemon/0639-05-000-0.png differ diff --git a/Site/static/images/pokemon/0639_Terrakion.png b/Site/static/images/pokemon/0639_Terrakion.png deleted file mode 100644 index 7ddd0c8..0000000 Binary files a/Site/static/images/pokemon/0639_Terrakion.png and /dev/null differ diff --git a/Site/static/images/pokemon/0640-05-000-0.png b/Site/static/images/pokemon/0640-05-000-0.png new file mode 100644 index 0000000..55e7ba4 Binary files /dev/null and b/Site/static/images/pokemon/0640-05-000-0.png differ diff --git a/Site/static/images/pokemon/0640_Virizion.png b/Site/static/images/pokemon/0640_Virizion.png deleted file mode 100644 index b871ab7..0000000 Binary files a/Site/static/images/pokemon/0640_Virizion.png and /dev/null differ diff --git a/Site/static/images/pokemon/0641-05-001-0.png b/Site/static/images/pokemon/0641-05-001-0.png new file mode 100644 index 0000000..f0b83fd Binary files /dev/null and b/Site/static/images/pokemon/0641-05-001-0.png differ diff --git a/Site/static/images/pokemon/0641-05-002-0.png b/Site/static/images/pokemon/0641-05-002-0.png new file mode 100644 index 0000000..d8ce3ef Binary files /dev/null and b/Site/static/images/pokemon/0641-05-002-0.png differ diff --git a/Site/static/images/pokemon/0641_Tornadus.png b/Site/static/images/pokemon/0641_Tornadus.png deleted file mode 100644 index d628bc0..0000000 Binary files a/Site/static/images/pokemon/0641_Tornadus.png and /dev/null differ diff --git a/Site/static/images/pokemon/0641_Tornadus_(Therian_Forme).png b/Site/static/images/pokemon/0641_Tornadus_(Therian_Forme).png deleted file mode 100644 index 1f9f84c..0000000 Binary files a/Site/static/images/pokemon/0641_Tornadus_(Therian_Forme).png and /dev/null differ diff --git a/Site/static/images/pokemon/0642-05-001-0.png b/Site/static/images/pokemon/0642-05-001-0.png new file mode 100644 index 0000000..54177f1 Binary files /dev/null and b/Site/static/images/pokemon/0642-05-001-0.png differ diff --git a/Site/static/images/pokemon/0642-05-002-0.png b/Site/static/images/pokemon/0642-05-002-0.png new file mode 100644 index 0000000..dfa5d0b Binary files /dev/null and b/Site/static/images/pokemon/0642-05-002-0.png differ diff --git a/Site/static/images/pokemon/0642_Thundurus.png b/Site/static/images/pokemon/0642_Thundurus.png deleted file mode 100644 index 8e2b6ec..0000000 Binary files a/Site/static/images/pokemon/0642_Thundurus.png and /dev/null differ diff --git a/Site/static/images/pokemon/0642_Thundurus_(Therian_Forme).png b/Site/static/images/pokemon/0642_Thundurus_(Therian_Forme).png deleted file mode 100644 index 6f873c6..0000000 Binary files a/Site/static/images/pokemon/0642_Thundurus_(Therian_Forme).png and /dev/null differ diff --git a/Site/static/images/pokemon/0643-05-000-0.png b/Site/static/images/pokemon/0643-05-000-0.png new file mode 100644 index 0000000..35e8db8 Binary files /dev/null and b/Site/static/images/pokemon/0643-05-000-0.png differ diff --git a/Site/static/images/pokemon/0643_Reshiram.png b/Site/static/images/pokemon/0643_Reshiram.png deleted file mode 100644 index 5bda123..0000000 Binary files a/Site/static/images/pokemon/0643_Reshiram.png and /dev/null differ diff --git a/Site/static/images/pokemon/0644-05-000-0.png b/Site/static/images/pokemon/0644-05-000-0.png new file mode 100644 index 0000000..d782cd2 Binary files /dev/null and b/Site/static/images/pokemon/0644-05-000-0.png differ diff --git a/Site/static/images/pokemon/0644_Zekrom.png b/Site/static/images/pokemon/0644_Zekrom.png deleted file mode 100644 index 9391cfd..0000000 Binary files a/Site/static/images/pokemon/0644_Zekrom.png and /dev/null differ diff --git a/Site/static/images/pokemon/0645-05-001-0.png b/Site/static/images/pokemon/0645-05-001-0.png new file mode 100644 index 0000000..1606951 Binary files /dev/null and b/Site/static/images/pokemon/0645-05-001-0.png differ diff --git a/Site/static/images/pokemon/0645-05-002-0.png b/Site/static/images/pokemon/0645-05-002-0.png new file mode 100644 index 0000000..d82cc07 Binary files /dev/null and b/Site/static/images/pokemon/0645-05-002-0.png differ diff --git a/Site/static/images/pokemon/0645_Landorus.png b/Site/static/images/pokemon/0645_Landorus.png deleted file mode 100644 index 49ac4dc..0000000 Binary files a/Site/static/images/pokemon/0645_Landorus.png and /dev/null differ diff --git a/Site/static/images/pokemon/0645_Landorus_(Therian_Forme).png b/Site/static/images/pokemon/0645_Landorus_(Therian_Forme).png deleted file mode 100644 index d3e7655..0000000 Binary files a/Site/static/images/pokemon/0645_Landorus_(Therian_Forme).png and /dev/null differ diff --git a/Site/static/images/pokemon/0646-05-000-0.png b/Site/static/images/pokemon/0646-05-000-0.png new file mode 100644 index 0000000..ed96ff1 Binary files /dev/null and b/Site/static/images/pokemon/0646-05-000-0.png differ diff --git a/Site/static/images/pokemon/0646-05-001-0.png b/Site/static/images/pokemon/0646-05-001-0.png new file mode 100644 index 0000000..dcf196a Binary files /dev/null and b/Site/static/images/pokemon/0646-05-001-0.png differ diff --git a/Site/static/images/pokemon/0646-05-002-0.png b/Site/static/images/pokemon/0646-05-002-0.png new file mode 100644 index 0000000..d3be445 Binary files /dev/null and b/Site/static/images/pokemon/0646-05-002-0.png differ diff --git a/Site/static/images/pokemon/0646_Kyurem.png b/Site/static/images/pokemon/0646_Kyurem.png deleted file mode 100644 index 560704c..0000000 Binary files a/Site/static/images/pokemon/0646_Kyurem.png and /dev/null differ diff --git a/Site/static/images/pokemon/0647-05-001-0.png b/Site/static/images/pokemon/0647-05-001-0.png new file mode 100644 index 0000000..9f9518b Binary files /dev/null and b/Site/static/images/pokemon/0647-05-001-0.png differ diff --git a/Site/static/images/pokemon/0647-05-002-0.png b/Site/static/images/pokemon/0647-05-002-0.png new file mode 100644 index 0000000..1dd22aa Binary files /dev/null and b/Site/static/images/pokemon/0647-05-002-0.png differ diff --git a/Site/static/images/pokemon/0647_Keldeo.png b/Site/static/images/pokemon/0647_Keldeo.png deleted file mode 100644 index 83c8b1d..0000000 Binary files a/Site/static/images/pokemon/0647_Keldeo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0647_Keldeo_(Resolute_Form).png b/Site/static/images/pokemon/0647_Keldeo_(Resolute_Form).png deleted file mode 100644 index a4e4721..0000000 Binary files a/Site/static/images/pokemon/0647_Keldeo_(Resolute_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0648-05-001-0.png b/Site/static/images/pokemon/0648-05-001-0.png new file mode 100644 index 0000000..9fc4693 Binary files /dev/null and b/Site/static/images/pokemon/0648-05-001-0.png differ diff --git a/Site/static/images/pokemon/0648-05-002-0.png b/Site/static/images/pokemon/0648-05-002-0.png new file mode 100644 index 0000000..5c10e63 Binary files /dev/null and b/Site/static/images/pokemon/0648-05-002-0.png differ diff --git a/Site/static/images/pokemon/0648_Meloetta.png b/Site/static/images/pokemon/0648_Meloetta.png deleted file mode 100644 index d02eeda..0000000 Binary files a/Site/static/images/pokemon/0648_Meloetta.png and /dev/null differ diff --git a/Site/static/images/pokemon/0649-05-000-0.png b/Site/static/images/pokemon/0649-05-000-0.png new file mode 100644 index 0000000..8a1bc04 Binary files /dev/null and b/Site/static/images/pokemon/0649-05-000-0.png differ diff --git a/Site/static/images/pokemon/0649-05-001-0.png b/Site/static/images/pokemon/0649-05-001-0.png new file mode 100644 index 0000000..fd32899 Binary files /dev/null and b/Site/static/images/pokemon/0649-05-001-0.png differ diff --git a/Site/static/images/pokemon/0649-05-002-0.png b/Site/static/images/pokemon/0649-05-002-0.png new file mode 100644 index 0000000..f01e776 Binary files /dev/null and b/Site/static/images/pokemon/0649-05-002-0.png differ diff --git a/Site/static/images/pokemon/0649-05-003-0.png b/Site/static/images/pokemon/0649-05-003-0.png new file mode 100644 index 0000000..f820594 Binary files /dev/null and b/Site/static/images/pokemon/0649-05-003-0.png differ diff --git a/Site/static/images/pokemon/0649-05-004-0.png b/Site/static/images/pokemon/0649-05-004-0.png new file mode 100644 index 0000000..a5f546f Binary files /dev/null and b/Site/static/images/pokemon/0649-05-004-0.png differ diff --git a/Site/static/images/pokemon/0649_Genesect.png b/Site/static/images/pokemon/0649_Genesect.png deleted file mode 100644 index ce9944a..0000000 Binary files a/Site/static/images/pokemon/0649_Genesect.png and /dev/null differ diff --git a/Site/static/images/pokemon/0650-06-000-0.png b/Site/static/images/pokemon/0650-06-000-0.png new file mode 100644 index 0000000..9100231 Binary files /dev/null and b/Site/static/images/pokemon/0650-06-000-0.png differ diff --git a/Site/static/images/pokemon/0650_Chespin.png b/Site/static/images/pokemon/0650_Chespin.png deleted file mode 100644 index 83bf6a9..0000000 Binary files a/Site/static/images/pokemon/0650_Chespin.png and /dev/null differ diff --git a/Site/static/images/pokemon/0651-06-000-0.png b/Site/static/images/pokemon/0651-06-000-0.png new file mode 100644 index 0000000..f329927 Binary files /dev/null and b/Site/static/images/pokemon/0651-06-000-0.png differ diff --git a/Site/static/images/pokemon/0651_Quilladin.png b/Site/static/images/pokemon/0651_Quilladin.png deleted file mode 100644 index e273ece..0000000 Binary files a/Site/static/images/pokemon/0651_Quilladin.png and /dev/null differ diff --git a/Site/static/images/pokemon/0652-06-000-0.png b/Site/static/images/pokemon/0652-06-000-0.png new file mode 100644 index 0000000..25d7d1e Binary files /dev/null and b/Site/static/images/pokemon/0652-06-000-0.png differ diff --git a/Site/static/images/pokemon/0652_Chesnaught.png b/Site/static/images/pokemon/0652_Chesnaught.png deleted file mode 100644 index 7d7d380..0000000 Binary files a/Site/static/images/pokemon/0652_Chesnaught.png and /dev/null differ diff --git a/Site/static/images/pokemon/0653-06-000-0.png b/Site/static/images/pokemon/0653-06-000-0.png new file mode 100644 index 0000000..cefe677 Binary files /dev/null and b/Site/static/images/pokemon/0653-06-000-0.png differ diff --git a/Site/static/images/pokemon/0653_Fennekin.png b/Site/static/images/pokemon/0653_Fennekin.png deleted file mode 100644 index a4124fb..0000000 Binary files a/Site/static/images/pokemon/0653_Fennekin.png and /dev/null differ diff --git a/Site/static/images/pokemon/0654-06-000-0.png b/Site/static/images/pokemon/0654-06-000-0.png new file mode 100644 index 0000000..f2f60cc Binary files /dev/null and b/Site/static/images/pokemon/0654-06-000-0.png differ diff --git a/Site/static/images/pokemon/0654_Braixen.png b/Site/static/images/pokemon/0654_Braixen.png deleted file mode 100644 index 0afc7ab..0000000 Binary files a/Site/static/images/pokemon/0654_Braixen.png and /dev/null differ diff --git a/Site/static/images/pokemon/0655-06-000-0.png b/Site/static/images/pokemon/0655-06-000-0.png new file mode 100644 index 0000000..8f169aa Binary files /dev/null and b/Site/static/images/pokemon/0655-06-000-0.png differ diff --git a/Site/static/images/pokemon/0655_Delphox.png b/Site/static/images/pokemon/0655_Delphox.png deleted file mode 100644 index 898b0f3..0000000 Binary files a/Site/static/images/pokemon/0655_Delphox.png and /dev/null differ diff --git a/Site/static/images/pokemon/0656-06-000-0.png b/Site/static/images/pokemon/0656-06-000-0.png new file mode 100644 index 0000000..e3f2db5 Binary files /dev/null and b/Site/static/images/pokemon/0656-06-000-0.png differ diff --git a/Site/static/images/pokemon/0656_Froakie.png b/Site/static/images/pokemon/0656_Froakie.png deleted file mode 100644 index 9da5e22..0000000 Binary files a/Site/static/images/pokemon/0656_Froakie.png and /dev/null differ diff --git a/Site/static/images/pokemon/0657-06-000-0.png b/Site/static/images/pokemon/0657-06-000-0.png new file mode 100644 index 0000000..96751c0 Binary files /dev/null and b/Site/static/images/pokemon/0657-06-000-0.png differ diff --git a/Site/static/images/pokemon/0657_Frogadier.png b/Site/static/images/pokemon/0657_Frogadier.png deleted file mode 100644 index 170c826..0000000 Binary files a/Site/static/images/pokemon/0657_Frogadier.png and /dev/null differ diff --git a/Site/static/images/pokemon/0658-06-000-0.png b/Site/static/images/pokemon/0658-06-000-0.png new file mode 100644 index 0000000..c94c5ce Binary files /dev/null and b/Site/static/images/pokemon/0658-06-000-0.png differ diff --git a/Site/static/images/pokemon/0658-06-001-0.png b/Site/static/images/pokemon/0658-06-001-0.png new file mode 100644 index 0000000..a22b44c Binary files /dev/null and b/Site/static/images/pokemon/0658-06-001-0.png differ diff --git a/Site/static/images/pokemon/0658_Greninja.png b/Site/static/images/pokemon/0658_Greninja.png deleted file mode 100644 index e92b5bc..0000000 Binary files a/Site/static/images/pokemon/0658_Greninja.png and /dev/null differ diff --git a/Site/static/images/pokemon/0659-06-000-0.png b/Site/static/images/pokemon/0659-06-000-0.png new file mode 100644 index 0000000..e44b0f1 Binary files /dev/null and b/Site/static/images/pokemon/0659-06-000-0.png differ diff --git a/Site/static/images/pokemon/0659_Bunnelby.png b/Site/static/images/pokemon/0659_Bunnelby.png deleted file mode 100644 index b7c62b1..0000000 Binary files a/Site/static/images/pokemon/0659_Bunnelby.png and /dev/null differ diff --git a/Site/static/images/pokemon/0660-06-000-0.png b/Site/static/images/pokemon/0660-06-000-0.png new file mode 100644 index 0000000..598a0d2 Binary files /dev/null and b/Site/static/images/pokemon/0660-06-000-0.png differ diff --git a/Site/static/images/pokemon/0660_Diggersby.png b/Site/static/images/pokemon/0660_Diggersby.png deleted file mode 100644 index baa77f2..0000000 Binary files a/Site/static/images/pokemon/0660_Diggersby.png and /dev/null differ diff --git a/Site/static/images/pokemon/0661-06-000-0.png b/Site/static/images/pokemon/0661-06-000-0.png new file mode 100644 index 0000000..956072e Binary files /dev/null and b/Site/static/images/pokemon/0661-06-000-0.png differ diff --git a/Site/static/images/pokemon/0661_Fletchling.png b/Site/static/images/pokemon/0661_Fletchling.png deleted file mode 100644 index b059cba..0000000 Binary files a/Site/static/images/pokemon/0661_Fletchling.png and /dev/null differ diff --git a/Site/static/images/pokemon/0662-06-000-0.png b/Site/static/images/pokemon/0662-06-000-0.png new file mode 100644 index 0000000..e1956c3 Binary files /dev/null and b/Site/static/images/pokemon/0662-06-000-0.png differ diff --git a/Site/static/images/pokemon/0662_Fletchinder.png b/Site/static/images/pokemon/0662_Fletchinder.png deleted file mode 100644 index ad02052..0000000 Binary files a/Site/static/images/pokemon/0662_Fletchinder.png and /dev/null differ diff --git a/Site/static/images/pokemon/0663-06-000-0.png b/Site/static/images/pokemon/0663-06-000-0.png new file mode 100644 index 0000000..81753a9 Binary files /dev/null and b/Site/static/images/pokemon/0663-06-000-0.png differ diff --git a/Site/static/images/pokemon/0663_Talonflame.png b/Site/static/images/pokemon/0663_Talonflame.png deleted file mode 100644 index a0f14f9..0000000 Binary files a/Site/static/images/pokemon/0663_Talonflame.png and /dev/null differ diff --git a/Site/static/images/pokemon/0664-06-000-0.png b/Site/static/images/pokemon/0664-06-000-0.png new file mode 100644 index 0000000..84deb46 Binary files /dev/null and b/Site/static/images/pokemon/0664-06-000-0.png differ diff --git a/Site/static/images/pokemon/0664_Scatterbug.png b/Site/static/images/pokemon/0664_Scatterbug.png deleted file mode 100644 index b1a1afc..0000000 Binary files a/Site/static/images/pokemon/0664_Scatterbug.png and /dev/null differ diff --git a/Site/static/images/pokemon/0665-06-000-0.png b/Site/static/images/pokemon/0665-06-000-0.png new file mode 100644 index 0000000..a720be9 Binary files /dev/null and b/Site/static/images/pokemon/0665-06-000-0.png differ diff --git a/Site/static/images/pokemon/0665_Spewpa.png b/Site/static/images/pokemon/0665_Spewpa.png deleted file mode 100644 index 3adb560..0000000 Binary files a/Site/static/images/pokemon/0665_Spewpa.png and /dev/null differ diff --git a/Site/static/images/pokemon/0666-06-001-0.png b/Site/static/images/pokemon/0666-06-001-0.png new file mode 100644 index 0000000..7b78adb Binary files /dev/null and b/Site/static/images/pokemon/0666-06-001-0.png differ diff --git a/Site/static/images/pokemon/0666-06-002-0.png b/Site/static/images/pokemon/0666-06-002-0.png new file mode 100644 index 0000000..df2fd8c Binary files /dev/null and b/Site/static/images/pokemon/0666-06-002-0.png differ diff --git a/Site/static/images/pokemon/0666-06-003-0.png b/Site/static/images/pokemon/0666-06-003-0.png new file mode 100644 index 0000000..374b73d Binary files /dev/null and b/Site/static/images/pokemon/0666-06-003-0.png differ diff --git a/Site/static/images/pokemon/0666-06-004-0.png b/Site/static/images/pokemon/0666-06-004-0.png new file mode 100644 index 0000000..a7ddf6e Binary files /dev/null and b/Site/static/images/pokemon/0666-06-004-0.png differ diff --git a/Site/static/images/pokemon/0666-06-005-0.png b/Site/static/images/pokemon/0666-06-005-0.png new file mode 100644 index 0000000..74840c1 Binary files /dev/null and b/Site/static/images/pokemon/0666-06-005-0.png differ diff --git a/Site/static/images/pokemon/0666-06-006-0.png b/Site/static/images/pokemon/0666-06-006-0.png new file mode 100644 index 0000000..8ab12b5 Binary files /dev/null and b/Site/static/images/pokemon/0666-06-006-0.png differ diff --git a/Site/static/images/pokemon/0666-06-007-0.png b/Site/static/images/pokemon/0666-06-007-0.png new file mode 100644 index 0000000..5ccd38b Binary files /dev/null and b/Site/static/images/pokemon/0666-06-007-0.png differ diff --git a/Site/static/images/pokemon/0666-06-008-0.png b/Site/static/images/pokemon/0666-06-008-0.png new file mode 100644 index 0000000..af93569 Binary files /dev/null and b/Site/static/images/pokemon/0666-06-008-0.png differ diff --git a/Site/static/images/pokemon/0666-06-009-0.png b/Site/static/images/pokemon/0666-06-009-0.png new file mode 100644 index 0000000..0ffcc8f Binary files /dev/null and b/Site/static/images/pokemon/0666-06-009-0.png differ diff --git a/Site/static/images/pokemon/0666-06-010-0.png b/Site/static/images/pokemon/0666-06-010-0.png new file mode 100644 index 0000000..7af3620 Binary files /dev/null and b/Site/static/images/pokemon/0666-06-010-0.png differ diff --git a/Site/static/images/pokemon/0666-06-011-0.png b/Site/static/images/pokemon/0666-06-011-0.png new file mode 100644 index 0000000..cd4a37a Binary files /dev/null and b/Site/static/images/pokemon/0666-06-011-0.png differ diff --git a/Site/static/images/pokemon/0666-06-012-0.png b/Site/static/images/pokemon/0666-06-012-0.png new file mode 100644 index 0000000..71f3e3a Binary files /dev/null and b/Site/static/images/pokemon/0666-06-012-0.png differ diff --git a/Site/static/images/pokemon/0666-06-013-0.png b/Site/static/images/pokemon/0666-06-013-0.png new file mode 100644 index 0000000..cb53959 Binary files /dev/null and b/Site/static/images/pokemon/0666-06-013-0.png differ diff --git a/Site/static/images/pokemon/0666-06-014-0.png b/Site/static/images/pokemon/0666-06-014-0.png new file mode 100644 index 0000000..7760acf Binary files /dev/null and b/Site/static/images/pokemon/0666-06-014-0.png differ diff --git a/Site/static/images/pokemon/0666-06-015-0.png b/Site/static/images/pokemon/0666-06-015-0.png new file mode 100644 index 0000000..e0d1b2d Binary files /dev/null and b/Site/static/images/pokemon/0666-06-015-0.png differ diff --git a/Site/static/images/pokemon/0666-06-016-0.png b/Site/static/images/pokemon/0666-06-016-0.png new file mode 100644 index 0000000..e728e94 Binary files /dev/null and b/Site/static/images/pokemon/0666-06-016-0.png differ diff --git a/Site/static/images/pokemon/0666-06-017-0.png b/Site/static/images/pokemon/0666-06-017-0.png new file mode 100644 index 0000000..5233c7c Binary files /dev/null and b/Site/static/images/pokemon/0666-06-017-0.png differ diff --git a/Site/static/images/pokemon/0666-06-018-0.png b/Site/static/images/pokemon/0666-06-018-0.png new file mode 100644 index 0000000..76b9832 Binary files /dev/null and b/Site/static/images/pokemon/0666-06-018-0.png differ diff --git a/Site/static/images/pokemon/0666-06-019-0.png b/Site/static/images/pokemon/0666-06-019-0.png new file mode 100644 index 0000000..ffae371 Binary files /dev/null and b/Site/static/images/pokemon/0666-06-019-0.png differ diff --git a/Site/static/images/pokemon/0666-06-020-0.png b/Site/static/images/pokemon/0666-06-020-0.png new file mode 100644 index 0000000..f18ca83 Binary files /dev/null and b/Site/static/images/pokemon/0666-06-020-0.png differ diff --git a/Site/static/images/pokemon/0666_Vivillon.png b/Site/static/images/pokemon/0666_Vivillon.png deleted file mode 100644 index 8005f12..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(Archipelago_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(Archipelago_Pattern).png deleted file mode 100644 index 90d92c6..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(Archipelago_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(Continental_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(Continental_Pattern).png deleted file mode 100644 index e582f4f..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(Continental_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(Elegant_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(Elegant_Pattern).png deleted file mode 100644 index 3f790c5..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(Elegant_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(Fancy_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(Fancy_Pattern).png deleted file mode 100644 index aed760f..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(Fancy_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(Garden_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(Garden_Pattern).png deleted file mode 100644 index 1f738b6..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(Garden_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(High_Plains_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(High_Plains_Pattern).png deleted file mode 100644 index 65abb72..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(High_Plains_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(Icy_Snow_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(Icy_Snow_Pattern).png deleted file mode 100644 index ccccb59..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(Icy_Snow_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(Jungle_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(Jungle_Pattern).png deleted file mode 100644 index 43717c5..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(Jungle_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(Marine_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(Marine_Pattern).png deleted file mode 100644 index ff1a4df..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(Marine_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(Modern_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(Modern_Pattern).png deleted file mode 100644 index a42089e..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(Modern_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(Monsoon_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(Monsoon_Pattern).png deleted file mode 100644 index 79a4de5..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(Monsoon_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(Ocean_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(Ocean_Pattern).png deleted file mode 100644 index 81f5b1b..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(Ocean_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(Poké_Ball_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(Poké_Ball_Pattern).png deleted file mode 100644 index f74d579..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(Poké_Ball_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(Polar_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(Polar_Pattern).png deleted file mode 100644 index b6c95fc..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(Polar_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(River_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(River_Pattern).png deleted file mode 100644 index ab1d848..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(River_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(Sandstorm_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(Sandstorm_Pattern).png deleted file mode 100644 index c0c0e84..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(Sandstorm_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(Savanna_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(Savanna_Pattern).png deleted file mode 100644 index 8e86d32..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(Savanna_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(Sun_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(Sun_Pattern).png deleted file mode 100644 index 54346d6..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(Sun_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0666_Vivillon_(Tundra_Pattern).png b/Site/static/images/pokemon/0666_Vivillon_(Tundra_Pattern).png deleted file mode 100644 index 9955946..0000000 Binary files a/Site/static/images/pokemon/0666_Vivillon_(Tundra_Pattern).png and /dev/null differ diff --git a/Site/static/images/pokemon/0667-06-000-0.png b/Site/static/images/pokemon/0667-06-000-0.png new file mode 100644 index 0000000..3e5afd5 Binary files /dev/null and b/Site/static/images/pokemon/0667-06-000-0.png differ diff --git a/Site/static/images/pokemon/0667_Litleo.png b/Site/static/images/pokemon/0667_Litleo.png deleted file mode 100644 index 9ae57f8..0000000 Binary files a/Site/static/images/pokemon/0667_Litleo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0668-06-000-1.png b/Site/static/images/pokemon/0668-06-000-1.png new file mode 100644 index 0000000..551409a Binary files /dev/null and b/Site/static/images/pokemon/0668-06-000-1.png differ diff --git a/Site/static/images/pokemon/0668-06-000-2.png b/Site/static/images/pokemon/0668-06-000-2.png new file mode 100644 index 0000000..1f1b6a9 Binary files /dev/null and b/Site/static/images/pokemon/0668-06-000-2.png differ diff --git a/Site/static/images/pokemon/0668_Pyroar.png b/Site/static/images/pokemon/0668_Pyroar.png deleted file mode 100644 index 10252ef..0000000 Binary files a/Site/static/images/pokemon/0668_Pyroar.png and /dev/null differ diff --git a/Site/static/images/pokemon/0669-06-001-0.png b/Site/static/images/pokemon/0669-06-001-0.png new file mode 100644 index 0000000..8b8f10e Binary files /dev/null and b/Site/static/images/pokemon/0669-06-001-0.png differ diff --git a/Site/static/images/pokemon/0669-06-002-0.png b/Site/static/images/pokemon/0669-06-002-0.png new file mode 100644 index 0000000..156395f Binary files /dev/null and b/Site/static/images/pokemon/0669-06-002-0.png differ diff --git a/Site/static/images/pokemon/0669-06-003-0.png b/Site/static/images/pokemon/0669-06-003-0.png new file mode 100644 index 0000000..5842fb6 Binary files /dev/null and b/Site/static/images/pokemon/0669-06-003-0.png differ diff --git a/Site/static/images/pokemon/0669-06-004-0.png b/Site/static/images/pokemon/0669-06-004-0.png new file mode 100644 index 0000000..fb304af Binary files /dev/null and b/Site/static/images/pokemon/0669-06-004-0.png differ diff --git a/Site/static/images/pokemon/0669-06-005-0.png b/Site/static/images/pokemon/0669-06-005-0.png new file mode 100644 index 0000000..9e01660 Binary files /dev/null and b/Site/static/images/pokemon/0669-06-005-0.png differ diff --git a/Site/static/images/pokemon/0669_Flabébé.png b/Site/static/images/pokemon/0669_Flabébé.png deleted file mode 100644 index 6360702..0000000 Binary files a/Site/static/images/pokemon/0669_Flabébé.png and /dev/null differ diff --git a/Site/static/images/pokemon/0669_Flabébé_(Blue_Flower).png b/Site/static/images/pokemon/0669_Flabébé_(Blue_Flower).png deleted file mode 100644 index 718cf8b..0000000 Binary files a/Site/static/images/pokemon/0669_Flabébé_(Blue_Flower).png and /dev/null differ diff --git a/Site/static/images/pokemon/0669_Flabébé_(Orange_Flower).png b/Site/static/images/pokemon/0669_Flabébé_(Orange_Flower).png deleted file mode 100644 index 622341b..0000000 Binary files a/Site/static/images/pokemon/0669_Flabébé_(Orange_Flower).png and /dev/null differ diff --git a/Site/static/images/pokemon/0669_Flabébé_(White_Flower).png b/Site/static/images/pokemon/0669_Flabébé_(White_Flower).png deleted file mode 100644 index 39983fa..0000000 Binary files a/Site/static/images/pokemon/0669_Flabébé_(White_Flower).png and /dev/null differ diff --git a/Site/static/images/pokemon/0669_Flabébé_(Yellow_Flower).png b/Site/static/images/pokemon/0669_Flabébé_(Yellow_Flower).png deleted file mode 100644 index f2e5f6e..0000000 Binary files a/Site/static/images/pokemon/0669_Flabébé_(Yellow_Flower).png and /dev/null differ diff --git a/Site/static/images/pokemon/0670-06-001-0.png b/Site/static/images/pokemon/0670-06-001-0.png new file mode 100644 index 0000000..7eb020f Binary files /dev/null and b/Site/static/images/pokemon/0670-06-001-0.png differ diff --git a/Site/static/images/pokemon/0670-06-002-0.png b/Site/static/images/pokemon/0670-06-002-0.png new file mode 100644 index 0000000..12d4d4c Binary files /dev/null and b/Site/static/images/pokemon/0670-06-002-0.png differ diff --git a/Site/static/images/pokemon/0670-06-003-0.png b/Site/static/images/pokemon/0670-06-003-0.png new file mode 100644 index 0000000..2e988d1 Binary files /dev/null and b/Site/static/images/pokemon/0670-06-003-0.png differ diff --git a/Site/static/images/pokemon/0670-06-004-0.png b/Site/static/images/pokemon/0670-06-004-0.png new file mode 100644 index 0000000..c79e531 Binary files /dev/null and b/Site/static/images/pokemon/0670-06-004-0.png differ diff --git a/Site/static/images/pokemon/0670-06-005-0.png b/Site/static/images/pokemon/0670-06-005-0.png new file mode 100644 index 0000000..06a5e10 Binary files /dev/null and b/Site/static/images/pokemon/0670-06-005-0.png differ diff --git a/Site/static/images/pokemon/0670_Floette.png b/Site/static/images/pokemon/0670_Floette.png deleted file mode 100644 index 6620bb6..0000000 Binary files a/Site/static/images/pokemon/0670_Floette.png and /dev/null differ diff --git a/Site/static/images/pokemon/0670_Floette_(Blue_Flower).png b/Site/static/images/pokemon/0670_Floette_(Blue_Flower).png deleted file mode 100644 index 52a4f5e..0000000 Binary files a/Site/static/images/pokemon/0670_Floette_(Blue_Flower).png and /dev/null differ diff --git a/Site/static/images/pokemon/0670_Floette_(Orange_Flower).png b/Site/static/images/pokemon/0670_Floette_(Orange_Flower).png deleted file mode 100644 index d2d92b2..0000000 Binary files a/Site/static/images/pokemon/0670_Floette_(Orange_Flower).png and /dev/null differ diff --git a/Site/static/images/pokemon/0670_Floette_(White_Flower).png b/Site/static/images/pokemon/0670_Floette_(White_Flower).png deleted file mode 100644 index 3c7b6ac..0000000 Binary files a/Site/static/images/pokemon/0670_Floette_(White_Flower).png and /dev/null differ diff --git a/Site/static/images/pokemon/0670_Floette_(Yellow_Flower).png b/Site/static/images/pokemon/0670_Floette_(Yellow_Flower).png deleted file mode 100644 index 9ba7327..0000000 Binary files a/Site/static/images/pokemon/0670_Floette_(Yellow_Flower).png and /dev/null differ diff --git a/Site/static/images/pokemon/0671-06-001-0.png b/Site/static/images/pokemon/0671-06-001-0.png new file mode 100644 index 0000000..445aaf8 Binary files /dev/null and b/Site/static/images/pokemon/0671-06-001-0.png differ diff --git a/Site/static/images/pokemon/0671-06-002-0.png b/Site/static/images/pokemon/0671-06-002-0.png new file mode 100644 index 0000000..4f2339a Binary files /dev/null and b/Site/static/images/pokemon/0671-06-002-0.png differ diff --git a/Site/static/images/pokemon/0671-06-003-0.png b/Site/static/images/pokemon/0671-06-003-0.png new file mode 100644 index 0000000..2ea7765 Binary files /dev/null and b/Site/static/images/pokemon/0671-06-003-0.png differ diff --git a/Site/static/images/pokemon/0671-06-004-0.png b/Site/static/images/pokemon/0671-06-004-0.png new file mode 100644 index 0000000..5002a55 Binary files /dev/null and b/Site/static/images/pokemon/0671-06-004-0.png differ diff --git a/Site/static/images/pokemon/0671-06-005-0.png b/Site/static/images/pokemon/0671-06-005-0.png new file mode 100644 index 0000000..cd5a0fb Binary files /dev/null and b/Site/static/images/pokemon/0671-06-005-0.png differ diff --git a/Site/static/images/pokemon/0671_Florges.png b/Site/static/images/pokemon/0671_Florges.png deleted file mode 100644 index f12d23e..0000000 Binary files a/Site/static/images/pokemon/0671_Florges.png and /dev/null differ diff --git a/Site/static/images/pokemon/0671_Florges_(Blue_Flower).png b/Site/static/images/pokemon/0671_Florges_(Blue_Flower).png deleted file mode 100644 index a3eaa5a..0000000 Binary files a/Site/static/images/pokemon/0671_Florges_(Blue_Flower).png and /dev/null differ diff --git a/Site/static/images/pokemon/0671_Florges_(Orange_Flower).png b/Site/static/images/pokemon/0671_Florges_(Orange_Flower).png deleted file mode 100644 index b8faec9..0000000 Binary files a/Site/static/images/pokemon/0671_Florges_(Orange_Flower).png and /dev/null differ diff --git a/Site/static/images/pokemon/0671_Florges_(White_Flower).png b/Site/static/images/pokemon/0671_Florges_(White_Flower).png deleted file mode 100644 index 0a0b6f2..0000000 Binary files a/Site/static/images/pokemon/0671_Florges_(White_Flower).png and /dev/null differ diff --git a/Site/static/images/pokemon/0671_Florges_(Yellow_Flower).png b/Site/static/images/pokemon/0671_Florges_(Yellow_Flower).png deleted file mode 100644 index e829090..0000000 Binary files a/Site/static/images/pokemon/0671_Florges_(Yellow_Flower).png and /dev/null differ diff --git a/Site/static/images/pokemon/0672-06-000-0.png b/Site/static/images/pokemon/0672-06-000-0.png new file mode 100644 index 0000000..f0f9d77 Binary files /dev/null and b/Site/static/images/pokemon/0672-06-000-0.png differ diff --git a/Site/static/images/pokemon/0672_Skiddo.png b/Site/static/images/pokemon/0672_Skiddo.png deleted file mode 100644 index a3cf06e..0000000 Binary files a/Site/static/images/pokemon/0672_Skiddo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0673-06-000-0.png b/Site/static/images/pokemon/0673-06-000-0.png new file mode 100644 index 0000000..3b3dd2e Binary files /dev/null and b/Site/static/images/pokemon/0673-06-000-0.png differ diff --git a/Site/static/images/pokemon/0673_Gogoat.png b/Site/static/images/pokemon/0673_Gogoat.png deleted file mode 100644 index c646ae4..0000000 Binary files a/Site/static/images/pokemon/0673_Gogoat.png and /dev/null differ diff --git a/Site/static/images/pokemon/0674-06-000-0.png b/Site/static/images/pokemon/0674-06-000-0.png new file mode 100644 index 0000000..26f5a3a Binary files /dev/null and b/Site/static/images/pokemon/0674-06-000-0.png differ diff --git a/Site/static/images/pokemon/0674_Pancham.png b/Site/static/images/pokemon/0674_Pancham.png deleted file mode 100644 index 0a7b819..0000000 Binary files a/Site/static/images/pokemon/0674_Pancham.png and /dev/null differ diff --git a/Site/static/images/pokemon/0675-06-000-0.png b/Site/static/images/pokemon/0675-06-000-0.png new file mode 100644 index 0000000..cb94243 Binary files /dev/null and b/Site/static/images/pokemon/0675-06-000-0.png differ diff --git a/Site/static/images/pokemon/0675_Pangoro.png b/Site/static/images/pokemon/0675_Pangoro.png deleted file mode 100644 index ba82329..0000000 Binary files a/Site/static/images/pokemon/0675_Pangoro.png and /dev/null differ diff --git a/Site/static/images/pokemon/0676-06-001-0.png b/Site/static/images/pokemon/0676-06-001-0.png new file mode 100644 index 0000000..9b84c4b Binary files /dev/null and b/Site/static/images/pokemon/0676-06-001-0.png differ diff --git a/Site/static/images/pokemon/0676-06-002-0.png b/Site/static/images/pokemon/0676-06-002-0.png new file mode 100644 index 0000000..b2c165e Binary files /dev/null and b/Site/static/images/pokemon/0676-06-002-0.png differ diff --git a/Site/static/images/pokemon/0676-06-003-0.png b/Site/static/images/pokemon/0676-06-003-0.png new file mode 100644 index 0000000..39c9d46 Binary files /dev/null and b/Site/static/images/pokemon/0676-06-003-0.png differ diff --git a/Site/static/images/pokemon/0676-06-004-0.png b/Site/static/images/pokemon/0676-06-004-0.png new file mode 100644 index 0000000..93a3d8a Binary files /dev/null and b/Site/static/images/pokemon/0676-06-004-0.png differ diff --git a/Site/static/images/pokemon/0676-06-005-0.png b/Site/static/images/pokemon/0676-06-005-0.png new file mode 100644 index 0000000..12c25ec Binary files /dev/null and b/Site/static/images/pokemon/0676-06-005-0.png differ diff --git a/Site/static/images/pokemon/0676-06-006-0.png b/Site/static/images/pokemon/0676-06-006-0.png new file mode 100644 index 0000000..081293b Binary files /dev/null and b/Site/static/images/pokemon/0676-06-006-0.png differ diff --git a/Site/static/images/pokemon/0676-06-007-0.png b/Site/static/images/pokemon/0676-06-007-0.png new file mode 100644 index 0000000..83b83e9 Binary files /dev/null and b/Site/static/images/pokemon/0676-06-007-0.png differ diff --git a/Site/static/images/pokemon/0676-06-008-0.png b/Site/static/images/pokemon/0676-06-008-0.png new file mode 100644 index 0000000..2dbc992 Binary files /dev/null and b/Site/static/images/pokemon/0676-06-008-0.png differ diff --git a/Site/static/images/pokemon/0676-06-009-0.png b/Site/static/images/pokemon/0676-06-009-0.png new file mode 100644 index 0000000..08b09e3 Binary files /dev/null and b/Site/static/images/pokemon/0676-06-009-0.png differ diff --git a/Site/static/images/pokemon/0676-06-010-0.png b/Site/static/images/pokemon/0676-06-010-0.png new file mode 100644 index 0000000..971023e Binary files /dev/null and b/Site/static/images/pokemon/0676-06-010-0.png differ diff --git a/Site/static/images/pokemon/0676_Furfrou.png b/Site/static/images/pokemon/0676_Furfrou.png deleted file mode 100644 index 2184924..0000000 Binary files a/Site/static/images/pokemon/0676_Furfrou.png and /dev/null differ diff --git a/Site/static/images/pokemon/0676_Furfrou_(Dandy_Trim).png b/Site/static/images/pokemon/0676_Furfrou_(Dandy_Trim).png deleted file mode 100644 index 620d050..0000000 Binary files a/Site/static/images/pokemon/0676_Furfrou_(Dandy_Trim).png and /dev/null differ diff --git a/Site/static/images/pokemon/0676_Furfrou_(Deputante_Trim).png b/Site/static/images/pokemon/0676_Furfrou_(Deputante_Trim).png deleted file mode 100644 index 123ecd1..0000000 Binary files a/Site/static/images/pokemon/0676_Furfrou_(Deputante_Trim).png and /dev/null differ diff --git a/Site/static/images/pokemon/0676_Furfrou_(Diamond_Trim).png b/Site/static/images/pokemon/0676_Furfrou_(Diamond_Trim).png deleted file mode 100644 index ca1789d..0000000 Binary files a/Site/static/images/pokemon/0676_Furfrou_(Diamond_Trim).png and /dev/null differ diff --git a/Site/static/images/pokemon/0676_Furfrou_(Heart_Trim).png b/Site/static/images/pokemon/0676_Furfrou_(Heart_Trim).png deleted file mode 100644 index 8cee6a4..0000000 Binary files a/Site/static/images/pokemon/0676_Furfrou_(Heart_Trim).png and /dev/null differ diff --git a/Site/static/images/pokemon/0676_Furfrou_(Kabuki_Trim).png b/Site/static/images/pokemon/0676_Furfrou_(Kabuki_Trim).png deleted file mode 100644 index 0021223..0000000 Binary files a/Site/static/images/pokemon/0676_Furfrou_(Kabuki_Trim).png and /dev/null differ diff --git a/Site/static/images/pokemon/0676_Furfrou_(La_Reine_Trim).png b/Site/static/images/pokemon/0676_Furfrou_(La_Reine_Trim).png deleted file mode 100644 index 9ed1b9b..0000000 Binary files a/Site/static/images/pokemon/0676_Furfrou_(La_Reine_Trim).png and /dev/null differ diff --git a/Site/static/images/pokemon/0676_Furfrou_(Matron_Trim).png b/Site/static/images/pokemon/0676_Furfrou_(Matron_Trim).png deleted file mode 100644 index 5b0438b..0000000 Binary files a/Site/static/images/pokemon/0676_Furfrou_(Matron_Trim).png and /dev/null differ diff --git a/Site/static/images/pokemon/0676_Furfrou_(Pharaoh_Trim).png b/Site/static/images/pokemon/0676_Furfrou_(Pharaoh_Trim).png deleted file mode 100644 index 180e855..0000000 Binary files a/Site/static/images/pokemon/0676_Furfrou_(Pharaoh_Trim).png and /dev/null differ diff --git a/Site/static/images/pokemon/0676_Furfrou_(Star_Trim).png b/Site/static/images/pokemon/0676_Furfrou_(Star_Trim).png deleted file mode 100644 index ec38aca..0000000 Binary files a/Site/static/images/pokemon/0676_Furfrou_(Star_Trim).png and /dev/null differ diff --git a/Site/static/images/pokemon/0677-06-000-0.png b/Site/static/images/pokemon/0677-06-000-0.png new file mode 100644 index 0000000..061d39c Binary files /dev/null and b/Site/static/images/pokemon/0677-06-000-0.png differ diff --git a/Site/static/images/pokemon/0677_Espurr.png b/Site/static/images/pokemon/0677_Espurr.png deleted file mode 100644 index d28efd3..0000000 Binary files a/Site/static/images/pokemon/0677_Espurr.png and /dev/null differ diff --git a/Site/static/images/pokemon/0678-06-000-1.png b/Site/static/images/pokemon/0678-06-000-1.png new file mode 100644 index 0000000..35fc438 Binary files /dev/null and b/Site/static/images/pokemon/0678-06-000-1.png differ diff --git a/Site/static/images/pokemon/0678-06-000-2.png b/Site/static/images/pokemon/0678-06-000-2.png new file mode 100644 index 0000000..febbda9 Binary files /dev/null and b/Site/static/images/pokemon/0678-06-000-2.png differ diff --git a/Site/static/images/pokemon/0678_Meowstic.png b/Site/static/images/pokemon/0678_Meowstic.png deleted file mode 100644 index 051e11c..0000000 Binary files a/Site/static/images/pokemon/0678_Meowstic.png and /dev/null differ diff --git a/Site/static/images/pokemon/0678_Meowstic_(Female).png b/Site/static/images/pokemon/0678_Meowstic_(Female).png deleted file mode 100644 index b997ee6..0000000 Binary files a/Site/static/images/pokemon/0678_Meowstic_(Female).png and /dev/null differ diff --git a/Site/static/images/pokemon/0679-06-000-0.png b/Site/static/images/pokemon/0679-06-000-0.png new file mode 100644 index 0000000..580b451 Binary files /dev/null and b/Site/static/images/pokemon/0679-06-000-0.png differ diff --git a/Site/static/images/pokemon/0679_Honedge.png b/Site/static/images/pokemon/0679_Honedge.png deleted file mode 100644 index 7963626..0000000 Binary files a/Site/static/images/pokemon/0679_Honedge.png and /dev/null differ diff --git a/Site/static/images/pokemon/0680-06-000-0.png b/Site/static/images/pokemon/0680-06-000-0.png new file mode 100644 index 0000000..d026d93 Binary files /dev/null and b/Site/static/images/pokemon/0680-06-000-0.png differ diff --git a/Site/static/images/pokemon/0680_Doublade.png b/Site/static/images/pokemon/0680_Doublade.png deleted file mode 100644 index 1435b80..0000000 Binary files a/Site/static/images/pokemon/0680_Doublade.png and /dev/null differ diff --git a/Site/static/images/pokemon/0681-06-001-0.png b/Site/static/images/pokemon/0681-06-001-0.png new file mode 100644 index 0000000..f99c1ef Binary files /dev/null and b/Site/static/images/pokemon/0681-06-001-0.png differ diff --git a/Site/static/images/pokemon/0681-06-002-0.png b/Site/static/images/pokemon/0681-06-002-0.png new file mode 100644 index 0000000..5b13377 Binary files /dev/null and b/Site/static/images/pokemon/0681-06-002-0.png differ diff --git a/Site/static/images/pokemon/0681_Aegislash.png b/Site/static/images/pokemon/0681_Aegislash.png deleted file mode 100644 index 8ab6d70..0000000 Binary files a/Site/static/images/pokemon/0681_Aegislash.png and /dev/null differ diff --git a/Site/static/images/pokemon/0682-06-000-0.png b/Site/static/images/pokemon/0682-06-000-0.png new file mode 100644 index 0000000..d0ecf11 Binary files /dev/null and b/Site/static/images/pokemon/0682-06-000-0.png differ diff --git a/Site/static/images/pokemon/0682_Spritzee.png b/Site/static/images/pokemon/0682_Spritzee.png deleted file mode 100644 index a768dba..0000000 Binary files a/Site/static/images/pokemon/0682_Spritzee.png and /dev/null differ diff --git a/Site/static/images/pokemon/0683-06-000-0.png b/Site/static/images/pokemon/0683-06-000-0.png new file mode 100644 index 0000000..5c48db6 Binary files /dev/null and b/Site/static/images/pokemon/0683-06-000-0.png differ diff --git a/Site/static/images/pokemon/0683_Aromatisse.png b/Site/static/images/pokemon/0683_Aromatisse.png deleted file mode 100644 index c97a60b..0000000 Binary files a/Site/static/images/pokemon/0683_Aromatisse.png and /dev/null differ diff --git a/Site/static/images/pokemon/0684-06-000-0.png b/Site/static/images/pokemon/0684-06-000-0.png new file mode 100644 index 0000000..eefc029 Binary files /dev/null and b/Site/static/images/pokemon/0684-06-000-0.png differ diff --git a/Site/static/images/pokemon/0684_Swirlix.png b/Site/static/images/pokemon/0684_Swirlix.png deleted file mode 100644 index d9e9267..0000000 Binary files a/Site/static/images/pokemon/0684_Swirlix.png and /dev/null differ diff --git a/Site/static/images/pokemon/0685-06-000-0.png b/Site/static/images/pokemon/0685-06-000-0.png new file mode 100644 index 0000000..5734330 Binary files /dev/null and b/Site/static/images/pokemon/0685-06-000-0.png differ diff --git a/Site/static/images/pokemon/0685_Slurpuff.png b/Site/static/images/pokemon/0685_Slurpuff.png deleted file mode 100644 index 5eda997..0000000 Binary files a/Site/static/images/pokemon/0685_Slurpuff.png and /dev/null differ diff --git a/Site/static/images/pokemon/0686-06-000-0.png b/Site/static/images/pokemon/0686-06-000-0.png new file mode 100644 index 0000000..53fd96a Binary files /dev/null and b/Site/static/images/pokemon/0686-06-000-0.png differ diff --git a/Site/static/images/pokemon/0686_Inkay.png b/Site/static/images/pokemon/0686_Inkay.png deleted file mode 100644 index c301b8c..0000000 Binary files a/Site/static/images/pokemon/0686_Inkay.png and /dev/null differ diff --git a/Site/static/images/pokemon/0687-06-000-0.png b/Site/static/images/pokemon/0687-06-000-0.png new file mode 100644 index 0000000..a6f3adb Binary files /dev/null and b/Site/static/images/pokemon/0687-06-000-0.png differ diff --git a/Site/static/images/pokemon/0687_Malamar.png b/Site/static/images/pokemon/0687_Malamar.png deleted file mode 100644 index 220d484..0000000 Binary files a/Site/static/images/pokemon/0687_Malamar.png and /dev/null differ diff --git a/Site/static/images/pokemon/0688-06-000-0.png b/Site/static/images/pokemon/0688-06-000-0.png new file mode 100644 index 0000000..d14f9fd Binary files /dev/null and b/Site/static/images/pokemon/0688-06-000-0.png differ diff --git a/Site/static/images/pokemon/0688_Binacle.png b/Site/static/images/pokemon/0688_Binacle.png deleted file mode 100644 index 548c754..0000000 Binary files a/Site/static/images/pokemon/0688_Binacle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0689-06-000-0.png b/Site/static/images/pokemon/0689-06-000-0.png new file mode 100644 index 0000000..e0a0526 Binary files /dev/null and b/Site/static/images/pokemon/0689-06-000-0.png differ diff --git a/Site/static/images/pokemon/0689_Barbaracle.png b/Site/static/images/pokemon/0689_Barbaracle.png deleted file mode 100644 index ff9f624..0000000 Binary files a/Site/static/images/pokemon/0689_Barbaracle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0690-06-000-0.png b/Site/static/images/pokemon/0690-06-000-0.png new file mode 100644 index 0000000..0d845fd Binary files /dev/null and b/Site/static/images/pokemon/0690-06-000-0.png differ diff --git a/Site/static/images/pokemon/0690_Skrelp.png b/Site/static/images/pokemon/0690_Skrelp.png deleted file mode 100644 index 1eb4ecf..0000000 Binary files a/Site/static/images/pokemon/0690_Skrelp.png and /dev/null differ diff --git a/Site/static/images/pokemon/0691-06-000-0.png b/Site/static/images/pokemon/0691-06-000-0.png new file mode 100644 index 0000000..0b0087a Binary files /dev/null and b/Site/static/images/pokemon/0691-06-000-0.png differ diff --git a/Site/static/images/pokemon/0691_Dragalge.png b/Site/static/images/pokemon/0691_Dragalge.png deleted file mode 100644 index 4feae5d..0000000 Binary files a/Site/static/images/pokemon/0691_Dragalge.png and /dev/null differ diff --git a/Site/static/images/pokemon/0692-06-000-0.png b/Site/static/images/pokemon/0692-06-000-0.png new file mode 100644 index 0000000..cb6c759 Binary files /dev/null and b/Site/static/images/pokemon/0692-06-000-0.png differ diff --git a/Site/static/images/pokemon/0692_Clauncher.png b/Site/static/images/pokemon/0692_Clauncher.png deleted file mode 100644 index 10fa507..0000000 Binary files a/Site/static/images/pokemon/0692_Clauncher.png and /dev/null differ diff --git a/Site/static/images/pokemon/0693-06-000-0.png b/Site/static/images/pokemon/0693-06-000-0.png new file mode 100644 index 0000000..bc9bb8e Binary files /dev/null and b/Site/static/images/pokemon/0693-06-000-0.png differ diff --git a/Site/static/images/pokemon/0693_Clawitzer.png b/Site/static/images/pokemon/0693_Clawitzer.png deleted file mode 100644 index 3f6a0b3..0000000 Binary files a/Site/static/images/pokemon/0693_Clawitzer.png and /dev/null differ diff --git a/Site/static/images/pokemon/0694-06-000-0.png b/Site/static/images/pokemon/0694-06-000-0.png new file mode 100644 index 0000000..496cd40 Binary files /dev/null and b/Site/static/images/pokemon/0694-06-000-0.png differ diff --git a/Site/static/images/pokemon/0694_Helioptile.png b/Site/static/images/pokemon/0694_Helioptile.png deleted file mode 100644 index e2b2f00..0000000 Binary files a/Site/static/images/pokemon/0694_Helioptile.png and /dev/null differ diff --git a/Site/static/images/pokemon/0695-06-000-0.png b/Site/static/images/pokemon/0695-06-000-0.png new file mode 100644 index 0000000..72fa238 Binary files /dev/null and b/Site/static/images/pokemon/0695-06-000-0.png differ diff --git a/Site/static/images/pokemon/0695_Heliolisk.png b/Site/static/images/pokemon/0695_Heliolisk.png deleted file mode 100644 index a829128..0000000 Binary files a/Site/static/images/pokemon/0695_Heliolisk.png and /dev/null differ diff --git a/Site/static/images/pokemon/0696-06-000-0.png b/Site/static/images/pokemon/0696-06-000-0.png new file mode 100644 index 0000000..5e5f4c8 Binary files /dev/null and b/Site/static/images/pokemon/0696-06-000-0.png differ diff --git a/Site/static/images/pokemon/0696_Tyrunt.png b/Site/static/images/pokemon/0696_Tyrunt.png deleted file mode 100644 index 52ea0ff..0000000 Binary files a/Site/static/images/pokemon/0696_Tyrunt.png and /dev/null differ diff --git a/Site/static/images/pokemon/0697-06-000-0.png b/Site/static/images/pokemon/0697-06-000-0.png new file mode 100644 index 0000000..85d5d93 Binary files /dev/null and b/Site/static/images/pokemon/0697-06-000-0.png differ diff --git a/Site/static/images/pokemon/0697_Tyrantrum.png b/Site/static/images/pokemon/0697_Tyrantrum.png deleted file mode 100644 index 4bf40bd..0000000 Binary files a/Site/static/images/pokemon/0697_Tyrantrum.png and /dev/null differ diff --git a/Site/static/images/pokemon/0698-06-000-0.png b/Site/static/images/pokemon/0698-06-000-0.png new file mode 100644 index 0000000..9aeddf8 Binary files /dev/null and b/Site/static/images/pokemon/0698-06-000-0.png differ diff --git a/Site/static/images/pokemon/0698_Amaura.png b/Site/static/images/pokemon/0698_Amaura.png deleted file mode 100644 index 9b64c85..0000000 Binary files a/Site/static/images/pokemon/0698_Amaura.png and /dev/null differ diff --git a/Site/static/images/pokemon/0699-06-000-0.png b/Site/static/images/pokemon/0699-06-000-0.png new file mode 100644 index 0000000..a806c84 Binary files /dev/null and b/Site/static/images/pokemon/0699-06-000-0.png differ diff --git a/Site/static/images/pokemon/0699_Aurorus.png b/Site/static/images/pokemon/0699_Aurorus.png deleted file mode 100644 index af4af5c..0000000 Binary files a/Site/static/images/pokemon/0699_Aurorus.png and /dev/null differ diff --git a/Site/static/images/pokemon/0700-06-000-0.png b/Site/static/images/pokemon/0700-06-000-0.png new file mode 100644 index 0000000..60effce Binary files /dev/null and b/Site/static/images/pokemon/0700-06-000-0.png differ diff --git a/Site/static/images/pokemon/0700_Sylveon.png b/Site/static/images/pokemon/0700_Sylveon.png deleted file mode 100644 index d9ed576..0000000 Binary files a/Site/static/images/pokemon/0700_Sylveon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0701-06-000-0.png b/Site/static/images/pokemon/0701-06-000-0.png new file mode 100644 index 0000000..04538d3 Binary files /dev/null and b/Site/static/images/pokemon/0701-06-000-0.png differ diff --git a/Site/static/images/pokemon/0701_Hawlucha.png b/Site/static/images/pokemon/0701_Hawlucha.png deleted file mode 100644 index 82067d8..0000000 Binary files a/Site/static/images/pokemon/0701_Hawlucha.png and /dev/null differ diff --git a/Site/static/images/pokemon/0702-06-000-0.png b/Site/static/images/pokemon/0702-06-000-0.png new file mode 100644 index 0000000..25f8525 Binary files /dev/null and b/Site/static/images/pokemon/0702-06-000-0.png differ diff --git a/Site/static/images/pokemon/0702_Dedenne.png b/Site/static/images/pokemon/0702_Dedenne.png deleted file mode 100644 index 55b6b3a..0000000 Binary files a/Site/static/images/pokemon/0702_Dedenne.png and /dev/null differ diff --git a/Site/static/images/pokemon/0703-06-000-0.png b/Site/static/images/pokemon/0703-06-000-0.png new file mode 100644 index 0000000..e88b24d Binary files /dev/null and b/Site/static/images/pokemon/0703-06-000-0.png differ diff --git a/Site/static/images/pokemon/0703_Carbink.png b/Site/static/images/pokemon/0703_Carbink.png deleted file mode 100644 index 3105e4e..0000000 Binary files a/Site/static/images/pokemon/0703_Carbink.png and /dev/null differ diff --git a/Site/static/images/pokemon/0704-06-000-0.png b/Site/static/images/pokemon/0704-06-000-0.png new file mode 100644 index 0000000..3e6d8d7 Binary files /dev/null and b/Site/static/images/pokemon/0704-06-000-0.png differ diff --git a/Site/static/images/pokemon/0704_Goomy.png b/Site/static/images/pokemon/0704_Goomy.png deleted file mode 100644 index 705ef53..0000000 Binary files a/Site/static/images/pokemon/0704_Goomy.png and /dev/null differ diff --git a/Site/static/images/pokemon/0705-06-000-0.png b/Site/static/images/pokemon/0705-06-000-0.png new file mode 100644 index 0000000..6ffea2d Binary files /dev/null and b/Site/static/images/pokemon/0705-06-000-0.png differ diff --git a/Site/static/images/pokemon/0705-06-001-0.png b/Site/static/images/pokemon/0705-06-001-0.png new file mode 100644 index 0000000..8114f3f Binary files /dev/null and b/Site/static/images/pokemon/0705-06-001-0.png differ diff --git a/Site/static/images/pokemon/0705_Sliggoo.png b/Site/static/images/pokemon/0705_Sliggoo.png deleted file mode 100644 index 352bba5..0000000 Binary files a/Site/static/images/pokemon/0705_Sliggoo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0705_Sliggoo_(Hisuian_Form).png b/Site/static/images/pokemon/0705_Sliggoo_(Hisuian_Form).png deleted file mode 100644 index fdfac49..0000000 Binary files a/Site/static/images/pokemon/0705_Sliggoo_(Hisuian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0706-06-000-0.png b/Site/static/images/pokemon/0706-06-000-0.png new file mode 100644 index 0000000..468dc2a Binary files /dev/null and b/Site/static/images/pokemon/0706-06-000-0.png differ diff --git a/Site/static/images/pokemon/0706-06-001-0.png b/Site/static/images/pokemon/0706-06-001-0.png new file mode 100644 index 0000000..7eb27ef Binary files /dev/null and b/Site/static/images/pokemon/0706-06-001-0.png differ diff --git a/Site/static/images/pokemon/0706_Goodra.png b/Site/static/images/pokemon/0706_Goodra.png deleted file mode 100644 index 52701f8..0000000 Binary files a/Site/static/images/pokemon/0706_Goodra.png and /dev/null differ diff --git a/Site/static/images/pokemon/0706_Goodra_(Hisuian_Form).png b/Site/static/images/pokemon/0706_Goodra_(Hisuian_Form).png deleted file mode 100644 index c29b780..0000000 Binary files a/Site/static/images/pokemon/0706_Goodra_(Hisuian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0707-06-000-0.png b/Site/static/images/pokemon/0707-06-000-0.png new file mode 100644 index 0000000..2c90d4c Binary files /dev/null and b/Site/static/images/pokemon/0707-06-000-0.png differ diff --git a/Site/static/images/pokemon/0707_Klefki.png b/Site/static/images/pokemon/0707_Klefki.png deleted file mode 100644 index 192b492..0000000 Binary files a/Site/static/images/pokemon/0707_Klefki.png and /dev/null differ diff --git a/Site/static/images/pokemon/0708-06-000-0.png b/Site/static/images/pokemon/0708-06-000-0.png new file mode 100644 index 0000000..f941b83 Binary files /dev/null and b/Site/static/images/pokemon/0708-06-000-0.png differ diff --git a/Site/static/images/pokemon/0708_Phantump.png b/Site/static/images/pokemon/0708_Phantump.png deleted file mode 100644 index 722b2ec..0000000 Binary files a/Site/static/images/pokemon/0708_Phantump.png and /dev/null differ diff --git a/Site/static/images/pokemon/0709-06-000-0.png b/Site/static/images/pokemon/0709-06-000-0.png new file mode 100644 index 0000000..00d78db Binary files /dev/null and b/Site/static/images/pokemon/0709-06-000-0.png differ diff --git a/Site/static/images/pokemon/0709_Trevenant.png b/Site/static/images/pokemon/0709_Trevenant.png deleted file mode 100644 index c4972d6..0000000 Binary files a/Site/static/images/pokemon/0709_Trevenant.png and /dev/null differ diff --git a/Site/static/images/pokemon/0710-06-001-0.png b/Site/static/images/pokemon/0710-06-001-0.png new file mode 100644 index 0000000..e37a4ff Binary files /dev/null and b/Site/static/images/pokemon/0710-06-001-0.png differ diff --git a/Site/static/images/pokemon/0710-06-002-0.png b/Site/static/images/pokemon/0710-06-002-0.png new file mode 100644 index 0000000..6abaa79 Binary files /dev/null and b/Site/static/images/pokemon/0710-06-002-0.png differ diff --git a/Site/static/images/pokemon/0710-06-003-0.png b/Site/static/images/pokemon/0710-06-003-0.png new file mode 100644 index 0000000..341a6fa Binary files /dev/null and b/Site/static/images/pokemon/0710-06-003-0.png differ diff --git a/Site/static/images/pokemon/0710-06-004-0.png b/Site/static/images/pokemon/0710-06-004-0.png new file mode 100644 index 0000000..57bd6eb Binary files /dev/null and b/Site/static/images/pokemon/0710-06-004-0.png differ diff --git a/Site/static/images/pokemon/0710_Pumpkaboo.png b/Site/static/images/pokemon/0710_Pumpkaboo.png deleted file mode 100644 index 186df99..0000000 Binary files a/Site/static/images/pokemon/0710_Pumpkaboo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0710_Pumpkaboo_(Large_Size).png b/Site/static/images/pokemon/0710_Pumpkaboo_(Large_Size).png deleted file mode 100644 index 3557f94..0000000 Binary files a/Site/static/images/pokemon/0710_Pumpkaboo_(Large_Size).png and /dev/null differ diff --git a/Site/static/images/pokemon/0710_Pumpkaboo_(Small_Size).png b/Site/static/images/pokemon/0710_Pumpkaboo_(Small_Size).png deleted file mode 100644 index cf81442..0000000 Binary files a/Site/static/images/pokemon/0710_Pumpkaboo_(Small_Size).png and /dev/null differ diff --git a/Site/static/images/pokemon/0710_Pumpkaboo_(Super_Size).png b/Site/static/images/pokemon/0710_Pumpkaboo_(Super_Size).png deleted file mode 100644 index 44f255c..0000000 Binary files a/Site/static/images/pokemon/0710_Pumpkaboo_(Super_Size).png and /dev/null differ diff --git a/Site/static/images/pokemon/0711-06-001-0.png b/Site/static/images/pokemon/0711-06-001-0.png new file mode 100644 index 0000000..c5c2b0d Binary files /dev/null and b/Site/static/images/pokemon/0711-06-001-0.png differ diff --git a/Site/static/images/pokemon/0711-06-002-0.png b/Site/static/images/pokemon/0711-06-002-0.png new file mode 100644 index 0000000..5fab58d Binary files /dev/null and b/Site/static/images/pokemon/0711-06-002-0.png differ diff --git a/Site/static/images/pokemon/0711-06-003-0.png b/Site/static/images/pokemon/0711-06-003-0.png new file mode 100644 index 0000000..89e9c1d Binary files /dev/null and b/Site/static/images/pokemon/0711-06-003-0.png differ diff --git a/Site/static/images/pokemon/0711-06-004-0.png b/Site/static/images/pokemon/0711-06-004-0.png new file mode 100644 index 0000000..03e93c8 Binary files /dev/null and b/Site/static/images/pokemon/0711-06-004-0.png differ diff --git a/Site/static/images/pokemon/0711_Gourgeist.png b/Site/static/images/pokemon/0711_Gourgeist.png deleted file mode 100644 index fc1b4f8..0000000 Binary files a/Site/static/images/pokemon/0711_Gourgeist.png and /dev/null differ diff --git a/Site/static/images/pokemon/0711_Gourgeist_(Large_Size).png b/Site/static/images/pokemon/0711_Gourgeist_(Large_Size).png deleted file mode 100644 index 470c98f..0000000 Binary files a/Site/static/images/pokemon/0711_Gourgeist_(Large_Size).png and /dev/null differ diff --git a/Site/static/images/pokemon/0711_Gourgeist_(Small_Size).png b/Site/static/images/pokemon/0711_Gourgeist_(Small_Size).png deleted file mode 100644 index cbea45e..0000000 Binary files a/Site/static/images/pokemon/0711_Gourgeist_(Small_Size).png and /dev/null differ diff --git a/Site/static/images/pokemon/0711_Gourgeist_(Super_Size).png b/Site/static/images/pokemon/0711_Gourgeist_(Super_Size).png deleted file mode 100644 index 692dfb3..0000000 Binary files a/Site/static/images/pokemon/0711_Gourgeist_(Super_Size).png and /dev/null differ diff --git a/Site/static/images/pokemon/0712-06-000-0.png b/Site/static/images/pokemon/0712-06-000-0.png new file mode 100644 index 0000000..ae5d4cc Binary files /dev/null and b/Site/static/images/pokemon/0712-06-000-0.png differ diff --git a/Site/static/images/pokemon/0712_Bergmite.png b/Site/static/images/pokemon/0712_Bergmite.png deleted file mode 100644 index a0c78d3..0000000 Binary files a/Site/static/images/pokemon/0712_Bergmite.png and /dev/null differ diff --git a/Site/static/images/pokemon/0713-06-000-0.png b/Site/static/images/pokemon/0713-06-000-0.png new file mode 100644 index 0000000..116d438 Binary files /dev/null and b/Site/static/images/pokemon/0713-06-000-0.png differ diff --git a/Site/static/images/pokemon/0713-06-001-0.png b/Site/static/images/pokemon/0713-06-001-0.png new file mode 100644 index 0000000..2fe55f2 Binary files /dev/null and b/Site/static/images/pokemon/0713-06-001-0.png differ diff --git a/Site/static/images/pokemon/0713_Avalugg.png b/Site/static/images/pokemon/0713_Avalugg.png deleted file mode 100644 index 2d97aba..0000000 Binary files a/Site/static/images/pokemon/0713_Avalugg.png and /dev/null differ diff --git a/Site/static/images/pokemon/0713_Avalugg_(Hisuian_Form).png b/Site/static/images/pokemon/0713_Avalugg_(Hisuian_Form).png deleted file mode 100644 index e638214..0000000 Binary files a/Site/static/images/pokemon/0713_Avalugg_(Hisuian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0714-06-000-0.png b/Site/static/images/pokemon/0714-06-000-0.png new file mode 100644 index 0000000..9c83240 Binary files /dev/null and b/Site/static/images/pokemon/0714-06-000-0.png differ diff --git a/Site/static/images/pokemon/0714_Noibat.png b/Site/static/images/pokemon/0714_Noibat.png deleted file mode 100644 index 63a9be3..0000000 Binary files a/Site/static/images/pokemon/0714_Noibat.png and /dev/null differ diff --git a/Site/static/images/pokemon/0715-06-000-0.png b/Site/static/images/pokemon/0715-06-000-0.png new file mode 100644 index 0000000..d97ffe3 Binary files /dev/null and b/Site/static/images/pokemon/0715-06-000-0.png differ diff --git a/Site/static/images/pokemon/0715_Noivern.png b/Site/static/images/pokemon/0715_Noivern.png deleted file mode 100644 index da9701e..0000000 Binary files a/Site/static/images/pokemon/0715_Noivern.png and /dev/null differ diff --git a/Site/static/images/pokemon/0716-06-001-0.png b/Site/static/images/pokemon/0716-06-001-0.png new file mode 100644 index 0000000..174a8ec Binary files /dev/null and b/Site/static/images/pokemon/0716-06-001-0.png differ diff --git a/Site/static/images/pokemon/0716-06-002-0.png b/Site/static/images/pokemon/0716-06-002-0.png new file mode 100644 index 0000000..80a41df Binary files /dev/null and b/Site/static/images/pokemon/0716-06-002-0.png differ diff --git a/Site/static/images/pokemon/0716_Xerneas.png b/Site/static/images/pokemon/0716_Xerneas.png deleted file mode 100644 index 49eabea..0000000 Binary files a/Site/static/images/pokemon/0716_Xerneas.png and /dev/null differ diff --git a/Site/static/images/pokemon/0717-06-000-0.png b/Site/static/images/pokemon/0717-06-000-0.png new file mode 100644 index 0000000..5734f24 Binary files /dev/null and b/Site/static/images/pokemon/0717-06-000-0.png differ diff --git a/Site/static/images/pokemon/0717_Yveltal.png b/Site/static/images/pokemon/0717_Yveltal.png deleted file mode 100644 index 7391854..0000000 Binary files a/Site/static/images/pokemon/0717_Yveltal.png and /dev/null differ diff --git a/Site/static/images/pokemon/0718-06-001-0.png b/Site/static/images/pokemon/0718-06-001-0.png new file mode 100644 index 0000000..beebc81 Binary files /dev/null and b/Site/static/images/pokemon/0718-06-001-0.png differ diff --git a/Site/static/images/pokemon/0718-06-002-0.png b/Site/static/images/pokemon/0718-06-002-0.png new file mode 100644 index 0000000..120c80a Binary files /dev/null and b/Site/static/images/pokemon/0718-06-002-0.png differ diff --git a/Site/static/images/pokemon/0718-06-003-0.png b/Site/static/images/pokemon/0718-06-003-0.png new file mode 100644 index 0000000..2a41903 Binary files /dev/null and b/Site/static/images/pokemon/0718-06-003-0.png differ diff --git a/Site/static/images/pokemon/0718_Zygarde.png b/Site/static/images/pokemon/0718_Zygarde.png deleted file mode 100644 index bcd57f0..0000000 Binary files a/Site/static/images/pokemon/0718_Zygarde.png and /dev/null differ diff --git a/Site/static/images/pokemon/0718_Zygarde_(10%_Forme).png b/Site/static/images/pokemon/0718_Zygarde_(10%_Forme).png deleted file mode 100644 index 13185bd..0000000 Binary files a/Site/static/images/pokemon/0718_Zygarde_(10%_Forme).png and /dev/null differ diff --git a/Site/static/images/pokemon/0719-06-000-0.png b/Site/static/images/pokemon/0719-06-000-0.png new file mode 100644 index 0000000..e3f709a Binary files /dev/null and b/Site/static/images/pokemon/0719-06-000-0.png differ diff --git a/Site/static/images/pokemon/0719-06-001-0.png b/Site/static/images/pokemon/0719-06-001-0.png new file mode 100644 index 0000000..5a22fd1 Binary files /dev/null and b/Site/static/images/pokemon/0719-06-001-0.png differ diff --git a/Site/static/images/pokemon/0719_Diancie.png b/Site/static/images/pokemon/0719_Diancie.png deleted file mode 100644 index eba486b..0000000 Binary files a/Site/static/images/pokemon/0719_Diancie.png and /dev/null differ diff --git a/Site/static/images/pokemon/0720-06-001-0.png b/Site/static/images/pokemon/0720-06-001-0.png new file mode 100644 index 0000000..211148e Binary files /dev/null and b/Site/static/images/pokemon/0720-06-001-0.png differ diff --git a/Site/static/images/pokemon/0720-06-002-0.png b/Site/static/images/pokemon/0720-06-002-0.png new file mode 100644 index 0000000..26800c4 Binary files /dev/null and b/Site/static/images/pokemon/0720-06-002-0.png differ diff --git a/Site/static/images/pokemon/0720_Hoopa.png b/Site/static/images/pokemon/0720_Hoopa.png deleted file mode 100644 index aa3bd39..0000000 Binary files a/Site/static/images/pokemon/0720_Hoopa.png and /dev/null differ diff --git a/Site/static/images/pokemon/0720_Hoopa_(Hoopa_Unbound).png b/Site/static/images/pokemon/0720_Hoopa_(Hoopa_Unbound).png deleted file mode 100644 index 2b2983e..0000000 Binary files a/Site/static/images/pokemon/0720_Hoopa_(Hoopa_Unbound).png and /dev/null differ diff --git a/Site/static/images/pokemon/0721-06-000-0.png b/Site/static/images/pokemon/0721-06-000-0.png new file mode 100644 index 0000000..e2d4b57 Binary files /dev/null and b/Site/static/images/pokemon/0721-06-000-0.png differ diff --git a/Site/static/images/pokemon/0721_Volcanion.png b/Site/static/images/pokemon/0721_Volcanion.png deleted file mode 100644 index 2438c6a..0000000 Binary files a/Site/static/images/pokemon/0721_Volcanion.png and /dev/null differ diff --git a/Site/static/images/pokemon/0722-07-000-0.png b/Site/static/images/pokemon/0722-07-000-0.png new file mode 100644 index 0000000..71791bb Binary files /dev/null and b/Site/static/images/pokemon/0722-07-000-0.png differ diff --git a/Site/static/images/pokemon/0722_Rowlet.png b/Site/static/images/pokemon/0722_Rowlet.png deleted file mode 100644 index b05c4c6..0000000 Binary files a/Site/static/images/pokemon/0722_Rowlet.png and /dev/null differ diff --git a/Site/static/images/pokemon/0723-07-000-0.png b/Site/static/images/pokemon/0723-07-000-0.png new file mode 100644 index 0000000..d9f3beb Binary files /dev/null and b/Site/static/images/pokemon/0723-07-000-0.png differ diff --git a/Site/static/images/pokemon/0723_Dartrix.png b/Site/static/images/pokemon/0723_Dartrix.png deleted file mode 100644 index af67b62..0000000 Binary files a/Site/static/images/pokemon/0723_Dartrix.png and /dev/null differ diff --git a/Site/static/images/pokemon/0724-07-000-0.png b/Site/static/images/pokemon/0724-07-000-0.png new file mode 100644 index 0000000..4af83b5 Binary files /dev/null and b/Site/static/images/pokemon/0724-07-000-0.png differ diff --git a/Site/static/images/pokemon/0724-07-001-0.png b/Site/static/images/pokemon/0724-07-001-0.png new file mode 100644 index 0000000..f1e51ab Binary files /dev/null and b/Site/static/images/pokemon/0724-07-001-0.png differ diff --git a/Site/static/images/pokemon/0724_Decidueye.png b/Site/static/images/pokemon/0724_Decidueye.png deleted file mode 100644 index dec78db..0000000 Binary files a/Site/static/images/pokemon/0724_Decidueye.png and /dev/null differ diff --git a/Site/static/images/pokemon/0724_Decidueye_(Hisuian_Form).png b/Site/static/images/pokemon/0724_Decidueye_(Hisuian_Form).png deleted file mode 100644 index e17deed..0000000 Binary files a/Site/static/images/pokemon/0724_Decidueye_(Hisuian_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0725-07-000-0.png b/Site/static/images/pokemon/0725-07-000-0.png new file mode 100644 index 0000000..531a86e Binary files /dev/null and b/Site/static/images/pokemon/0725-07-000-0.png differ diff --git a/Site/static/images/pokemon/0725_Litten.png b/Site/static/images/pokemon/0725_Litten.png deleted file mode 100644 index 1966fe8..0000000 Binary files a/Site/static/images/pokemon/0725_Litten.png and /dev/null differ diff --git a/Site/static/images/pokemon/0726-07-000-0.png b/Site/static/images/pokemon/0726-07-000-0.png new file mode 100644 index 0000000..ab73ed6 Binary files /dev/null and b/Site/static/images/pokemon/0726-07-000-0.png differ diff --git a/Site/static/images/pokemon/0726_Torracat.png b/Site/static/images/pokemon/0726_Torracat.png deleted file mode 100644 index 4845d62..0000000 Binary files a/Site/static/images/pokemon/0726_Torracat.png and /dev/null differ diff --git a/Site/static/images/pokemon/0727-07-000-0.png b/Site/static/images/pokemon/0727-07-000-0.png new file mode 100644 index 0000000..7312f52 Binary files /dev/null and b/Site/static/images/pokemon/0727-07-000-0.png differ diff --git a/Site/static/images/pokemon/0727_Incineroar.png b/Site/static/images/pokemon/0727_Incineroar.png deleted file mode 100644 index ea836ee..0000000 Binary files a/Site/static/images/pokemon/0727_Incineroar.png and /dev/null differ diff --git a/Site/static/images/pokemon/0728-07-000-0.png b/Site/static/images/pokemon/0728-07-000-0.png new file mode 100644 index 0000000..6bcd2f9 Binary files /dev/null and b/Site/static/images/pokemon/0728-07-000-0.png differ diff --git a/Site/static/images/pokemon/0728_Popplio.png b/Site/static/images/pokemon/0728_Popplio.png deleted file mode 100644 index aaaa5df..0000000 Binary files a/Site/static/images/pokemon/0728_Popplio.png and /dev/null differ diff --git a/Site/static/images/pokemon/0729-07-000-0.png b/Site/static/images/pokemon/0729-07-000-0.png new file mode 100644 index 0000000..a148f87 Binary files /dev/null and b/Site/static/images/pokemon/0729-07-000-0.png differ diff --git a/Site/static/images/pokemon/0729_Brionne.png b/Site/static/images/pokemon/0729_Brionne.png deleted file mode 100644 index e74a8d4..0000000 Binary files a/Site/static/images/pokemon/0729_Brionne.png and /dev/null differ diff --git a/Site/static/images/pokemon/0730-07-000-0.png b/Site/static/images/pokemon/0730-07-000-0.png new file mode 100644 index 0000000..cebeb60 Binary files /dev/null and b/Site/static/images/pokemon/0730-07-000-0.png differ diff --git a/Site/static/images/pokemon/0730_Primarina.png b/Site/static/images/pokemon/0730_Primarina.png deleted file mode 100644 index ad162fe..0000000 Binary files a/Site/static/images/pokemon/0730_Primarina.png and /dev/null differ diff --git a/Site/static/images/pokemon/0731-07-000-0.png b/Site/static/images/pokemon/0731-07-000-0.png new file mode 100644 index 0000000..a9a34d7 Binary files /dev/null and b/Site/static/images/pokemon/0731-07-000-0.png differ diff --git a/Site/static/images/pokemon/0731_Pikipek.png b/Site/static/images/pokemon/0731_Pikipek.png deleted file mode 100644 index 3832fb6..0000000 Binary files a/Site/static/images/pokemon/0731_Pikipek.png and /dev/null differ diff --git a/Site/static/images/pokemon/0732-07-000-0.png b/Site/static/images/pokemon/0732-07-000-0.png new file mode 100644 index 0000000..ade3e96 Binary files /dev/null and b/Site/static/images/pokemon/0732-07-000-0.png differ diff --git a/Site/static/images/pokemon/0732_Trumbeak.png b/Site/static/images/pokemon/0732_Trumbeak.png deleted file mode 100644 index 35f2e38..0000000 Binary files a/Site/static/images/pokemon/0732_Trumbeak.png and /dev/null differ diff --git a/Site/static/images/pokemon/0733-07-000-0.png b/Site/static/images/pokemon/0733-07-000-0.png new file mode 100644 index 0000000..6581bd2 Binary files /dev/null and b/Site/static/images/pokemon/0733-07-000-0.png differ diff --git a/Site/static/images/pokemon/0733_Toucannon.png b/Site/static/images/pokemon/0733_Toucannon.png deleted file mode 100644 index 25009ff..0000000 Binary files a/Site/static/images/pokemon/0733_Toucannon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0734-07-000-0.png b/Site/static/images/pokemon/0734-07-000-0.png new file mode 100644 index 0000000..7ae760d Binary files /dev/null and b/Site/static/images/pokemon/0734-07-000-0.png differ diff --git a/Site/static/images/pokemon/0734_Yungoos.png b/Site/static/images/pokemon/0734_Yungoos.png deleted file mode 100644 index b86ec1b..0000000 Binary files a/Site/static/images/pokemon/0734_Yungoos.png and /dev/null differ diff --git a/Site/static/images/pokemon/0735-07-000-0.png b/Site/static/images/pokemon/0735-07-000-0.png new file mode 100644 index 0000000..dfa5a61 Binary files /dev/null and b/Site/static/images/pokemon/0735-07-000-0.png differ diff --git a/Site/static/images/pokemon/0735_Gumshoos.png b/Site/static/images/pokemon/0735_Gumshoos.png deleted file mode 100644 index 546cc64..0000000 Binary files a/Site/static/images/pokemon/0735_Gumshoos.png and /dev/null differ diff --git a/Site/static/images/pokemon/0736-07-000-0.png b/Site/static/images/pokemon/0736-07-000-0.png new file mode 100644 index 0000000..91e6902 Binary files /dev/null and b/Site/static/images/pokemon/0736-07-000-0.png differ diff --git a/Site/static/images/pokemon/0736_Grubbin.png b/Site/static/images/pokemon/0736_Grubbin.png deleted file mode 100644 index 5dac3b4..0000000 Binary files a/Site/static/images/pokemon/0736_Grubbin.png and /dev/null differ diff --git a/Site/static/images/pokemon/0737-07-000-0.png b/Site/static/images/pokemon/0737-07-000-0.png new file mode 100644 index 0000000..47e4ae7 Binary files /dev/null and b/Site/static/images/pokemon/0737-07-000-0.png differ diff --git a/Site/static/images/pokemon/0737_Charjabug.png b/Site/static/images/pokemon/0737_Charjabug.png deleted file mode 100644 index 1951b74..0000000 Binary files a/Site/static/images/pokemon/0737_Charjabug.png and /dev/null differ diff --git a/Site/static/images/pokemon/0738-07-000-0.png b/Site/static/images/pokemon/0738-07-000-0.png new file mode 100644 index 0000000..101cee1 Binary files /dev/null and b/Site/static/images/pokemon/0738-07-000-0.png differ diff --git a/Site/static/images/pokemon/0738_Vikavolt.png b/Site/static/images/pokemon/0738_Vikavolt.png deleted file mode 100644 index 657b2c7..0000000 Binary files a/Site/static/images/pokemon/0738_Vikavolt.png and /dev/null differ diff --git a/Site/static/images/pokemon/0739-07-000-0.png b/Site/static/images/pokemon/0739-07-000-0.png new file mode 100644 index 0000000..5a4973d Binary files /dev/null and b/Site/static/images/pokemon/0739-07-000-0.png differ diff --git a/Site/static/images/pokemon/0739_Crabrawler.png b/Site/static/images/pokemon/0739_Crabrawler.png deleted file mode 100644 index 76455cb..0000000 Binary files a/Site/static/images/pokemon/0739_Crabrawler.png and /dev/null differ diff --git a/Site/static/images/pokemon/0740-07-000-0.png b/Site/static/images/pokemon/0740-07-000-0.png new file mode 100644 index 0000000..9f3a314 Binary files /dev/null and b/Site/static/images/pokemon/0740-07-000-0.png differ diff --git a/Site/static/images/pokemon/0740_Crabominable.png b/Site/static/images/pokemon/0740_Crabominable.png deleted file mode 100644 index d1f5e81..0000000 Binary files a/Site/static/images/pokemon/0740_Crabominable.png and /dev/null differ diff --git a/Site/static/images/pokemon/0741-07-001-0.png b/Site/static/images/pokemon/0741-07-001-0.png new file mode 100644 index 0000000..4973124 Binary files /dev/null and b/Site/static/images/pokemon/0741-07-001-0.png differ diff --git a/Site/static/images/pokemon/0741-07-002-0.png b/Site/static/images/pokemon/0741-07-002-0.png new file mode 100644 index 0000000..7b46304 Binary files /dev/null and b/Site/static/images/pokemon/0741-07-002-0.png differ diff --git a/Site/static/images/pokemon/0741-07-003-0.png b/Site/static/images/pokemon/0741-07-003-0.png new file mode 100644 index 0000000..f970842 Binary files /dev/null and b/Site/static/images/pokemon/0741-07-003-0.png differ diff --git a/Site/static/images/pokemon/0741-07-004-0.png b/Site/static/images/pokemon/0741-07-004-0.png new file mode 100644 index 0000000..c3a2025 Binary files /dev/null and b/Site/static/images/pokemon/0741-07-004-0.png differ diff --git a/Site/static/images/pokemon/0741_Oricorio.png b/Site/static/images/pokemon/0741_Oricorio.png deleted file mode 100644 index 20cb018..0000000 Binary files a/Site/static/images/pokemon/0741_Oricorio.png and /dev/null differ diff --git a/Site/static/images/pokemon/0741_Oricorio_(P'au_Style).png b/Site/static/images/pokemon/0741_Oricorio_(P'au_Style).png deleted file mode 100644 index 6210201..0000000 Binary files a/Site/static/images/pokemon/0741_Oricorio_(P'au_Style).png and /dev/null differ diff --git a/Site/static/images/pokemon/0741_Oricorio_(Pom-pom_Style).png b/Site/static/images/pokemon/0741_Oricorio_(Pom-pom_Style).png deleted file mode 100644 index d1a3533..0000000 Binary files a/Site/static/images/pokemon/0741_Oricorio_(Pom-pom_Style).png and /dev/null differ diff --git a/Site/static/images/pokemon/0741_Oricorio_(Sensu_Style).png b/Site/static/images/pokemon/0741_Oricorio_(Sensu_Style).png deleted file mode 100644 index 67e0ecd..0000000 Binary files a/Site/static/images/pokemon/0741_Oricorio_(Sensu_Style).png and /dev/null differ diff --git a/Site/static/images/pokemon/0742-07-000-0.png b/Site/static/images/pokemon/0742-07-000-0.png new file mode 100644 index 0000000..779c2c8 Binary files /dev/null and b/Site/static/images/pokemon/0742-07-000-0.png differ diff --git a/Site/static/images/pokemon/0742_Cutiefly.png b/Site/static/images/pokemon/0742_Cutiefly.png deleted file mode 100644 index e0335ec..0000000 Binary files a/Site/static/images/pokemon/0742_Cutiefly.png and /dev/null differ diff --git a/Site/static/images/pokemon/0743-07-000-0.png b/Site/static/images/pokemon/0743-07-000-0.png new file mode 100644 index 0000000..97de19b Binary files /dev/null and b/Site/static/images/pokemon/0743-07-000-0.png differ diff --git a/Site/static/images/pokemon/0743_Ribombee.png b/Site/static/images/pokemon/0743_Ribombee.png deleted file mode 100644 index 8be5bd7..0000000 Binary files a/Site/static/images/pokemon/0743_Ribombee.png and /dev/null differ diff --git a/Site/static/images/pokemon/0744-07-000-0.png b/Site/static/images/pokemon/0744-07-000-0.png new file mode 100644 index 0000000..c7effa3 Binary files /dev/null and b/Site/static/images/pokemon/0744-07-000-0.png differ diff --git a/Site/static/images/pokemon/0744_Rockruff.png b/Site/static/images/pokemon/0744_Rockruff.png deleted file mode 100644 index 85e4287..0000000 Binary files a/Site/static/images/pokemon/0744_Rockruff.png and /dev/null differ diff --git a/Site/static/images/pokemon/0745-07-001-0.png b/Site/static/images/pokemon/0745-07-001-0.png new file mode 100644 index 0000000..7797151 Binary files /dev/null and b/Site/static/images/pokemon/0745-07-001-0.png differ diff --git a/Site/static/images/pokemon/0745-07-002-0.png b/Site/static/images/pokemon/0745-07-002-0.png new file mode 100644 index 0000000..0281433 Binary files /dev/null and b/Site/static/images/pokemon/0745-07-002-0.png differ diff --git a/Site/static/images/pokemon/0745-07-003-0.png b/Site/static/images/pokemon/0745-07-003-0.png new file mode 100644 index 0000000..fc7eb8f Binary files /dev/null and b/Site/static/images/pokemon/0745-07-003-0.png differ diff --git a/Site/static/images/pokemon/0745_Lycanroc.png b/Site/static/images/pokemon/0745_Lycanroc.png deleted file mode 100644 index 73c6358..0000000 Binary files a/Site/static/images/pokemon/0745_Lycanroc.png and /dev/null differ diff --git a/Site/static/images/pokemon/0745_Lycanroc_(Dusk_Form).png b/Site/static/images/pokemon/0745_Lycanroc_(Dusk_Form).png deleted file mode 100644 index 1a099ab..0000000 Binary files a/Site/static/images/pokemon/0745_Lycanroc_(Dusk_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0745_Lycanroc_(Midnight_Form).png b/Site/static/images/pokemon/0745_Lycanroc_(Midnight_Form).png deleted file mode 100644 index a3043bf..0000000 Binary files a/Site/static/images/pokemon/0745_Lycanroc_(Midnight_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0746-07-001-0.png b/Site/static/images/pokemon/0746-07-001-0.png new file mode 100644 index 0000000..87b6f4f Binary files /dev/null and b/Site/static/images/pokemon/0746-07-001-0.png differ diff --git a/Site/static/images/pokemon/0746-07-002-0.png b/Site/static/images/pokemon/0746-07-002-0.png new file mode 100644 index 0000000..132a214 Binary files /dev/null and b/Site/static/images/pokemon/0746-07-002-0.png differ diff --git a/Site/static/images/pokemon/0746_Wishiwashi.png b/Site/static/images/pokemon/0746_Wishiwashi.png deleted file mode 100644 index 7a7550e..0000000 Binary files a/Site/static/images/pokemon/0746_Wishiwashi.png and /dev/null differ diff --git a/Site/static/images/pokemon/0747-07-000-0.png b/Site/static/images/pokemon/0747-07-000-0.png new file mode 100644 index 0000000..54b1ec6 Binary files /dev/null and b/Site/static/images/pokemon/0747-07-000-0.png differ diff --git a/Site/static/images/pokemon/0747_Mareanie.png b/Site/static/images/pokemon/0747_Mareanie.png deleted file mode 100644 index 917cc85..0000000 Binary files a/Site/static/images/pokemon/0747_Mareanie.png and /dev/null differ diff --git a/Site/static/images/pokemon/0748-07-000-0.png b/Site/static/images/pokemon/0748-07-000-0.png new file mode 100644 index 0000000..db2fcca Binary files /dev/null and b/Site/static/images/pokemon/0748-07-000-0.png differ diff --git a/Site/static/images/pokemon/0748_Toxapex.png b/Site/static/images/pokemon/0748_Toxapex.png deleted file mode 100644 index 6a3a921..0000000 Binary files a/Site/static/images/pokemon/0748_Toxapex.png and /dev/null differ diff --git a/Site/static/images/pokemon/0749-07-000-0.png b/Site/static/images/pokemon/0749-07-000-0.png new file mode 100644 index 0000000..7c9ca3d Binary files /dev/null and b/Site/static/images/pokemon/0749-07-000-0.png differ diff --git a/Site/static/images/pokemon/0749_Mudbray.png b/Site/static/images/pokemon/0749_Mudbray.png deleted file mode 100644 index 3ddb89f..0000000 Binary files a/Site/static/images/pokemon/0749_Mudbray.png and /dev/null differ diff --git a/Site/static/images/pokemon/0750-07-000-0.png b/Site/static/images/pokemon/0750-07-000-0.png new file mode 100644 index 0000000..4cc074f Binary files /dev/null and b/Site/static/images/pokemon/0750-07-000-0.png differ diff --git a/Site/static/images/pokemon/0750_Mudsdale.png b/Site/static/images/pokemon/0750_Mudsdale.png deleted file mode 100644 index a4f65a7..0000000 Binary files a/Site/static/images/pokemon/0750_Mudsdale.png and /dev/null differ diff --git a/Site/static/images/pokemon/0751-07-000-0.png b/Site/static/images/pokemon/0751-07-000-0.png new file mode 100644 index 0000000..264925f Binary files /dev/null and b/Site/static/images/pokemon/0751-07-000-0.png differ diff --git a/Site/static/images/pokemon/0751_Dewpider.png b/Site/static/images/pokemon/0751_Dewpider.png deleted file mode 100644 index 7ff51f6..0000000 Binary files a/Site/static/images/pokemon/0751_Dewpider.png and /dev/null differ diff --git a/Site/static/images/pokemon/0752-07-000-0.png b/Site/static/images/pokemon/0752-07-000-0.png new file mode 100644 index 0000000..897f534 Binary files /dev/null and b/Site/static/images/pokemon/0752-07-000-0.png differ diff --git a/Site/static/images/pokemon/0752_Araquanid.png b/Site/static/images/pokemon/0752_Araquanid.png deleted file mode 100644 index 42eec80..0000000 Binary files a/Site/static/images/pokemon/0752_Araquanid.png and /dev/null differ diff --git a/Site/static/images/pokemon/0753-07-000-0.png b/Site/static/images/pokemon/0753-07-000-0.png new file mode 100644 index 0000000..0e73d52 Binary files /dev/null and b/Site/static/images/pokemon/0753-07-000-0.png differ diff --git a/Site/static/images/pokemon/0753_Fomantis.png b/Site/static/images/pokemon/0753_Fomantis.png deleted file mode 100644 index d684eed..0000000 Binary files a/Site/static/images/pokemon/0753_Fomantis.png and /dev/null differ diff --git a/Site/static/images/pokemon/0754-07-000-0.png b/Site/static/images/pokemon/0754-07-000-0.png new file mode 100644 index 0000000..e6cd25c Binary files /dev/null and b/Site/static/images/pokemon/0754-07-000-0.png differ diff --git a/Site/static/images/pokemon/0754_Lurantis.png b/Site/static/images/pokemon/0754_Lurantis.png deleted file mode 100644 index a2fb762..0000000 Binary files a/Site/static/images/pokemon/0754_Lurantis.png and /dev/null differ diff --git a/Site/static/images/pokemon/0755-07-000-0.png b/Site/static/images/pokemon/0755-07-000-0.png new file mode 100644 index 0000000..78c7d15 Binary files /dev/null and b/Site/static/images/pokemon/0755-07-000-0.png differ diff --git a/Site/static/images/pokemon/0755_Morelull.png b/Site/static/images/pokemon/0755_Morelull.png deleted file mode 100644 index cc45923..0000000 Binary files a/Site/static/images/pokemon/0755_Morelull.png and /dev/null differ diff --git a/Site/static/images/pokemon/0756-07-000-0.png b/Site/static/images/pokemon/0756-07-000-0.png new file mode 100644 index 0000000..7e0bab6 Binary files /dev/null and b/Site/static/images/pokemon/0756-07-000-0.png differ diff --git a/Site/static/images/pokemon/0756_Shiinotic.png b/Site/static/images/pokemon/0756_Shiinotic.png deleted file mode 100644 index 41c5076..0000000 Binary files a/Site/static/images/pokemon/0756_Shiinotic.png and /dev/null differ diff --git a/Site/static/images/pokemon/0757-07-000-0.png b/Site/static/images/pokemon/0757-07-000-0.png new file mode 100644 index 0000000..ce5d669 Binary files /dev/null and b/Site/static/images/pokemon/0757-07-000-0.png differ diff --git a/Site/static/images/pokemon/0757_Salandit.png b/Site/static/images/pokemon/0757_Salandit.png deleted file mode 100644 index 623685f..0000000 Binary files a/Site/static/images/pokemon/0757_Salandit.png and /dev/null differ diff --git a/Site/static/images/pokemon/0758-07-000-0.png b/Site/static/images/pokemon/0758-07-000-0.png new file mode 100644 index 0000000..3b75ff2 Binary files /dev/null and b/Site/static/images/pokemon/0758-07-000-0.png differ diff --git a/Site/static/images/pokemon/0758_Salazzle.png b/Site/static/images/pokemon/0758_Salazzle.png deleted file mode 100644 index c2a5d11..0000000 Binary files a/Site/static/images/pokemon/0758_Salazzle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0759-07-000-0.png b/Site/static/images/pokemon/0759-07-000-0.png new file mode 100644 index 0000000..4d9ae9f Binary files /dev/null and b/Site/static/images/pokemon/0759-07-000-0.png differ diff --git a/Site/static/images/pokemon/0759_Stufful.png b/Site/static/images/pokemon/0759_Stufful.png deleted file mode 100644 index e644ac2..0000000 Binary files a/Site/static/images/pokemon/0759_Stufful.png and /dev/null differ diff --git a/Site/static/images/pokemon/0760-07-000-0.png b/Site/static/images/pokemon/0760-07-000-0.png new file mode 100644 index 0000000..955c0d6 Binary files /dev/null and b/Site/static/images/pokemon/0760-07-000-0.png differ diff --git a/Site/static/images/pokemon/0760_Bewear.png b/Site/static/images/pokemon/0760_Bewear.png deleted file mode 100644 index 30de72a..0000000 Binary files a/Site/static/images/pokemon/0760_Bewear.png and /dev/null differ diff --git a/Site/static/images/pokemon/0761-07-000-0.png b/Site/static/images/pokemon/0761-07-000-0.png new file mode 100644 index 0000000..90aded2 Binary files /dev/null and b/Site/static/images/pokemon/0761-07-000-0.png differ diff --git a/Site/static/images/pokemon/0761_Bounsweet.png b/Site/static/images/pokemon/0761_Bounsweet.png deleted file mode 100644 index 4b67680..0000000 Binary files a/Site/static/images/pokemon/0761_Bounsweet.png and /dev/null differ diff --git a/Site/static/images/pokemon/0762-07-000-0.png b/Site/static/images/pokemon/0762-07-000-0.png new file mode 100644 index 0000000..6e0c79d Binary files /dev/null and b/Site/static/images/pokemon/0762-07-000-0.png differ diff --git a/Site/static/images/pokemon/0762_Steenee.png b/Site/static/images/pokemon/0762_Steenee.png deleted file mode 100644 index 2e3ad62..0000000 Binary files a/Site/static/images/pokemon/0762_Steenee.png and /dev/null differ diff --git a/Site/static/images/pokemon/0763-07-000-0.png b/Site/static/images/pokemon/0763-07-000-0.png new file mode 100644 index 0000000..6a0146c Binary files /dev/null and b/Site/static/images/pokemon/0763-07-000-0.png differ diff --git a/Site/static/images/pokemon/0763_Tsareena.png b/Site/static/images/pokemon/0763_Tsareena.png deleted file mode 100644 index 9220c5e..0000000 Binary files a/Site/static/images/pokemon/0763_Tsareena.png and /dev/null differ diff --git a/Site/static/images/pokemon/0764-07-000-0.png b/Site/static/images/pokemon/0764-07-000-0.png new file mode 100644 index 0000000..091221c Binary files /dev/null and b/Site/static/images/pokemon/0764-07-000-0.png differ diff --git a/Site/static/images/pokemon/0764_Comfey.png b/Site/static/images/pokemon/0764_Comfey.png deleted file mode 100644 index da65f6b..0000000 Binary files a/Site/static/images/pokemon/0764_Comfey.png and /dev/null differ diff --git a/Site/static/images/pokemon/0765-07-000-0.png b/Site/static/images/pokemon/0765-07-000-0.png new file mode 100644 index 0000000..a9c3b7b Binary files /dev/null and b/Site/static/images/pokemon/0765-07-000-0.png differ diff --git a/Site/static/images/pokemon/0765_Oranguru.png b/Site/static/images/pokemon/0765_Oranguru.png deleted file mode 100644 index 712369e..0000000 Binary files a/Site/static/images/pokemon/0765_Oranguru.png and /dev/null differ diff --git a/Site/static/images/pokemon/0766-07-000-0.png b/Site/static/images/pokemon/0766-07-000-0.png new file mode 100644 index 0000000..d814e50 Binary files /dev/null and b/Site/static/images/pokemon/0766-07-000-0.png differ diff --git a/Site/static/images/pokemon/0766_Passimian.png b/Site/static/images/pokemon/0766_Passimian.png deleted file mode 100644 index 1588eda..0000000 Binary files a/Site/static/images/pokemon/0766_Passimian.png and /dev/null differ diff --git a/Site/static/images/pokemon/0767-07-000-0.png b/Site/static/images/pokemon/0767-07-000-0.png new file mode 100644 index 0000000..cac596e Binary files /dev/null and b/Site/static/images/pokemon/0767-07-000-0.png differ diff --git a/Site/static/images/pokemon/0767_Wimpod.png b/Site/static/images/pokemon/0767_Wimpod.png deleted file mode 100644 index d797386..0000000 Binary files a/Site/static/images/pokemon/0767_Wimpod.png and /dev/null differ diff --git a/Site/static/images/pokemon/0768-07-000-0.png b/Site/static/images/pokemon/0768-07-000-0.png new file mode 100644 index 0000000..1729cb9 Binary files /dev/null and b/Site/static/images/pokemon/0768-07-000-0.png differ diff --git a/Site/static/images/pokemon/0768_Golisopod.png b/Site/static/images/pokemon/0768_Golisopod.png deleted file mode 100644 index 1bff9e5..0000000 Binary files a/Site/static/images/pokemon/0768_Golisopod.png and /dev/null differ diff --git a/Site/static/images/pokemon/0769-07-000-0.png b/Site/static/images/pokemon/0769-07-000-0.png new file mode 100644 index 0000000..a474589 Binary files /dev/null and b/Site/static/images/pokemon/0769-07-000-0.png differ diff --git a/Site/static/images/pokemon/0769_Sandygast.png b/Site/static/images/pokemon/0769_Sandygast.png deleted file mode 100644 index 07ffd52..0000000 Binary files a/Site/static/images/pokemon/0769_Sandygast.png and /dev/null differ diff --git a/Site/static/images/pokemon/0770-07-000-0.png b/Site/static/images/pokemon/0770-07-000-0.png new file mode 100644 index 0000000..1196cc5 Binary files /dev/null and b/Site/static/images/pokemon/0770-07-000-0.png differ diff --git a/Site/static/images/pokemon/0770_Palossand.png b/Site/static/images/pokemon/0770_Palossand.png deleted file mode 100644 index e31a6be..0000000 Binary files a/Site/static/images/pokemon/0770_Palossand.png and /dev/null differ diff --git a/Site/static/images/pokemon/0771-07-000-0.png b/Site/static/images/pokemon/0771-07-000-0.png new file mode 100644 index 0000000..7648efc Binary files /dev/null and b/Site/static/images/pokemon/0771-07-000-0.png differ diff --git a/Site/static/images/pokemon/0771_Pyukumuku.png b/Site/static/images/pokemon/0771_Pyukumuku.png deleted file mode 100644 index c626959..0000000 Binary files a/Site/static/images/pokemon/0771_Pyukumuku.png and /dev/null differ diff --git a/Site/static/images/pokemon/0772-07-000-0.png b/Site/static/images/pokemon/0772-07-000-0.png new file mode 100644 index 0000000..23c28c7 Binary files /dev/null and b/Site/static/images/pokemon/0772-07-000-0.png differ diff --git a/Site/static/images/pokemon/0772_Typecolon_Null.png b/Site/static/images/pokemon/0772_Typecolon_Null.png deleted file mode 100644 index af65a7f..0000000 Binary files a/Site/static/images/pokemon/0772_Typecolon_Null.png and /dev/null differ diff --git a/Site/static/images/pokemon/0773-07-001-0.png b/Site/static/images/pokemon/0773-07-001-0.png new file mode 100644 index 0000000..769c0f8 Binary files /dev/null and b/Site/static/images/pokemon/0773-07-001-0.png differ diff --git a/Site/static/images/pokemon/0773-07-002-0.png b/Site/static/images/pokemon/0773-07-002-0.png new file mode 100644 index 0000000..38f074b Binary files /dev/null and b/Site/static/images/pokemon/0773-07-002-0.png differ diff --git a/Site/static/images/pokemon/0773-07-003-0.png b/Site/static/images/pokemon/0773-07-003-0.png new file mode 100644 index 0000000..4567713 Binary files /dev/null and b/Site/static/images/pokemon/0773-07-003-0.png differ diff --git a/Site/static/images/pokemon/0773-07-004-0.png b/Site/static/images/pokemon/0773-07-004-0.png new file mode 100644 index 0000000..7ddbad2 Binary files /dev/null and b/Site/static/images/pokemon/0773-07-004-0.png differ diff --git a/Site/static/images/pokemon/0773-07-005-0.png b/Site/static/images/pokemon/0773-07-005-0.png new file mode 100644 index 0000000..969a4d2 Binary files /dev/null and b/Site/static/images/pokemon/0773-07-005-0.png differ diff --git a/Site/static/images/pokemon/0773-07-006-0.png b/Site/static/images/pokemon/0773-07-006-0.png new file mode 100644 index 0000000..6360a65 Binary files /dev/null and b/Site/static/images/pokemon/0773-07-006-0.png differ diff --git a/Site/static/images/pokemon/0773-07-007-0.png b/Site/static/images/pokemon/0773-07-007-0.png new file mode 100644 index 0000000..a7501c4 Binary files /dev/null and b/Site/static/images/pokemon/0773-07-007-0.png differ diff --git a/Site/static/images/pokemon/0773-07-008-0.png b/Site/static/images/pokemon/0773-07-008-0.png new file mode 100644 index 0000000..d9a683f Binary files /dev/null and b/Site/static/images/pokemon/0773-07-008-0.png differ diff --git a/Site/static/images/pokemon/0773-07-009-0.png b/Site/static/images/pokemon/0773-07-009-0.png new file mode 100644 index 0000000..09eee2f Binary files /dev/null and b/Site/static/images/pokemon/0773-07-009-0.png differ diff --git a/Site/static/images/pokemon/0773-07-010-0.png b/Site/static/images/pokemon/0773-07-010-0.png new file mode 100644 index 0000000..db153b1 Binary files /dev/null and b/Site/static/images/pokemon/0773-07-010-0.png differ diff --git a/Site/static/images/pokemon/0773-07-011-0.png b/Site/static/images/pokemon/0773-07-011-0.png new file mode 100644 index 0000000..2cde86c Binary files /dev/null and b/Site/static/images/pokemon/0773-07-011-0.png differ diff --git a/Site/static/images/pokemon/0773-07-012-0.png b/Site/static/images/pokemon/0773-07-012-0.png new file mode 100644 index 0000000..3c60817 Binary files /dev/null and b/Site/static/images/pokemon/0773-07-012-0.png differ diff --git a/Site/static/images/pokemon/0773-07-013-0.png b/Site/static/images/pokemon/0773-07-013-0.png new file mode 100644 index 0000000..c8f71d1 Binary files /dev/null and b/Site/static/images/pokemon/0773-07-013-0.png differ diff --git a/Site/static/images/pokemon/0773-07-014-0.png b/Site/static/images/pokemon/0773-07-014-0.png new file mode 100644 index 0000000..286cb87 Binary files /dev/null and b/Site/static/images/pokemon/0773-07-014-0.png differ diff --git a/Site/static/images/pokemon/0773-07-015-0.png b/Site/static/images/pokemon/0773-07-015-0.png new file mode 100644 index 0000000..01184ad Binary files /dev/null and b/Site/static/images/pokemon/0773-07-015-0.png differ diff --git a/Site/static/images/pokemon/0773-07-016-0.png b/Site/static/images/pokemon/0773-07-016-0.png new file mode 100644 index 0000000..e7e30f1 Binary files /dev/null and b/Site/static/images/pokemon/0773-07-016-0.png differ diff --git a/Site/static/images/pokemon/0773-07-017-0.png b/Site/static/images/pokemon/0773-07-017-0.png new file mode 100644 index 0000000..a7a4644 Binary files /dev/null and b/Site/static/images/pokemon/0773-07-017-0.png differ diff --git a/Site/static/images/pokemon/0773-07-018-0.png b/Site/static/images/pokemon/0773-07-018-0.png new file mode 100644 index 0000000..4f37ac7 Binary files /dev/null and b/Site/static/images/pokemon/0773-07-018-0.png differ diff --git a/Site/static/images/pokemon/0773_Silvally.png b/Site/static/images/pokemon/0773_Silvally.png deleted file mode 100644 index 0a5e00f..0000000 Binary files a/Site/static/images/pokemon/0773_Silvally.png and /dev/null differ diff --git a/Site/static/images/pokemon/0774-07-001-0.png b/Site/static/images/pokemon/0774-07-001-0.png new file mode 100644 index 0000000..c3c0730 Binary files /dev/null and b/Site/static/images/pokemon/0774-07-001-0.png differ diff --git a/Site/static/images/pokemon/0774-07-002-0.png b/Site/static/images/pokemon/0774-07-002-0.png new file mode 100644 index 0000000..28d44fa Binary files /dev/null and b/Site/static/images/pokemon/0774-07-002-0.png differ diff --git a/Site/static/images/pokemon/0774-07-003-0.png b/Site/static/images/pokemon/0774-07-003-0.png new file mode 100644 index 0000000..592a0ec Binary files /dev/null and b/Site/static/images/pokemon/0774-07-003-0.png differ diff --git a/Site/static/images/pokemon/0774-07-004-0.png b/Site/static/images/pokemon/0774-07-004-0.png new file mode 100644 index 0000000..e1c895b Binary files /dev/null and b/Site/static/images/pokemon/0774-07-004-0.png differ diff --git a/Site/static/images/pokemon/0774-07-005-0.png b/Site/static/images/pokemon/0774-07-005-0.png new file mode 100644 index 0000000..105f010 Binary files /dev/null and b/Site/static/images/pokemon/0774-07-005-0.png differ diff --git a/Site/static/images/pokemon/0774-07-006-0.png b/Site/static/images/pokemon/0774-07-006-0.png new file mode 100644 index 0000000..ae209e6 Binary files /dev/null and b/Site/static/images/pokemon/0774-07-006-0.png differ diff --git a/Site/static/images/pokemon/0774-07-007-0.png b/Site/static/images/pokemon/0774-07-007-0.png new file mode 100644 index 0000000..a255fae Binary files /dev/null and b/Site/static/images/pokemon/0774-07-007-0.png differ diff --git a/Site/static/images/pokemon/0774-07-008-0.png b/Site/static/images/pokemon/0774-07-008-0.png new file mode 100644 index 0000000..967b373 Binary files /dev/null and b/Site/static/images/pokemon/0774-07-008-0.png differ diff --git a/Site/static/images/pokemon/0774_Minior_(Blue_Core).png b/Site/static/images/pokemon/0774_Minior_(Blue_Core).png deleted file mode 100644 index 068c15d..0000000 Binary files a/Site/static/images/pokemon/0774_Minior_(Blue_Core).png and /dev/null differ diff --git a/Site/static/images/pokemon/0774_Minior_(Green_Core).png b/Site/static/images/pokemon/0774_Minior_(Green_Core).png deleted file mode 100644 index 7f4b5f3..0000000 Binary files a/Site/static/images/pokemon/0774_Minior_(Green_Core).png and /dev/null differ diff --git a/Site/static/images/pokemon/0774_Minior_(Indigo_Core).png b/Site/static/images/pokemon/0774_Minior_(Indigo_Core).png deleted file mode 100644 index ecc40fd..0000000 Binary files a/Site/static/images/pokemon/0774_Minior_(Indigo_Core).png and /dev/null differ diff --git a/Site/static/images/pokemon/0774_Minior_(Orange_Core).png b/Site/static/images/pokemon/0774_Minior_(Orange_Core).png deleted file mode 100644 index e906dd9..0000000 Binary files a/Site/static/images/pokemon/0774_Minior_(Orange_Core).png and /dev/null differ diff --git a/Site/static/images/pokemon/0774_Minior_(Violet_Core).png b/Site/static/images/pokemon/0774_Minior_(Violet_Core).png deleted file mode 100644 index e820d14..0000000 Binary files a/Site/static/images/pokemon/0774_Minior_(Violet_Core).png and /dev/null differ diff --git a/Site/static/images/pokemon/0774_Minior_(Yellow_Core).png b/Site/static/images/pokemon/0774_Minior_(Yellow_Core).png deleted file mode 100644 index bab5af4..0000000 Binary files a/Site/static/images/pokemon/0774_Minior_(Yellow_Core).png and /dev/null differ diff --git a/Site/static/images/pokemon/0775-07-000-0.png b/Site/static/images/pokemon/0775-07-000-0.png new file mode 100644 index 0000000..dbf6e78 Binary files /dev/null and b/Site/static/images/pokemon/0775-07-000-0.png differ diff --git a/Site/static/images/pokemon/0775_Komala.png b/Site/static/images/pokemon/0775_Komala.png deleted file mode 100644 index 07a1340..0000000 Binary files a/Site/static/images/pokemon/0775_Komala.png and /dev/null differ diff --git a/Site/static/images/pokemon/0776-07-000-0.png b/Site/static/images/pokemon/0776-07-000-0.png new file mode 100644 index 0000000..8f0bd8e Binary files /dev/null and b/Site/static/images/pokemon/0776-07-000-0.png differ diff --git a/Site/static/images/pokemon/0776_Turtonator.png b/Site/static/images/pokemon/0776_Turtonator.png deleted file mode 100644 index 75db897..0000000 Binary files a/Site/static/images/pokemon/0776_Turtonator.png and /dev/null differ diff --git a/Site/static/images/pokemon/0777-07-000-0.png b/Site/static/images/pokemon/0777-07-000-0.png new file mode 100644 index 0000000..9c9baa7 Binary files /dev/null and b/Site/static/images/pokemon/0777-07-000-0.png differ diff --git a/Site/static/images/pokemon/0777_Togedemaru.png b/Site/static/images/pokemon/0777_Togedemaru.png deleted file mode 100644 index 9478b7a..0000000 Binary files a/Site/static/images/pokemon/0777_Togedemaru.png and /dev/null differ diff --git a/Site/static/images/pokemon/0778-07-000-0.png b/Site/static/images/pokemon/0778-07-000-0.png new file mode 100644 index 0000000..ba68637 Binary files /dev/null and b/Site/static/images/pokemon/0778-07-000-0.png differ diff --git a/Site/static/images/pokemon/0778-07-001-0.png b/Site/static/images/pokemon/0778-07-001-0.png new file mode 100644 index 0000000..e03a2a1 Binary files /dev/null and b/Site/static/images/pokemon/0778-07-001-0.png differ diff --git a/Site/static/images/pokemon/0778_Mimikyu.png b/Site/static/images/pokemon/0778_Mimikyu.png deleted file mode 100644 index 4759589..0000000 Binary files a/Site/static/images/pokemon/0778_Mimikyu.png and /dev/null differ diff --git a/Site/static/images/pokemon/0779-07-000-0.png b/Site/static/images/pokemon/0779-07-000-0.png new file mode 100644 index 0000000..ba38f80 Binary files /dev/null and b/Site/static/images/pokemon/0779-07-000-0.png differ diff --git a/Site/static/images/pokemon/0779_Bruxish.png b/Site/static/images/pokemon/0779_Bruxish.png deleted file mode 100644 index 0ecda8b..0000000 Binary files a/Site/static/images/pokemon/0779_Bruxish.png and /dev/null differ diff --git a/Site/static/images/pokemon/0780-07-000-0.png b/Site/static/images/pokemon/0780-07-000-0.png new file mode 100644 index 0000000..1194453 Binary files /dev/null and b/Site/static/images/pokemon/0780-07-000-0.png differ diff --git a/Site/static/images/pokemon/0780_Drampa.png b/Site/static/images/pokemon/0780_Drampa.png deleted file mode 100644 index 109488e..0000000 Binary files a/Site/static/images/pokemon/0780_Drampa.png and /dev/null differ diff --git a/Site/static/images/pokemon/0781-07-000-0.png b/Site/static/images/pokemon/0781-07-000-0.png new file mode 100644 index 0000000..2d34b5e Binary files /dev/null and b/Site/static/images/pokemon/0781-07-000-0.png differ diff --git a/Site/static/images/pokemon/0781_Dhelmise.png b/Site/static/images/pokemon/0781_Dhelmise.png deleted file mode 100644 index b270551..0000000 Binary files a/Site/static/images/pokemon/0781_Dhelmise.png and /dev/null differ diff --git a/Site/static/images/pokemon/0782-07-000-0.png b/Site/static/images/pokemon/0782-07-000-0.png new file mode 100644 index 0000000..5095168 Binary files /dev/null and b/Site/static/images/pokemon/0782-07-000-0.png differ diff --git a/Site/static/images/pokemon/0782_Jangmo-o.png b/Site/static/images/pokemon/0782_Jangmo-o.png deleted file mode 100644 index 3801e98..0000000 Binary files a/Site/static/images/pokemon/0782_Jangmo-o.png and /dev/null differ diff --git a/Site/static/images/pokemon/0783-07-000-0.png b/Site/static/images/pokemon/0783-07-000-0.png new file mode 100644 index 0000000..8c3ebae Binary files /dev/null and b/Site/static/images/pokemon/0783-07-000-0.png differ diff --git a/Site/static/images/pokemon/0783_Hakamo-o.png b/Site/static/images/pokemon/0783_Hakamo-o.png deleted file mode 100644 index c4d984e..0000000 Binary files a/Site/static/images/pokemon/0783_Hakamo-o.png and /dev/null differ diff --git a/Site/static/images/pokemon/0784-07-000-0.png b/Site/static/images/pokemon/0784-07-000-0.png new file mode 100644 index 0000000..aa3d2b5 Binary files /dev/null and b/Site/static/images/pokemon/0784-07-000-0.png differ diff --git a/Site/static/images/pokemon/0784_Kommo-o.png b/Site/static/images/pokemon/0784_Kommo-o.png deleted file mode 100644 index d16c817..0000000 Binary files a/Site/static/images/pokemon/0784_Kommo-o.png and /dev/null differ diff --git a/Site/static/images/pokemon/0785-07-000-0.png b/Site/static/images/pokemon/0785-07-000-0.png new file mode 100644 index 0000000..e247c15 Binary files /dev/null and b/Site/static/images/pokemon/0785-07-000-0.png differ diff --git a/Site/static/images/pokemon/0785_Tapu_Koko.png b/Site/static/images/pokemon/0785_Tapu_Koko.png deleted file mode 100644 index 298fd3f..0000000 Binary files a/Site/static/images/pokemon/0785_Tapu_Koko.png and /dev/null differ diff --git a/Site/static/images/pokemon/0786-07-000-0.png b/Site/static/images/pokemon/0786-07-000-0.png new file mode 100644 index 0000000..9749132 Binary files /dev/null and b/Site/static/images/pokemon/0786-07-000-0.png differ diff --git a/Site/static/images/pokemon/0786_Tapu_Lele.png b/Site/static/images/pokemon/0786_Tapu_Lele.png deleted file mode 100644 index 891105a..0000000 Binary files a/Site/static/images/pokemon/0786_Tapu_Lele.png and /dev/null differ diff --git a/Site/static/images/pokemon/0787-07-000-0.png b/Site/static/images/pokemon/0787-07-000-0.png new file mode 100644 index 0000000..7f7b48f Binary files /dev/null and b/Site/static/images/pokemon/0787-07-000-0.png differ diff --git a/Site/static/images/pokemon/0787_Tapu_Bulu.png b/Site/static/images/pokemon/0787_Tapu_Bulu.png deleted file mode 100644 index d161caa..0000000 Binary files a/Site/static/images/pokemon/0787_Tapu_Bulu.png and /dev/null differ diff --git a/Site/static/images/pokemon/0788-07-000-0.png b/Site/static/images/pokemon/0788-07-000-0.png new file mode 100644 index 0000000..f67c91d Binary files /dev/null and b/Site/static/images/pokemon/0788-07-000-0.png differ diff --git a/Site/static/images/pokemon/0788_Tapu_Fini.png b/Site/static/images/pokemon/0788_Tapu_Fini.png deleted file mode 100644 index bbb6ed4..0000000 Binary files a/Site/static/images/pokemon/0788_Tapu_Fini.png and /dev/null differ diff --git a/Site/static/images/pokemon/0789-07-000-0.png b/Site/static/images/pokemon/0789-07-000-0.png new file mode 100644 index 0000000..6cdacd7 Binary files /dev/null and b/Site/static/images/pokemon/0789-07-000-0.png differ diff --git a/Site/static/images/pokemon/0789_Cosmog.png b/Site/static/images/pokemon/0789_Cosmog.png deleted file mode 100644 index df45708..0000000 Binary files a/Site/static/images/pokemon/0789_Cosmog.png and /dev/null differ diff --git a/Site/static/images/pokemon/0790-07-000-0.png b/Site/static/images/pokemon/0790-07-000-0.png new file mode 100644 index 0000000..7d2ba61 Binary files /dev/null and b/Site/static/images/pokemon/0790-07-000-0.png differ diff --git a/Site/static/images/pokemon/0790_Cosmoem.png b/Site/static/images/pokemon/0790_Cosmoem.png deleted file mode 100644 index 1b2d703..0000000 Binary files a/Site/static/images/pokemon/0790_Cosmoem.png and /dev/null differ diff --git a/Site/static/images/pokemon/0791-07-000-0.png b/Site/static/images/pokemon/0791-07-000-0.png new file mode 100644 index 0000000..cbbd842 Binary files /dev/null and b/Site/static/images/pokemon/0791-07-000-0.png differ diff --git a/Site/static/images/pokemon/0791_Solgaleo.png b/Site/static/images/pokemon/0791_Solgaleo.png deleted file mode 100644 index f8fc995..0000000 Binary files a/Site/static/images/pokemon/0791_Solgaleo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0792-07-000-0.png b/Site/static/images/pokemon/0792-07-000-0.png new file mode 100644 index 0000000..a9183ac Binary files /dev/null and b/Site/static/images/pokemon/0792-07-000-0.png differ diff --git a/Site/static/images/pokemon/0792_Lunala.png b/Site/static/images/pokemon/0792_Lunala.png deleted file mode 100644 index 1ce16fb..0000000 Binary files a/Site/static/images/pokemon/0792_Lunala.png and /dev/null differ diff --git a/Site/static/images/pokemon/0793-07-000-0.png b/Site/static/images/pokemon/0793-07-000-0.png new file mode 100644 index 0000000..6b99d98 Binary files /dev/null and b/Site/static/images/pokemon/0793-07-000-0.png differ diff --git a/Site/static/images/pokemon/0793_Nihilego.png b/Site/static/images/pokemon/0793_Nihilego.png deleted file mode 100644 index f54fef7..0000000 Binary files a/Site/static/images/pokemon/0793_Nihilego.png and /dev/null differ diff --git a/Site/static/images/pokemon/0794-07-000-0.png b/Site/static/images/pokemon/0794-07-000-0.png new file mode 100644 index 0000000..4d73168 Binary files /dev/null and b/Site/static/images/pokemon/0794-07-000-0.png differ diff --git a/Site/static/images/pokemon/0794_Buzzwole.png b/Site/static/images/pokemon/0794_Buzzwole.png deleted file mode 100644 index 707a43a..0000000 Binary files a/Site/static/images/pokemon/0794_Buzzwole.png and /dev/null differ diff --git a/Site/static/images/pokemon/0795-07-000-0.png b/Site/static/images/pokemon/0795-07-000-0.png new file mode 100644 index 0000000..1a56eb6 Binary files /dev/null and b/Site/static/images/pokemon/0795-07-000-0.png differ diff --git a/Site/static/images/pokemon/0795_Pheromosa.png b/Site/static/images/pokemon/0795_Pheromosa.png deleted file mode 100644 index d2b3b88..0000000 Binary files a/Site/static/images/pokemon/0795_Pheromosa.png and /dev/null differ diff --git a/Site/static/images/pokemon/0796-07-000-0.png b/Site/static/images/pokemon/0796-07-000-0.png new file mode 100644 index 0000000..96b645b Binary files /dev/null and b/Site/static/images/pokemon/0796-07-000-0.png differ diff --git a/Site/static/images/pokemon/0796_Xurkitree.png b/Site/static/images/pokemon/0796_Xurkitree.png deleted file mode 100644 index 1c46748..0000000 Binary files a/Site/static/images/pokemon/0796_Xurkitree.png and /dev/null differ diff --git a/Site/static/images/pokemon/0797-07-000-0.png b/Site/static/images/pokemon/0797-07-000-0.png new file mode 100644 index 0000000..6b64d01 Binary files /dev/null and b/Site/static/images/pokemon/0797-07-000-0.png differ diff --git a/Site/static/images/pokemon/0797_Celesteela.png b/Site/static/images/pokemon/0797_Celesteela.png deleted file mode 100644 index f4c28cb..0000000 Binary files a/Site/static/images/pokemon/0797_Celesteela.png and /dev/null differ diff --git a/Site/static/images/pokemon/0798-07-000-0.png b/Site/static/images/pokemon/0798-07-000-0.png new file mode 100644 index 0000000..e66306f Binary files /dev/null and b/Site/static/images/pokemon/0798-07-000-0.png differ diff --git a/Site/static/images/pokemon/0798_Kartana.png b/Site/static/images/pokemon/0798_Kartana.png deleted file mode 100644 index 845d0fd..0000000 Binary files a/Site/static/images/pokemon/0798_Kartana.png and /dev/null differ diff --git a/Site/static/images/pokemon/0799-07-000-0.png b/Site/static/images/pokemon/0799-07-000-0.png new file mode 100644 index 0000000..42751f5 Binary files /dev/null and b/Site/static/images/pokemon/0799-07-000-0.png differ diff --git a/Site/static/images/pokemon/0799_Guzzlord.png b/Site/static/images/pokemon/0799_Guzzlord.png deleted file mode 100644 index bb43643..0000000 Binary files a/Site/static/images/pokemon/0799_Guzzlord.png and /dev/null differ diff --git a/Site/static/images/pokemon/0800-07-000-0.png b/Site/static/images/pokemon/0800-07-000-0.png new file mode 100644 index 0000000..6581026 Binary files /dev/null and b/Site/static/images/pokemon/0800-07-000-0.png differ diff --git a/Site/static/images/pokemon/0800-07-001-0.png b/Site/static/images/pokemon/0800-07-001-0.png new file mode 100644 index 0000000..44a1529 Binary files /dev/null and b/Site/static/images/pokemon/0800-07-001-0.png differ diff --git a/Site/static/images/pokemon/0800-07-002-0.png b/Site/static/images/pokemon/0800-07-002-0.png new file mode 100644 index 0000000..c322a34 Binary files /dev/null and b/Site/static/images/pokemon/0800-07-002-0.png differ diff --git a/Site/static/images/pokemon/0800-07-003-0.png b/Site/static/images/pokemon/0800-07-003-0.png new file mode 100644 index 0000000..4abbb60 Binary files /dev/null and b/Site/static/images/pokemon/0800-07-003-0.png differ diff --git a/Site/static/images/pokemon/0800_Necrozma.png b/Site/static/images/pokemon/0800_Necrozma.png deleted file mode 100644 index d35a14a..0000000 Binary files a/Site/static/images/pokemon/0800_Necrozma.png and /dev/null differ diff --git a/Site/static/images/pokemon/0801-07-000-0.png b/Site/static/images/pokemon/0801-07-000-0.png new file mode 100644 index 0000000..4f3a6fc Binary files /dev/null and b/Site/static/images/pokemon/0801-07-000-0.png differ diff --git a/Site/static/images/pokemon/0801-07-001-0.png b/Site/static/images/pokemon/0801-07-001-0.png new file mode 100644 index 0000000..53f077a Binary files /dev/null and b/Site/static/images/pokemon/0801-07-001-0.png differ diff --git a/Site/static/images/pokemon/0801_Magearna.png b/Site/static/images/pokemon/0801_Magearna.png deleted file mode 100644 index be5af8e..0000000 Binary files a/Site/static/images/pokemon/0801_Magearna.png and /dev/null differ diff --git a/Site/static/images/pokemon/0801_Magearna_(Original_Color).png b/Site/static/images/pokemon/0801_Magearna_(Original_Color).png deleted file mode 100644 index 72b8904..0000000 Binary files a/Site/static/images/pokemon/0801_Magearna_(Original_Color).png and /dev/null differ diff --git a/Site/static/images/pokemon/0802-07-000-0.png b/Site/static/images/pokemon/0802-07-000-0.png new file mode 100644 index 0000000..89cbe1a Binary files /dev/null and b/Site/static/images/pokemon/0802-07-000-0.png differ diff --git a/Site/static/images/pokemon/0802_Marshadow.png b/Site/static/images/pokemon/0802_Marshadow.png deleted file mode 100644 index c94ce86..0000000 Binary files a/Site/static/images/pokemon/0802_Marshadow.png and /dev/null differ diff --git a/Site/static/images/pokemon/0803-07-000-0.png b/Site/static/images/pokemon/0803-07-000-0.png new file mode 100644 index 0000000..1e6e183 Binary files /dev/null and b/Site/static/images/pokemon/0803-07-000-0.png differ diff --git a/Site/static/images/pokemon/0803_Poipole.png b/Site/static/images/pokemon/0803_Poipole.png deleted file mode 100644 index 7910ce5..0000000 Binary files a/Site/static/images/pokemon/0803_Poipole.png and /dev/null differ diff --git a/Site/static/images/pokemon/0804-07-000-0.png b/Site/static/images/pokemon/0804-07-000-0.png new file mode 100644 index 0000000..14a706f Binary files /dev/null and b/Site/static/images/pokemon/0804-07-000-0.png differ diff --git a/Site/static/images/pokemon/0804_Naganadel.png b/Site/static/images/pokemon/0804_Naganadel.png deleted file mode 100644 index aec9008..0000000 Binary files a/Site/static/images/pokemon/0804_Naganadel.png and /dev/null differ diff --git a/Site/static/images/pokemon/0805-07-000-0.png b/Site/static/images/pokemon/0805-07-000-0.png new file mode 100644 index 0000000..a8299f9 Binary files /dev/null and b/Site/static/images/pokemon/0805-07-000-0.png differ diff --git a/Site/static/images/pokemon/0805_Stakataka.png b/Site/static/images/pokemon/0805_Stakataka.png deleted file mode 100644 index ae99423..0000000 Binary files a/Site/static/images/pokemon/0805_Stakataka.png and /dev/null differ diff --git a/Site/static/images/pokemon/0806-07-000-0.png b/Site/static/images/pokemon/0806-07-000-0.png new file mode 100644 index 0000000..c11e787 Binary files /dev/null and b/Site/static/images/pokemon/0806-07-000-0.png differ diff --git a/Site/static/images/pokemon/0806_Blacephalon.png b/Site/static/images/pokemon/0806_Blacephalon.png deleted file mode 100644 index ffc981c..0000000 Binary files a/Site/static/images/pokemon/0806_Blacephalon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0807-07-000-0.png b/Site/static/images/pokemon/0807-07-000-0.png new file mode 100644 index 0000000..ee07517 Binary files /dev/null and b/Site/static/images/pokemon/0807-07-000-0.png differ diff --git a/Site/static/images/pokemon/0807_Zeraora.png b/Site/static/images/pokemon/0807_Zeraora.png deleted file mode 100644 index 7b64c2f..0000000 Binary files a/Site/static/images/pokemon/0807_Zeraora.png and /dev/null differ diff --git a/Site/static/images/pokemon/0808-07-000-0.png b/Site/static/images/pokemon/0808-07-000-0.png new file mode 100644 index 0000000..fd91808 Binary files /dev/null and b/Site/static/images/pokemon/0808-07-000-0.png differ diff --git a/Site/static/images/pokemon/0808_Meltan.png b/Site/static/images/pokemon/0808_Meltan.png deleted file mode 100644 index eddb721..0000000 Binary files a/Site/static/images/pokemon/0808_Meltan.png and /dev/null differ diff --git a/Site/static/images/pokemon/0809-07-000-0.png b/Site/static/images/pokemon/0809-07-000-0.png new file mode 100644 index 0000000..3da91ec Binary files /dev/null and b/Site/static/images/pokemon/0809-07-000-0.png differ diff --git a/Site/static/images/pokemon/0809-07-001-0.png b/Site/static/images/pokemon/0809-07-001-0.png new file mode 100644 index 0000000..0dad325 Binary files /dev/null and b/Site/static/images/pokemon/0809-07-001-0.png differ diff --git a/Site/static/images/pokemon/0809_Melmetal.png b/Site/static/images/pokemon/0809_Melmetal.png deleted file mode 100644 index ccd078d..0000000 Binary files a/Site/static/images/pokemon/0809_Melmetal.png and /dev/null differ diff --git a/Site/static/images/pokemon/0810-08-000-0.png b/Site/static/images/pokemon/0810-08-000-0.png new file mode 100644 index 0000000..c3d7d8b Binary files /dev/null and b/Site/static/images/pokemon/0810-08-000-0.png differ diff --git a/Site/static/images/pokemon/0810_Grookey.png b/Site/static/images/pokemon/0810_Grookey.png deleted file mode 100644 index 51dd30f..0000000 Binary files a/Site/static/images/pokemon/0810_Grookey.png and /dev/null differ diff --git a/Site/static/images/pokemon/0811-08-000-0.png b/Site/static/images/pokemon/0811-08-000-0.png new file mode 100644 index 0000000..5013759 Binary files /dev/null and b/Site/static/images/pokemon/0811-08-000-0.png differ diff --git a/Site/static/images/pokemon/0811_Thwackey.png b/Site/static/images/pokemon/0811_Thwackey.png deleted file mode 100644 index bea8377..0000000 Binary files a/Site/static/images/pokemon/0811_Thwackey.png and /dev/null differ diff --git a/Site/static/images/pokemon/0812-08-000-0.png b/Site/static/images/pokemon/0812-08-000-0.png new file mode 100644 index 0000000..00eb455 Binary files /dev/null and b/Site/static/images/pokemon/0812-08-000-0.png differ diff --git a/Site/static/images/pokemon/0812-08-001-0.png b/Site/static/images/pokemon/0812-08-001-0.png new file mode 100644 index 0000000..5923c01 Binary files /dev/null and b/Site/static/images/pokemon/0812-08-001-0.png differ diff --git a/Site/static/images/pokemon/0812_Rillaboom.png b/Site/static/images/pokemon/0812_Rillaboom.png deleted file mode 100644 index 1dc2921..0000000 Binary files a/Site/static/images/pokemon/0812_Rillaboom.png and /dev/null differ diff --git a/Site/static/images/pokemon/0813-08-000-0.png b/Site/static/images/pokemon/0813-08-000-0.png new file mode 100644 index 0000000..5656c67 Binary files /dev/null and b/Site/static/images/pokemon/0813-08-000-0.png differ diff --git a/Site/static/images/pokemon/0813_Scorbunny.png b/Site/static/images/pokemon/0813_Scorbunny.png deleted file mode 100644 index 67e533e..0000000 Binary files a/Site/static/images/pokemon/0813_Scorbunny.png and /dev/null differ diff --git a/Site/static/images/pokemon/0814-08-000-0.png b/Site/static/images/pokemon/0814-08-000-0.png new file mode 100644 index 0000000..4600796 Binary files /dev/null and b/Site/static/images/pokemon/0814-08-000-0.png differ diff --git a/Site/static/images/pokemon/0814_Raboot.png b/Site/static/images/pokemon/0814_Raboot.png deleted file mode 100644 index db44d5d..0000000 Binary files a/Site/static/images/pokemon/0814_Raboot.png and /dev/null differ diff --git a/Site/static/images/pokemon/0815-08-000-0.png b/Site/static/images/pokemon/0815-08-000-0.png new file mode 100644 index 0000000..cfb1e7c Binary files /dev/null and b/Site/static/images/pokemon/0815-08-000-0.png differ diff --git a/Site/static/images/pokemon/0815-08-001-0.png b/Site/static/images/pokemon/0815-08-001-0.png new file mode 100644 index 0000000..562bb83 Binary files /dev/null and b/Site/static/images/pokemon/0815-08-001-0.png differ diff --git a/Site/static/images/pokemon/0815_Cinderace.png b/Site/static/images/pokemon/0815_Cinderace.png deleted file mode 100644 index ac448d7..0000000 Binary files a/Site/static/images/pokemon/0815_Cinderace.png and /dev/null differ diff --git a/Site/static/images/pokemon/0816-08-000-0.png b/Site/static/images/pokemon/0816-08-000-0.png new file mode 100644 index 0000000..5dad284 Binary files /dev/null and b/Site/static/images/pokemon/0816-08-000-0.png differ diff --git a/Site/static/images/pokemon/0816_Sobble.png b/Site/static/images/pokemon/0816_Sobble.png deleted file mode 100644 index 1f34134..0000000 Binary files a/Site/static/images/pokemon/0816_Sobble.png and /dev/null differ diff --git a/Site/static/images/pokemon/0817-08-000-0.png b/Site/static/images/pokemon/0817-08-000-0.png new file mode 100644 index 0000000..2d7ce0e Binary files /dev/null and b/Site/static/images/pokemon/0817-08-000-0.png differ diff --git a/Site/static/images/pokemon/0817_Drizzile.png b/Site/static/images/pokemon/0817_Drizzile.png deleted file mode 100644 index 45420c1..0000000 Binary files a/Site/static/images/pokemon/0817_Drizzile.png and /dev/null differ diff --git a/Site/static/images/pokemon/0818-08-000-0.png b/Site/static/images/pokemon/0818-08-000-0.png new file mode 100644 index 0000000..46b72c2 Binary files /dev/null and b/Site/static/images/pokemon/0818-08-000-0.png differ diff --git a/Site/static/images/pokemon/0818-08-001-0.png b/Site/static/images/pokemon/0818-08-001-0.png new file mode 100644 index 0000000..729e49b Binary files /dev/null and b/Site/static/images/pokemon/0818-08-001-0.png differ diff --git a/Site/static/images/pokemon/0818_Inteleon.png b/Site/static/images/pokemon/0818_Inteleon.png deleted file mode 100644 index ac69417..0000000 Binary files a/Site/static/images/pokemon/0818_Inteleon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0819-08-000-0.png b/Site/static/images/pokemon/0819-08-000-0.png new file mode 100644 index 0000000..4d759e6 Binary files /dev/null and b/Site/static/images/pokemon/0819-08-000-0.png differ diff --git a/Site/static/images/pokemon/0819_Skwovet.png b/Site/static/images/pokemon/0819_Skwovet.png deleted file mode 100644 index e3e844b..0000000 Binary files a/Site/static/images/pokemon/0819_Skwovet.png and /dev/null differ diff --git a/Site/static/images/pokemon/0820-08-000-0.png b/Site/static/images/pokemon/0820-08-000-0.png new file mode 100644 index 0000000..96f714e Binary files /dev/null and b/Site/static/images/pokemon/0820-08-000-0.png differ diff --git a/Site/static/images/pokemon/0820_Greedent.png b/Site/static/images/pokemon/0820_Greedent.png deleted file mode 100644 index c2a8f43..0000000 Binary files a/Site/static/images/pokemon/0820_Greedent.png and /dev/null differ diff --git a/Site/static/images/pokemon/0821-08-000-0.png b/Site/static/images/pokemon/0821-08-000-0.png new file mode 100644 index 0000000..771e4ff Binary files /dev/null and b/Site/static/images/pokemon/0821-08-000-0.png differ diff --git a/Site/static/images/pokemon/0821_Rookidee.png b/Site/static/images/pokemon/0821_Rookidee.png deleted file mode 100644 index 09e39e6..0000000 Binary files a/Site/static/images/pokemon/0821_Rookidee.png and /dev/null differ diff --git a/Site/static/images/pokemon/0822-08-000-0.png b/Site/static/images/pokemon/0822-08-000-0.png new file mode 100644 index 0000000..76d3b7c Binary files /dev/null and b/Site/static/images/pokemon/0822-08-000-0.png differ diff --git a/Site/static/images/pokemon/0822_Corvisquire.png b/Site/static/images/pokemon/0822_Corvisquire.png deleted file mode 100644 index 5e9f4dd..0000000 Binary files a/Site/static/images/pokemon/0822_Corvisquire.png and /dev/null differ diff --git a/Site/static/images/pokemon/0823-08-000-0.png b/Site/static/images/pokemon/0823-08-000-0.png new file mode 100644 index 0000000..b06d856 Binary files /dev/null and b/Site/static/images/pokemon/0823-08-000-0.png differ diff --git a/Site/static/images/pokemon/0823-08-001-0.png b/Site/static/images/pokemon/0823-08-001-0.png new file mode 100644 index 0000000..9429273 Binary files /dev/null and b/Site/static/images/pokemon/0823-08-001-0.png differ diff --git a/Site/static/images/pokemon/0823_Corviknight.png b/Site/static/images/pokemon/0823_Corviknight.png deleted file mode 100644 index d927b92..0000000 Binary files a/Site/static/images/pokemon/0823_Corviknight.png and /dev/null differ diff --git a/Site/static/images/pokemon/0824-08-000-0.png b/Site/static/images/pokemon/0824-08-000-0.png new file mode 100644 index 0000000..dfddd27 Binary files /dev/null and b/Site/static/images/pokemon/0824-08-000-0.png differ diff --git a/Site/static/images/pokemon/0824_Blipbug.png b/Site/static/images/pokemon/0824_Blipbug.png deleted file mode 100644 index c6f367c..0000000 Binary files a/Site/static/images/pokemon/0824_Blipbug.png and /dev/null differ diff --git a/Site/static/images/pokemon/0825-08-000-0.png b/Site/static/images/pokemon/0825-08-000-0.png new file mode 100644 index 0000000..2e1b4b4 Binary files /dev/null and b/Site/static/images/pokemon/0825-08-000-0.png differ diff --git a/Site/static/images/pokemon/0825_Dottler.png b/Site/static/images/pokemon/0825_Dottler.png deleted file mode 100644 index 2d477a4..0000000 Binary files a/Site/static/images/pokemon/0825_Dottler.png and /dev/null differ diff --git a/Site/static/images/pokemon/0826-08-000-0.png b/Site/static/images/pokemon/0826-08-000-0.png new file mode 100644 index 0000000..52118ce Binary files /dev/null and b/Site/static/images/pokemon/0826-08-000-0.png differ diff --git a/Site/static/images/pokemon/0826-08-001-0.png b/Site/static/images/pokemon/0826-08-001-0.png new file mode 100644 index 0000000..8f47e9f Binary files /dev/null and b/Site/static/images/pokemon/0826-08-001-0.png differ diff --git a/Site/static/images/pokemon/0826_Orbeetle.png b/Site/static/images/pokemon/0826_Orbeetle.png deleted file mode 100644 index c7d22e9..0000000 Binary files a/Site/static/images/pokemon/0826_Orbeetle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0827-08-000-0.png b/Site/static/images/pokemon/0827-08-000-0.png new file mode 100644 index 0000000..69bffd3 Binary files /dev/null and b/Site/static/images/pokemon/0827-08-000-0.png differ diff --git a/Site/static/images/pokemon/0827_Nickit.png b/Site/static/images/pokemon/0827_Nickit.png deleted file mode 100644 index deff685..0000000 Binary files a/Site/static/images/pokemon/0827_Nickit.png and /dev/null differ diff --git a/Site/static/images/pokemon/0828-08-000-0.png b/Site/static/images/pokemon/0828-08-000-0.png new file mode 100644 index 0000000..fde5e01 Binary files /dev/null and b/Site/static/images/pokemon/0828-08-000-0.png differ diff --git a/Site/static/images/pokemon/0828_Thievul.png b/Site/static/images/pokemon/0828_Thievul.png deleted file mode 100644 index 4e0c2b0..0000000 Binary files a/Site/static/images/pokemon/0828_Thievul.png and /dev/null differ diff --git a/Site/static/images/pokemon/0829-08-000-0.png b/Site/static/images/pokemon/0829-08-000-0.png new file mode 100644 index 0000000..5cf11b5 Binary files /dev/null and b/Site/static/images/pokemon/0829-08-000-0.png differ diff --git a/Site/static/images/pokemon/0829_Gossifleur.png b/Site/static/images/pokemon/0829_Gossifleur.png deleted file mode 100644 index 6b6265f..0000000 Binary files a/Site/static/images/pokemon/0829_Gossifleur.png and /dev/null differ diff --git a/Site/static/images/pokemon/0830-08-000-0.png b/Site/static/images/pokemon/0830-08-000-0.png new file mode 100644 index 0000000..f1372dc Binary files /dev/null and b/Site/static/images/pokemon/0830-08-000-0.png differ diff --git a/Site/static/images/pokemon/0830_Eldegoss.png b/Site/static/images/pokemon/0830_Eldegoss.png deleted file mode 100644 index 73a4d8a..0000000 Binary files a/Site/static/images/pokemon/0830_Eldegoss.png and /dev/null differ diff --git a/Site/static/images/pokemon/0831-08-000-0.png b/Site/static/images/pokemon/0831-08-000-0.png new file mode 100644 index 0000000..be1ec46 Binary files /dev/null and b/Site/static/images/pokemon/0831-08-000-0.png differ diff --git a/Site/static/images/pokemon/0831_Wooloo.png b/Site/static/images/pokemon/0831_Wooloo.png deleted file mode 100644 index d8cfc39..0000000 Binary files a/Site/static/images/pokemon/0831_Wooloo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0832-08-000-0.png b/Site/static/images/pokemon/0832-08-000-0.png new file mode 100644 index 0000000..a41033e Binary files /dev/null and b/Site/static/images/pokemon/0832-08-000-0.png differ diff --git a/Site/static/images/pokemon/0832_Dubwool.png b/Site/static/images/pokemon/0832_Dubwool.png deleted file mode 100644 index 4d62435..0000000 Binary files a/Site/static/images/pokemon/0832_Dubwool.png and /dev/null differ diff --git a/Site/static/images/pokemon/0833-08-000-0.png b/Site/static/images/pokemon/0833-08-000-0.png new file mode 100644 index 0000000..5b070d1 Binary files /dev/null and b/Site/static/images/pokemon/0833-08-000-0.png differ diff --git a/Site/static/images/pokemon/0833_Chewtle.png b/Site/static/images/pokemon/0833_Chewtle.png deleted file mode 100644 index 6cd29f5..0000000 Binary files a/Site/static/images/pokemon/0833_Chewtle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0834-08-000-0.png b/Site/static/images/pokemon/0834-08-000-0.png new file mode 100644 index 0000000..e0940bd Binary files /dev/null and b/Site/static/images/pokemon/0834-08-000-0.png differ diff --git a/Site/static/images/pokemon/0834-08-001-0.png b/Site/static/images/pokemon/0834-08-001-0.png new file mode 100644 index 0000000..039be26 Binary files /dev/null and b/Site/static/images/pokemon/0834-08-001-0.png differ diff --git a/Site/static/images/pokemon/0834_Drednaw.png b/Site/static/images/pokemon/0834_Drednaw.png deleted file mode 100644 index e5e1e10..0000000 Binary files a/Site/static/images/pokemon/0834_Drednaw.png and /dev/null differ diff --git a/Site/static/images/pokemon/0835-08-000-0.png b/Site/static/images/pokemon/0835-08-000-0.png new file mode 100644 index 0000000..ba0675b Binary files /dev/null and b/Site/static/images/pokemon/0835-08-000-0.png differ diff --git a/Site/static/images/pokemon/0835_Yamper.png b/Site/static/images/pokemon/0835_Yamper.png deleted file mode 100644 index 45bfc57..0000000 Binary files a/Site/static/images/pokemon/0835_Yamper.png and /dev/null differ diff --git a/Site/static/images/pokemon/0836-08-000-0.png b/Site/static/images/pokemon/0836-08-000-0.png new file mode 100644 index 0000000..7979901 Binary files /dev/null and b/Site/static/images/pokemon/0836-08-000-0.png differ diff --git a/Site/static/images/pokemon/0836_Boltund.png b/Site/static/images/pokemon/0836_Boltund.png deleted file mode 100644 index 6d2c0b6..0000000 Binary files a/Site/static/images/pokemon/0836_Boltund.png and /dev/null differ diff --git a/Site/static/images/pokemon/0837-08-000-0.png b/Site/static/images/pokemon/0837-08-000-0.png new file mode 100644 index 0000000..8aee8ac Binary files /dev/null and b/Site/static/images/pokemon/0837-08-000-0.png differ diff --git a/Site/static/images/pokemon/0837_Rolycoly.png b/Site/static/images/pokemon/0837_Rolycoly.png deleted file mode 100644 index 7a300f3..0000000 Binary files a/Site/static/images/pokemon/0837_Rolycoly.png and /dev/null differ diff --git a/Site/static/images/pokemon/0838-08-000-0.png b/Site/static/images/pokemon/0838-08-000-0.png new file mode 100644 index 0000000..0f754ae Binary files /dev/null and b/Site/static/images/pokemon/0838-08-000-0.png differ diff --git a/Site/static/images/pokemon/0838_Carkol.png b/Site/static/images/pokemon/0838_Carkol.png deleted file mode 100644 index 3713213..0000000 Binary files a/Site/static/images/pokemon/0838_Carkol.png and /dev/null differ diff --git a/Site/static/images/pokemon/0839-08-000-0.png b/Site/static/images/pokemon/0839-08-000-0.png new file mode 100644 index 0000000..3fef9ea Binary files /dev/null and b/Site/static/images/pokemon/0839-08-000-0.png differ diff --git a/Site/static/images/pokemon/0839-08-001-0.png b/Site/static/images/pokemon/0839-08-001-0.png new file mode 100644 index 0000000..fe332e9 Binary files /dev/null and b/Site/static/images/pokemon/0839-08-001-0.png differ diff --git a/Site/static/images/pokemon/0839_Coalossal.png b/Site/static/images/pokemon/0839_Coalossal.png deleted file mode 100644 index eaa5e7a..0000000 Binary files a/Site/static/images/pokemon/0839_Coalossal.png and /dev/null differ diff --git a/Site/static/images/pokemon/0840-08-000-0.png b/Site/static/images/pokemon/0840-08-000-0.png new file mode 100644 index 0000000..ed63d48 Binary files /dev/null and b/Site/static/images/pokemon/0840-08-000-0.png differ diff --git a/Site/static/images/pokemon/0840_Applin.png b/Site/static/images/pokemon/0840_Applin.png deleted file mode 100644 index 32cd99f..0000000 Binary files a/Site/static/images/pokemon/0840_Applin.png and /dev/null differ diff --git a/Site/static/images/pokemon/0841-08-000-0.png b/Site/static/images/pokemon/0841-08-000-0.png new file mode 100644 index 0000000..5417b29 Binary files /dev/null and b/Site/static/images/pokemon/0841-08-000-0.png differ diff --git a/Site/static/images/pokemon/0841-08-001-0.png b/Site/static/images/pokemon/0841-08-001-0.png new file mode 100644 index 0000000..764a576 Binary files /dev/null and b/Site/static/images/pokemon/0841-08-001-0.png differ diff --git a/Site/static/images/pokemon/0841_Flapple.png b/Site/static/images/pokemon/0841_Flapple.png deleted file mode 100644 index 91e3083..0000000 Binary files a/Site/static/images/pokemon/0841_Flapple.png and /dev/null differ diff --git a/Site/static/images/pokemon/0842-08-000-0.png b/Site/static/images/pokemon/0842-08-000-0.png new file mode 100644 index 0000000..c428411 Binary files /dev/null and b/Site/static/images/pokemon/0842-08-000-0.png differ diff --git a/Site/static/images/pokemon/0842-08-001-0.png b/Site/static/images/pokemon/0842-08-001-0.png new file mode 100644 index 0000000..c0efd90 Binary files /dev/null and b/Site/static/images/pokemon/0842-08-001-0.png differ diff --git a/Site/static/images/pokemon/0842_Appletun.png b/Site/static/images/pokemon/0842_Appletun.png deleted file mode 100644 index f81dec8..0000000 Binary files a/Site/static/images/pokemon/0842_Appletun.png and /dev/null differ diff --git a/Site/static/images/pokemon/0843-08-000-0.png b/Site/static/images/pokemon/0843-08-000-0.png new file mode 100644 index 0000000..668bc72 Binary files /dev/null and b/Site/static/images/pokemon/0843-08-000-0.png differ diff --git a/Site/static/images/pokemon/0843_Silicobra.png b/Site/static/images/pokemon/0843_Silicobra.png deleted file mode 100644 index ca19217..0000000 Binary files a/Site/static/images/pokemon/0843_Silicobra.png and /dev/null differ diff --git a/Site/static/images/pokemon/0844-08-000-0.png b/Site/static/images/pokemon/0844-08-000-0.png new file mode 100644 index 0000000..905742e Binary files /dev/null and b/Site/static/images/pokemon/0844-08-000-0.png differ diff --git a/Site/static/images/pokemon/0844-08-001-0.png b/Site/static/images/pokemon/0844-08-001-0.png new file mode 100644 index 0000000..7f42d20 Binary files /dev/null and b/Site/static/images/pokemon/0844-08-001-0.png differ diff --git a/Site/static/images/pokemon/0844_Sandaconda.png b/Site/static/images/pokemon/0844_Sandaconda.png deleted file mode 100644 index f2c6c03..0000000 Binary files a/Site/static/images/pokemon/0844_Sandaconda.png and /dev/null differ diff --git a/Site/static/images/pokemon/0845-08-000-0.png b/Site/static/images/pokemon/0845-08-000-0.png new file mode 100644 index 0000000..0e95c91 Binary files /dev/null and b/Site/static/images/pokemon/0845-08-000-0.png differ diff --git a/Site/static/images/pokemon/0845-08-001-0.png b/Site/static/images/pokemon/0845-08-001-0.png new file mode 100644 index 0000000..75d2b2b Binary files /dev/null and b/Site/static/images/pokemon/0845-08-001-0.png differ diff --git a/Site/static/images/pokemon/0845-08-002-0.png b/Site/static/images/pokemon/0845-08-002-0.png new file mode 100644 index 0000000..132dab2 Binary files /dev/null and b/Site/static/images/pokemon/0845-08-002-0.png differ diff --git a/Site/static/images/pokemon/0845_Cramorant.png b/Site/static/images/pokemon/0845_Cramorant.png deleted file mode 100644 index bd6b9f4..0000000 Binary files a/Site/static/images/pokemon/0845_Cramorant.png and /dev/null differ diff --git a/Site/static/images/pokemon/0846-08-000-0.png b/Site/static/images/pokemon/0846-08-000-0.png new file mode 100644 index 0000000..686810a Binary files /dev/null and b/Site/static/images/pokemon/0846-08-000-0.png differ diff --git a/Site/static/images/pokemon/0846_Arrokuda.png b/Site/static/images/pokemon/0846_Arrokuda.png deleted file mode 100644 index ff5008d..0000000 Binary files a/Site/static/images/pokemon/0846_Arrokuda.png and /dev/null differ diff --git a/Site/static/images/pokemon/0847-08-000-0.png b/Site/static/images/pokemon/0847-08-000-0.png new file mode 100644 index 0000000..cfb9c66 Binary files /dev/null and b/Site/static/images/pokemon/0847-08-000-0.png differ diff --git a/Site/static/images/pokemon/0847_Barraskewda.png b/Site/static/images/pokemon/0847_Barraskewda.png deleted file mode 100644 index fb5c4ae..0000000 Binary files a/Site/static/images/pokemon/0847_Barraskewda.png and /dev/null differ diff --git a/Site/static/images/pokemon/0848-08-000-0.png b/Site/static/images/pokemon/0848-08-000-0.png new file mode 100644 index 0000000..07ca1e2 Binary files /dev/null and b/Site/static/images/pokemon/0848-08-000-0.png differ diff --git a/Site/static/images/pokemon/0848_Toxel.png b/Site/static/images/pokemon/0848_Toxel.png deleted file mode 100644 index d30b285..0000000 Binary files a/Site/static/images/pokemon/0848_Toxel.png and /dev/null differ diff --git a/Site/static/images/pokemon/0849-08-001-0.png b/Site/static/images/pokemon/0849-08-001-0.png new file mode 100644 index 0000000..1bc76cb Binary files /dev/null and b/Site/static/images/pokemon/0849-08-001-0.png differ diff --git a/Site/static/images/pokemon/0849-08-002-0.png b/Site/static/images/pokemon/0849-08-002-0.png new file mode 100644 index 0000000..871e964 Binary files /dev/null and b/Site/static/images/pokemon/0849-08-002-0.png differ diff --git a/Site/static/images/pokemon/0849-08-003-0.png b/Site/static/images/pokemon/0849-08-003-0.png new file mode 100644 index 0000000..0a2a97f Binary files /dev/null and b/Site/static/images/pokemon/0849-08-003-0.png differ diff --git a/Site/static/images/pokemon/0849_Toxtricity.png b/Site/static/images/pokemon/0849_Toxtricity.png deleted file mode 100644 index 4e7caef..0000000 Binary files a/Site/static/images/pokemon/0849_Toxtricity.png and /dev/null differ diff --git a/Site/static/images/pokemon/0849_Toxtricity_(Low_Key_Form).png b/Site/static/images/pokemon/0849_Toxtricity_(Low_Key_Form).png deleted file mode 100644 index f1069b3..0000000 Binary files a/Site/static/images/pokemon/0849_Toxtricity_(Low_Key_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0850-08-000-0.png b/Site/static/images/pokemon/0850-08-000-0.png new file mode 100644 index 0000000..f907f6a Binary files /dev/null and b/Site/static/images/pokemon/0850-08-000-0.png differ diff --git a/Site/static/images/pokemon/0850_Sizzlipede.png b/Site/static/images/pokemon/0850_Sizzlipede.png deleted file mode 100644 index 399cbbd..0000000 Binary files a/Site/static/images/pokemon/0850_Sizzlipede.png and /dev/null differ diff --git a/Site/static/images/pokemon/0851-08-000-0.png b/Site/static/images/pokemon/0851-08-000-0.png new file mode 100644 index 0000000..4ba640e Binary files /dev/null and b/Site/static/images/pokemon/0851-08-000-0.png differ diff --git a/Site/static/images/pokemon/0851-08-001-0.png b/Site/static/images/pokemon/0851-08-001-0.png new file mode 100644 index 0000000..8fdbffd Binary files /dev/null and b/Site/static/images/pokemon/0851-08-001-0.png differ diff --git a/Site/static/images/pokemon/0851_Centiskorch.png b/Site/static/images/pokemon/0851_Centiskorch.png deleted file mode 100644 index 30f6a07..0000000 Binary files a/Site/static/images/pokemon/0851_Centiskorch.png and /dev/null differ diff --git a/Site/static/images/pokemon/0852-08-000-0.png b/Site/static/images/pokemon/0852-08-000-0.png new file mode 100644 index 0000000..d850785 Binary files /dev/null and b/Site/static/images/pokemon/0852-08-000-0.png differ diff --git a/Site/static/images/pokemon/0852_Clobbopus.png b/Site/static/images/pokemon/0852_Clobbopus.png deleted file mode 100644 index 64e95c5..0000000 Binary files a/Site/static/images/pokemon/0852_Clobbopus.png and /dev/null differ diff --git a/Site/static/images/pokemon/0853-08-000-0.png b/Site/static/images/pokemon/0853-08-000-0.png new file mode 100644 index 0000000..4e2e2c0 Binary files /dev/null and b/Site/static/images/pokemon/0853-08-000-0.png differ diff --git a/Site/static/images/pokemon/0853_Grapploct.png b/Site/static/images/pokemon/0853_Grapploct.png deleted file mode 100644 index e2d9395..0000000 Binary files a/Site/static/images/pokemon/0853_Grapploct.png and /dev/null differ diff --git a/Site/static/images/pokemon/0854-08-000-0.png b/Site/static/images/pokemon/0854-08-000-0.png new file mode 100644 index 0000000..8d788ab Binary files /dev/null and b/Site/static/images/pokemon/0854-08-000-0.png differ diff --git a/Site/static/images/pokemon/0854_Sinistea.png b/Site/static/images/pokemon/0854_Sinistea.png deleted file mode 100644 index 8bf6bf7..0000000 Binary files a/Site/static/images/pokemon/0854_Sinistea.png and /dev/null differ diff --git a/Site/static/images/pokemon/0854_Sinistea_(Authentic_Form).png b/Site/static/images/pokemon/0854_Sinistea_(Authentic_Form).png deleted file mode 100644 index 8bf6bf7..0000000 Binary files a/Site/static/images/pokemon/0854_Sinistea_(Authentic_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0855-08-000-0.png b/Site/static/images/pokemon/0855-08-000-0.png new file mode 100644 index 0000000..0f288b4 Binary files /dev/null and b/Site/static/images/pokemon/0855-08-000-0.png differ diff --git a/Site/static/images/pokemon/0855_Polteageist.png b/Site/static/images/pokemon/0855_Polteageist.png deleted file mode 100644 index dc87253..0000000 Binary files a/Site/static/images/pokemon/0855_Polteageist.png and /dev/null differ diff --git a/Site/static/images/pokemon/0855_Polteageist_(Authentic_Form).png b/Site/static/images/pokemon/0855_Polteageist_(Authentic_Form).png deleted file mode 100644 index dc87253..0000000 Binary files a/Site/static/images/pokemon/0855_Polteageist_(Authentic_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0856-08-000-0.png b/Site/static/images/pokemon/0856-08-000-0.png new file mode 100644 index 0000000..6a81fc5 Binary files /dev/null and b/Site/static/images/pokemon/0856-08-000-0.png differ diff --git a/Site/static/images/pokemon/0856_Hatenna.png b/Site/static/images/pokemon/0856_Hatenna.png deleted file mode 100644 index 5ad291e..0000000 Binary files a/Site/static/images/pokemon/0856_Hatenna.png and /dev/null differ diff --git a/Site/static/images/pokemon/0857-08-000-0.png b/Site/static/images/pokemon/0857-08-000-0.png new file mode 100644 index 0000000..cc76fcb Binary files /dev/null and b/Site/static/images/pokemon/0857-08-000-0.png differ diff --git a/Site/static/images/pokemon/0857_Hattrem.png b/Site/static/images/pokemon/0857_Hattrem.png deleted file mode 100644 index 1b5673c..0000000 Binary files a/Site/static/images/pokemon/0857_Hattrem.png and /dev/null differ diff --git a/Site/static/images/pokemon/0858-08-000-0.png b/Site/static/images/pokemon/0858-08-000-0.png new file mode 100644 index 0000000..b90ef27 Binary files /dev/null and b/Site/static/images/pokemon/0858-08-000-0.png differ diff --git a/Site/static/images/pokemon/0858-08-001-0.png b/Site/static/images/pokemon/0858-08-001-0.png new file mode 100644 index 0000000..4cedb34 Binary files /dev/null and b/Site/static/images/pokemon/0858-08-001-0.png differ diff --git a/Site/static/images/pokemon/0858_Hatterene.png b/Site/static/images/pokemon/0858_Hatterene.png deleted file mode 100644 index 5cb8d1d..0000000 Binary files a/Site/static/images/pokemon/0858_Hatterene.png and /dev/null differ diff --git a/Site/static/images/pokemon/0859-08-000-0.png b/Site/static/images/pokemon/0859-08-000-0.png new file mode 100644 index 0000000..3d73ff8 Binary files /dev/null and b/Site/static/images/pokemon/0859-08-000-0.png differ diff --git a/Site/static/images/pokemon/0859_Impidimp.png b/Site/static/images/pokemon/0859_Impidimp.png deleted file mode 100644 index 48521a9..0000000 Binary files a/Site/static/images/pokemon/0859_Impidimp.png and /dev/null differ diff --git a/Site/static/images/pokemon/0860-08-000-0.png b/Site/static/images/pokemon/0860-08-000-0.png new file mode 100644 index 0000000..6f0c755 Binary files /dev/null and b/Site/static/images/pokemon/0860-08-000-0.png differ diff --git a/Site/static/images/pokemon/0860_Morgrem.png b/Site/static/images/pokemon/0860_Morgrem.png deleted file mode 100644 index ca21a83..0000000 Binary files a/Site/static/images/pokemon/0860_Morgrem.png and /dev/null differ diff --git a/Site/static/images/pokemon/0861-08-000-0.png b/Site/static/images/pokemon/0861-08-000-0.png new file mode 100644 index 0000000..69f3b17 Binary files /dev/null and b/Site/static/images/pokemon/0861-08-000-0.png differ diff --git a/Site/static/images/pokemon/0861-08-001-0.png b/Site/static/images/pokemon/0861-08-001-0.png new file mode 100644 index 0000000..5af8957 Binary files /dev/null and b/Site/static/images/pokemon/0861-08-001-0.png differ diff --git a/Site/static/images/pokemon/0861_Grimmsnarl.png b/Site/static/images/pokemon/0861_Grimmsnarl.png deleted file mode 100644 index df78a38..0000000 Binary files a/Site/static/images/pokemon/0861_Grimmsnarl.png and /dev/null differ diff --git a/Site/static/images/pokemon/0862-08-000-0.png b/Site/static/images/pokemon/0862-08-000-0.png new file mode 100644 index 0000000..64ef31c Binary files /dev/null and b/Site/static/images/pokemon/0862-08-000-0.png differ diff --git a/Site/static/images/pokemon/0862_Obstagoon.png b/Site/static/images/pokemon/0862_Obstagoon.png deleted file mode 100644 index 0efc414..0000000 Binary files a/Site/static/images/pokemon/0862_Obstagoon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0863-08-000-0.png b/Site/static/images/pokemon/0863-08-000-0.png new file mode 100644 index 0000000..bb81908 Binary files /dev/null and b/Site/static/images/pokemon/0863-08-000-0.png differ diff --git a/Site/static/images/pokemon/0863_Perrserker.png b/Site/static/images/pokemon/0863_Perrserker.png deleted file mode 100644 index 126dea5..0000000 Binary files a/Site/static/images/pokemon/0863_Perrserker.png and /dev/null differ diff --git a/Site/static/images/pokemon/0864-08-000-0.png b/Site/static/images/pokemon/0864-08-000-0.png new file mode 100644 index 0000000..8a676fa Binary files /dev/null and b/Site/static/images/pokemon/0864-08-000-0.png differ diff --git a/Site/static/images/pokemon/0864_Cursola.png b/Site/static/images/pokemon/0864_Cursola.png deleted file mode 100644 index 0f7eda5..0000000 Binary files a/Site/static/images/pokemon/0864_Cursola.png and /dev/null differ diff --git a/Site/static/images/pokemon/0865-08-000-0.png b/Site/static/images/pokemon/0865-08-000-0.png new file mode 100644 index 0000000..7ace854 Binary files /dev/null and b/Site/static/images/pokemon/0865-08-000-0.png differ diff --git a/Site/static/images/pokemon/0865_Sirfetch'd.png b/Site/static/images/pokemon/0865_Sirfetch'd.png deleted file mode 100644 index 87206c5..0000000 Binary files a/Site/static/images/pokemon/0865_Sirfetch'd.png and /dev/null differ diff --git a/Site/static/images/pokemon/0866-08-000-0.png b/Site/static/images/pokemon/0866-08-000-0.png new file mode 100644 index 0000000..4cf3c19 Binary files /dev/null and b/Site/static/images/pokemon/0866-08-000-0.png differ diff --git a/Site/static/images/pokemon/0866_Mr._Rime.png b/Site/static/images/pokemon/0866_Mr._Rime.png deleted file mode 100644 index 3a66b51..0000000 Binary files a/Site/static/images/pokemon/0866_Mr._Rime.png and /dev/null differ diff --git a/Site/static/images/pokemon/0867-08-000-0.png b/Site/static/images/pokemon/0867-08-000-0.png new file mode 100644 index 0000000..86880af Binary files /dev/null and b/Site/static/images/pokemon/0867-08-000-0.png differ diff --git a/Site/static/images/pokemon/0867_Runerigus.png b/Site/static/images/pokemon/0867_Runerigus.png deleted file mode 100644 index a2efa43..0000000 Binary files a/Site/static/images/pokemon/0867_Runerigus.png and /dev/null differ diff --git a/Site/static/images/pokemon/0868-08-000-0.png b/Site/static/images/pokemon/0868-08-000-0.png new file mode 100644 index 0000000..09554cc Binary files /dev/null and b/Site/static/images/pokemon/0868-08-000-0.png differ diff --git a/Site/static/images/pokemon/0868_Milcery.png b/Site/static/images/pokemon/0868_Milcery.png deleted file mode 100644 index 80866b1..0000000 Binary files a/Site/static/images/pokemon/0868_Milcery.png and /dev/null differ diff --git a/Site/static/images/pokemon/0869-08-001-0.png b/Site/static/images/pokemon/0869-08-001-0.png new file mode 100644 index 0000000..f7401cf Binary files /dev/null and b/Site/static/images/pokemon/0869-08-001-0.png differ diff --git a/Site/static/images/pokemon/0869-08-002-0.png b/Site/static/images/pokemon/0869-08-002-0.png new file mode 100644 index 0000000..25edf65 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-002-0.png differ diff --git a/Site/static/images/pokemon/0869-08-003-0.png b/Site/static/images/pokemon/0869-08-003-0.png new file mode 100644 index 0000000..a55ec00 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-003-0.png differ diff --git a/Site/static/images/pokemon/0869-08-004-0.png b/Site/static/images/pokemon/0869-08-004-0.png new file mode 100644 index 0000000..7c5491b Binary files /dev/null and b/Site/static/images/pokemon/0869-08-004-0.png differ diff --git a/Site/static/images/pokemon/0869-08-005-0.png b/Site/static/images/pokemon/0869-08-005-0.png new file mode 100644 index 0000000..0146490 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-005-0.png differ diff --git a/Site/static/images/pokemon/0869-08-006-0.png b/Site/static/images/pokemon/0869-08-006-0.png new file mode 100644 index 0000000..b835047 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-006-0.png differ diff --git a/Site/static/images/pokemon/0869-08-007-0.png b/Site/static/images/pokemon/0869-08-007-0.png new file mode 100644 index 0000000..e3df489 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-007-0.png differ diff --git a/Site/static/images/pokemon/0869-08-008-0.png b/Site/static/images/pokemon/0869-08-008-0.png new file mode 100644 index 0000000..109e2a8 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-008-0.png differ diff --git a/Site/static/images/pokemon/0869-08-009-0.png b/Site/static/images/pokemon/0869-08-009-0.png new file mode 100644 index 0000000..53f5f5a Binary files /dev/null and b/Site/static/images/pokemon/0869-08-009-0.png differ diff --git a/Site/static/images/pokemon/0869-08-010-0.png b/Site/static/images/pokemon/0869-08-010-0.png new file mode 100644 index 0000000..0d94f0c Binary files /dev/null and b/Site/static/images/pokemon/0869-08-010-0.png differ diff --git a/Site/static/images/pokemon/0869-08-011-0.png b/Site/static/images/pokemon/0869-08-011-0.png new file mode 100644 index 0000000..b34a225 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-011-0.png differ diff --git a/Site/static/images/pokemon/0869-08-012-0.png b/Site/static/images/pokemon/0869-08-012-0.png new file mode 100644 index 0000000..04d2894 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-012-0.png differ diff --git a/Site/static/images/pokemon/0869-08-013-0.png b/Site/static/images/pokemon/0869-08-013-0.png new file mode 100644 index 0000000..1dbcb40 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-013-0.png differ diff --git a/Site/static/images/pokemon/0869-08-014-0.png b/Site/static/images/pokemon/0869-08-014-0.png new file mode 100644 index 0000000..1db781d Binary files /dev/null and b/Site/static/images/pokemon/0869-08-014-0.png differ diff --git a/Site/static/images/pokemon/0869-08-015-0.png b/Site/static/images/pokemon/0869-08-015-0.png new file mode 100644 index 0000000..2bfefc6 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-015-0.png differ diff --git a/Site/static/images/pokemon/0869-08-016-0.png b/Site/static/images/pokemon/0869-08-016-0.png new file mode 100644 index 0000000..9e2fee8 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-016-0.png differ diff --git a/Site/static/images/pokemon/0869-08-017-0.png b/Site/static/images/pokemon/0869-08-017-0.png new file mode 100644 index 0000000..e48a47f Binary files /dev/null and b/Site/static/images/pokemon/0869-08-017-0.png differ diff --git a/Site/static/images/pokemon/0869-08-018-0.png b/Site/static/images/pokemon/0869-08-018-0.png new file mode 100644 index 0000000..1675db6 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-018-0.png differ diff --git a/Site/static/images/pokemon/0869-08-019-0.png b/Site/static/images/pokemon/0869-08-019-0.png new file mode 100644 index 0000000..f5e0e19 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-019-0.png differ diff --git a/Site/static/images/pokemon/0869-08-020-0.png b/Site/static/images/pokemon/0869-08-020-0.png new file mode 100644 index 0000000..e04ccfa Binary files /dev/null and b/Site/static/images/pokemon/0869-08-020-0.png differ diff --git a/Site/static/images/pokemon/0869-08-021-0.png b/Site/static/images/pokemon/0869-08-021-0.png new file mode 100644 index 0000000..c0a4747 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-021-0.png differ diff --git a/Site/static/images/pokemon/0869-08-022-0.png b/Site/static/images/pokemon/0869-08-022-0.png new file mode 100644 index 0000000..2298f7f Binary files /dev/null and b/Site/static/images/pokemon/0869-08-022-0.png differ diff --git a/Site/static/images/pokemon/0869-08-023-0.png b/Site/static/images/pokemon/0869-08-023-0.png new file mode 100644 index 0000000..b87ce0c Binary files /dev/null and b/Site/static/images/pokemon/0869-08-023-0.png differ diff --git a/Site/static/images/pokemon/0869-08-024-0.png b/Site/static/images/pokemon/0869-08-024-0.png new file mode 100644 index 0000000..0322beb Binary files /dev/null and b/Site/static/images/pokemon/0869-08-024-0.png differ diff --git a/Site/static/images/pokemon/0869-08-025-0.png b/Site/static/images/pokemon/0869-08-025-0.png new file mode 100644 index 0000000..bb590a4 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-025-0.png differ diff --git a/Site/static/images/pokemon/0869-08-026-0.png b/Site/static/images/pokemon/0869-08-026-0.png new file mode 100644 index 0000000..cc3ad6a Binary files /dev/null and b/Site/static/images/pokemon/0869-08-026-0.png differ diff --git a/Site/static/images/pokemon/0869-08-027-0.png b/Site/static/images/pokemon/0869-08-027-0.png new file mode 100644 index 0000000..6427dab Binary files /dev/null and b/Site/static/images/pokemon/0869-08-027-0.png differ diff --git a/Site/static/images/pokemon/0869-08-028-0.png b/Site/static/images/pokemon/0869-08-028-0.png new file mode 100644 index 0000000..23b3a51 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-028-0.png differ diff --git a/Site/static/images/pokemon/0869-08-029-0.png b/Site/static/images/pokemon/0869-08-029-0.png new file mode 100644 index 0000000..5658ad2 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-029-0.png differ diff --git a/Site/static/images/pokemon/0869-08-030-0.png b/Site/static/images/pokemon/0869-08-030-0.png new file mode 100644 index 0000000..5148539 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-030-0.png differ diff --git a/Site/static/images/pokemon/0869-08-031-0.png b/Site/static/images/pokemon/0869-08-031-0.png new file mode 100644 index 0000000..d909b29 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-031-0.png differ diff --git a/Site/static/images/pokemon/0869-08-032-0.png b/Site/static/images/pokemon/0869-08-032-0.png new file mode 100644 index 0000000..3bab1b6 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-032-0.png differ diff --git a/Site/static/images/pokemon/0869-08-033-0.png b/Site/static/images/pokemon/0869-08-033-0.png new file mode 100644 index 0000000..25d7699 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-033-0.png differ diff --git a/Site/static/images/pokemon/0869-08-034-0.png b/Site/static/images/pokemon/0869-08-034-0.png new file mode 100644 index 0000000..f0aabbe Binary files /dev/null and b/Site/static/images/pokemon/0869-08-034-0.png differ diff --git a/Site/static/images/pokemon/0869-08-035-0.png b/Site/static/images/pokemon/0869-08-035-0.png new file mode 100644 index 0000000..24c4da2 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-035-0.png differ diff --git a/Site/static/images/pokemon/0869-08-036-0.png b/Site/static/images/pokemon/0869-08-036-0.png new file mode 100644 index 0000000..06ed62f Binary files /dev/null and b/Site/static/images/pokemon/0869-08-036-0.png differ diff --git a/Site/static/images/pokemon/0869-08-037-0.png b/Site/static/images/pokemon/0869-08-037-0.png new file mode 100644 index 0000000..0c8efe7 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-037-0.png differ diff --git a/Site/static/images/pokemon/0869-08-038-0.png b/Site/static/images/pokemon/0869-08-038-0.png new file mode 100644 index 0000000..3f35569 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-038-0.png differ diff --git a/Site/static/images/pokemon/0869-08-039-0.png b/Site/static/images/pokemon/0869-08-039-0.png new file mode 100644 index 0000000..04d25a6 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-039-0.png differ diff --git a/Site/static/images/pokemon/0869-08-040-0.png b/Site/static/images/pokemon/0869-08-040-0.png new file mode 100644 index 0000000..4262890 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-040-0.png differ diff --git a/Site/static/images/pokemon/0869-08-041-0.png b/Site/static/images/pokemon/0869-08-041-0.png new file mode 100644 index 0000000..521714c Binary files /dev/null and b/Site/static/images/pokemon/0869-08-041-0.png differ diff --git a/Site/static/images/pokemon/0869-08-042-0.png b/Site/static/images/pokemon/0869-08-042-0.png new file mode 100644 index 0000000..8d62e8b Binary files /dev/null and b/Site/static/images/pokemon/0869-08-042-0.png differ diff --git a/Site/static/images/pokemon/0869-08-043-0.png b/Site/static/images/pokemon/0869-08-043-0.png new file mode 100644 index 0000000..b5a2c80 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-043-0.png differ diff --git a/Site/static/images/pokemon/0869-08-044-0.png b/Site/static/images/pokemon/0869-08-044-0.png new file mode 100644 index 0000000..009208e Binary files /dev/null and b/Site/static/images/pokemon/0869-08-044-0.png differ diff --git a/Site/static/images/pokemon/0869-08-045-0.png b/Site/static/images/pokemon/0869-08-045-0.png new file mode 100644 index 0000000..ff30d98 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-045-0.png differ diff --git a/Site/static/images/pokemon/0869-08-046-0.png b/Site/static/images/pokemon/0869-08-046-0.png new file mode 100644 index 0000000..ba7024c Binary files /dev/null and b/Site/static/images/pokemon/0869-08-046-0.png differ diff --git a/Site/static/images/pokemon/0869-08-047-0.png b/Site/static/images/pokemon/0869-08-047-0.png new file mode 100644 index 0000000..8c07795 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-047-0.png differ diff --git a/Site/static/images/pokemon/0869-08-048-0.png b/Site/static/images/pokemon/0869-08-048-0.png new file mode 100644 index 0000000..4901530 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-048-0.png differ diff --git a/Site/static/images/pokemon/0869-08-049-0.png b/Site/static/images/pokemon/0869-08-049-0.png new file mode 100644 index 0000000..3a69833 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-049-0.png differ diff --git a/Site/static/images/pokemon/0869-08-050-0.png b/Site/static/images/pokemon/0869-08-050-0.png new file mode 100644 index 0000000..409af43 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-050-0.png differ diff --git a/Site/static/images/pokemon/0869-08-051-0.png b/Site/static/images/pokemon/0869-08-051-0.png new file mode 100644 index 0000000..ec122cd Binary files /dev/null and b/Site/static/images/pokemon/0869-08-051-0.png differ diff --git a/Site/static/images/pokemon/0869-08-052-0.png b/Site/static/images/pokemon/0869-08-052-0.png new file mode 100644 index 0000000..51eb400 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-052-0.png differ diff --git a/Site/static/images/pokemon/0869-08-053-0.png b/Site/static/images/pokemon/0869-08-053-0.png new file mode 100644 index 0000000..57c96c2 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-053-0.png differ diff --git a/Site/static/images/pokemon/0869-08-054-0.png b/Site/static/images/pokemon/0869-08-054-0.png new file mode 100644 index 0000000..490a883 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-054-0.png differ diff --git a/Site/static/images/pokemon/0869-08-055-0.png b/Site/static/images/pokemon/0869-08-055-0.png new file mode 100644 index 0000000..31627d7 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-055-0.png differ diff --git a/Site/static/images/pokemon/0869-08-056-0.png b/Site/static/images/pokemon/0869-08-056-0.png new file mode 100644 index 0000000..8524963 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-056-0.png differ diff --git a/Site/static/images/pokemon/0869-08-057-0.png b/Site/static/images/pokemon/0869-08-057-0.png new file mode 100644 index 0000000..62479c3 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-057-0.png differ diff --git a/Site/static/images/pokemon/0869-08-058-0.png b/Site/static/images/pokemon/0869-08-058-0.png new file mode 100644 index 0000000..e71398f Binary files /dev/null and b/Site/static/images/pokemon/0869-08-058-0.png differ diff --git a/Site/static/images/pokemon/0869-08-059-0.png b/Site/static/images/pokemon/0869-08-059-0.png new file mode 100644 index 0000000..4de9f26 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-059-0.png differ diff --git a/Site/static/images/pokemon/0869-08-060-0.png b/Site/static/images/pokemon/0869-08-060-0.png new file mode 100644 index 0000000..3e5eeea Binary files /dev/null and b/Site/static/images/pokemon/0869-08-060-0.png differ diff --git a/Site/static/images/pokemon/0869-08-061-0.png b/Site/static/images/pokemon/0869-08-061-0.png new file mode 100644 index 0000000..3b1eecc Binary files /dev/null and b/Site/static/images/pokemon/0869-08-061-0.png differ diff --git a/Site/static/images/pokemon/0869-08-062-0.png b/Site/static/images/pokemon/0869-08-062-0.png new file mode 100644 index 0000000..247b9e9 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-062-0.png differ diff --git a/Site/static/images/pokemon/0869-08-063-0.png b/Site/static/images/pokemon/0869-08-063-0.png new file mode 100644 index 0000000..97b6dc8 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-063-0.png differ diff --git a/Site/static/images/pokemon/0869-08-064-0.png b/Site/static/images/pokemon/0869-08-064-0.png new file mode 100644 index 0000000..198aa30 Binary files /dev/null and b/Site/static/images/pokemon/0869-08-064-0.png differ diff --git a/Site/static/images/pokemon/0869_Alcremie.png b/Site/static/images/pokemon/0869_Alcremie.png deleted file mode 100644 index fbbf283..0000000 Binary files a/Site/static/images/pokemon/0869_Alcremie.png and /dev/null differ diff --git a/Site/static/images/pokemon/0869_Alcremie_(Caramel_Swirl).png b/Site/static/images/pokemon/0869_Alcremie_(Caramel_Swirl).png deleted file mode 100644 index 02949f0..0000000 Binary files a/Site/static/images/pokemon/0869_Alcremie_(Caramel_Swirl).png and /dev/null differ diff --git a/Site/static/images/pokemon/0869_Alcremie_(Lemon_Cream).png b/Site/static/images/pokemon/0869_Alcremie_(Lemon_Cream).png deleted file mode 100644 index 676a311..0000000 Binary files a/Site/static/images/pokemon/0869_Alcremie_(Lemon_Cream).png and /dev/null differ diff --git a/Site/static/images/pokemon/0869_Alcremie_(Matcha_Cream).png b/Site/static/images/pokemon/0869_Alcremie_(Matcha_Cream).png deleted file mode 100644 index 903fd7b..0000000 Binary files a/Site/static/images/pokemon/0869_Alcremie_(Matcha_Cream).png and /dev/null differ diff --git a/Site/static/images/pokemon/0869_Alcremie_(Mint_Cream).png b/Site/static/images/pokemon/0869_Alcremie_(Mint_Cream).png deleted file mode 100644 index e3266d3..0000000 Binary files a/Site/static/images/pokemon/0869_Alcremie_(Mint_Cream).png and /dev/null differ diff --git a/Site/static/images/pokemon/0869_Alcremie_(Rainbow_Swirl).png b/Site/static/images/pokemon/0869_Alcremie_(Rainbow_Swirl).png deleted file mode 100644 index d2fc0f7..0000000 Binary files a/Site/static/images/pokemon/0869_Alcremie_(Rainbow_Swirl).png and /dev/null differ diff --git a/Site/static/images/pokemon/0869_Alcremie_(Ruby_Cream).png b/Site/static/images/pokemon/0869_Alcremie_(Ruby_Cream).png deleted file mode 100644 index c03cc67..0000000 Binary files a/Site/static/images/pokemon/0869_Alcremie_(Ruby_Cream).png and /dev/null differ diff --git a/Site/static/images/pokemon/0869_Alcremie_(Ruby_Swirl).png b/Site/static/images/pokemon/0869_Alcremie_(Ruby_Swirl).png deleted file mode 100644 index 8322a2a..0000000 Binary files a/Site/static/images/pokemon/0869_Alcremie_(Ruby_Swirl).png and /dev/null differ diff --git a/Site/static/images/pokemon/0869_Alcremie_(Salted_Cream).png b/Site/static/images/pokemon/0869_Alcremie_(Salted_Cream).png deleted file mode 100644 index e1d1309..0000000 Binary files a/Site/static/images/pokemon/0869_Alcremie_(Salted_Cream).png and /dev/null differ diff --git a/Site/static/images/pokemon/0869_Alcremie_(Vanilla_Cream).png b/Site/static/images/pokemon/0869_Alcremie_(Vanilla_Cream).png deleted file mode 100644 index ff5caf2..0000000 Binary files a/Site/static/images/pokemon/0869_Alcremie_(Vanilla_Cream).png and /dev/null differ diff --git a/Site/static/images/pokemon/0870-08-000-0.png b/Site/static/images/pokemon/0870-08-000-0.png new file mode 100644 index 0000000..bfa6063 Binary files /dev/null and b/Site/static/images/pokemon/0870-08-000-0.png differ diff --git a/Site/static/images/pokemon/0870_Falinks.png b/Site/static/images/pokemon/0870_Falinks.png deleted file mode 100644 index 3098734..0000000 Binary files a/Site/static/images/pokemon/0870_Falinks.png and /dev/null differ diff --git a/Site/static/images/pokemon/0871-08-000-0.png b/Site/static/images/pokemon/0871-08-000-0.png new file mode 100644 index 0000000..c591f0c Binary files /dev/null and b/Site/static/images/pokemon/0871-08-000-0.png differ diff --git a/Site/static/images/pokemon/0871_Pincurchin.png b/Site/static/images/pokemon/0871_Pincurchin.png deleted file mode 100644 index 3303e7b..0000000 Binary files a/Site/static/images/pokemon/0871_Pincurchin.png and /dev/null differ diff --git a/Site/static/images/pokemon/0872-08-000-0.png b/Site/static/images/pokemon/0872-08-000-0.png new file mode 100644 index 0000000..69efdfd Binary files /dev/null and b/Site/static/images/pokemon/0872-08-000-0.png differ diff --git a/Site/static/images/pokemon/0872_Snom.png b/Site/static/images/pokemon/0872_Snom.png deleted file mode 100644 index 4c58c50..0000000 Binary files a/Site/static/images/pokemon/0872_Snom.png and /dev/null differ diff --git a/Site/static/images/pokemon/0873-08-000-0.png b/Site/static/images/pokemon/0873-08-000-0.png new file mode 100644 index 0000000..18e23b8 Binary files /dev/null and b/Site/static/images/pokemon/0873-08-000-0.png differ diff --git a/Site/static/images/pokemon/0873_Frosmoth.png b/Site/static/images/pokemon/0873_Frosmoth.png deleted file mode 100644 index fecdb0d..0000000 Binary files a/Site/static/images/pokemon/0873_Frosmoth.png and /dev/null differ diff --git a/Site/static/images/pokemon/0874-08-000-0.png b/Site/static/images/pokemon/0874-08-000-0.png new file mode 100644 index 0000000..c2e96a3 Binary files /dev/null and b/Site/static/images/pokemon/0874-08-000-0.png differ diff --git a/Site/static/images/pokemon/0874_Stonjourner.png b/Site/static/images/pokemon/0874_Stonjourner.png deleted file mode 100644 index db76e3d..0000000 Binary files a/Site/static/images/pokemon/0874_Stonjourner.png and /dev/null differ diff --git a/Site/static/images/pokemon/0875-08-001-0.png b/Site/static/images/pokemon/0875-08-001-0.png new file mode 100644 index 0000000..2dd8243 Binary files /dev/null and b/Site/static/images/pokemon/0875-08-001-0.png differ diff --git a/Site/static/images/pokemon/0875-08-002-0.png b/Site/static/images/pokemon/0875-08-002-0.png new file mode 100644 index 0000000..b3bb06b Binary files /dev/null and b/Site/static/images/pokemon/0875-08-002-0.png differ diff --git a/Site/static/images/pokemon/0875_Eiscue.png b/Site/static/images/pokemon/0875_Eiscue.png deleted file mode 100644 index 8c60901..0000000 Binary files a/Site/static/images/pokemon/0875_Eiscue.png and /dev/null differ diff --git a/Site/static/images/pokemon/0876-08-000-1.png b/Site/static/images/pokemon/0876-08-000-1.png new file mode 100644 index 0000000..dda23ec Binary files /dev/null and b/Site/static/images/pokemon/0876-08-000-1.png differ diff --git a/Site/static/images/pokemon/0876-08-000-2.png b/Site/static/images/pokemon/0876-08-000-2.png new file mode 100644 index 0000000..3a64a36 Binary files /dev/null and b/Site/static/images/pokemon/0876-08-000-2.png differ diff --git a/Site/static/images/pokemon/0876_Indeedee.png b/Site/static/images/pokemon/0876_Indeedee.png deleted file mode 100644 index 82bf115..0000000 Binary files a/Site/static/images/pokemon/0876_Indeedee.png and /dev/null differ diff --git a/Site/static/images/pokemon/0876_Indeedee_(Female).png b/Site/static/images/pokemon/0876_Indeedee_(Female).png deleted file mode 100644 index 29bd7de..0000000 Binary files a/Site/static/images/pokemon/0876_Indeedee_(Female).png and /dev/null differ diff --git a/Site/static/images/pokemon/0877-08-001-0.png b/Site/static/images/pokemon/0877-08-001-0.png new file mode 100644 index 0000000..86eea67 Binary files /dev/null and b/Site/static/images/pokemon/0877-08-001-0.png differ diff --git a/Site/static/images/pokemon/0877-08-002-0.png b/Site/static/images/pokemon/0877-08-002-0.png new file mode 100644 index 0000000..3b56ca6 Binary files /dev/null and b/Site/static/images/pokemon/0877-08-002-0.png differ diff --git a/Site/static/images/pokemon/0877_Morpeko.png b/Site/static/images/pokemon/0877_Morpeko.png deleted file mode 100644 index b41c25a..0000000 Binary files a/Site/static/images/pokemon/0877_Morpeko.png and /dev/null differ diff --git a/Site/static/images/pokemon/0878-08-000-0.png b/Site/static/images/pokemon/0878-08-000-0.png new file mode 100644 index 0000000..b07d0c5 Binary files /dev/null and b/Site/static/images/pokemon/0878-08-000-0.png differ diff --git a/Site/static/images/pokemon/0878_Cufant.png b/Site/static/images/pokemon/0878_Cufant.png deleted file mode 100644 index fb206c1..0000000 Binary files a/Site/static/images/pokemon/0878_Cufant.png and /dev/null differ diff --git a/Site/static/images/pokemon/0879-08-000-0.png b/Site/static/images/pokemon/0879-08-000-0.png new file mode 100644 index 0000000..bcb743a Binary files /dev/null and b/Site/static/images/pokemon/0879-08-000-0.png differ diff --git a/Site/static/images/pokemon/0879-08-001-0.png b/Site/static/images/pokemon/0879-08-001-0.png new file mode 100644 index 0000000..91c53a5 Binary files /dev/null and b/Site/static/images/pokemon/0879-08-001-0.png differ diff --git a/Site/static/images/pokemon/0879_Copperajah.png b/Site/static/images/pokemon/0879_Copperajah.png deleted file mode 100644 index 29b7417..0000000 Binary files a/Site/static/images/pokemon/0879_Copperajah.png and /dev/null differ diff --git a/Site/static/images/pokemon/0880-08-000-0.png b/Site/static/images/pokemon/0880-08-000-0.png new file mode 100644 index 0000000..2ea575c Binary files /dev/null and b/Site/static/images/pokemon/0880-08-000-0.png differ diff --git a/Site/static/images/pokemon/0880_Dracozolt.png b/Site/static/images/pokemon/0880_Dracozolt.png deleted file mode 100644 index 60348ce..0000000 Binary files a/Site/static/images/pokemon/0880_Dracozolt.png and /dev/null differ diff --git a/Site/static/images/pokemon/0881-08-000-0.png b/Site/static/images/pokemon/0881-08-000-0.png new file mode 100644 index 0000000..c6babc8 Binary files /dev/null and b/Site/static/images/pokemon/0881-08-000-0.png differ diff --git a/Site/static/images/pokemon/0881_Arctozolt.png b/Site/static/images/pokemon/0881_Arctozolt.png deleted file mode 100644 index 9e1717e..0000000 Binary files a/Site/static/images/pokemon/0881_Arctozolt.png and /dev/null differ diff --git a/Site/static/images/pokemon/0882-08-000-0.png b/Site/static/images/pokemon/0882-08-000-0.png new file mode 100644 index 0000000..eab85a3 Binary files /dev/null and b/Site/static/images/pokemon/0882-08-000-0.png differ diff --git a/Site/static/images/pokemon/0882_Dracovish.png b/Site/static/images/pokemon/0882_Dracovish.png deleted file mode 100644 index d1644af..0000000 Binary files a/Site/static/images/pokemon/0882_Dracovish.png and /dev/null differ diff --git a/Site/static/images/pokemon/0883-08-000-0.png b/Site/static/images/pokemon/0883-08-000-0.png new file mode 100644 index 0000000..3ba0362 Binary files /dev/null and b/Site/static/images/pokemon/0883-08-000-0.png differ diff --git a/Site/static/images/pokemon/0883_Arctovish.png b/Site/static/images/pokemon/0883_Arctovish.png deleted file mode 100644 index 0371fce..0000000 Binary files a/Site/static/images/pokemon/0883_Arctovish.png and /dev/null differ diff --git a/Site/static/images/pokemon/0884-08-000-0.png b/Site/static/images/pokemon/0884-08-000-0.png new file mode 100644 index 0000000..c0a82df Binary files /dev/null and b/Site/static/images/pokemon/0884-08-000-0.png differ diff --git a/Site/static/images/pokemon/0884-08-001-0.png b/Site/static/images/pokemon/0884-08-001-0.png new file mode 100644 index 0000000..1c06d69 Binary files /dev/null and b/Site/static/images/pokemon/0884-08-001-0.png differ diff --git a/Site/static/images/pokemon/0884_Duraludon.png b/Site/static/images/pokemon/0884_Duraludon.png deleted file mode 100644 index eaf430e..0000000 Binary files a/Site/static/images/pokemon/0884_Duraludon.png and /dev/null differ diff --git a/Site/static/images/pokemon/0885-08-000-0.png b/Site/static/images/pokemon/0885-08-000-0.png new file mode 100644 index 0000000..ff86c82 Binary files /dev/null and b/Site/static/images/pokemon/0885-08-000-0.png differ diff --git a/Site/static/images/pokemon/0885_Dreepy.png b/Site/static/images/pokemon/0885_Dreepy.png deleted file mode 100644 index 4c3d3ea..0000000 Binary files a/Site/static/images/pokemon/0885_Dreepy.png and /dev/null differ diff --git a/Site/static/images/pokemon/0886-08-000-0.png b/Site/static/images/pokemon/0886-08-000-0.png new file mode 100644 index 0000000..5561ab8 Binary files /dev/null and b/Site/static/images/pokemon/0886-08-000-0.png differ diff --git a/Site/static/images/pokemon/0886_Drakloak.png b/Site/static/images/pokemon/0886_Drakloak.png deleted file mode 100644 index 950a5c1..0000000 Binary files a/Site/static/images/pokemon/0886_Drakloak.png and /dev/null differ diff --git a/Site/static/images/pokemon/0887-08-000-0.png b/Site/static/images/pokemon/0887-08-000-0.png new file mode 100644 index 0000000..e48a2b1 Binary files /dev/null and b/Site/static/images/pokemon/0887-08-000-0.png differ diff --git a/Site/static/images/pokemon/0887_Dragapult.png b/Site/static/images/pokemon/0887_Dragapult.png deleted file mode 100644 index d3ec3db..0000000 Binary files a/Site/static/images/pokemon/0887_Dragapult.png and /dev/null differ diff --git a/Site/static/images/pokemon/0888-08-001-0.png b/Site/static/images/pokemon/0888-08-001-0.png new file mode 100644 index 0000000..60f510b Binary files /dev/null and b/Site/static/images/pokemon/0888-08-001-0.png differ diff --git a/Site/static/images/pokemon/0888-08-002-0.png b/Site/static/images/pokemon/0888-08-002-0.png new file mode 100644 index 0000000..7931d08 Binary files /dev/null and b/Site/static/images/pokemon/0888-08-002-0.png differ diff --git a/Site/static/images/pokemon/0888_Zacian.png b/Site/static/images/pokemon/0888_Zacian.png deleted file mode 100644 index f605ee3..0000000 Binary files a/Site/static/images/pokemon/0888_Zacian.png and /dev/null differ diff --git a/Site/static/images/pokemon/0889-08-001-0.png b/Site/static/images/pokemon/0889-08-001-0.png new file mode 100644 index 0000000..56c82d5 Binary files /dev/null and b/Site/static/images/pokemon/0889-08-001-0.png differ diff --git a/Site/static/images/pokemon/0889-08-002-0.png b/Site/static/images/pokemon/0889-08-002-0.png new file mode 100644 index 0000000..97ad218 Binary files /dev/null and b/Site/static/images/pokemon/0889-08-002-0.png differ diff --git a/Site/static/images/pokemon/0889_Zamazenta.png b/Site/static/images/pokemon/0889_Zamazenta.png deleted file mode 100644 index 47ed423..0000000 Binary files a/Site/static/images/pokemon/0889_Zamazenta.png and /dev/null differ diff --git a/Site/static/images/pokemon/0890-08-000-0.png b/Site/static/images/pokemon/0890-08-000-0.png new file mode 100644 index 0000000..81dd969 Binary files /dev/null and b/Site/static/images/pokemon/0890-08-000-0.png differ diff --git a/Site/static/images/pokemon/0890-08-001-0.png b/Site/static/images/pokemon/0890-08-001-0.png new file mode 100644 index 0000000..1d39298 Binary files /dev/null and b/Site/static/images/pokemon/0890-08-001-0.png differ diff --git a/Site/static/images/pokemon/0890_Eternatus.png b/Site/static/images/pokemon/0890_Eternatus.png deleted file mode 100644 index 94d581f..0000000 Binary files a/Site/static/images/pokemon/0890_Eternatus.png and /dev/null differ diff --git a/Site/static/images/pokemon/0891-08-000-0.png b/Site/static/images/pokemon/0891-08-000-0.png new file mode 100644 index 0000000..ee942b5 Binary files /dev/null and b/Site/static/images/pokemon/0891-08-000-0.png differ diff --git a/Site/static/images/pokemon/0891_Kubfu.png b/Site/static/images/pokemon/0891_Kubfu.png deleted file mode 100644 index c5e1fa0..0000000 Binary files a/Site/static/images/pokemon/0891_Kubfu.png and /dev/null differ diff --git a/Site/static/images/pokemon/0892-08-001-0.png b/Site/static/images/pokemon/0892-08-001-0.png new file mode 100644 index 0000000..92e1a42 Binary files /dev/null and b/Site/static/images/pokemon/0892-08-001-0.png differ diff --git a/Site/static/images/pokemon/0892-08-002-0.png b/Site/static/images/pokemon/0892-08-002-0.png new file mode 100644 index 0000000..74b9d4a Binary files /dev/null and b/Site/static/images/pokemon/0892-08-002-0.png differ diff --git a/Site/static/images/pokemon/0892-08-003-0.png b/Site/static/images/pokemon/0892-08-003-0.png new file mode 100644 index 0000000..356fcb2 Binary files /dev/null and b/Site/static/images/pokemon/0892-08-003-0.png differ diff --git a/Site/static/images/pokemon/0892-08-004-0.png b/Site/static/images/pokemon/0892-08-004-0.png new file mode 100644 index 0000000..caf9b73 Binary files /dev/null and b/Site/static/images/pokemon/0892-08-004-0.png differ diff --git a/Site/static/images/pokemon/0892_Urshifu.png b/Site/static/images/pokemon/0892_Urshifu.png deleted file mode 100644 index 3fec023..0000000 Binary files a/Site/static/images/pokemon/0892_Urshifu.png and /dev/null differ diff --git a/Site/static/images/pokemon/0892_Urshifu_(Rapid_Strike_Style).png b/Site/static/images/pokemon/0892_Urshifu_(Rapid_Strike_Style).png deleted file mode 100644 index de051d3..0000000 Binary files a/Site/static/images/pokemon/0892_Urshifu_(Rapid_Strike_Style).png and /dev/null differ diff --git a/Site/static/images/pokemon/0893-08-000-0.png b/Site/static/images/pokemon/0893-08-000-0.png new file mode 100644 index 0000000..491df28 Binary files /dev/null and b/Site/static/images/pokemon/0893-08-000-0.png differ diff --git a/Site/static/images/pokemon/0893-08-001-0.png b/Site/static/images/pokemon/0893-08-001-0.png new file mode 100644 index 0000000..0d23011 Binary files /dev/null and b/Site/static/images/pokemon/0893-08-001-0.png differ diff --git a/Site/static/images/pokemon/0893_Zarude.png b/Site/static/images/pokemon/0893_Zarude.png deleted file mode 100644 index 2bfa8b5..0000000 Binary files a/Site/static/images/pokemon/0893_Zarude.png and /dev/null differ diff --git a/Site/static/images/pokemon/0893_Zarude_(Dada).png b/Site/static/images/pokemon/0893_Zarude_(Dada).png deleted file mode 100644 index 2589c83..0000000 Binary files a/Site/static/images/pokemon/0893_Zarude_(Dada).png and /dev/null differ diff --git a/Site/static/images/pokemon/0894-08-000-0.png b/Site/static/images/pokemon/0894-08-000-0.png new file mode 100644 index 0000000..0a862e0 Binary files /dev/null and b/Site/static/images/pokemon/0894-08-000-0.png differ diff --git a/Site/static/images/pokemon/0894_Regieleki.png b/Site/static/images/pokemon/0894_Regieleki.png deleted file mode 100644 index 2b4db0c..0000000 Binary files a/Site/static/images/pokemon/0894_Regieleki.png and /dev/null differ diff --git a/Site/static/images/pokemon/0895-08-000-0.png b/Site/static/images/pokemon/0895-08-000-0.png new file mode 100644 index 0000000..8511686 Binary files /dev/null and b/Site/static/images/pokemon/0895-08-000-0.png differ diff --git a/Site/static/images/pokemon/0895_Regidrago.png b/Site/static/images/pokemon/0895_Regidrago.png deleted file mode 100644 index fa335f4..0000000 Binary files a/Site/static/images/pokemon/0895_Regidrago.png and /dev/null differ diff --git a/Site/static/images/pokemon/0896-08-000-0.png b/Site/static/images/pokemon/0896-08-000-0.png new file mode 100644 index 0000000..635c806 Binary files /dev/null and b/Site/static/images/pokemon/0896-08-000-0.png differ diff --git a/Site/static/images/pokemon/0896_Glastrier.png b/Site/static/images/pokemon/0896_Glastrier.png deleted file mode 100644 index 53992c1..0000000 Binary files a/Site/static/images/pokemon/0896_Glastrier.png and /dev/null differ diff --git a/Site/static/images/pokemon/0897-08-000-0.png b/Site/static/images/pokemon/0897-08-000-0.png new file mode 100644 index 0000000..9e4cbe4 Binary files /dev/null and b/Site/static/images/pokemon/0897-08-000-0.png differ diff --git a/Site/static/images/pokemon/0897_Spectrier.png b/Site/static/images/pokemon/0897_Spectrier.png deleted file mode 100644 index a856035..0000000 Binary files a/Site/static/images/pokemon/0897_Spectrier.png and /dev/null differ diff --git a/Site/static/images/pokemon/0898-08-000-0.png b/Site/static/images/pokemon/0898-08-000-0.png new file mode 100644 index 0000000..32ac5ca Binary files /dev/null and b/Site/static/images/pokemon/0898-08-000-0.png differ diff --git a/Site/static/images/pokemon/0898-08-001-0.png b/Site/static/images/pokemon/0898-08-001-0.png new file mode 100644 index 0000000..ee29c94 Binary files /dev/null and b/Site/static/images/pokemon/0898-08-001-0.png differ diff --git a/Site/static/images/pokemon/0898-08-002-0.png b/Site/static/images/pokemon/0898-08-002-0.png new file mode 100644 index 0000000..67dd9e0 Binary files /dev/null and b/Site/static/images/pokemon/0898-08-002-0.png differ diff --git a/Site/static/images/pokemon/0898_Calyrex.png b/Site/static/images/pokemon/0898_Calyrex.png deleted file mode 100644 index 90a09df..0000000 Binary files a/Site/static/images/pokemon/0898_Calyrex.png and /dev/null differ diff --git a/Site/static/images/pokemon/0899-08-000-0.png b/Site/static/images/pokemon/0899-08-000-0.png new file mode 100644 index 0000000..a8d0a60 Binary files /dev/null and b/Site/static/images/pokemon/0899-08-000-0.png differ diff --git a/Site/static/images/pokemon/0899_Wyrdeer.png b/Site/static/images/pokemon/0899_Wyrdeer.png deleted file mode 100644 index b9ca5af..0000000 Binary files a/Site/static/images/pokemon/0899_Wyrdeer.png and /dev/null differ diff --git a/Site/static/images/pokemon/0900-08-000-0.png b/Site/static/images/pokemon/0900-08-000-0.png new file mode 100644 index 0000000..a1f0d93 Binary files /dev/null and b/Site/static/images/pokemon/0900-08-000-0.png differ diff --git a/Site/static/images/pokemon/0900_Kleavor.png b/Site/static/images/pokemon/0900_Kleavor.png deleted file mode 100644 index 4917efb..0000000 Binary files a/Site/static/images/pokemon/0900_Kleavor.png and /dev/null differ diff --git a/Site/static/images/pokemon/0901-08-000-0.png b/Site/static/images/pokemon/0901-08-000-0.png new file mode 100644 index 0000000..53257cf Binary files /dev/null and b/Site/static/images/pokemon/0901-08-000-0.png differ diff --git a/Site/static/images/pokemon/0901-08-001-0.png b/Site/static/images/pokemon/0901-08-001-0.png new file mode 100644 index 0000000..d69efde Binary files /dev/null and b/Site/static/images/pokemon/0901-08-001-0.png differ diff --git a/Site/static/images/pokemon/0901_Ursaluna.png b/Site/static/images/pokemon/0901_Ursaluna.png deleted file mode 100644 index 8f140ee..0000000 Binary files a/Site/static/images/pokemon/0901_Ursaluna.png and /dev/null differ diff --git a/Site/static/images/pokemon/0901_Ursaluna_(Blood_Moon_Form).png b/Site/static/images/pokemon/0901_Ursaluna_(Blood_Moon_Form).png deleted file mode 100644 index fb1c5fe..0000000 Binary files a/Site/static/images/pokemon/0901_Ursaluna_(Blood_Moon_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0902-08-000-1.png b/Site/static/images/pokemon/0902-08-000-1.png new file mode 100644 index 0000000..d909e0f Binary files /dev/null and b/Site/static/images/pokemon/0902-08-000-1.png differ diff --git a/Site/static/images/pokemon/0902-08-000-2.png b/Site/static/images/pokemon/0902-08-000-2.png new file mode 100644 index 0000000..915abb2 Binary files /dev/null and b/Site/static/images/pokemon/0902-08-000-2.png differ diff --git a/Site/static/images/pokemon/0902_Basculegion.png b/Site/static/images/pokemon/0902_Basculegion.png deleted file mode 100644 index a887683..0000000 Binary files a/Site/static/images/pokemon/0902_Basculegion.png and /dev/null differ diff --git a/Site/static/images/pokemon/0902_Basculegion_(Female).png b/Site/static/images/pokemon/0902_Basculegion_(Female).png deleted file mode 100644 index 013b09f..0000000 Binary files a/Site/static/images/pokemon/0902_Basculegion_(Female).png and /dev/null differ diff --git a/Site/static/images/pokemon/0903-08-000-0.png b/Site/static/images/pokemon/0903-08-000-0.png new file mode 100644 index 0000000..c06ca35 Binary files /dev/null and b/Site/static/images/pokemon/0903-08-000-0.png differ diff --git a/Site/static/images/pokemon/0903_Sneasler.png b/Site/static/images/pokemon/0903_Sneasler.png deleted file mode 100644 index f607290..0000000 Binary files a/Site/static/images/pokemon/0903_Sneasler.png and /dev/null differ diff --git a/Site/static/images/pokemon/0904-08-000-0.png b/Site/static/images/pokemon/0904-08-000-0.png new file mode 100644 index 0000000..02672b3 Binary files /dev/null and b/Site/static/images/pokemon/0904-08-000-0.png differ diff --git a/Site/static/images/pokemon/0904_Overqwil.png b/Site/static/images/pokemon/0904_Overqwil.png deleted file mode 100644 index 03d3f44..0000000 Binary files a/Site/static/images/pokemon/0904_Overqwil.png and /dev/null differ diff --git a/Site/static/images/pokemon/0905-08-001-0.png b/Site/static/images/pokemon/0905-08-001-0.png new file mode 100644 index 0000000..395bc6f Binary files /dev/null and b/Site/static/images/pokemon/0905-08-001-0.png differ diff --git a/Site/static/images/pokemon/0905-08-002-0.png b/Site/static/images/pokemon/0905-08-002-0.png new file mode 100644 index 0000000..6386a8c Binary files /dev/null and b/Site/static/images/pokemon/0905-08-002-0.png differ diff --git a/Site/static/images/pokemon/0905_Enamorus.png b/Site/static/images/pokemon/0905_Enamorus.png deleted file mode 100644 index dc4fcf7..0000000 Binary files a/Site/static/images/pokemon/0905_Enamorus.png and /dev/null differ diff --git a/Site/static/images/pokemon/0905_Enamorus_(Therian_Forme).png b/Site/static/images/pokemon/0905_Enamorus_(Therian_Forme).png deleted file mode 100644 index c61b682..0000000 Binary files a/Site/static/images/pokemon/0905_Enamorus_(Therian_Forme).png and /dev/null differ diff --git a/Site/static/images/pokemon/0906-09-000-0.png b/Site/static/images/pokemon/0906-09-000-0.png new file mode 100644 index 0000000..03111cb Binary files /dev/null and b/Site/static/images/pokemon/0906-09-000-0.png differ diff --git a/Site/static/images/pokemon/0906_Sprigatito.png b/Site/static/images/pokemon/0906_Sprigatito.png deleted file mode 100644 index 16b9ad4..0000000 Binary files a/Site/static/images/pokemon/0906_Sprigatito.png and /dev/null differ diff --git a/Site/static/images/pokemon/0907-09-000-0.png b/Site/static/images/pokemon/0907-09-000-0.png new file mode 100644 index 0000000..e8139aa Binary files /dev/null and b/Site/static/images/pokemon/0907-09-000-0.png differ diff --git a/Site/static/images/pokemon/0907_Floragato.png b/Site/static/images/pokemon/0907_Floragato.png deleted file mode 100644 index f8eb771..0000000 Binary files a/Site/static/images/pokemon/0907_Floragato.png and /dev/null differ diff --git a/Site/static/images/pokemon/0908-09-000-0.png b/Site/static/images/pokemon/0908-09-000-0.png new file mode 100644 index 0000000..a2d4a93 Binary files /dev/null and b/Site/static/images/pokemon/0908-09-000-0.png differ diff --git a/Site/static/images/pokemon/0908_Meowscarada.png b/Site/static/images/pokemon/0908_Meowscarada.png deleted file mode 100644 index 5150b42..0000000 Binary files a/Site/static/images/pokemon/0908_Meowscarada.png and /dev/null differ diff --git a/Site/static/images/pokemon/0909-09-000-0.png b/Site/static/images/pokemon/0909-09-000-0.png new file mode 100644 index 0000000..bcb3e97 Binary files /dev/null and b/Site/static/images/pokemon/0909-09-000-0.png differ diff --git a/Site/static/images/pokemon/0909_Fuecoco.png b/Site/static/images/pokemon/0909_Fuecoco.png deleted file mode 100644 index e5bd7fe..0000000 Binary files a/Site/static/images/pokemon/0909_Fuecoco.png and /dev/null differ diff --git a/Site/static/images/pokemon/0910-09-000-0.png b/Site/static/images/pokemon/0910-09-000-0.png new file mode 100644 index 0000000..fc73829 Binary files /dev/null and b/Site/static/images/pokemon/0910-09-000-0.png differ diff --git a/Site/static/images/pokemon/0910_Crocalor.png b/Site/static/images/pokemon/0910_Crocalor.png deleted file mode 100644 index 57bb268..0000000 Binary files a/Site/static/images/pokemon/0910_Crocalor.png and /dev/null differ diff --git a/Site/static/images/pokemon/0911-09-000-0.png b/Site/static/images/pokemon/0911-09-000-0.png new file mode 100644 index 0000000..709ad1b Binary files /dev/null and b/Site/static/images/pokemon/0911-09-000-0.png differ diff --git a/Site/static/images/pokemon/0911_Skeledirge.png b/Site/static/images/pokemon/0911_Skeledirge.png deleted file mode 100644 index b719283..0000000 Binary files a/Site/static/images/pokemon/0911_Skeledirge.png and /dev/null differ diff --git a/Site/static/images/pokemon/0912-09-000-0.png b/Site/static/images/pokemon/0912-09-000-0.png new file mode 100644 index 0000000..fde6b3c Binary files /dev/null and b/Site/static/images/pokemon/0912-09-000-0.png differ diff --git a/Site/static/images/pokemon/0912_Quaxly.png b/Site/static/images/pokemon/0912_Quaxly.png deleted file mode 100644 index 87569f2..0000000 Binary files a/Site/static/images/pokemon/0912_Quaxly.png and /dev/null differ diff --git a/Site/static/images/pokemon/0913-09-000-0.png b/Site/static/images/pokemon/0913-09-000-0.png new file mode 100644 index 0000000..7ee6333 Binary files /dev/null and b/Site/static/images/pokemon/0913-09-000-0.png differ diff --git a/Site/static/images/pokemon/0913_Quaxwell.png b/Site/static/images/pokemon/0913_Quaxwell.png deleted file mode 100644 index a0d8edf..0000000 Binary files a/Site/static/images/pokemon/0913_Quaxwell.png and /dev/null differ diff --git a/Site/static/images/pokemon/0914-09-000-0.png b/Site/static/images/pokemon/0914-09-000-0.png new file mode 100644 index 0000000..24904b0 Binary files /dev/null and b/Site/static/images/pokemon/0914-09-000-0.png differ diff --git a/Site/static/images/pokemon/0914_Quaquaval.png b/Site/static/images/pokemon/0914_Quaquaval.png deleted file mode 100644 index 13aa5cb..0000000 Binary files a/Site/static/images/pokemon/0914_Quaquaval.png and /dev/null differ diff --git a/Site/static/images/pokemon/0915-09-000-0.png b/Site/static/images/pokemon/0915-09-000-0.png new file mode 100644 index 0000000..32644ba Binary files /dev/null and b/Site/static/images/pokemon/0915-09-000-0.png differ diff --git a/Site/static/images/pokemon/0915_Lechonk.png b/Site/static/images/pokemon/0915_Lechonk.png deleted file mode 100644 index be79f2a..0000000 Binary files a/Site/static/images/pokemon/0915_Lechonk.png and /dev/null differ diff --git a/Site/static/images/pokemon/0916-09-000-1.png b/Site/static/images/pokemon/0916-09-000-1.png new file mode 100644 index 0000000..cf55ac8 Binary files /dev/null and b/Site/static/images/pokemon/0916-09-000-1.png differ diff --git a/Site/static/images/pokemon/0916-09-000-2.png b/Site/static/images/pokemon/0916-09-000-2.png new file mode 100644 index 0000000..f6ce36b Binary files /dev/null and b/Site/static/images/pokemon/0916-09-000-2.png differ diff --git a/Site/static/images/pokemon/0916_Oinkologne.png b/Site/static/images/pokemon/0916_Oinkologne.png deleted file mode 100644 index ce409a1..0000000 Binary files a/Site/static/images/pokemon/0916_Oinkologne.png and /dev/null differ diff --git a/Site/static/images/pokemon/0916_Oinkologne_(Female).png b/Site/static/images/pokemon/0916_Oinkologne_(Female).png deleted file mode 100644 index 90448e0..0000000 Binary files a/Site/static/images/pokemon/0916_Oinkologne_(Female).png and /dev/null differ diff --git a/Site/static/images/pokemon/0917-09-000-0.png b/Site/static/images/pokemon/0917-09-000-0.png new file mode 100644 index 0000000..82cd7aa Binary files /dev/null and b/Site/static/images/pokemon/0917-09-000-0.png differ diff --git a/Site/static/images/pokemon/0917_Tarountula.png b/Site/static/images/pokemon/0917_Tarountula.png deleted file mode 100644 index c747eed..0000000 Binary files a/Site/static/images/pokemon/0917_Tarountula.png and /dev/null differ diff --git a/Site/static/images/pokemon/0918-09-000-0.png b/Site/static/images/pokemon/0918-09-000-0.png new file mode 100644 index 0000000..a2fed2b Binary files /dev/null and b/Site/static/images/pokemon/0918-09-000-0.png differ diff --git a/Site/static/images/pokemon/0918_Spidops.png b/Site/static/images/pokemon/0918_Spidops.png deleted file mode 100644 index a333c0b..0000000 Binary files a/Site/static/images/pokemon/0918_Spidops.png and /dev/null differ diff --git a/Site/static/images/pokemon/0919-09-000-0.png b/Site/static/images/pokemon/0919-09-000-0.png new file mode 100644 index 0000000..caf60d1 Binary files /dev/null and b/Site/static/images/pokemon/0919-09-000-0.png differ diff --git a/Site/static/images/pokemon/0919_Nymble.png b/Site/static/images/pokemon/0919_Nymble.png deleted file mode 100644 index 8b8f72d..0000000 Binary files a/Site/static/images/pokemon/0919_Nymble.png and /dev/null differ diff --git a/Site/static/images/pokemon/0920-09-000-0.png b/Site/static/images/pokemon/0920-09-000-0.png new file mode 100644 index 0000000..46f697a Binary files /dev/null and b/Site/static/images/pokemon/0920-09-000-0.png differ diff --git a/Site/static/images/pokemon/0920_Lokix.png b/Site/static/images/pokemon/0920_Lokix.png deleted file mode 100644 index b8d2b93..0000000 Binary files a/Site/static/images/pokemon/0920_Lokix.png and /dev/null differ diff --git a/Site/static/images/pokemon/0921-09-000-0.png b/Site/static/images/pokemon/0921-09-000-0.png new file mode 100644 index 0000000..f318e90 Binary files /dev/null and b/Site/static/images/pokemon/0921-09-000-0.png differ diff --git a/Site/static/images/pokemon/0921_Pawmi.png b/Site/static/images/pokemon/0921_Pawmi.png deleted file mode 100644 index 83cc96c..0000000 Binary files a/Site/static/images/pokemon/0921_Pawmi.png and /dev/null differ diff --git a/Site/static/images/pokemon/0922-09-000-0.png b/Site/static/images/pokemon/0922-09-000-0.png new file mode 100644 index 0000000..534ed7e Binary files /dev/null and b/Site/static/images/pokemon/0922-09-000-0.png differ diff --git a/Site/static/images/pokemon/0922_Pawmo.png b/Site/static/images/pokemon/0922_Pawmo.png deleted file mode 100644 index 759916a..0000000 Binary files a/Site/static/images/pokemon/0922_Pawmo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0923-09-000-0.png b/Site/static/images/pokemon/0923-09-000-0.png new file mode 100644 index 0000000..86f27fc Binary files /dev/null and b/Site/static/images/pokemon/0923-09-000-0.png differ diff --git a/Site/static/images/pokemon/0923_Pawmot.png b/Site/static/images/pokemon/0923_Pawmot.png deleted file mode 100644 index 0befe58..0000000 Binary files a/Site/static/images/pokemon/0923_Pawmot.png and /dev/null differ diff --git a/Site/static/images/pokemon/0924-09-000-0.png b/Site/static/images/pokemon/0924-09-000-0.png new file mode 100644 index 0000000..cc5985d Binary files /dev/null and b/Site/static/images/pokemon/0924-09-000-0.png differ diff --git a/Site/static/images/pokemon/0924_Tandemaus.png b/Site/static/images/pokemon/0924_Tandemaus.png deleted file mode 100644 index 2ae9c59..0000000 Binary files a/Site/static/images/pokemon/0924_Tandemaus.png and /dev/null differ diff --git a/Site/static/images/pokemon/0925-09-001-0.png b/Site/static/images/pokemon/0925-09-001-0.png new file mode 100644 index 0000000..c6b4c36 Binary files /dev/null and b/Site/static/images/pokemon/0925-09-001-0.png differ diff --git a/Site/static/images/pokemon/0925-09-002-0.png b/Site/static/images/pokemon/0925-09-002-0.png new file mode 100644 index 0000000..0d6a515 Binary files /dev/null and b/Site/static/images/pokemon/0925-09-002-0.png differ diff --git a/Site/static/images/pokemon/0925_Maushold.png b/Site/static/images/pokemon/0925_Maushold.png deleted file mode 100644 index baa963b..0000000 Binary files a/Site/static/images/pokemon/0925_Maushold.png and /dev/null differ diff --git a/Site/static/images/pokemon/0925_Maushold_(Family_of_Four).png b/Site/static/images/pokemon/0925_Maushold_(Family_of_Four).png deleted file mode 100644 index 23be3a7..0000000 Binary files a/Site/static/images/pokemon/0925_Maushold_(Family_of_Four).png and /dev/null differ diff --git a/Site/static/images/pokemon/0926-09-000-0.png b/Site/static/images/pokemon/0926-09-000-0.png new file mode 100644 index 0000000..81ddd56 Binary files /dev/null and b/Site/static/images/pokemon/0926-09-000-0.png differ diff --git a/Site/static/images/pokemon/0926_Fidough.png b/Site/static/images/pokemon/0926_Fidough.png deleted file mode 100644 index c266762..0000000 Binary files a/Site/static/images/pokemon/0926_Fidough.png and /dev/null differ diff --git a/Site/static/images/pokemon/0927-09-000-0.png b/Site/static/images/pokemon/0927-09-000-0.png new file mode 100644 index 0000000..239c76a Binary files /dev/null and b/Site/static/images/pokemon/0927-09-000-0.png differ diff --git a/Site/static/images/pokemon/0927_Dachsbun.png b/Site/static/images/pokemon/0927_Dachsbun.png deleted file mode 100644 index c87018c..0000000 Binary files a/Site/static/images/pokemon/0927_Dachsbun.png and /dev/null differ diff --git a/Site/static/images/pokemon/0928-09-000-0.png b/Site/static/images/pokemon/0928-09-000-0.png new file mode 100644 index 0000000..5d56ac8 Binary files /dev/null and b/Site/static/images/pokemon/0928-09-000-0.png differ diff --git a/Site/static/images/pokemon/0928_Smoliv.png b/Site/static/images/pokemon/0928_Smoliv.png deleted file mode 100644 index 1d706e6..0000000 Binary files a/Site/static/images/pokemon/0928_Smoliv.png and /dev/null differ diff --git a/Site/static/images/pokemon/0929-09-000-0.png b/Site/static/images/pokemon/0929-09-000-0.png new file mode 100644 index 0000000..80880e0 Binary files /dev/null and b/Site/static/images/pokemon/0929-09-000-0.png differ diff --git a/Site/static/images/pokemon/0929_Dolliv.png b/Site/static/images/pokemon/0929_Dolliv.png deleted file mode 100644 index 88be73f..0000000 Binary files a/Site/static/images/pokemon/0929_Dolliv.png and /dev/null differ diff --git a/Site/static/images/pokemon/0930-09-000-0.png b/Site/static/images/pokemon/0930-09-000-0.png new file mode 100644 index 0000000..4a6e9f6 Binary files /dev/null and b/Site/static/images/pokemon/0930-09-000-0.png differ diff --git a/Site/static/images/pokemon/0930_Arboliva.png b/Site/static/images/pokemon/0930_Arboliva.png deleted file mode 100644 index 1d62478..0000000 Binary files a/Site/static/images/pokemon/0930_Arboliva.png and /dev/null differ diff --git a/Site/static/images/pokemon/0931-09-001-0.png b/Site/static/images/pokemon/0931-09-001-0.png new file mode 100644 index 0000000..4439ba5 Binary files /dev/null and b/Site/static/images/pokemon/0931-09-001-0.png differ diff --git a/Site/static/images/pokemon/0931-09-002-0.png b/Site/static/images/pokemon/0931-09-002-0.png new file mode 100644 index 0000000..ec092e7 Binary files /dev/null and b/Site/static/images/pokemon/0931-09-002-0.png differ diff --git a/Site/static/images/pokemon/0931-09-003-0.png b/Site/static/images/pokemon/0931-09-003-0.png new file mode 100644 index 0000000..c3b48a3 Binary files /dev/null and b/Site/static/images/pokemon/0931-09-003-0.png differ diff --git a/Site/static/images/pokemon/0931-09-004-0.png b/Site/static/images/pokemon/0931-09-004-0.png new file mode 100644 index 0000000..b644aa5 Binary files /dev/null and b/Site/static/images/pokemon/0931-09-004-0.png differ diff --git a/Site/static/images/pokemon/0931_Squawkabilly.png b/Site/static/images/pokemon/0931_Squawkabilly.png deleted file mode 100644 index 5f99d2b..0000000 Binary files a/Site/static/images/pokemon/0931_Squawkabilly.png and /dev/null differ diff --git a/Site/static/images/pokemon/0931_Squawkabilly_(Blue_Plumage).png b/Site/static/images/pokemon/0931_Squawkabilly_(Blue_Plumage).png deleted file mode 100644 index 81bf080..0000000 Binary files a/Site/static/images/pokemon/0931_Squawkabilly_(Blue_Plumage).png and /dev/null differ diff --git a/Site/static/images/pokemon/0931_Squawkabilly_(White_Plumage).png b/Site/static/images/pokemon/0931_Squawkabilly_(White_Plumage).png deleted file mode 100644 index de2f3c9..0000000 Binary files a/Site/static/images/pokemon/0931_Squawkabilly_(White_Plumage).png and /dev/null differ diff --git a/Site/static/images/pokemon/0931_Squawkabilly_(Yellow_Plumage).png b/Site/static/images/pokemon/0931_Squawkabilly_(Yellow_Plumage).png deleted file mode 100644 index 1e37ac2..0000000 Binary files a/Site/static/images/pokemon/0931_Squawkabilly_(Yellow_Plumage).png and /dev/null differ diff --git a/Site/static/images/pokemon/0932-09-000-0.png b/Site/static/images/pokemon/0932-09-000-0.png new file mode 100644 index 0000000..f964e50 Binary files /dev/null and b/Site/static/images/pokemon/0932-09-000-0.png differ diff --git a/Site/static/images/pokemon/0932_Nacli.png b/Site/static/images/pokemon/0932_Nacli.png deleted file mode 100644 index 5bd95f4..0000000 Binary files a/Site/static/images/pokemon/0932_Nacli.png and /dev/null differ diff --git a/Site/static/images/pokemon/0933-09-000-0.png b/Site/static/images/pokemon/0933-09-000-0.png new file mode 100644 index 0000000..eed761b Binary files /dev/null and b/Site/static/images/pokemon/0933-09-000-0.png differ diff --git a/Site/static/images/pokemon/0933_Naclstack.png b/Site/static/images/pokemon/0933_Naclstack.png deleted file mode 100644 index 34bd112..0000000 Binary files a/Site/static/images/pokemon/0933_Naclstack.png and /dev/null differ diff --git a/Site/static/images/pokemon/0934-09-000-0.png b/Site/static/images/pokemon/0934-09-000-0.png new file mode 100644 index 0000000..4b9d379 Binary files /dev/null and b/Site/static/images/pokemon/0934-09-000-0.png differ diff --git a/Site/static/images/pokemon/0934_Garganacl.png b/Site/static/images/pokemon/0934_Garganacl.png deleted file mode 100644 index d0e55d6..0000000 Binary files a/Site/static/images/pokemon/0934_Garganacl.png and /dev/null differ diff --git a/Site/static/images/pokemon/0935-09-000-0.png b/Site/static/images/pokemon/0935-09-000-0.png new file mode 100644 index 0000000..1b4271c Binary files /dev/null and b/Site/static/images/pokemon/0935-09-000-0.png differ diff --git a/Site/static/images/pokemon/0935_Charcadet.png b/Site/static/images/pokemon/0935_Charcadet.png deleted file mode 100644 index 1e2098e..0000000 Binary files a/Site/static/images/pokemon/0935_Charcadet.png and /dev/null differ diff --git a/Site/static/images/pokemon/0936-09-000-0.png b/Site/static/images/pokemon/0936-09-000-0.png new file mode 100644 index 0000000..04d48e7 Binary files /dev/null and b/Site/static/images/pokemon/0936-09-000-0.png differ diff --git a/Site/static/images/pokemon/0936_Armarouge.png b/Site/static/images/pokemon/0936_Armarouge.png deleted file mode 100644 index 44c35b3..0000000 Binary files a/Site/static/images/pokemon/0936_Armarouge.png and /dev/null differ diff --git a/Site/static/images/pokemon/0937-09-000-0.png b/Site/static/images/pokemon/0937-09-000-0.png new file mode 100644 index 0000000..dd90ffd Binary files /dev/null and b/Site/static/images/pokemon/0937-09-000-0.png differ diff --git a/Site/static/images/pokemon/0937_Ceruledge.png b/Site/static/images/pokemon/0937_Ceruledge.png deleted file mode 100644 index 3922519..0000000 Binary files a/Site/static/images/pokemon/0937_Ceruledge.png and /dev/null differ diff --git a/Site/static/images/pokemon/0938-09-000-0.png b/Site/static/images/pokemon/0938-09-000-0.png new file mode 100644 index 0000000..9c30f47 Binary files /dev/null and b/Site/static/images/pokemon/0938-09-000-0.png differ diff --git a/Site/static/images/pokemon/0938_Tadbulb.png b/Site/static/images/pokemon/0938_Tadbulb.png deleted file mode 100644 index 17e0c36..0000000 Binary files a/Site/static/images/pokemon/0938_Tadbulb.png and /dev/null differ diff --git a/Site/static/images/pokemon/0939-09-000-0.png b/Site/static/images/pokemon/0939-09-000-0.png new file mode 100644 index 0000000..f35e322 Binary files /dev/null and b/Site/static/images/pokemon/0939-09-000-0.png differ diff --git a/Site/static/images/pokemon/0939_Bellibolt.png b/Site/static/images/pokemon/0939_Bellibolt.png deleted file mode 100644 index 50ed2b8..0000000 Binary files a/Site/static/images/pokemon/0939_Bellibolt.png and /dev/null differ diff --git a/Site/static/images/pokemon/0940-09-000-0.png b/Site/static/images/pokemon/0940-09-000-0.png new file mode 100644 index 0000000..978feb3 Binary files /dev/null and b/Site/static/images/pokemon/0940-09-000-0.png differ diff --git a/Site/static/images/pokemon/0940_Wattrel.png b/Site/static/images/pokemon/0940_Wattrel.png deleted file mode 100644 index 6d5c9c3..0000000 Binary files a/Site/static/images/pokemon/0940_Wattrel.png and /dev/null differ diff --git a/Site/static/images/pokemon/0941-09-000-0.png b/Site/static/images/pokemon/0941-09-000-0.png new file mode 100644 index 0000000..be084e2 Binary files /dev/null and b/Site/static/images/pokemon/0941-09-000-0.png differ diff --git a/Site/static/images/pokemon/0941_Kilowattrel.png b/Site/static/images/pokemon/0941_Kilowattrel.png deleted file mode 100644 index 5b9996d..0000000 Binary files a/Site/static/images/pokemon/0941_Kilowattrel.png and /dev/null differ diff --git a/Site/static/images/pokemon/0942-09-000-0.png b/Site/static/images/pokemon/0942-09-000-0.png new file mode 100644 index 0000000..6907a73 Binary files /dev/null and b/Site/static/images/pokemon/0942-09-000-0.png differ diff --git a/Site/static/images/pokemon/0942_Maschiff.png b/Site/static/images/pokemon/0942_Maschiff.png deleted file mode 100644 index 0f879c7..0000000 Binary files a/Site/static/images/pokemon/0942_Maschiff.png and /dev/null differ diff --git a/Site/static/images/pokemon/0943-09-000-0.png b/Site/static/images/pokemon/0943-09-000-0.png new file mode 100644 index 0000000..6f528b6 Binary files /dev/null and b/Site/static/images/pokemon/0943-09-000-0.png differ diff --git a/Site/static/images/pokemon/0943_Mabosstiff.png b/Site/static/images/pokemon/0943_Mabosstiff.png deleted file mode 100644 index 3be3a5f..0000000 Binary files a/Site/static/images/pokemon/0943_Mabosstiff.png and /dev/null differ diff --git a/Site/static/images/pokemon/0944-09-000-0.png b/Site/static/images/pokemon/0944-09-000-0.png new file mode 100644 index 0000000..6c4e5a1 Binary files /dev/null and b/Site/static/images/pokemon/0944-09-000-0.png differ diff --git a/Site/static/images/pokemon/0944_Shroodle.png b/Site/static/images/pokemon/0944_Shroodle.png deleted file mode 100644 index b40edb1..0000000 Binary files a/Site/static/images/pokemon/0944_Shroodle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0945-09-000-0.png b/Site/static/images/pokemon/0945-09-000-0.png new file mode 100644 index 0000000..5322349 Binary files /dev/null and b/Site/static/images/pokemon/0945-09-000-0.png differ diff --git a/Site/static/images/pokemon/0945_Grafaiai.png b/Site/static/images/pokemon/0945_Grafaiai.png deleted file mode 100644 index 25bd83f..0000000 Binary files a/Site/static/images/pokemon/0945_Grafaiai.png and /dev/null differ diff --git a/Site/static/images/pokemon/0946-09-000-0.png b/Site/static/images/pokemon/0946-09-000-0.png new file mode 100644 index 0000000..3236318 Binary files /dev/null and b/Site/static/images/pokemon/0946-09-000-0.png differ diff --git a/Site/static/images/pokemon/0946_Bramblin.png b/Site/static/images/pokemon/0946_Bramblin.png deleted file mode 100644 index b9bb56b..0000000 Binary files a/Site/static/images/pokemon/0946_Bramblin.png and /dev/null differ diff --git a/Site/static/images/pokemon/0947-09-000-0.png b/Site/static/images/pokemon/0947-09-000-0.png new file mode 100644 index 0000000..edab1fa Binary files /dev/null and b/Site/static/images/pokemon/0947-09-000-0.png differ diff --git a/Site/static/images/pokemon/0947_Brambleghast.png b/Site/static/images/pokemon/0947_Brambleghast.png deleted file mode 100644 index c10ac51..0000000 Binary files a/Site/static/images/pokemon/0947_Brambleghast.png and /dev/null differ diff --git a/Site/static/images/pokemon/0948-09-000-0.png b/Site/static/images/pokemon/0948-09-000-0.png new file mode 100644 index 0000000..0cf292e Binary files /dev/null and b/Site/static/images/pokemon/0948-09-000-0.png differ diff --git a/Site/static/images/pokemon/0948_Toedscool.png b/Site/static/images/pokemon/0948_Toedscool.png deleted file mode 100644 index 01743b9..0000000 Binary files a/Site/static/images/pokemon/0948_Toedscool.png and /dev/null differ diff --git a/Site/static/images/pokemon/0949-09-000-0.png b/Site/static/images/pokemon/0949-09-000-0.png new file mode 100644 index 0000000..0d18187 Binary files /dev/null and b/Site/static/images/pokemon/0949-09-000-0.png differ diff --git a/Site/static/images/pokemon/0949_Toedscruel.png b/Site/static/images/pokemon/0949_Toedscruel.png deleted file mode 100644 index 40eae80..0000000 Binary files a/Site/static/images/pokemon/0949_Toedscruel.png and /dev/null differ diff --git a/Site/static/images/pokemon/0950-09-000-0.png b/Site/static/images/pokemon/0950-09-000-0.png new file mode 100644 index 0000000..efae143 Binary files /dev/null and b/Site/static/images/pokemon/0950-09-000-0.png differ diff --git a/Site/static/images/pokemon/0950_Klawf.png b/Site/static/images/pokemon/0950_Klawf.png deleted file mode 100644 index 8451086..0000000 Binary files a/Site/static/images/pokemon/0950_Klawf.png and /dev/null differ diff --git a/Site/static/images/pokemon/0951-09-000-0.png b/Site/static/images/pokemon/0951-09-000-0.png new file mode 100644 index 0000000..9baa59c Binary files /dev/null and b/Site/static/images/pokemon/0951-09-000-0.png differ diff --git a/Site/static/images/pokemon/0951_Capsakid.png b/Site/static/images/pokemon/0951_Capsakid.png deleted file mode 100644 index 098cf97..0000000 Binary files a/Site/static/images/pokemon/0951_Capsakid.png and /dev/null differ diff --git a/Site/static/images/pokemon/0952-09-000-0.png b/Site/static/images/pokemon/0952-09-000-0.png new file mode 100644 index 0000000..9ca2e4d Binary files /dev/null and b/Site/static/images/pokemon/0952-09-000-0.png differ diff --git a/Site/static/images/pokemon/0952_Scovillain.png b/Site/static/images/pokemon/0952_Scovillain.png deleted file mode 100644 index 8bbe11f..0000000 Binary files a/Site/static/images/pokemon/0952_Scovillain.png and /dev/null differ diff --git a/Site/static/images/pokemon/0953-09-000-0.png b/Site/static/images/pokemon/0953-09-000-0.png new file mode 100644 index 0000000..6a6cd61 Binary files /dev/null and b/Site/static/images/pokemon/0953-09-000-0.png differ diff --git a/Site/static/images/pokemon/0953_Rellor.png b/Site/static/images/pokemon/0953_Rellor.png deleted file mode 100644 index 32cc1e1..0000000 Binary files a/Site/static/images/pokemon/0953_Rellor.png and /dev/null differ diff --git a/Site/static/images/pokemon/0954-09-000-0.png b/Site/static/images/pokemon/0954-09-000-0.png new file mode 100644 index 0000000..70a7867 Binary files /dev/null and b/Site/static/images/pokemon/0954-09-000-0.png differ diff --git a/Site/static/images/pokemon/0954_Rabsca.png b/Site/static/images/pokemon/0954_Rabsca.png deleted file mode 100644 index 158df4d..0000000 Binary files a/Site/static/images/pokemon/0954_Rabsca.png and /dev/null differ diff --git a/Site/static/images/pokemon/0955-09-000-0.png b/Site/static/images/pokemon/0955-09-000-0.png new file mode 100644 index 0000000..546f64d Binary files /dev/null and b/Site/static/images/pokemon/0955-09-000-0.png differ diff --git a/Site/static/images/pokemon/0955_Flittle.png b/Site/static/images/pokemon/0955_Flittle.png deleted file mode 100644 index ab9d141..0000000 Binary files a/Site/static/images/pokemon/0955_Flittle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0956-09-000-0.png b/Site/static/images/pokemon/0956-09-000-0.png new file mode 100644 index 0000000..bdf4b2f Binary files /dev/null and b/Site/static/images/pokemon/0956-09-000-0.png differ diff --git a/Site/static/images/pokemon/0956_Espathra.png b/Site/static/images/pokemon/0956_Espathra.png deleted file mode 100644 index 0d9c42b..0000000 Binary files a/Site/static/images/pokemon/0956_Espathra.png and /dev/null differ diff --git a/Site/static/images/pokemon/0957-09-000-0.png b/Site/static/images/pokemon/0957-09-000-0.png new file mode 100644 index 0000000..6c24fdd Binary files /dev/null and b/Site/static/images/pokemon/0957-09-000-0.png differ diff --git a/Site/static/images/pokemon/0957_Tinkatink.png b/Site/static/images/pokemon/0957_Tinkatink.png deleted file mode 100644 index ccc1ebc..0000000 Binary files a/Site/static/images/pokemon/0957_Tinkatink.png and /dev/null differ diff --git a/Site/static/images/pokemon/0958-09-000-0.png b/Site/static/images/pokemon/0958-09-000-0.png new file mode 100644 index 0000000..b1f4eb5 Binary files /dev/null and b/Site/static/images/pokemon/0958-09-000-0.png differ diff --git a/Site/static/images/pokemon/0958_Tinkatuff.png b/Site/static/images/pokemon/0958_Tinkatuff.png deleted file mode 100644 index 1db1a15..0000000 Binary files a/Site/static/images/pokemon/0958_Tinkatuff.png and /dev/null differ diff --git a/Site/static/images/pokemon/0959-09-000-0.png b/Site/static/images/pokemon/0959-09-000-0.png new file mode 100644 index 0000000..384a6f1 Binary files /dev/null and b/Site/static/images/pokemon/0959-09-000-0.png differ diff --git a/Site/static/images/pokemon/0959_Tinkaton.png b/Site/static/images/pokemon/0959_Tinkaton.png deleted file mode 100644 index 01c37f0..0000000 Binary files a/Site/static/images/pokemon/0959_Tinkaton.png and /dev/null differ diff --git a/Site/static/images/pokemon/0960-09-000-0.png b/Site/static/images/pokemon/0960-09-000-0.png new file mode 100644 index 0000000..ee23ee1 Binary files /dev/null and b/Site/static/images/pokemon/0960-09-000-0.png differ diff --git a/Site/static/images/pokemon/0960_Wiglett.png b/Site/static/images/pokemon/0960_Wiglett.png deleted file mode 100644 index 7ad5d9d..0000000 Binary files a/Site/static/images/pokemon/0960_Wiglett.png and /dev/null differ diff --git a/Site/static/images/pokemon/0961-09-000-0.png b/Site/static/images/pokemon/0961-09-000-0.png new file mode 100644 index 0000000..a6bf57b Binary files /dev/null and b/Site/static/images/pokemon/0961-09-000-0.png differ diff --git a/Site/static/images/pokemon/0961_Wugtrio.png b/Site/static/images/pokemon/0961_Wugtrio.png deleted file mode 100644 index b9553e1..0000000 Binary files a/Site/static/images/pokemon/0961_Wugtrio.png and /dev/null differ diff --git a/Site/static/images/pokemon/0962-09-000-0.png b/Site/static/images/pokemon/0962-09-000-0.png new file mode 100644 index 0000000..5135e73 Binary files /dev/null and b/Site/static/images/pokemon/0962-09-000-0.png differ diff --git a/Site/static/images/pokemon/0962_Bombirdier.png b/Site/static/images/pokemon/0962_Bombirdier.png deleted file mode 100644 index 257dee2..0000000 Binary files a/Site/static/images/pokemon/0962_Bombirdier.png and /dev/null differ diff --git a/Site/static/images/pokemon/0963-09-000-0.png b/Site/static/images/pokemon/0963-09-000-0.png new file mode 100644 index 0000000..20ea157 Binary files /dev/null and b/Site/static/images/pokemon/0963-09-000-0.png differ diff --git a/Site/static/images/pokemon/0963_Finizen.png b/Site/static/images/pokemon/0963_Finizen.png deleted file mode 100644 index 31a1cda..0000000 Binary files a/Site/static/images/pokemon/0963_Finizen.png and /dev/null differ diff --git a/Site/static/images/pokemon/0964-09-001-0.png b/Site/static/images/pokemon/0964-09-001-0.png new file mode 100644 index 0000000..4b9f964 Binary files /dev/null and b/Site/static/images/pokemon/0964-09-001-0.png differ diff --git a/Site/static/images/pokemon/0964-09-002-0.png b/Site/static/images/pokemon/0964-09-002-0.png new file mode 100644 index 0000000..24cb97f Binary files /dev/null and b/Site/static/images/pokemon/0964-09-002-0.png differ diff --git a/Site/static/images/pokemon/0964_Palafin.png b/Site/static/images/pokemon/0964_Palafin.png deleted file mode 100644 index 2abbf66..0000000 Binary files a/Site/static/images/pokemon/0964_Palafin.png and /dev/null differ diff --git a/Site/static/images/pokemon/0965-09-000-0.png b/Site/static/images/pokemon/0965-09-000-0.png new file mode 100644 index 0000000..4491350 Binary files /dev/null and b/Site/static/images/pokemon/0965-09-000-0.png differ diff --git a/Site/static/images/pokemon/0965_Varoom.png b/Site/static/images/pokemon/0965_Varoom.png deleted file mode 100644 index 00f67e0..0000000 Binary files a/Site/static/images/pokemon/0965_Varoom.png and /dev/null differ diff --git a/Site/static/images/pokemon/0966-09-000-0.png b/Site/static/images/pokemon/0966-09-000-0.png new file mode 100644 index 0000000..5318105 Binary files /dev/null and b/Site/static/images/pokemon/0966-09-000-0.png differ diff --git a/Site/static/images/pokemon/0966_Revavroom.png b/Site/static/images/pokemon/0966_Revavroom.png deleted file mode 100644 index ddf3d98..0000000 Binary files a/Site/static/images/pokemon/0966_Revavroom.png and /dev/null differ diff --git a/Site/static/images/pokemon/0967-09-000-0.png b/Site/static/images/pokemon/0967-09-000-0.png new file mode 100644 index 0000000..6d7eaf4 Binary files /dev/null and b/Site/static/images/pokemon/0967-09-000-0.png differ diff --git a/Site/static/images/pokemon/0967_Cyclizar.png b/Site/static/images/pokemon/0967_Cyclizar.png deleted file mode 100644 index 40d0178..0000000 Binary files a/Site/static/images/pokemon/0967_Cyclizar.png and /dev/null differ diff --git a/Site/static/images/pokemon/0968-09-000-0.png b/Site/static/images/pokemon/0968-09-000-0.png new file mode 100644 index 0000000..b68a345 Binary files /dev/null and b/Site/static/images/pokemon/0968-09-000-0.png differ diff --git a/Site/static/images/pokemon/0968_Orthworm.png b/Site/static/images/pokemon/0968_Orthworm.png deleted file mode 100644 index 784aa2d..0000000 Binary files a/Site/static/images/pokemon/0968_Orthworm.png and /dev/null differ diff --git a/Site/static/images/pokemon/0969-09-000-0.png b/Site/static/images/pokemon/0969-09-000-0.png new file mode 100644 index 0000000..1cd0250 Binary files /dev/null and b/Site/static/images/pokemon/0969-09-000-0.png differ diff --git a/Site/static/images/pokemon/0969_Glimmet.png b/Site/static/images/pokemon/0969_Glimmet.png deleted file mode 100644 index 2151b81..0000000 Binary files a/Site/static/images/pokemon/0969_Glimmet.png and /dev/null differ diff --git a/Site/static/images/pokemon/0970-09-000-0.png b/Site/static/images/pokemon/0970-09-000-0.png new file mode 100644 index 0000000..a969d32 Binary files /dev/null and b/Site/static/images/pokemon/0970-09-000-0.png differ diff --git a/Site/static/images/pokemon/0970_Glimmora.png b/Site/static/images/pokemon/0970_Glimmora.png deleted file mode 100644 index 9bd07e4..0000000 Binary files a/Site/static/images/pokemon/0970_Glimmora.png and /dev/null differ diff --git a/Site/static/images/pokemon/0971-09-000-0.png b/Site/static/images/pokemon/0971-09-000-0.png new file mode 100644 index 0000000..eed4efd Binary files /dev/null and b/Site/static/images/pokemon/0971-09-000-0.png differ diff --git a/Site/static/images/pokemon/0971_Greavard.png b/Site/static/images/pokemon/0971_Greavard.png deleted file mode 100644 index 952350d..0000000 Binary files a/Site/static/images/pokemon/0971_Greavard.png and /dev/null differ diff --git a/Site/static/images/pokemon/0972-09-000-0.png b/Site/static/images/pokemon/0972-09-000-0.png new file mode 100644 index 0000000..05d107d Binary files /dev/null and b/Site/static/images/pokemon/0972-09-000-0.png differ diff --git a/Site/static/images/pokemon/0972_Houndstone.png b/Site/static/images/pokemon/0972_Houndstone.png deleted file mode 100644 index b9ad633..0000000 Binary files a/Site/static/images/pokemon/0972_Houndstone.png and /dev/null differ diff --git a/Site/static/images/pokemon/0973-09-000-0.png b/Site/static/images/pokemon/0973-09-000-0.png new file mode 100644 index 0000000..8792786 Binary files /dev/null and b/Site/static/images/pokemon/0973-09-000-0.png differ diff --git a/Site/static/images/pokemon/0973_Flamigo.png b/Site/static/images/pokemon/0973_Flamigo.png deleted file mode 100644 index 9fc84b0..0000000 Binary files a/Site/static/images/pokemon/0973_Flamigo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0974-09-000-0.png b/Site/static/images/pokemon/0974-09-000-0.png new file mode 100644 index 0000000..968de60 Binary files /dev/null and b/Site/static/images/pokemon/0974-09-000-0.png differ diff --git a/Site/static/images/pokemon/0974_Cetoddle.png b/Site/static/images/pokemon/0974_Cetoddle.png deleted file mode 100644 index 374f01b..0000000 Binary files a/Site/static/images/pokemon/0974_Cetoddle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0975-09-000-0.png b/Site/static/images/pokemon/0975-09-000-0.png new file mode 100644 index 0000000..9126ffe Binary files /dev/null and b/Site/static/images/pokemon/0975-09-000-0.png differ diff --git a/Site/static/images/pokemon/0975_Cetitan.png b/Site/static/images/pokemon/0975_Cetitan.png deleted file mode 100644 index ad4e9d9..0000000 Binary files a/Site/static/images/pokemon/0975_Cetitan.png and /dev/null differ diff --git a/Site/static/images/pokemon/0976-09-000-0.png b/Site/static/images/pokemon/0976-09-000-0.png new file mode 100644 index 0000000..a40326a Binary files /dev/null and b/Site/static/images/pokemon/0976-09-000-0.png differ diff --git a/Site/static/images/pokemon/0976_Veluza.png b/Site/static/images/pokemon/0976_Veluza.png deleted file mode 100644 index 37ea642..0000000 Binary files a/Site/static/images/pokemon/0976_Veluza.png and /dev/null differ diff --git a/Site/static/images/pokemon/0977-09-000-0.png b/Site/static/images/pokemon/0977-09-000-0.png new file mode 100644 index 0000000..a82a290 Binary files /dev/null and b/Site/static/images/pokemon/0977-09-000-0.png differ diff --git a/Site/static/images/pokemon/0977_Dondozo.png b/Site/static/images/pokemon/0977_Dondozo.png deleted file mode 100644 index 294f7a5..0000000 Binary files a/Site/static/images/pokemon/0977_Dondozo.png and /dev/null differ diff --git a/Site/static/images/pokemon/0978-09-001-0.png b/Site/static/images/pokemon/0978-09-001-0.png new file mode 100644 index 0000000..857d34b Binary files /dev/null and b/Site/static/images/pokemon/0978-09-001-0.png differ diff --git a/Site/static/images/pokemon/0978-09-002-0.png b/Site/static/images/pokemon/0978-09-002-0.png new file mode 100644 index 0000000..ab973d2 Binary files /dev/null and b/Site/static/images/pokemon/0978-09-002-0.png differ diff --git a/Site/static/images/pokemon/0978-09-003-0.png b/Site/static/images/pokemon/0978-09-003-0.png new file mode 100644 index 0000000..2d3893d Binary files /dev/null and b/Site/static/images/pokemon/0978-09-003-0.png differ diff --git a/Site/static/images/pokemon/0978_Tatsugiri.png b/Site/static/images/pokemon/0978_Tatsugiri.png deleted file mode 100644 index 0c5fa4e..0000000 Binary files a/Site/static/images/pokemon/0978_Tatsugiri.png and /dev/null differ diff --git a/Site/static/images/pokemon/0978_Tatsugiri_(Droopy_Form).png b/Site/static/images/pokemon/0978_Tatsugiri_(Droopy_Form).png deleted file mode 100644 index 67b3c0c..0000000 Binary files a/Site/static/images/pokemon/0978_Tatsugiri_(Droopy_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0978_Tatsugiri_(Stretchy_Form).png b/Site/static/images/pokemon/0978_Tatsugiri_(Stretchy_Form).png deleted file mode 100644 index f0f745c..0000000 Binary files a/Site/static/images/pokemon/0978_Tatsugiri_(Stretchy_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0979-09-000-0.png b/Site/static/images/pokemon/0979-09-000-0.png new file mode 100644 index 0000000..e8b57fd Binary files /dev/null and b/Site/static/images/pokemon/0979-09-000-0.png differ diff --git a/Site/static/images/pokemon/0979_Annihilape.png b/Site/static/images/pokemon/0979_Annihilape.png deleted file mode 100644 index 43a53cf..0000000 Binary files a/Site/static/images/pokemon/0979_Annihilape.png and /dev/null differ diff --git a/Site/static/images/pokemon/0980-09-000-0.png b/Site/static/images/pokemon/0980-09-000-0.png new file mode 100644 index 0000000..163e5d5 Binary files /dev/null and b/Site/static/images/pokemon/0980-09-000-0.png differ diff --git a/Site/static/images/pokemon/0980_Clodsire.png b/Site/static/images/pokemon/0980_Clodsire.png deleted file mode 100644 index 2b3f935..0000000 Binary files a/Site/static/images/pokemon/0980_Clodsire.png and /dev/null differ diff --git a/Site/static/images/pokemon/0981-09-000-0.png b/Site/static/images/pokemon/0981-09-000-0.png new file mode 100644 index 0000000..5f3808a Binary files /dev/null and b/Site/static/images/pokemon/0981-09-000-0.png differ diff --git a/Site/static/images/pokemon/0981_Farigiraf.png b/Site/static/images/pokemon/0981_Farigiraf.png deleted file mode 100644 index 8af0880..0000000 Binary files a/Site/static/images/pokemon/0981_Farigiraf.png and /dev/null differ diff --git a/Site/static/images/pokemon/0982-09-001-0.png b/Site/static/images/pokemon/0982-09-001-0.png new file mode 100644 index 0000000..7b8906e Binary files /dev/null and b/Site/static/images/pokemon/0982-09-001-0.png differ diff --git a/Site/static/images/pokemon/0982-09-002-0.png b/Site/static/images/pokemon/0982-09-002-0.png new file mode 100644 index 0000000..0432bf3 Binary files /dev/null and b/Site/static/images/pokemon/0982-09-002-0.png differ diff --git a/Site/static/images/pokemon/0982_Dudunsparce.png b/Site/static/images/pokemon/0982_Dudunsparce.png deleted file mode 100644 index 8ab10d7..0000000 Binary files a/Site/static/images/pokemon/0982_Dudunsparce.png and /dev/null differ diff --git a/Site/static/images/pokemon/0982_Dudunsparce_(Three-Segment_Form).png b/Site/static/images/pokemon/0982_Dudunsparce_(Three-Segment_Form).png deleted file mode 100644 index 0479fb3..0000000 Binary files a/Site/static/images/pokemon/0982_Dudunsparce_(Three-Segment_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/0983-09-000-0.png b/Site/static/images/pokemon/0983-09-000-0.png new file mode 100644 index 0000000..1254676 Binary files /dev/null and b/Site/static/images/pokemon/0983-09-000-0.png differ diff --git a/Site/static/images/pokemon/0983_Kingambit.png b/Site/static/images/pokemon/0983_Kingambit.png deleted file mode 100644 index e88d1fa..0000000 Binary files a/Site/static/images/pokemon/0983_Kingambit.png and /dev/null differ diff --git a/Site/static/images/pokemon/0984-09-000-0.png b/Site/static/images/pokemon/0984-09-000-0.png new file mode 100644 index 0000000..39dc932 Binary files /dev/null and b/Site/static/images/pokemon/0984-09-000-0.png differ diff --git a/Site/static/images/pokemon/0984_Great_Tusk.png b/Site/static/images/pokemon/0984_Great_Tusk.png deleted file mode 100644 index 8de147a..0000000 Binary files a/Site/static/images/pokemon/0984_Great_Tusk.png and /dev/null differ diff --git a/Site/static/images/pokemon/0985-09-000-0.png b/Site/static/images/pokemon/0985-09-000-0.png new file mode 100644 index 0000000..9341b15 Binary files /dev/null and b/Site/static/images/pokemon/0985-09-000-0.png differ diff --git a/Site/static/images/pokemon/0985_Scream_Tail.png b/Site/static/images/pokemon/0985_Scream_Tail.png deleted file mode 100644 index d61b621..0000000 Binary files a/Site/static/images/pokemon/0985_Scream_Tail.png and /dev/null differ diff --git a/Site/static/images/pokemon/0986-09-000-0.png b/Site/static/images/pokemon/0986-09-000-0.png new file mode 100644 index 0000000..23fe575 Binary files /dev/null and b/Site/static/images/pokemon/0986-09-000-0.png differ diff --git a/Site/static/images/pokemon/0986_Brute_Bonnet.png b/Site/static/images/pokemon/0986_Brute_Bonnet.png deleted file mode 100644 index bc93bd4..0000000 Binary files a/Site/static/images/pokemon/0986_Brute_Bonnet.png and /dev/null differ diff --git a/Site/static/images/pokemon/0987-09-000-0.png b/Site/static/images/pokemon/0987-09-000-0.png new file mode 100644 index 0000000..18eb5ff Binary files /dev/null and b/Site/static/images/pokemon/0987-09-000-0.png differ diff --git a/Site/static/images/pokemon/0987_Flutter_Mane.png b/Site/static/images/pokemon/0987_Flutter_Mane.png deleted file mode 100644 index aa0b764..0000000 Binary files a/Site/static/images/pokemon/0987_Flutter_Mane.png and /dev/null differ diff --git a/Site/static/images/pokemon/0988-09-000-0.png b/Site/static/images/pokemon/0988-09-000-0.png new file mode 100644 index 0000000..6a18fbc Binary files /dev/null and b/Site/static/images/pokemon/0988-09-000-0.png differ diff --git a/Site/static/images/pokemon/0988_Slither_Wing.png b/Site/static/images/pokemon/0988_Slither_Wing.png deleted file mode 100644 index 65faf32..0000000 Binary files a/Site/static/images/pokemon/0988_Slither_Wing.png and /dev/null differ diff --git a/Site/static/images/pokemon/0989-09-000-0.png b/Site/static/images/pokemon/0989-09-000-0.png new file mode 100644 index 0000000..e9cd184 Binary files /dev/null and b/Site/static/images/pokemon/0989-09-000-0.png differ diff --git a/Site/static/images/pokemon/0989_Sandy_Shocks.png b/Site/static/images/pokemon/0989_Sandy_Shocks.png deleted file mode 100644 index 12bf650..0000000 Binary files a/Site/static/images/pokemon/0989_Sandy_Shocks.png and /dev/null differ diff --git a/Site/static/images/pokemon/0990-09-000-0.png b/Site/static/images/pokemon/0990-09-000-0.png new file mode 100644 index 0000000..acaac7a Binary files /dev/null and b/Site/static/images/pokemon/0990-09-000-0.png differ diff --git a/Site/static/images/pokemon/0990_Iron_Treads.png b/Site/static/images/pokemon/0990_Iron_Treads.png deleted file mode 100644 index ea5f4e4..0000000 Binary files a/Site/static/images/pokemon/0990_Iron_Treads.png and /dev/null differ diff --git a/Site/static/images/pokemon/0991-09-000-0.png b/Site/static/images/pokemon/0991-09-000-0.png new file mode 100644 index 0000000..4cfd81e Binary files /dev/null and b/Site/static/images/pokemon/0991-09-000-0.png differ diff --git a/Site/static/images/pokemon/0991_Iron_Bundle.png b/Site/static/images/pokemon/0991_Iron_Bundle.png deleted file mode 100644 index 2d819a0..0000000 Binary files a/Site/static/images/pokemon/0991_Iron_Bundle.png and /dev/null differ diff --git a/Site/static/images/pokemon/0992-09-000-0.png b/Site/static/images/pokemon/0992-09-000-0.png new file mode 100644 index 0000000..b7aec6b Binary files /dev/null and b/Site/static/images/pokemon/0992-09-000-0.png differ diff --git a/Site/static/images/pokemon/0992_Iron_Hands.png b/Site/static/images/pokemon/0992_Iron_Hands.png deleted file mode 100644 index 36cb09c..0000000 Binary files a/Site/static/images/pokemon/0992_Iron_Hands.png and /dev/null differ diff --git a/Site/static/images/pokemon/0993-09-000-0.png b/Site/static/images/pokemon/0993-09-000-0.png new file mode 100644 index 0000000..b8b0997 Binary files /dev/null and b/Site/static/images/pokemon/0993-09-000-0.png differ diff --git a/Site/static/images/pokemon/0993_Iron_Jugulis.png b/Site/static/images/pokemon/0993_Iron_Jugulis.png deleted file mode 100644 index 164f590..0000000 Binary files a/Site/static/images/pokemon/0993_Iron_Jugulis.png and /dev/null differ diff --git a/Site/static/images/pokemon/0994-09-000-0.png b/Site/static/images/pokemon/0994-09-000-0.png new file mode 100644 index 0000000..f7257fe Binary files /dev/null and b/Site/static/images/pokemon/0994-09-000-0.png differ diff --git a/Site/static/images/pokemon/0994_Iron_Moth.png b/Site/static/images/pokemon/0994_Iron_Moth.png deleted file mode 100644 index 66d7088..0000000 Binary files a/Site/static/images/pokemon/0994_Iron_Moth.png and /dev/null differ diff --git a/Site/static/images/pokemon/0995-09-000-0.png b/Site/static/images/pokemon/0995-09-000-0.png new file mode 100644 index 0000000..6a45eec Binary files /dev/null and b/Site/static/images/pokemon/0995-09-000-0.png differ diff --git a/Site/static/images/pokemon/0995_Iron_Thorns.png b/Site/static/images/pokemon/0995_Iron_Thorns.png deleted file mode 100644 index 93625cc..0000000 Binary files a/Site/static/images/pokemon/0995_Iron_Thorns.png and /dev/null differ diff --git a/Site/static/images/pokemon/0996-09-000-0.png b/Site/static/images/pokemon/0996-09-000-0.png new file mode 100644 index 0000000..1aa71cd Binary files /dev/null and b/Site/static/images/pokemon/0996-09-000-0.png differ diff --git a/Site/static/images/pokemon/0996_Frigibax.png b/Site/static/images/pokemon/0996_Frigibax.png deleted file mode 100644 index 4c45caf..0000000 Binary files a/Site/static/images/pokemon/0996_Frigibax.png and /dev/null differ diff --git a/Site/static/images/pokemon/0997-09-000-0.png b/Site/static/images/pokemon/0997-09-000-0.png new file mode 100644 index 0000000..e30893f Binary files /dev/null and b/Site/static/images/pokemon/0997-09-000-0.png differ diff --git a/Site/static/images/pokemon/0997_Arctibax.png b/Site/static/images/pokemon/0997_Arctibax.png deleted file mode 100644 index 4334501..0000000 Binary files a/Site/static/images/pokemon/0997_Arctibax.png and /dev/null differ diff --git a/Site/static/images/pokemon/0998-09-000-0.png b/Site/static/images/pokemon/0998-09-000-0.png new file mode 100644 index 0000000..6c15d8f Binary files /dev/null and b/Site/static/images/pokemon/0998-09-000-0.png differ diff --git a/Site/static/images/pokemon/0998_Baxcalibur.png b/Site/static/images/pokemon/0998_Baxcalibur.png deleted file mode 100644 index 04db6c0..0000000 Binary files a/Site/static/images/pokemon/0998_Baxcalibur.png and /dev/null differ diff --git a/Site/static/images/pokemon/0999-09-001-0.png b/Site/static/images/pokemon/0999-09-001-0.png new file mode 100644 index 0000000..02e58b0 Binary files /dev/null and b/Site/static/images/pokemon/0999-09-001-0.png differ diff --git a/Site/static/images/pokemon/0999-09-002-0.png b/Site/static/images/pokemon/0999-09-002-0.png new file mode 100644 index 0000000..c8ec62e Binary files /dev/null and b/Site/static/images/pokemon/0999-09-002-0.png differ diff --git a/Site/static/images/pokemon/0999_Gimmighoul.png b/Site/static/images/pokemon/0999_Gimmighoul.png deleted file mode 100644 index 9da4d51..0000000 Binary files a/Site/static/images/pokemon/0999_Gimmighoul.png and /dev/null differ diff --git a/Site/static/images/pokemon/0999_Gimmighoul_(Roaming_Form).png b/Site/static/images/pokemon/0999_Gimmighoul_(Roaming_Form).png deleted file mode 100644 index d88d4a7..0000000 Binary files a/Site/static/images/pokemon/0999_Gimmighoul_(Roaming_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/1000-09-000-0.png b/Site/static/images/pokemon/1000-09-000-0.png new file mode 100644 index 0000000..49dab48 Binary files /dev/null and b/Site/static/images/pokemon/1000-09-000-0.png differ diff --git a/Site/static/images/pokemon/1000_Gholdengo.png b/Site/static/images/pokemon/1000_Gholdengo.png deleted file mode 100644 index 99a7357..0000000 Binary files a/Site/static/images/pokemon/1000_Gholdengo.png and /dev/null differ diff --git a/Site/static/images/pokemon/1001-09-000-0.png b/Site/static/images/pokemon/1001-09-000-0.png new file mode 100644 index 0000000..6b1bfac Binary files /dev/null and b/Site/static/images/pokemon/1001-09-000-0.png differ diff --git a/Site/static/images/pokemon/1001_Wo-Chien.png b/Site/static/images/pokemon/1001_Wo-Chien.png deleted file mode 100644 index d434094..0000000 Binary files a/Site/static/images/pokemon/1001_Wo-Chien.png and /dev/null differ diff --git a/Site/static/images/pokemon/1002-09-000-0.png b/Site/static/images/pokemon/1002-09-000-0.png new file mode 100644 index 0000000..4374538 Binary files /dev/null and b/Site/static/images/pokemon/1002-09-000-0.png differ diff --git a/Site/static/images/pokemon/1002_Chien-Pao.png b/Site/static/images/pokemon/1002_Chien-Pao.png deleted file mode 100644 index 1772034..0000000 Binary files a/Site/static/images/pokemon/1002_Chien-Pao.png and /dev/null differ diff --git a/Site/static/images/pokemon/1003-09-000-0.png b/Site/static/images/pokemon/1003-09-000-0.png new file mode 100644 index 0000000..e18546e Binary files /dev/null and b/Site/static/images/pokemon/1003-09-000-0.png differ diff --git a/Site/static/images/pokemon/1003_Ting-Lu.png b/Site/static/images/pokemon/1003_Ting-Lu.png deleted file mode 100644 index b98bbae..0000000 Binary files a/Site/static/images/pokemon/1003_Ting-Lu.png and /dev/null differ diff --git a/Site/static/images/pokemon/1004-09-000-0.png b/Site/static/images/pokemon/1004-09-000-0.png new file mode 100644 index 0000000..af04c56 Binary files /dev/null and b/Site/static/images/pokemon/1004-09-000-0.png differ diff --git a/Site/static/images/pokemon/1004_Chi-Yu.png b/Site/static/images/pokemon/1004_Chi-Yu.png deleted file mode 100644 index 76ebb47..0000000 Binary files a/Site/static/images/pokemon/1004_Chi-Yu.png and /dev/null differ diff --git a/Site/static/images/pokemon/1005-09-000-0.png b/Site/static/images/pokemon/1005-09-000-0.png new file mode 100644 index 0000000..4f9a300 Binary files /dev/null and b/Site/static/images/pokemon/1005-09-000-0.png differ diff --git a/Site/static/images/pokemon/1005_Roaring_Moon.png b/Site/static/images/pokemon/1005_Roaring_Moon.png deleted file mode 100644 index 700ef9a..0000000 Binary files a/Site/static/images/pokemon/1005_Roaring_Moon.png and /dev/null differ diff --git a/Site/static/images/pokemon/1006-09-000-0.png b/Site/static/images/pokemon/1006-09-000-0.png new file mode 100644 index 0000000..ef54dad Binary files /dev/null and b/Site/static/images/pokemon/1006-09-000-0.png differ diff --git a/Site/static/images/pokemon/1006_Iron_Valiant.png b/Site/static/images/pokemon/1006_Iron_Valiant.png deleted file mode 100644 index 2df66dd..0000000 Binary files a/Site/static/images/pokemon/1006_Iron_Valiant.png and /dev/null differ diff --git a/Site/static/images/pokemon/1007-09-000-0.png b/Site/static/images/pokemon/1007-09-000-0.png new file mode 100644 index 0000000..af87bb7 Binary files /dev/null and b/Site/static/images/pokemon/1007-09-000-0.png differ diff --git a/Site/static/images/pokemon/1007_Koraidon.png b/Site/static/images/pokemon/1007_Koraidon.png deleted file mode 100644 index 4fcf7a1..0000000 Binary files a/Site/static/images/pokemon/1007_Koraidon.png and /dev/null differ diff --git a/Site/static/images/pokemon/1008-09-000-0.png b/Site/static/images/pokemon/1008-09-000-0.png new file mode 100644 index 0000000..b4cd2ea Binary files /dev/null and b/Site/static/images/pokemon/1008-09-000-0.png differ diff --git a/Site/static/images/pokemon/1008_Miraidon.png b/Site/static/images/pokemon/1008_Miraidon.png deleted file mode 100644 index 55f9bc8..0000000 Binary files a/Site/static/images/pokemon/1008_Miraidon.png and /dev/null differ diff --git a/Site/static/images/pokemon/1009-09-000-0.png b/Site/static/images/pokemon/1009-09-000-0.png new file mode 100644 index 0000000..6365ef1 Binary files /dev/null and b/Site/static/images/pokemon/1009-09-000-0.png differ diff --git a/Site/static/images/pokemon/1009_Walking_Wake.png b/Site/static/images/pokemon/1009_Walking_Wake.png deleted file mode 100644 index 36db024..0000000 Binary files a/Site/static/images/pokemon/1009_Walking_Wake.png and /dev/null differ diff --git a/Site/static/images/pokemon/1010-09-000-0.png b/Site/static/images/pokemon/1010-09-000-0.png new file mode 100644 index 0000000..5d55ae0 Binary files /dev/null and b/Site/static/images/pokemon/1010-09-000-0.png differ diff --git a/Site/static/images/pokemon/1010_Iron_Leaves.png b/Site/static/images/pokemon/1010_Iron_Leaves.png deleted file mode 100644 index f4381f4..0000000 Binary files a/Site/static/images/pokemon/1010_Iron_Leaves.png and /dev/null differ diff --git a/Site/static/images/pokemon/1011-09-000-0.png b/Site/static/images/pokemon/1011-09-000-0.png new file mode 100644 index 0000000..a4657af Binary files /dev/null and b/Site/static/images/pokemon/1011-09-000-0.png differ diff --git a/Site/static/images/pokemon/1011_Dipplin.png b/Site/static/images/pokemon/1011_Dipplin.png deleted file mode 100644 index 4019767..0000000 Binary files a/Site/static/images/pokemon/1011_Dipplin.png and /dev/null differ diff --git a/Site/static/images/pokemon/1012-09-000-0.png b/Site/static/images/pokemon/1012-09-000-0.png new file mode 100644 index 0000000..815784a Binary files /dev/null and b/Site/static/images/pokemon/1012-09-000-0.png differ diff --git a/Site/static/images/pokemon/1012_Poltchageist.png b/Site/static/images/pokemon/1012_Poltchageist.png deleted file mode 100644 index 34ca7e9..0000000 Binary files a/Site/static/images/pokemon/1012_Poltchageist.png and /dev/null differ diff --git a/Site/static/images/pokemon/1012_Poltchageist_(Artisan_Form).png b/Site/static/images/pokemon/1012_Poltchageist_(Artisan_Form).png deleted file mode 100644 index 34ca7e9..0000000 Binary files a/Site/static/images/pokemon/1012_Poltchageist_(Artisan_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/1013-09-000-0.png b/Site/static/images/pokemon/1013-09-000-0.png new file mode 100644 index 0000000..253f384 Binary files /dev/null and b/Site/static/images/pokemon/1013-09-000-0.png differ diff --git a/Site/static/images/pokemon/1013_Sinistcha.png b/Site/static/images/pokemon/1013_Sinistcha.png deleted file mode 100644 index 6693bb2..0000000 Binary files a/Site/static/images/pokemon/1013_Sinistcha.png and /dev/null differ diff --git a/Site/static/images/pokemon/1013_Sinistcha_(Masterpiece_Form).png b/Site/static/images/pokemon/1013_Sinistcha_(Masterpiece_Form).png deleted file mode 100644 index 6693bb2..0000000 Binary files a/Site/static/images/pokemon/1013_Sinistcha_(Masterpiece_Form).png and /dev/null differ diff --git a/Site/static/images/pokemon/1014-09-000-0.png b/Site/static/images/pokemon/1014-09-000-0.png new file mode 100644 index 0000000..deeebe8 Binary files /dev/null and b/Site/static/images/pokemon/1014-09-000-0.png differ diff --git a/Site/static/images/pokemon/1014_Okidogi.png b/Site/static/images/pokemon/1014_Okidogi.png deleted file mode 100644 index 7fa15c7..0000000 Binary files a/Site/static/images/pokemon/1014_Okidogi.png and /dev/null differ diff --git a/Site/static/images/pokemon/1015-09-000-0.png b/Site/static/images/pokemon/1015-09-000-0.png new file mode 100644 index 0000000..655307c Binary files /dev/null and b/Site/static/images/pokemon/1015-09-000-0.png differ diff --git a/Site/static/images/pokemon/1015_Munkidori.png b/Site/static/images/pokemon/1015_Munkidori.png deleted file mode 100644 index 9ae048f..0000000 Binary files a/Site/static/images/pokemon/1015_Munkidori.png and /dev/null differ diff --git a/Site/static/images/pokemon/1016-09-000-0.png b/Site/static/images/pokemon/1016-09-000-0.png new file mode 100644 index 0000000..828e7df Binary files /dev/null and b/Site/static/images/pokemon/1016-09-000-0.png differ diff --git a/Site/static/images/pokemon/1016_Fezandipiti.png b/Site/static/images/pokemon/1016_Fezandipiti.png deleted file mode 100644 index ecede33..0000000 Binary files a/Site/static/images/pokemon/1016_Fezandipiti.png and /dev/null differ diff --git a/Site/static/images/pokemon/1017-09-001-0.png b/Site/static/images/pokemon/1017-09-001-0.png new file mode 100644 index 0000000..4722bd9 Binary files /dev/null and b/Site/static/images/pokemon/1017-09-001-0.png differ diff --git a/Site/static/images/pokemon/1017-09-002-0.png b/Site/static/images/pokemon/1017-09-002-0.png new file mode 100644 index 0000000..5ddddec Binary files /dev/null and b/Site/static/images/pokemon/1017-09-002-0.png differ diff --git a/Site/static/images/pokemon/1017-09-003-0.png b/Site/static/images/pokemon/1017-09-003-0.png new file mode 100644 index 0000000..35e3e00 Binary files /dev/null and b/Site/static/images/pokemon/1017-09-003-0.png differ diff --git a/Site/static/images/pokemon/1017-09-004-0.png b/Site/static/images/pokemon/1017-09-004-0.png new file mode 100644 index 0000000..d4db74d Binary files /dev/null and b/Site/static/images/pokemon/1017-09-004-0.png differ diff --git a/Site/static/images/pokemon/1017_Ogerpon.png b/Site/static/images/pokemon/1017_Ogerpon.png deleted file mode 100644 index 54213c9..0000000 Binary files a/Site/static/images/pokemon/1017_Ogerpon.png and /dev/null differ diff --git a/Site/static/images/pokemon/1018-09-000-0.png b/Site/static/images/pokemon/1018-09-000-0.png new file mode 100644 index 0000000..f6f8f11 Binary files /dev/null and b/Site/static/images/pokemon/1018-09-000-0.png differ diff --git a/Site/static/images/pokemon/1018_Archaludon.png b/Site/static/images/pokemon/1018_Archaludon.png deleted file mode 100644 index 27ac38f..0000000 Binary files a/Site/static/images/pokemon/1018_Archaludon.png and /dev/null differ diff --git a/Site/static/images/pokemon/1019-09-000-0.png b/Site/static/images/pokemon/1019-09-000-0.png new file mode 100644 index 0000000..e1fc755 Binary files /dev/null and b/Site/static/images/pokemon/1019-09-000-0.png differ diff --git a/Site/static/images/pokemon/1019_Hydrapple.png b/Site/static/images/pokemon/1019_Hydrapple.png deleted file mode 100644 index 7948e02..0000000 Binary files a/Site/static/images/pokemon/1019_Hydrapple.png and /dev/null differ diff --git a/Site/static/images/pokemon/1020-09-000-0.png b/Site/static/images/pokemon/1020-09-000-0.png new file mode 100644 index 0000000..55510bb Binary files /dev/null and b/Site/static/images/pokemon/1020-09-000-0.png differ diff --git a/Site/static/images/pokemon/1020_Gouging_Fire.png b/Site/static/images/pokemon/1020_Gouging_Fire.png deleted file mode 100644 index b7b5552..0000000 Binary files a/Site/static/images/pokemon/1020_Gouging_Fire.png and /dev/null differ diff --git a/Site/static/images/pokemon/1021-09-000-0.png b/Site/static/images/pokemon/1021-09-000-0.png new file mode 100644 index 0000000..05b1c4e Binary files /dev/null and b/Site/static/images/pokemon/1021-09-000-0.png differ diff --git a/Site/static/images/pokemon/1021_Raging_Bolt.png b/Site/static/images/pokemon/1021_Raging_Bolt.png deleted file mode 100644 index 5c44891..0000000 Binary files a/Site/static/images/pokemon/1021_Raging_Bolt.png and /dev/null differ diff --git a/Site/static/images/pokemon/1022-09-000-0.png b/Site/static/images/pokemon/1022-09-000-0.png new file mode 100644 index 0000000..462636e Binary files /dev/null and b/Site/static/images/pokemon/1022-09-000-0.png differ diff --git a/Site/static/images/pokemon/1022_Iron_Boulder.png b/Site/static/images/pokemon/1022_Iron_Boulder.png deleted file mode 100644 index ab6fa1d..0000000 Binary files a/Site/static/images/pokemon/1022_Iron_Boulder.png and /dev/null differ diff --git a/Site/static/images/pokemon/1023-09-000-0.png b/Site/static/images/pokemon/1023-09-000-0.png new file mode 100644 index 0000000..a23d416 Binary files /dev/null and b/Site/static/images/pokemon/1023-09-000-0.png differ diff --git a/Site/static/images/pokemon/1023_Iron_Crown.png b/Site/static/images/pokemon/1023_Iron_Crown.png deleted file mode 100644 index 0d3ebaa..0000000 Binary files a/Site/static/images/pokemon/1023_Iron_Crown.png and /dev/null differ diff --git a/Site/static/images/pokemon/1024-09-001-0.png b/Site/static/images/pokemon/1024-09-001-0.png new file mode 100644 index 0000000..ef72a1b Binary files /dev/null and b/Site/static/images/pokemon/1024-09-001-0.png differ diff --git a/Site/static/images/pokemon/1024-09-002-0.png b/Site/static/images/pokemon/1024-09-002-0.png new file mode 100644 index 0000000..4fe5f74 Binary files /dev/null and b/Site/static/images/pokemon/1024-09-002-0.png differ diff --git a/Site/static/images/pokemon/1024-09-003-0.png b/Site/static/images/pokemon/1024-09-003-0.png new file mode 100644 index 0000000..fdcc8ae Binary files /dev/null and b/Site/static/images/pokemon/1024-09-003-0.png differ diff --git a/Site/static/images/pokemon/1024_Terapagos.png b/Site/static/images/pokemon/1024_Terapagos.png deleted file mode 100644 index 5ad774c..0000000 Binary files a/Site/static/images/pokemon/1024_Terapagos.png and /dev/null differ diff --git a/Site/static/images/pokemon/1025-09-000-0.png b/Site/static/images/pokemon/1025-09-000-0.png new file mode 100644 index 0000000..726dcd3 Binary files /dev/null and b/Site/static/images/pokemon/1025-09-000-0.png differ diff --git a/Site/static/images/pokemon/1025_Pecharunt.png b/Site/static/images/pokemon/1025_Pecharunt.png deleted file mode 100644 index 1e5151c..0000000 Binary files a/Site/static/images/pokemon/1025_Pecharunt.png and /dev/null differ