diff --git a/.gitignore b/.gitignore
index 1def6e732d017f60be4f7b24b16a9f35f1ce153b..f5d4985de03e102e28c90a2a903de61fa9c4f752 100644
--- a/.gitignore
+++ b/.gitignore
@@ -37,6 +37,7 @@ build/
 ### Mac OS ###
 .idea/
 .mvn/
-.DS_Store
+**/.DS_Store
 **/*.vpp.bak*
-**/*.vpp.lck*
+**/*.vpp.lck
+
diff --git a/design/open-api.yaml b/design/open-api.yaml
index 55e5a0087a18a47c5de523fbff4b4cfc2f4a00fe..36c39d39133fb954e3ad6f9934a409b68ace2179 100644
--- a/design/open-api.yaml
+++ b/design/open-api.yaml
@@ -14,7 +14,7 @@ info:
     email: c.moraisfonseca@utwente.nl
 servers:
   - description: Local Deployment
-    url: http://localhost
+    url: http://localhost:8080/pokemon_war_exploded
 tags:
   - name: Trainer
     description: Routes for managing data about trainers.
@@ -23,7 +23,7 @@ tags:
   - name: Pokémon Type
     description: Routes for managing data about pokémon types.
 paths:
-  /trainer:
+  /trainers:
     get:
       description: Retrieves a collection of resources.
       tags:
@@ -47,7 +47,7 @@ paths:
           description: Bad request
         405:
           description: Server error
-  /trainer/{id}:
+  /trainers/{id}:
     get:
       description: Retrieves a resource with matching a {id}.
       tags:
@@ -205,7 +205,7 @@ paths:
         405:
           description: Server error
 
-  /pokemonType:
+  /pokemonTypes:
     get:
       description: Retrieves a collection of resources.
       tags:
@@ -221,7 +221,7 @@ paths:
         content:
           'application/json':
             schema:
-              type: object
+              $ref: '#/components/schemas/Trainer'
       responses:
         200:
           description: OK
@@ -229,7 +229,7 @@ paths:
           description: Bad request
         405:
           description: Server error
-  /pokemonType/{id}:
+  /pokemonTypes/{id}:
     get:
       description: Retrieves a resource with matching a {id}.
       tags:
diff --git a/mvnw b/mvnw
new file mode 100644
index 0000000000000000000000000000000000000000..8a8fb2282df5b8f7263470a5a2dc0e196f35f35f
--- /dev/null
+++ b/mvnw
@@ -0,0 +1,316 @@
+#!/bin/sh
+# ----------------------------------------------------------------------------
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#    https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+# ----------------------------------------------------------------------------
+
+# ----------------------------------------------------------------------------
+# Maven Start Up Batch script
+#
+# Required ENV vars:
+# ------------------
+#   JAVA_HOME - location of a JDK home dir
+#
+# Optional ENV vars
+# -----------------
+#   M2_HOME - location of maven2's installed home dir
+#   MAVEN_OPTS - parameters passed to the Java VM when running Maven
+#     e.g. to debug Maven itself, use
+#       set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
+#   MAVEN_SKIP_RC - flag to disable loading of mavenrc files
+# ----------------------------------------------------------------------------
+
+if [ -z "$MAVEN_SKIP_RC" ] ; then
+
+  if [ -f /usr/local/etc/mavenrc ] ; then
+    . /usr/local/etc/mavenrc
+  fi
+
+  if [ -f /etc/mavenrc ] ; then
+    . /etc/mavenrc
+  fi
+
+  if [ -f "$HOME/.mavenrc" ] ; then
+    . "$HOME/.mavenrc"
+  fi
+
+fi
+
+# OS specific support.  $var _must_ be set to either true or false.
+cygwin=false;
+darwin=false;
+mingw=false
+case "`uname`" in
+  CYGWIN*) cygwin=true ;;
+  MINGW*) mingw=true;;
+  Darwin*) darwin=true
+    # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
+    # See https://developer.apple.com/library/mac/qa/qa1170/_index.html
+    if [ -z "$JAVA_HOME" ]; then
+      if [ -x "/usr/libexec/java_home" ]; then
+        export JAVA_HOME="`/usr/libexec/java_home`"
+      else
+        export JAVA_HOME="/Library/Java/Home"
+      fi
+    fi
+    ;;
+esac
+
+if [ -z "$JAVA_HOME" ] ; then
+  if [ -r /etc/gentoo-release ] ; then
+    JAVA_HOME=`java-config --jre-home`
+  fi
+fi
+
+if [ -z "$M2_HOME" ] ; then
+  ## resolve links - $0 may be a link to maven's home
+  PRG="$0"
+
+  # need this for relative symlinks
+  while [ -h "$PRG" ] ; do
+    ls=`ls -ld "$PRG"`
+    link=`expr "$ls" : '.*-> \(.*\)$'`
+    if expr "$link" : '/.*' > /dev/null; then
+      PRG="$link"
+    else
+      PRG="`dirname "$PRG"`/$link"
+    fi
+  done
+
+  saveddir=`pwd`
+
+  M2_HOME=`dirname "$PRG"`/..
+
+  # make it fully qualified
+  M2_HOME=`cd "$M2_HOME" && pwd`
+
+  cd "$saveddir"
+  # echo Using m2 at $M2_HOME
+fi
+
+# For Cygwin, ensure paths are in UNIX format before anything is touched
+if $cygwin ; then
+  [ -n "$M2_HOME" ] &&
+    M2_HOME=`cygpath --unix "$M2_HOME"`
+  [ -n "$JAVA_HOME" ] &&
+    JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
+  [ -n "$CLASSPATH" ] &&
+    CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
+fi
+
+# For Mingw, ensure paths are in UNIX format before anything is touched
+if $mingw ; then
+  [ -n "$M2_HOME" ] &&
+    M2_HOME="`(cd "$M2_HOME"; pwd)`"
+  [ -n "$JAVA_HOME" ] &&
+    JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
+fi
+
+if [ -z "$JAVA_HOME" ]; then
+  javaExecutable="`which javac`"
+  if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then
+    # readlink(1) is not available as standard on Solaris 10.
+    readLink=`which readlink`
+    if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then
+      if $darwin ; then
+        javaHome="`dirname \"$javaExecutable\"`"
+        javaExecutable="`cd \"$javaHome\" && pwd -P`/javac"
+      else
+        javaExecutable="`readlink -f \"$javaExecutable\"`"
+      fi
+      javaHome="`dirname \"$javaExecutable\"`"
+      javaHome=`expr "$javaHome" : '\(.*\)/bin'`
+      JAVA_HOME="$javaHome"
+      export JAVA_HOME
+    fi
+  fi
+fi
+
+if [ -z "$JAVACMD" ] ; then
+  if [ -n "$JAVA_HOME"  ] ; then
+    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+      # IBM's JDK on AIX uses strange locations for the executables
+      JAVACMD="$JAVA_HOME/jre/sh/java"
+    else
+      JAVACMD="$JAVA_HOME/bin/java"
+    fi
+  else
+    JAVACMD="`\\unset -f command; \\command -v java`"
+  fi
+fi
+
+if [ ! -x "$JAVACMD" ] ; then
+  echo "Error: JAVA_HOME is not defined correctly." >&2
+  echo "  We cannot execute $JAVACMD" >&2
+  exit 1
+fi
+
+if [ -z "$JAVA_HOME" ] ; then
+  echo "Warning: JAVA_HOME environment variable is not set."
+fi
+
+CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
+
+# traverses directory structure from process work directory to filesystem root
+# first directory with .mvn subdirectory is considered project base directory
+find_maven_basedir() {
+
+  if [ -z "$1" ]
+  then
+    echo "Path not specified to find_maven_basedir"
+    return 1
+  fi
+
+  basedir="$1"
+  wdir="$1"
+  while [ "$wdir" != '/' ] ; do
+    if [ -d "$wdir"/.mvn ] ; then
+      basedir=$wdir
+      break
+    fi
+    # workaround for JBEAP-8937 (on Solaris 10/Sparc)
+    if [ -d "${wdir}" ]; then
+      wdir=`cd "$wdir/.."; pwd`
+    fi
+    # end of workaround
+  done
+  echo "${basedir}"
+}
+
+# concatenates all lines of a file
+concat_lines() {
+  if [ -f "$1" ]; then
+    echo "$(tr -s '\n' ' ' < "$1")"
+  fi
+}
+
+BASE_DIR=`find_maven_basedir "$(pwd)"`
+if [ -z "$BASE_DIR" ]; then
+  exit 1;
+fi
+
+##########################################################################################
+# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
+# This allows using the maven wrapper in projects that prohibit checking in binary data.
+##########################################################################################
+if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then
+    if [ "$MVNW_VERBOSE" = true ]; then
+      echo "Found .mvn/wrapper/maven-wrapper.jar"
+    fi
+else
+    if [ "$MVNW_VERBOSE" = true ]; then
+      echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..."
+    fi
+    if [ -n "$MVNW_REPOURL" ]; then
+      jarUrl="$MVNW_REPOURL/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar"
+    else
+      jarUrl="https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar"
+    fi
+    while IFS="=" read key value; do
+      case "$key" in (wrapperUrl) jarUrl="$value"; break ;;
+      esac
+    done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties"
+    if [ "$MVNW_VERBOSE" = true ]; then
+      echo "Downloading from: $jarUrl"
+    fi
+    wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar"
+    if $cygwin; then
+      wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"`
+    fi
+
+    if command -v wget > /dev/null; then
+        if [ "$MVNW_VERBOSE" = true ]; then
+          echo "Found wget ... using wget"
+        fi
+        if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
+            wget "$jarUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath"
+        else
+            wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath"
+        fi
+    elif command -v curl > /dev/null; then
+        if [ "$MVNW_VERBOSE" = true ]; then
+          echo "Found curl ... using curl"
+        fi
+        if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
+            curl -o "$wrapperJarPath" "$jarUrl" -f
+        else
+            curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f
+        fi
+
+    else
+        if [ "$MVNW_VERBOSE" = true ]; then
+          echo "Falling back to using Java to download"
+        fi
+        javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java"
+        # For Cygwin, switch paths to Windows format before running javac
+        if $cygwin; then
+          javaClass=`cygpath --path --windows "$javaClass"`
+        fi
+        if [ -e "$javaClass" ]; then
+            if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
+                if [ "$MVNW_VERBOSE" = true ]; then
+                  echo " - Compiling MavenWrapperDownloader.java ..."
+                fi
+                # Compiling the Java class
+                ("$JAVA_HOME/bin/javac" "$javaClass")
+            fi
+            if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
+                # Running the downloader
+                if [ "$MVNW_VERBOSE" = true ]; then
+                  echo " - Running MavenWrapperDownloader.java ..."
+                fi
+                ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR")
+            fi
+        fi
+    fi
+fi
+##########################################################################################
+# End of extension
+##########################################################################################
+
+export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}
+if [ "$MVNW_VERBOSE" = true ]; then
+  echo $MAVEN_PROJECTBASEDIR
+fi
+MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS"
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin; then
+  [ -n "$M2_HOME" ] &&
+    M2_HOME=`cygpath --path --windows "$M2_HOME"`
+  [ -n "$JAVA_HOME" ] &&
+    JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
+  [ -n "$CLASSPATH" ] &&
+    CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
+  [ -n "$MAVEN_PROJECTBASEDIR" ] &&
+    MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
+fi
+
+# Provide a "standardized" way to retrieve the CLI args that will
+# work with both Windows and non-Windows executions.
+MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@"
+export MAVEN_CMD_LINE_ARGS
+
+WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
+
+exec "$JAVACMD" \
+  $MAVEN_OPTS \
+  $MAVEN_DEBUG_OPTS \
+  -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \
+  "-Dmaven.home=${M2_HOME}" \
+  "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
+  ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@"
diff --git a/mvnw.cmd b/mvnw.cmd
new file mode 100644
index 0000000000000000000000000000000000000000..1d8ab018eaf11d9b3a4a90e7818ace373dfbb380
--- /dev/null
+++ b/mvnw.cmd
@@ -0,0 +1,188 @@
+@REM ----------------------------------------------------------------------------
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements.  See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership.  The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License.  You may obtain a copy of the License at
+@REM
+@REM    https://www.apache.org/licenses/LICENSE-2.0
+@REM
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied.  See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+@REM ----------------------------------------------------------------------------
+
+@REM ----------------------------------------------------------------------------
+@REM Maven Start Up Batch script
+@REM
+@REM Required ENV vars:
+@REM JAVA_HOME - location of a JDK home dir
+@REM
+@REM Optional ENV vars
+@REM M2_HOME - location of maven2's installed home dir
+@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
+@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending
+@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
+@REM     e.g. to debug Maven itself, use
+@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
+@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
+@REM ----------------------------------------------------------------------------
+
+@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
+@echo off
+@REM set title of command window
+title %0
+@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on'
+@if "%MAVEN_BATCH_ECHO%" == "on"  echo %MAVEN_BATCH_ECHO%
+
+@REM set %HOME% to equivalent of $HOME
+if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
+
+@REM Execute a user defined script before this one
+if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
+@REM check for pre script, once with legacy .bat ending and once with .cmd ending
+if exist "%USERPROFILE%\mavenrc_pre.bat" call "%USERPROFILE%\mavenrc_pre.bat" %*
+if exist "%USERPROFILE%\mavenrc_pre.cmd" call "%USERPROFILE%\mavenrc_pre.cmd" %*
+:skipRcPre
+
+@setlocal
+
+set ERROR_CODE=0
+
+@REM To isolate internal variables from possible post scripts, we use another setlocal
+@setlocal
+
+@REM ==== START VALIDATION ====
+if not "%JAVA_HOME%" == "" goto OkJHome
+
+echo.
+echo Error: JAVA_HOME not found in your environment. >&2
+echo Please set the JAVA_HOME variable in your environment to match the >&2
+echo location of your Java installation. >&2
+echo.
+goto error
+
+:OkJHome
+if exist "%JAVA_HOME%\bin\java.exe" goto init
+
+echo.
+echo Error: JAVA_HOME is set to an invalid directory. >&2
+echo JAVA_HOME = "%JAVA_HOME%" >&2
+echo Please set the JAVA_HOME variable in your environment to match the >&2
+echo location of your Java installation. >&2
+echo.
+goto error
+
+@REM ==== END VALIDATION ====
+
+:init
+
+@REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
+@REM Fallback to current working directory if not found.
+
+set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
+IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
+
+set EXEC_DIR=%CD%
+set WDIR=%EXEC_DIR%
+:findBaseDir
+IF EXIST "%WDIR%"\.mvn goto baseDirFound
+cd ..
+IF "%WDIR%"=="%CD%" goto baseDirNotFound
+set WDIR=%CD%
+goto findBaseDir
+
+:baseDirFound
+set MAVEN_PROJECTBASEDIR=%WDIR%
+cd "%EXEC_DIR%"
+goto endDetectBaseDir
+
+:baseDirNotFound
+set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
+cd "%EXEC_DIR%"
+
+:endDetectBaseDir
+
+IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
+
+@setlocal EnableExtensions EnableDelayedExpansion
+for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
+@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
+
+:endReadAdditionalConfig
+
+SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
+set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
+set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
+
+set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar"
+
+FOR /F "usebackq tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO (
+    IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B
+)
+
+@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
+@REM This allows using the maven wrapper in projects that prohibit checking in binary data.
+if exist %WRAPPER_JAR% (
+    if "%MVNW_VERBOSE%" == "true" (
+        echo Found %WRAPPER_JAR%
+    )
+) else (
+    if not "%MVNW_REPOURL%" == "" (
+        SET DOWNLOAD_URL="%MVNW_REPOURL%/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar"
+    )
+    if "%MVNW_VERBOSE%" == "true" (
+        echo Couldn't find %WRAPPER_JAR%, downloading it ...
+        echo Downloading from: %DOWNLOAD_URL%
+    )
+
+    powershell -Command "&{"^
+		"$webclient = new-object System.Net.WebClient;"^
+		"if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^
+		"$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^
+		"}"^
+		"[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^
+		"}"
+    if "%MVNW_VERBOSE%" == "true" (
+        echo Finished downloading %WRAPPER_JAR%
+    )
+)
+@REM End of extension
+
+@REM Provide a "standardized" way to retrieve the CLI args that will
+@REM work with both Windows and non-Windows executions.
+set MAVEN_CMD_LINE_ARGS=%*
+
+%MAVEN_JAVA_EXE% ^
+  %JVM_CONFIG_MAVEN_PROPS% ^
+  %MAVEN_OPTS% ^
+  %MAVEN_DEBUG_OPTS% ^
+  -classpath %WRAPPER_JAR% ^
+  "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" ^
+  %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
+if ERRORLEVEL 1 goto error
+goto end
+
+:error
+set ERROR_CODE=1
+
+:end
+@endlocal & set ERROR_CODE=%ERROR_CODE%
+
+if not "%MAVEN_SKIP_RC%"=="" goto skipRcPost
+@REM check for post script, once with legacy .bat ending and once with .cmd ending
+if exist "%USERPROFILE%\mavenrc_post.bat" call "%USERPROFILE%\mavenrc_post.bat"
+if exist "%USERPROFILE%\mavenrc_post.cmd" call "%USERPROFILE%\mavenrc_post.cmd"
+:skipRcPost
+
+@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
+if "%MAVEN_BATCH_PAUSE%"=="on" pause
+
+if "%MAVEN_TERMINATE_CMD%"=="on" exit %ERROR_CODE%
+
+cmd /C exit /B %ERROR_CODE%
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000000000000000000000000000000000000..b765370727f6a88630ab15fc433b879bdc0b9f51
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,82 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>nl.utwente.mod4</groupId>
+    <artifactId>pokemon</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <name>mod4-wp-2023-2024-pokemon</name>
+    <packaging>war</packaging>
+
+    <properties>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+        <maven.compiler.target>11</maven.compiler.target>
+        <maven.compiler.source>11</maven.compiler.source>
+        <junit.version>5.9.1</junit.version>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>jakarta.servlet</groupId>
+            <artifactId>jakarta.servlet-api</artifactId>
+            <version>5.0.0</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.glassfish.jersey.containers</groupId>
+            <artifactId>jersey-container-servlet</artifactId>
+            <version>3.1.6</version>
+        </dependency>
+        <dependency>
+            <groupId>org.glassfish.jersey.media</groupId>
+            <artifactId>jersey-media-json-jackson</artifactId>
+            <version>3.1.6</version>
+        </dependency>
+        <dependency>
+            <groupId>org.glassfish.jersey.inject</groupId>
+            <artifactId>jersey-hk2</artifactId>
+            <version>3.1.6</version>
+        </dependency>
+        <dependency>
+            <groupId>org.junit.jupiter</groupId>
+            <artifactId>junit-jupiter-api</artifactId>
+            <version>${junit.version}</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.junit.jupiter</groupId>
+            <artifactId>junit-jupiter-engine</artifactId>
+            <version>${junit.version}</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>com.fasterxml.jackson.core</groupId>
+            <artifactId>jackson-databind</artifactId>
+            <version>2.17.0</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <finalName>${project.artifactId}</finalName>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>3.8.0</version>
+                <configuration>
+                    <release>11</release>
+                </configuration>
+            </plugin>
+
+            <plugin>
+                <artifactId>maven-war-plugin</artifactId>
+                <version>3.3.2</version>
+                <configuration>
+                    <filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
\ No newline at end of file
diff --git a/src/main/java/nl/utwente/mod4/pokemon/PokemonTrainerDatabase.java b/src/main/java/nl/utwente/mod4/pokemon/PokemonTrainerDatabase.java
new file mode 100644
index 0000000000000000000000000000000000000000..c80601735b9d16808015bb1e07259cb79b9f5b7f
--- /dev/null
+++ b/src/main/java/nl/utwente/mod4/pokemon/PokemonTrainerDatabase.java
@@ -0,0 +1,9 @@
+package nl.utwente.mod4.pokemon;
+
+import jakarta.servlet.http.HttpServlet;
+import jakarta.ws.rs.ApplicationPath;
+
+@ApplicationPath("/")
+public class PokemonTrainerDatabase extends HttpServlet {
+
+}
\ No newline at end of file
diff --git a/src/main/java/nl/utwente/mod4/pokemon/dao/PokemonTypeDao.java b/src/main/java/nl/utwente/mod4/pokemon/dao/PokemonTypeDao.java
new file mode 100644
index 0000000000000000000000000000000000000000..6448a470531548c19ff6b5e5e1186bf54268394f
--- /dev/null
+++ b/src/main/java/nl/utwente/mod4/pokemon/dao/PokemonTypeDao.java
@@ -0,0 +1,20 @@
+package nl.utwente.mod4.pokemon.dao;
+
+import com.fasterxml.jackson.databind.ObjectMapper;
+import nl.utwente.mod4.pokemon.model.PokemonType;
+
+import java.io.File;
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.List;
+
+public class PokemonTypeDao {
+
+    private static final String filePath = PokemonTypeDao.class.getClassLoader().getResource("/aggregated-and-filtered-pokemon-dataset.json").getPath();
+
+    public List<PokemonType> loadPokemonType() throws IOException {
+        ObjectMapper mapper = new ObjectMapper();
+        return mapper.readValue(new File(filePath), new ArrayList<PokemonType>().getClass());
+    }
+
+}
diff --git a/src/main/java/nl/utwente/mod4/pokemon/model/NamedEntity.java b/src/main/java/nl/utwente/mod4/pokemon/model/NamedEntity.java
new file mode 100644
index 0000000000000000000000000000000000000000..0eee4ca32269232cfbb993a9301d8436bc4446fa
--- /dev/null
+++ b/src/main/java/nl/utwente/mod4/pokemon/model/NamedEntity.java
@@ -0,0 +1,19 @@
+package nl.utwente.mod4.pokemon.model;
+
+import java.time.Instant;
+
+public class NamedEntity {
+
+    public String id;
+    public String name;
+    public String created;
+    public String lastUpDate;
+
+    public NamedEntity() {
+        id = "0";
+        name = "Missingno";
+        created = Instant.now().toString();
+        lastUpDate = Instant.now().toString();
+    }
+
+}
diff --git a/src/main/java/nl/utwente/mod4/pokemon/model/PokemonType.java b/src/main/java/nl/utwente/mod4/pokemon/model/PokemonType.java
new file mode 100644
index 0000000000000000000000000000000000000000..bf112afb80a0c4148c03cb73d8845b7866188e65
--- /dev/null
+++ b/src/main/java/nl/utwente/mod4/pokemon/model/PokemonType.java
@@ -0,0 +1,47 @@
+package nl.utwente.mod4.pokemon.model;
+
+import java.util.ArrayList;
+import java.util.List;
+
+public class PokemonType extends NamedEntity {
+
+    public int pokedexNumber;
+    public int generation;
+    public String japaneseName;
+    public String classification;
+    public List<String> abilities;
+    public float baseHeight;
+    public float baseWeight;
+    public int baseHp;
+    public int baseAttack;
+    public int baseSpAttack;
+    public int baseDefense;
+    public int baseSpDefense;
+    public int baseSpeed;
+    public int captureRate;
+    public boolean isLegendary;
+    public String imgUrl;
+    public String primaryType;
+    public String secondaryType;
+
+    public PokemonType() {
+        super();
+        pokedexNumber = 0;
+        generation = 0;
+        japaneseName = "";
+        classification = "";
+        abilities = new ArrayList<>();
+        baseHeight = 0;
+        baseWeight = 0;
+        baseHp = 0;
+        baseAttack = 0;
+        baseSpAttack = 0;
+        baseDefense = 0;
+        baseSpDefense = 0;
+        baseSpeed = 0;
+        captureRate = 0;
+        isLegendary = false;
+        imgUrl = "";
+    }
+
+}
diff --git a/src/main/java/nl/utwente/mod4/pokemon/routes/PokemonTypeRoute.java b/src/main/java/nl/utwente/mod4/pokemon/routes/PokemonTypeRoute.java
new file mode 100644
index 0000000000000000000000000000000000000000..69927626fd63b63aba6a60852fced3ae61d4d539
--- /dev/null
+++ b/src/main/java/nl/utwente/mod4/pokemon/routes/PokemonTypeRoute.java
@@ -0,0 +1,42 @@
+package nl.utwente.mod4.pokemon.routes;
+
+import jakarta.ws.rs.*;
+import jakarta.ws.rs.core.MediaType;
+import jakarta.ws.rs.core.Response;
+import nl.utwente.mod4.pokemon.dao.PokemonTypeDao;
+import nl.utwente.mod4.pokemon.model.PokemonType;
+
+import java.io.IOException;
+import java.util.List;
+
+@Path("/pokemonTypes")
+public class PokemonTypeRoute {
+
+    @GET
+    @Path("/")
+    @Produces(MediaType.APPLICATION_JSON)
+    public List<PokemonType> getPokemon() {
+        try {
+            return new PokemonTypeDao().loadPokemonType();
+        } catch (IOException e) {
+            throw new ServerErrorException(Response.status(500).build());
+        }
+    }
+
+//    @POST
+//    @Path("/")
+//    @Produces(MediaType.APPLICATION_JSON)
+//    @Consumes(MediaType.APPLICATION_JSON)
+//    public String createPokemon() {
+//        return "Returning all pokemon types.";
+//    }
+
+    @GET
+    @Path("/{id}")
+    @Produces(MediaType.APPLICATION_JSON)
+    public nl.utwente.mod4.pokemon.model.PokemonType getPokemon(@PathParam("id") String id) {
+        var pokemon = new nl.utwente.mod4.pokemon.model.PokemonType();
+        pokemon.id = id;
+        return pokemon;
+    }
+}
\ No newline at end of file
diff --git a/src/main/resources/aggregated-and-filtered-pokemon-dataset.json b/src/main/resources/aggregated-and-filtered-pokemon-dataset.json
new file mode 100644
index 0000000000000000000000000000000000000000..862ede41ddcc54c4bce962bdf8ca0f9bb2ce65a5
--- /dev/null
+++ b/src/main/resources/aggregated-and-filtered-pokemon-dataset.json
@@ -0,0 +1,19226 @@
+[
+  {
+    "name": "Abomasnow",
+    "id": 1,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "abomasnow",
+    "japaneseName": "Yukinoohユキノオー",
+    "pokedexNumber": 460,
+    "abilities": ["Snow Warning", "Soundproof"],
+    "baseAttack": 132,
+    "captureRate": 60,
+    "classification": "Frosted Tree Pokémon",
+    "baseDefense": 105,
+    "baseHeight": 2.2,
+    "baseHp": 90,
+    "baseSpAttack": 132,
+    "baseSpDefense": 105,
+    "baseSpeed": 30,
+    "primaryType": "grass",
+    "secondaryType": "ice",
+    "baseWeight": 135.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Abra",
+    "id": 2,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "abra",
+    "japaneseName": "Caseyケーシィ",
+    "pokedexNumber": 63,
+    "abilities": ["Synchronize", "Inner Focus", "Magic Guard"],
+    "baseAttack": 20,
+    "captureRate": 200,
+    "classification": "Psi Pokémon",
+    "baseDefense": 15,
+    "baseHeight": 0.9,
+    "baseHp": 25,
+    "baseSpAttack": 105,
+    "baseSpDefense": 55,
+    "baseSpeed": 90,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 19.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Absol",
+    "id": 3,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "absol",
+    "japaneseName": "Absolアブソル",
+    "pokedexNumber": 359,
+    "abilities": ["Pressure", "Super Luck", "Justified"],
+    "baseAttack": 150,
+    "captureRate": 30,
+    "classification": "Disaster Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 1.2,
+    "baseHp": 65,
+    "baseSpAttack": 115,
+    "baseSpDefense": 60,
+    "baseSpeed": 115,
+    "primaryType": "dark",
+    "secondaryType": "",
+    "baseWeight": 47,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Accelgor",
+    "id": 4,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "accelgor",
+    "japaneseName": "Agilderアギルダー",
+    "pokedexNumber": 617,
+    "abilities": ["Hydration", "Sticky Hold", "Unburden"],
+    "baseAttack": 70,
+    "captureRate": 75,
+    "classification": "Shell Out Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.8,
+    "baseHp": 80,
+    "baseSpAttack": 100,
+    "baseSpDefense": 60,
+    "baseSpeed": 145,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 25.3,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Aegislash",
+    "id": 5,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "aegislash-blade",
+    "japaneseName": "Gillgardギルガルド",
+    "pokedexNumber": 681,
+    "abilities": ["Stance Change"],
+    "baseAttack": 150,
+    "captureRate": 45,
+    "classification": "Royal Sword Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 1.7,
+    "baseHp": 60,
+    "baseSpAttack": 150,
+    "baseSpDefense": 50,
+    "baseSpeed": 60,
+    "primaryType": "steel",
+    "secondaryType": "ghost",
+    "baseWeight": 53,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Aerodactyl",
+    "id": 6,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "aerodactyl",
+    "japaneseName": "Pteraプテラ",
+    "pokedexNumber": 142,
+    "abilities": ["Rock Head", "Pressure", "Unnerve"],
+    "baseAttack": 135,
+    "captureRate": 45,
+    "classification": "Fossil Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 1.8,
+    "baseHp": 80,
+    "baseSpAttack": 70,
+    "baseSpDefense": 95,
+    "baseSpeed": 150,
+    "primaryType": "rock",
+    "secondaryType": "flying",
+    "baseWeight": 59,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Aggron",
+    "id": 7,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "aggron",
+    "japaneseName": "Bossgodoraボスゴドラ",
+    "pokedexNumber": 306,
+    "abilities": ["Sturdy", "Rock Head", "Heavy Metal"],
+    "baseAttack": 140,
+    "captureRate": 45,
+    "classification": "Iron Armor Pokémon",
+    "baseDefense": 230,
+    "baseHeight": 2.1,
+    "baseHp": 70,
+    "baseSpAttack": 60,
+    "baseSpDefense": 80,
+    "baseSpeed": 50,
+    "primaryType": "steel",
+    "secondaryType": "rock",
+    "baseWeight": 360,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Aipom",
+    "id": 8,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "aipom",
+    "japaneseName": "Eipamエイパム",
+    "pokedexNumber": 190,
+    "abilities": ["Run Away", "Pickup", "Skill Link"],
+    "baseAttack": 70,
+    "captureRate": 45,
+    "classification": "Long Tail Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.8,
+    "baseHp": 55,
+    "baseSpAttack": 40,
+    "baseSpDefense": 55,
+    "baseSpeed": 85,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 11.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Alakazam",
+    "id": 9,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "alakazam",
+    "japaneseName": "Foodinフーディン",
+    "pokedexNumber": 65,
+    "abilities": ["Synchronize", "Inner Focus", "Magic Guard"],
+    "baseAttack": 50,
+    "captureRate": 50,
+    "classification": "Psi Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1.5,
+    "baseHp": 55,
+    "baseSpAttack": 175,
+    "baseSpDefense": 105,
+    "baseSpeed": 150,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 48,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Alomomola",
+    "id": 10,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "alomomola",
+    "japaneseName": "Mamanbouママンボウ",
+    "pokedexNumber": 594,
+    "abilities": ["Healer", "Hydration", "Regenerator"],
+    "baseAttack": 75,
+    "captureRate": 75,
+    "classification": "Caring Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.2,
+    "baseHp": 165,
+    "baseSpAttack": 40,
+    "baseSpDefense": 45,
+    "baseSpeed": 65,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 31.6,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Altaria",
+    "id": 11,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "altaria",
+    "japaneseName": "Tyltalisチルタリス",
+    "pokedexNumber": 334,
+    "abilities": ["Natural Cure", "Cloud Nine"],
+    "baseAttack": 110,
+    "captureRate": 45,
+    "classification": "Humming Pokémon",
+    "baseDefense": 110,
+    "baseHeight": 1.1,
+    "baseHp": 75,
+    "baseSpAttack": 110,
+    "baseSpDefense": 105,
+    "baseSpeed": 80,
+    "primaryType": "dragon",
+    "secondaryType": "flying",
+    "baseWeight": 20.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Amaura",
+    "id": 12,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "amaura",
+    "japaneseName": "Amarusアマルス",
+    "pokedexNumber": 698,
+    "abilities": ["Refrigerate", "Snow Warning"],
+    "baseAttack": 59,
+    "captureRate": 45,
+    "classification": "Tundra Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 1.3,
+    "baseHp": 77,
+    "baseSpAttack": 67,
+    "baseSpDefense": 63,
+    "baseSpeed": 46,
+    "primaryType": "rock",
+    "secondaryType": "ice",
+    "baseWeight": 25.2,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ambipom",
+    "id": 13,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ambipom",
+    "japaneseName": "Etebothエテボース",
+    "pokedexNumber": 424,
+    "abilities": ["Technician", "Pickup", "Skill Link"],
+    "baseAttack": 100,
+    "captureRate": 45,
+    "classification": "Long Tail Pokémon",
+    "baseDefense": 66,
+    "baseHeight": 1.2,
+    "baseHp": 75,
+    "baseSpAttack": 60,
+    "baseSpDefense": 66,
+    "baseSpeed": 115,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 20.3,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Amoonguss",
+    "id": 14,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "amoonguss",
+    "japaneseName": "Morobareruモロバレル",
+    "pokedexNumber": 591,
+    "abilities": ["Effect Spore", "Regenerator"],
+    "baseAttack": 85,
+    "captureRate": 75,
+    "classification": "Mushroom Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.6,
+    "baseHp": 114,
+    "baseSpAttack": 85,
+    "baseSpDefense": 80,
+    "baseSpeed": 30,
+    "primaryType": "grass",
+    "secondaryType": "poison",
+    "baseWeight": 10.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ampharos",
+    "id": 15,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ampharos",
+    "japaneseName": "Denryuデンリュウ",
+    "pokedexNumber": 181,
+    "abilities": ["Static", "Plus"],
+    "baseAttack": 95,
+    "captureRate": 45,
+    "classification": "Light Pokémon",
+    "baseDefense": 105,
+    "baseHeight": 1.4,
+    "baseHp": 90,
+    "baseSpAttack": 165,
+    "baseSpDefense": 110,
+    "baseSpeed": 45,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 61.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Anorith",
+    "id": 16,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "anorith",
+    "japaneseName": "Anopthアノプス",
+    "pokedexNumber": 347,
+    "abilities": ["Battle Armor", "Swift Swim"],
+    "baseAttack": 95,
+    "captureRate": 45,
+    "classification": "Old Shrimp Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.7,
+    "baseHp": 45,
+    "baseSpAttack": 40,
+    "baseSpDefense": 50,
+    "baseSpeed": 75,
+    "primaryType": "rock",
+    "secondaryType": "bug",
+    "baseWeight": 12.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Araquanid",
+    "id": 17,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "araquanid",
+    "japaneseName": "Onishizukumoオニシズクモ",
+    "pokedexNumber": 752,
+    "abilities": ["Water Bubble", "Water Absorb"],
+    "baseAttack": 70,
+    "captureRate": 100,
+    "classification": "Water Bubble Pokémon",
+    "baseDefense": 92,
+    "baseHeight": 1.8,
+    "baseHp": 68,
+    "baseSpAttack": 50,
+    "baseSpDefense": 132,
+    "baseSpeed": 42,
+    "primaryType": "water",
+    "secondaryType": "bug",
+    "baseWeight": 82,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Arbok",
+    "id": 18,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "arbok",
+    "japaneseName": "Arbokアーボック",
+    "pokedexNumber": 24,
+    "abilities": ["Intimidate", "Shed Skin", "Unnerve"],
+    "baseAttack": 95,
+    "captureRate": 90,
+    "classification": "Cobra Pokémon",
+    "baseDefense": 69,
+    "baseHeight": 3.5,
+    "baseHp": 60,
+    "baseSpAttack": 65,
+    "baseSpDefense": 79,
+    "baseSpeed": 80,
+    "primaryType": "poison",
+    "secondaryType": "",
+    "baseWeight": 65,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Arcanine",
+    "id": 19,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "arcanine",
+    "japaneseName": "Windieウインディ",
+    "pokedexNumber": 59,
+    "abilities": ["Intimidate", "Flash Fire", "Justified"],
+    "baseAttack": 110,
+    "captureRate": 75,
+    "classification": "Legendary Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.9,
+    "baseHp": 90,
+    "baseSpAttack": 100,
+    "baseSpDefense": 80,
+    "baseSpeed": 95,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 155,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Arceus",
+    "id": 20,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "arceus",
+    "japaneseName": "Arceusアルセウス",
+    "pokedexNumber": 493,
+    "abilities": ["Multitype"],
+    "baseAttack": 120,
+    "captureRate": 3,
+    "classification": "Alpha Pokémon",
+    "baseDefense": 120,
+    "baseHeight": 3.2,
+    "baseHp": 120,
+    "baseSpAttack": 120,
+    "baseSpDefense": 120,
+    "baseSpeed": 120,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 320,
+    "generation": 4,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Archen",
+    "id": 21,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "archen",
+    "japaneseName": "Archenアーケン",
+    "pokedexNumber": 566,
+    "abilities": ["Defeatist"],
+    "baseAttack": 112,
+    "captureRate": 45,
+    "classification": "First Bird Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.5,
+    "baseHp": 55,
+    "baseSpAttack": 74,
+    "baseSpDefense": 45,
+    "baseSpeed": 70,
+    "primaryType": "rock",
+    "secondaryType": "flying",
+    "baseWeight": 9.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Archeops",
+    "id": 22,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "archeops",
+    "japaneseName": "Archeosアーケオス",
+    "pokedexNumber": 567,
+    "abilities": ["Defeatist"],
+    "baseAttack": 140,
+    "captureRate": 45,
+    "classification": "First Bird Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1.4,
+    "baseHp": 75,
+    "baseSpAttack": 112,
+    "baseSpDefense": 65,
+    "baseSpeed": 110,
+    "primaryType": "rock",
+    "secondaryType": "flying",
+    "baseWeight": 32,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ariados",
+    "id": 23,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ariados",
+    "japaneseName": "Ariadosアリアドス",
+    "pokedexNumber": 168,
+    "abilities": ["Swarm", "Insomnia", "Sniper"],
+    "baseAttack": 90,
+    "captureRate": 90,
+    "classification": "Long Leg Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.1,
+    "baseHp": 70,
+    "baseSpAttack": 60,
+    "baseSpDefense": 70,
+    "baseSpeed": 40,
+    "primaryType": "bug",
+    "secondaryType": "poison",
+    "baseWeight": 33.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Armaldo",
+    "id": 24,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "armaldo",
+    "japaneseName": "Armaldoアーマルド",
+    "pokedexNumber": 348,
+    "abilities": ["Battle Armor", "Swift Swim"],
+    "baseAttack": 125,
+    "captureRate": 45,
+    "classification": "Plate Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 1.5,
+    "baseHp": 75,
+    "baseSpAttack": 70,
+    "baseSpDefense": 80,
+    "baseSpeed": 45,
+    "primaryType": "rock",
+    "secondaryType": "bug",
+    "baseWeight": 68.2,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Aromatisse",
+    "id": 25,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "aromatisse",
+    "japaneseName": "Frefuwanフレフワン",
+    "pokedexNumber": 683,
+    "abilities": ["Healer", "Aroma Veil"],
+    "baseAttack": 72,
+    "captureRate": 140,
+    "classification": "Fragrance Pokémon",
+    "baseDefense": 72,
+    "baseHeight": 0.8,
+    "baseHp": 101,
+    "baseSpAttack": 99,
+    "baseSpDefense": 89,
+    "baseSpeed": 29,
+    "primaryType": "fairy",
+    "secondaryType": "",
+    "baseWeight": 15.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Aron",
+    "id": 26,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "aron",
+    "japaneseName": "Cokodoraココドラ",
+    "pokedexNumber": 304,
+    "abilities": ["Sturdy", "Rock Head", "Heavy Metal"],
+    "baseAttack": 70,
+    "captureRate": 180,
+    "classification": "Iron Armor Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 0.4,
+    "baseHp": 50,
+    "baseSpAttack": 40,
+    "baseSpDefense": 40,
+    "baseSpeed": 30,
+    "primaryType": "steel",
+    "secondaryType": "rock",
+    "baseWeight": 60,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Articuno",
+    "id": 27,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "articuno",
+    "japaneseName": "Freezerフリーザー",
+    "pokedexNumber": 144,
+    "abilities": ["Pressure", "Snow Cloak"],
+    "baseAttack": 85,
+    "captureRate": 3,
+    "classification": "Freeze Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 1.7,
+    "baseHp": 90,
+    "baseSpAttack": 95,
+    "baseSpDefense": 125,
+    "baseSpeed": 85,
+    "primaryType": "ice",
+    "secondaryType": "flying",
+    "baseWeight": 55.4,
+    "generation": 1,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Audino",
+    "id": 28,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "audino",
+    "japaneseName": "Tabunneタブンネ",
+    "pokedexNumber": 531,
+    "abilities": ["Healer", "Regenerator", "Klutz"],
+    "baseAttack": 60,
+    "captureRate": 255,
+    "classification": "Hearing Pokémon",
+    "baseDefense": 126,
+    "baseHeight": 1.1,
+    "baseHp": 103,
+    "baseSpAttack": 80,
+    "baseSpDefense": 126,
+    "baseSpeed": 50,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 31,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Aurorus",
+    "id": 29,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "aurorus",
+    "japaneseName": "Amarurugaアマルルガ",
+    "pokedexNumber": 699,
+    "abilities": ["Refrigerate", "Snow Warning"],
+    "baseAttack": 77,
+    "captureRate": 45,
+    "classification": "Tundra Pokémon",
+    "baseDefense": 72,
+    "baseHeight": 2.7,
+    "baseHp": 123,
+    "baseSpAttack": 99,
+    "baseSpDefense": 92,
+    "baseSpeed": 58,
+    "primaryType": "rock",
+    "secondaryType": "ice",
+    "baseWeight": 225,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Avalugg",
+    "id": 30,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "avalugg",
+    "japaneseName": "Crebaseクレベース",
+    "pokedexNumber": 713,
+    "abilities": ["Own Tempo", "Ice Body", "Sturdy"],
+    "baseAttack": 117,
+    "captureRate": 55,
+    "classification": "Iceberg Pokémon",
+    "baseDefense": 184,
+    "baseHeight": 2,
+    "baseHp": 95,
+    "baseSpAttack": 44,
+    "baseSpDefense": 46,
+    "baseSpeed": 28,
+    "primaryType": "ice",
+    "secondaryType": "",
+    "baseWeight": 505,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Axew",
+    "id": 31,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "axew",
+    "japaneseName": "Kibagoキバゴ",
+    "pokedexNumber": 610,
+    "abilities": ["Rivalry", "Mold Breaker", "Unnerve"],
+    "baseAttack": 87,
+    "captureRate": 75,
+    "classification": "Tusk Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.6,
+    "baseHp": 46,
+    "baseSpAttack": 30,
+    "baseSpDefense": 40,
+    "baseSpeed": 57,
+    "primaryType": "dragon",
+    "secondaryType": "",
+    "baseWeight": 18,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Azelf",
+    "id": 32,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "azelf",
+    "japaneseName": "Agnomeアグノム",
+    "pokedexNumber": 482,
+    "abilities": ["Levitate"],
+    "baseAttack": 125,
+    "captureRate": 3,
+    "classification": "Willpower Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.3,
+    "baseHp": 75,
+    "baseSpAttack": 125,
+    "baseSpDefense": 70,
+    "baseSpeed": 115,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 0.3,
+    "generation": 4,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Azumarill",
+    "id": 33,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "azumarill",
+    "japaneseName": "Marilliマリルリ",
+    "pokedexNumber": 184,
+    "abilities": ["Thick Fat", "Huge Power", "Sap Sipper"],
+    "baseAttack": 50,
+    "captureRate": 75,
+    "classification": "Aquarabbit Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 0.8,
+    "baseHp": 100,
+    "baseSpAttack": 60,
+    "baseSpDefense": 80,
+    "baseSpeed": 50,
+    "primaryType": "water",
+    "secondaryType": "fairy",
+    "baseWeight": 28.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Azurill",
+    "id": 34,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "azurill",
+    "japaneseName": "Ruririルリリ",
+    "pokedexNumber": 298,
+    "abilities": ["Thick Fat", "Huge Power", "Sap Sipper"],
+    "baseAttack": 20,
+    "captureRate": 150,
+    "classification": "Polka Dot Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.2,
+    "baseHp": 50,
+    "baseSpAttack": 20,
+    "baseSpDefense": 40,
+    "baseSpeed": 20,
+    "primaryType": "normal",
+    "secondaryType": "fairy",
+    "baseWeight": 2,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bagon",
+    "id": 35,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bagon",
+    "japaneseName": "Tatsubayタツベイ",
+    "pokedexNumber": 371,
+    "abilities": ["Rock Head", "Sheer Force"],
+    "baseAttack": 75,
+    "captureRate": 45,
+    "classification": "Rock Head Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.6,
+    "baseHp": 45,
+    "baseSpAttack": 40,
+    "baseSpDefense": 30,
+    "baseSpeed": 50,
+    "primaryType": "dragon",
+    "secondaryType": "",
+    "baseWeight": 42.1,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Baltoy",
+    "id": 36,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "baltoy",
+    "japaneseName": "Yajilonヤジロン",
+    "pokedexNumber": 343,
+    "abilities": ["Levitate"],
+    "baseAttack": 40,
+    "captureRate": 255,
+    "classification": "Clay Doll Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.5,
+    "baseHp": 40,
+    "baseSpAttack": 40,
+    "baseSpDefense": 70,
+    "baseSpeed": 55,
+    "primaryType": "ground",
+    "secondaryType": "psychic",
+    "baseWeight": 21.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Banette",
+    "id": 37,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "banette",
+    "japaneseName": "Juppetaジュペッタ",
+    "pokedexNumber": 354,
+    "abilities": ["Insomnia", "Frisk", "Cursed Body"],
+    "baseAttack": 165,
+    "captureRate": 45,
+    "classification": "Marionette Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 1.1,
+    "baseHp": 64,
+    "baseSpAttack": 93,
+    "baseSpDefense": 83,
+    "baseSpeed": 75,
+    "primaryType": "ghost",
+    "secondaryType": "",
+    "baseWeight": 12.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Barbaracle",
+    "id": 38,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "barbaracle",
+    "japaneseName": "Gamenodesガメノデス",
+    "pokedexNumber": 689,
+    "abilities": ["Tough Claws", "Sniper", "Pickpocket"],
+    "baseAttack": 105,
+    "captureRate": 45,
+    "classification": "Collective Pokémon",
+    "baseDefense": 115,
+    "baseHeight": 1.3,
+    "baseHp": 72,
+    "baseSpAttack": 54,
+    "baseSpDefense": 86,
+    "baseSpeed": 68,
+    "primaryType": "rock",
+    "secondaryType": "water",
+    "baseWeight": 96,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Barboach",
+    "id": 39,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "barboach",
+    "japaneseName": "Dojoachドジョッチ",
+    "pokedexNumber": 339,
+    "abilities": ["Oblivious", "Anticipation", "Hydration"],
+    "baseAttack": 48,
+    "captureRate": 190,
+    "classification": "Whiskers Pokémon",
+    "baseDefense": 43,
+    "baseHeight": 0.4,
+    "baseHp": 50,
+    "baseSpAttack": 46,
+    "baseSpDefense": 41,
+    "baseSpeed": 60,
+    "primaryType": "water",
+    "secondaryType": "ground",
+    "baseWeight": 1.9,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Basculin",
+    "id": 40,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "basculin-red-striped",
+    "japaneseName": "Bassraoバスラオ",
+    "pokedexNumber": 550,
+    "abilities": ["Reckless", "Rock Head", "Adaptability", "Mold Breaker"],
+    "baseAttack": 92,
+    "captureRate": 25,
+    "classification": "Hostile Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1,
+    "baseHp": 70,
+    "baseSpAttack": 80,
+    "baseSpDefense": 55,
+    "baseSpeed": 98,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 18,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bastiodon",
+    "id": 41,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bastiodon",
+    "japaneseName": "Toridepsトリデプス",
+    "pokedexNumber": 411,
+    "abilities": ["Sturdy", "Soundproof"],
+    "baseAttack": 52,
+    "captureRate": 45,
+    "classification": "Shield Pokémon",
+    "baseDefense": 168,
+    "baseHeight": 1.3,
+    "baseHp": 60,
+    "baseSpAttack": 47,
+    "baseSpDefense": 138,
+    "baseSpeed": 30,
+    "primaryType": "rock",
+    "secondaryType": "steel",
+    "baseWeight": 149.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bayleef",
+    "id": 42,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bayleef",
+    "japaneseName": "Bayleafベイリーフ",
+    "pokedexNumber": 153,
+    "abilities": ["Overgrow", "Leaf Guard"],
+    "baseAttack": 62,
+    "captureRate": 45,
+    "classification": "Leaf Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.2,
+    "baseHp": 60,
+    "baseSpAttack": 63,
+    "baseSpDefense": 80,
+    "baseSpeed": 60,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 15.8,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Beartic",
+    "id": 43,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "beartic",
+    "japaneseName": "Tunbearツンベアー",
+    "pokedexNumber": 614,
+    "abilities": ["Snow Cloak", "Slush Rush", "Swift Swim"],
+    "baseAttack": 130,
+    "captureRate": 60,
+    "classification": "Freezing Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 2.6,
+    "baseHp": 95,
+    "baseSpAttack": 70,
+    "baseSpDefense": 80,
+    "baseSpeed": 50,
+    "primaryType": "ice",
+    "secondaryType": "",
+    "baseWeight": 260,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Beautifly",
+    "id": 44,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "beautifly",
+    "japaneseName": "Agehuntアゲハント",
+    "pokedexNumber": 267,
+    "abilities": ["Swarm", "Rivalry"],
+    "baseAttack": 70,
+    "captureRate": 45,
+    "classification": "Butterfly Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 1,
+    "baseHp": 60,
+    "baseSpAttack": 100,
+    "baseSpDefense": 50,
+    "baseSpeed": 65,
+    "primaryType": "bug",
+    "secondaryType": "flying",
+    "baseWeight": 28.4,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Beedrill",
+    "id": 45,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "beedrill",
+    "japaneseName": "Spearスピアー",
+    "pokedexNumber": 15,
+    "abilities": ["Swarm", "Sniper"],
+    "baseAttack": 150,
+    "captureRate": 45,
+    "classification": "Poison Bee Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 1,
+    "baseHp": 65,
+    "baseSpAttack": 15,
+    "baseSpDefense": 80,
+    "baseSpeed": 145,
+    "primaryType": "bug",
+    "secondaryType": "poison",
+    "baseWeight": 29.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Beheeyem",
+    "id": 46,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "beheeyem",
+    "japaneseName": "Ohbemオーベム",
+    "pokedexNumber": 606,
+    "abilities": ["Telepathy", "Synchronize", "Analytic"],
+    "baseAttack": 75,
+    "captureRate": 90,
+    "classification": "Cerebral Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 1,
+    "baseHp": 75,
+    "baseSpAttack": 125,
+    "baseSpDefense": 95,
+    "baseSpeed": 40,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 34.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Beldum",
+    "id": 47,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "beldum",
+    "japaneseName": "Dumbberダンバル",
+    "pokedexNumber": 374,
+    "abilities": ["Clear Body", "Light Metal"],
+    "baseAttack": 55,
+    "captureRate": 3,
+    "classification": "Iron Ball Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 0.6,
+    "baseHp": 40,
+    "baseSpAttack": 35,
+    "baseSpDefense": 60,
+    "baseSpeed": 30,
+    "primaryType": "steel",
+    "secondaryType": "psychic",
+    "baseWeight": 95.2,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bellossom",
+    "id": 48,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bellossom",
+    "japaneseName": "Kireihanaキレイハナ",
+    "pokedexNumber": 182,
+    "abilities": ["Chlorophyll", "Healer"],
+    "baseAttack": 80,
+    "captureRate": 45,
+    "classification": "Flower Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 0.4,
+    "baseHp": 75,
+    "baseSpAttack": 90,
+    "baseSpDefense": 100,
+    "baseSpeed": 50,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 5.8,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bellsprout",
+    "id": 49,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bellsprout",
+    "japaneseName": "Madatsubomiマダツボミ",
+    "pokedexNumber": 69,
+    "abilities": ["Chlorophyll", "Gluttony"],
+    "baseAttack": 75,
+    "captureRate": 255,
+    "classification": "Flower Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.7,
+    "baseHp": 50,
+    "baseSpAttack": 70,
+    "baseSpDefense": 30,
+    "baseSpeed": 40,
+    "primaryType": "grass",
+    "secondaryType": "poison",
+    "baseWeight": 4,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bergmite",
+    "id": 50,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bergmite",
+    "japaneseName": "Kachikohruカチコール",
+    "pokedexNumber": 712,
+    "abilities": ["Own Tempo", "Ice Body", "Sturdy"],
+    "baseAttack": 69,
+    "captureRate": 190,
+    "classification": "Ice Chunk Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 1,
+    "baseHp": 55,
+    "baseSpAttack": 32,
+    "baseSpDefense": 35,
+    "baseSpeed": 28,
+    "primaryType": "ice",
+    "secondaryType": "",
+    "baseWeight": 99.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bewear",
+    "id": 51,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bewear",
+    "japaneseName": "Kiterugumaキテルグマ",
+    "pokedexNumber": 760,
+    "abilities": ["Fluffy", "Klutz", "Unnerve"],
+    "baseAttack": 125,
+    "captureRate": 70,
+    "classification": "Strong Arm Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 2.1,
+    "baseHp": 120,
+    "baseSpAttack": 55,
+    "baseSpDefense": 60,
+    "baseSpeed": 60,
+    "primaryType": "normal",
+    "secondaryType": "fighting",
+    "baseWeight": 135,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bibarel",
+    "id": 52,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bibarel",
+    "japaneseName": "Beadaruビーダル",
+    "pokedexNumber": 400,
+    "abilities": ["Simple", "Unaware", "Moody"],
+    "baseAttack": 85,
+    "captureRate": 127,
+    "classification": "Beaver Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 1,
+    "baseHp": 79,
+    "baseSpAttack": 55,
+    "baseSpDefense": 60,
+    "baseSpeed": 71,
+    "primaryType": "normal",
+    "secondaryType": "water",
+    "baseWeight": 31.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bidoof",
+    "id": 53,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bidoof",
+    "japaneseName": "Bippaビッパ",
+    "pokedexNumber": 399,
+    "abilities": ["Simple", "Unaware", "Moody"],
+    "baseAttack": 45,
+    "captureRate": 255,
+    "classification": "Plump Mouse Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.5,
+    "baseHp": 59,
+    "baseSpAttack": 35,
+    "baseSpDefense": 40,
+    "baseSpeed": 31,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 20,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Binacle",
+    "id": 54,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "binacle",
+    "japaneseName": "Kameteteカメテテ",
+    "pokedexNumber": 688,
+    "abilities": ["Tough Claws", "Sniper", "Pickpocket"],
+    "baseAttack": 52,
+    "captureRate": 120,
+    "classification": "Two-Handed Pokémon",
+    "baseDefense": 67,
+    "baseHeight": 0.5,
+    "baseHp": 42,
+    "baseSpAttack": 39,
+    "baseSpDefense": 56,
+    "baseSpeed": 50,
+    "primaryType": "rock",
+    "secondaryType": "water",
+    "baseWeight": 31,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bisharp",
+    "id": 55,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bisharp",
+    "japaneseName": "Kirikizanキリキザン",
+    "pokedexNumber": 625,
+    "abilities": ["Defiant", "Inner Focus", "Pressure"],
+    "baseAttack": 125,
+    "captureRate": 45,
+    "classification": "Sword Blade Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 1.6,
+    "baseHp": 65,
+    "baseSpAttack": 60,
+    "baseSpDefense": 70,
+    "baseSpeed": 70,
+    "primaryType": "dark",
+    "secondaryType": "steel",
+    "baseWeight": 70,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Blastoise",
+    "id": 56,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "blastoise",
+    "japaneseName": "Kamexカメックス",
+    "pokedexNumber": 9,
+    "abilities": ["Torrent", "Rain Dish"],
+    "baseAttack": 103,
+    "captureRate": 45,
+    "classification": "Shellfish Pokémon",
+    "baseDefense": 120,
+    "baseHeight": 1.6,
+    "baseHp": 79,
+    "baseSpAttack": 135,
+    "baseSpDefense": 115,
+    "baseSpeed": 78,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 85.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Blaziken",
+    "id": 57,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "blaziken",
+    "japaneseName": "Bursyamoバシャーモ",
+    "pokedexNumber": 257,
+    "abilities": ["Blaze", "Speed Boost"],
+    "baseAttack": 160,
+    "captureRate": 45,
+    "classification": "Blaze Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.9,
+    "baseHp": 80,
+    "baseSpAttack": 130,
+    "baseSpDefense": 80,
+    "baseSpeed": 100,
+    "primaryType": "fire",
+    "secondaryType": "fighting",
+    "baseWeight": 52,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Blissey",
+    "id": 58,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "blissey",
+    "japaneseName": "Happinasハピナス",
+    "pokedexNumber": 242,
+    "abilities": ["Natural Cure", "Serene Grace", "Healer"],
+    "baseAttack": 10,
+    "captureRate": 30,
+    "classification": "Happiness Pokémon",
+    "baseDefense": 10,
+    "baseHeight": 1.5,
+    "baseHp": 255,
+    "baseSpAttack": 75,
+    "baseSpDefense": 135,
+    "baseSpeed": 55,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 46.8,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Blitzle",
+    "id": 59,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "blitzle",
+    "japaneseName": "Shimamaシママ",
+    "pokedexNumber": 522,
+    "abilities": ["Lightningrod", "Motor Drive", "Sap Sipper"],
+    "baseAttack": 60,
+    "captureRate": 190,
+    "classification": "Electrified Pokémon",
+    "baseDefense": 32,
+    "baseHeight": 0.8,
+    "baseHp": 45,
+    "baseSpAttack": 50,
+    "baseSpDefense": 32,
+    "baseSpeed": 76,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 29.8,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Boldore",
+    "id": 60,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "boldore",
+    "japaneseName": "Gantleガントル",
+    "pokedexNumber": 525,
+    "abilities": ["Sturdy", "Weak Armor", "Sand Force"],
+    "baseAttack": 105,
+    "captureRate": 120,
+    "classification": "Ore Pokémon",
+    "baseDefense": 105,
+    "baseHeight": 0.9,
+    "baseHp": 70,
+    "baseSpAttack": 50,
+    "baseSpDefense": 40,
+    "baseSpeed": 20,
+    "primaryType": "rock",
+    "secondaryType": "",
+    "baseWeight": 102,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bonsly",
+    "id": 61,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bonsly",
+    "japaneseName": "Usohachiウソハチ",
+    "pokedexNumber": 438,
+    "abilities": ["Sturdy", "Rock Head", "Rattled"],
+    "baseAttack": 80,
+    "captureRate": 255,
+    "classification": "Bonsai Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 0.5,
+    "baseHp": 50,
+    "baseSpAttack": 10,
+    "baseSpDefense": 45,
+    "baseSpeed": 10,
+    "primaryType": "rock",
+    "secondaryType": "",
+    "baseWeight": 15,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bouffalant",
+    "id": 62,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bouffalant",
+    "japaneseName": "Buffronバッフロン",
+    "pokedexNumber": 626,
+    "abilities": ["Reckless", "Sap Sipper", "Soundproof"],
+    "baseAttack": 110,
+    "captureRate": 45,
+    "classification": "Bash Buffalo Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 1.6,
+    "baseHp": 95,
+    "baseSpAttack": 40,
+    "baseSpDefense": 95,
+    "baseSpeed": 55,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 94.6,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bounsweet",
+    "id": 63,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bounsweet",
+    "japaneseName": "Amakajiアマカジ",
+    "pokedexNumber": 761,
+    "abilities": ["Leaf Guard", "Oblivious", "Sweet Veil"],
+    "baseAttack": 30,
+    "captureRate": 235,
+    "classification": "Fruit Pokémon",
+    "baseDefense": 38,
+    "baseHeight": 0.3,
+    "baseHp": 42,
+    "baseSpAttack": 30,
+    "baseSpDefense": 38,
+    "baseSpeed": 32,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 3.2,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Braixen",
+    "id": 64,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "braixen",
+    "japaneseName": "Tairenarテールナー",
+    "pokedexNumber": 654,
+    "abilities": ["Blaze", "Magician"],
+    "baseAttack": 59,
+    "captureRate": 45,
+    "classification": "Fox Pokémon",
+    "baseDefense": 58,
+    "baseHeight": 1,
+    "baseHp": 59,
+    "baseSpAttack": 90,
+    "baseSpDefense": 70,
+    "baseSpeed": 73,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 14.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Braviary",
+    "id": 65,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "braviary",
+    "japaneseName": "Warrgleウォーグル",
+    "pokedexNumber": 628,
+    "abilities": ["Keen Eye", "Sheer Force", "Defiant"],
+    "baseAttack": 123,
+    "captureRate": 60,
+    "classification": "Valiant Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 1.5,
+    "baseHp": 100,
+    "baseSpAttack": 57,
+    "baseSpDefense": 75,
+    "baseSpeed": 80,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 41,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Breloom",
+    "id": 66,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "breloom",
+    "japaneseName": "Kinogassaキノガッサ",
+    "pokedexNumber": 286,
+    "abilities": ["Effect Spore", "Poison Heal", "Technician"],
+    "baseAttack": 130,
+    "captureRate": 90,
+    "classification": "Mushroom Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.2,
+    "baseHp": 60,
+    "baseSpAttack": 60,
+    "baseSpDefense": 60,
+    "baseSpeed": 70,
+    "primaryType": "grass",
+    "secondaryType": "fighting",
+    "baseWeight": 39.2,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Brionne",
+    "id": 67,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "brionne",
+    "japaneseName": "Osyamariオシャマリ",
+    "pokedexNumber": 729,
+    "abilities": ["Torrent", "Liquid Voice"],
+    "baseAttack": 69,
+    "captureRate": 45,
+    "classification": "Pop Star Pokémon",
+    "baseDefense": 69,
+    "baseHeight": 0.6,
+    "baseHp": 60,
+    "baseSpAttack": 91,
+    "baseSpDefense": 81,
+    "baseSpeed": 50,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 17.5,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bronzong",
+    "id": 68,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bronzong",
+    "japaneseName": "Dohtakunドータクン",
+    "pokedexNumber": 437,
+    "abilities": ["Levitate", "Heatproof", "Heavy Metal"],
+    "baseAttack": 89,
+    "captureRate": 90,
+    "classification": "Bronze Bell Pokémon",
+    "baseDefense": 116,
+    "baseHeight": 1.3,
+    "baseHp": 67,
+    "baseSpAttack": 79,
+    "baseSpDefense": 116,
+    "baseSpeed": 33,
+    "primaryType": "steel",
+    "secondaryType": "psychic",
+    "baseWeight": 187,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bronzor",
+    "id": 69,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bronzor",
+    "japaneseName": "Dohmirrorドーミラー",
+    "pokedexNumber": 436,
+    "abilities": ["Levitate", "Heatproof", "Heavy Metal"],
+    "baseAttack": 24,
+    "captureRate": 255,
+    "classification": "Bronze Pokémon",
+    "baseDefense": 86,
+    "baseHeight": 0.5,
+    "baseHp": 57,
+    "baseSpAttack": 24,
+    "baseSpDefense": 86,
+    "baseSpeed": 23,
+    "primaryType": "steel",
+    "secondaryType": "psychic",
+    "baseWeight": 60.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bruxish",
+    "id": 70,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bruxish",
+    "japaneseName": "Hagigishiriハギギシリ",
+    "pokedexNumber": 779,
+    "abilities": ["Dazzling", "Strong Jaw", "Wonder Skin "],
+    "baseAttack": 105,
+    "captureRate": 80,
+    "classification": "Gnash Teeth Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.9,
+    "baseHp": 68,
+    "baseSpAttack": 70,
+    "baseSpDefense": 70,
+    "baseSpeed": 92,
+    "primaryType": "water",
+    "secondaryType": "psychic",
+    "baseWeight": 19,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Budew",
+    "id": 71,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "budew",
+    "japaneseName": "Subomieスボミー",
+    "pokedexNumber": 406,
+    "abilities": ["Natural Cure", "Poison Point", "Leaf Guard"],
+    "baseAttack": 30,
+    "captureRate": 255,
+    "classification": "Bud Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.2,
+    "baseHp": 40,
+    "baseSpAttack": 50,
+    "baseSpDefense": 70,
+    "baseSpeed": 55,
+    "primaryType": "grass",
+    "secondaryType": "poison",
+    "baseWeight": 1.2,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Buizel",
+    "id": 72,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "buizel",
+    "japaneseName": "Buoyselブイゼル",
+    "pokedexNumber": 418,
+    "abilities": ["Swift Swim", "Water Veil"],
+    "baseAttack": 65,
+    "captureRate": 190,
+    "classification": "Sea Weasel Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.7,
+    "baseHp": 55,
+    "baseSpAttack": 60,
+    "baseSpDefense": 30,
+    "baseSpeed": 85,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 29.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bulbasaur",
+    "id": 73,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bulbasaur",
+    "japaneseName": "Fushigidaneフシギダネ",
+    "pokedexNumber": 1,
+    "abilities": ["Overgrow", "Chlorophyll"],
+    "baseAttack": 49,
+    "captureRate": 45,
+    "classification": "Seed Pokémon",
+    "baseDefense": 49,
+    "baseHeight": 0.7,
+    "baseHp": 45,
+    "baseSpAttack": 65,
+    "baseSpDefense": 65,
+    "baseSpeed": 45,
+    "primaryType": "grass",
+    "secondaryType": "poison",
+    "baseWeight": 6.9,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Buneary",
+    "id": 74,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "buneary",
+    "japaneseName": "Mimirolミミロル",
+    "pokedexNumber": 427,
+    "abilities": ["Run Away", "Klutz", "Limber"],
+    "baseAttack": 66,
+    "captureRate": 190,
+    "classification": "Rabbit Pokémon",
+    "baseDefense": 44,
+    "baseHeight": 0.4,
+    "baseHp": 55,
+    "baseSpAttack": 44,
+    "baseSpDefense": 56,
+    "baseSpeed": 85,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 5.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Bunnelby",
+    "id": 75,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "bunnelby",
+    "japaneseName": "Horubeeホルビー",
+    "pokedexNumber": 659,
+    "abilities": ["Pickup", "Cheek Pouch", "Huge Power"],
+    "baseAttack": 36,
+    "captureRate": 255,
+    "classification": "Digging Pokémon",
+    "baseDefense": 38,
+    "baseHeight": 0.4,
+    "baseHp": 38,
+    "baseSpAttack": 32,
+    "baseSpDefense": 36,
+    "baseSpeed": 57,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Burmy",
+    "id": 76,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "burmy",
+    "japaneseName": "Minomucchiミノムッチ",
+    "pokedexNumber": 412,
+    "abilities": ["Shed Skin", "Overcoat"],
+    "baseAttack": 29,
+    "captureRate": 120,
+    "classification": "Bagworm Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.2,
+    "baseHp": 40,
+    "baseSpAttack": 29,
+    "baseSpDefense": 45,
+    "baseSpeed": 36,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 3.4,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Butterfree",
+    "id": 77,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "butterfree",
+    "japaneseName": "Butterfreeバタフリー",
+    "pokedexNumber": 12,
+    "abilities": ["Compoundeyes", "Tinted Lens"],
+    "baseAttack": 45,
+    "captureRate": 45,
+    "classification": "Butterfly Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 1.1,
+    "baseHp": 60,
+    "baseSpAttack": 90,
+    "baseSpDefense": 80,
+    "baseSpeed": 70,
+    "primaryType": "bug",
+    "secondaryType": "flying",
+    "baseWeight": 32,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Buzzwole",
+    "id": 78,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "buzzwole",
+    "japaneseName": "Massivoonマッシブーン",
+    "pokedexNumber": 794,
+    "abilities": ["Beast Boost"],
+    "baseAttack": 139,
+    "captureRate": 25,
+    "classification": "Swollen Pokémon",
+    "baseDefense": 139,
+    "baseHeight": 2.4,
+    "baseHp": 107,
+    "baseSpAttack": 53,
+    "baseSpDefense": 53,
+    "baseSpeed": 79,
+    "primaryType": "bug",
+    "secondaryType": "fighting",
+    "baseWeight": 333.6,
+    "generation": 7,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Cacnea",
+    "id": 79,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cacnea",
+    "japaneseName": "Saboneaサボネア",
+    "pokedexNumber": 331,
+    "abilities": ["Sand Veil", "Water Absorb"],
+    "baseAttack": 85,
+    "captureRate": 190,
+    "classification": "Cactus Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.4,
+    "baseHp": 50,
+    "baseSpAttack": 85,
+    "baseSpDefense": 40,
+    "baseSpeed": 35,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 51.3,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Cacturne",
+    "id": 80,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cacturne",
+    "japaneseName": "Noctusノクタス",
+    "pokedexNumber": 332,
+    "abilities": ["Sand Veil", "Water Absorb"],
+    "baseAttack": 115,
+    "captureRate": 60,
+    "classification": "Scarecrow Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 1.3,
+    "baseHp": 70,
+    "baseSpAttack": 115,
+    "baseSpDefense": 60,
+    "baseSpeed": 55,
+    "primaryType": "grass",
+    "secondaryType": "dark",
+    "baseWeight": 77.4,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Camerupt",
+    "id": 81,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "camerupt",
+    "japaneseName": "Bakuudaバクーダ",
+    "pokedexNumber": 323,
+    "abilities": ["Magma Armor", "Solid Rock", "Anger Point"],
+    "baseAttack": 120,
+    "captureRate": 150,
+    "classification": "Eruption Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 1.9,
+    "baseHp": 70,
+    "baseSpAttack": 145,
+    "baseSpDefense": 105,
+    "baseSpeed": 20,
+    "primaryType": "fire",
+    "secondaryType": "ground",
+    "baseWeight": 220,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Carbink",
+    "id": 82,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "carbink",
+    "japaneseName": "Melecieメレシー",
+    "pokedexNumber": 703,
+    "abilities": ["Clear Body", "Sturdy"],
+    "baseAttack": 50,
+    "captureRate": 60,
+    "classification": "Jewel Pokémon",
+    "baseDefense": 150,
+    "baseHeight": 0.3,
+    "baseHp": 50,
+    "baseSpAttack": 50,
+    "baseSpDefense": 150,
+    "baseSpeed": 50,
+    "primaryType": "rock",
+    "secondaryType": "fairy",
+    "baseWeight": 5.7,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Carnivine",
+    "id": 83,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "carnivine",
+    "japaneseName": "Muskippaマスキッパ",
+    "pokedexNumber": 455,
+    "abilities": ["Levitate"],
+    "baseAttack": 100,
+    "captureRate": 200,
+    "classification": "Bug Catcher Pokémon",
+    "baseDefense": 72,
+    "baseHeight": 1.4,
+    "baseHp": 74,
+    "baseSpAttack": 90,
+    "baseSpDefense": 72,
+    "baseSpeed": 46,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 27,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Carracosta",
+    "id": 84,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "carracosta",
+    "japaneseName": "Abagouraアバゴーラ",
+    "pokedexNumber": 565,
+    "abilities": ["Solid Rock", "Sturdy", "Swift Swim"],
+    "baseAttack": 108,
+    "captureRate": 45,
+    "classification": "Prototurtle Pokémon",
+    "baseDefense": 133,
+    "baseHeight": 1.2,
+    "baseHp": 74,
+    "baseSpAttack": 83,
+    "baseSpDefense": 65,
+    "baseSpeed": 32,
+    "primaryType": "water",
+    "secondaryType": "rock",
+    "baseWeight": 81,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Carvanha",
+    "id": 85,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "carvanha",
+    "japaneseName": "Kibanhaキバニア",
+    "pokedexNumber": 318,
+    "abilities": ["Rough Skin", "Speed Boost"],
+    "baseAttack": 90,
+    "captureRate": 225,
+    "classification": "Savage Pokémon",
+    "baseDefense": 20,
+    "baseHeight": 0.8,
+    "baseHp": 45,
+    "baseSpAttack": 65,
+    "baseSpDefense": 20,
+    "baseSpeed": 65,
+    "primaryType": "water",
+    "secondaryType": "dark",
+    "baseWeight": 20.8,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Cascoon",
+    "id": 86,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cascoon",
+    "japaneseName": "Mayuldマユルド",
+    "pokedexNumber": 268,
+    "abilities": ["Shed Skin"],
+    "baseAttack": 35,
+    "captureRate": 120,
+    "classification": "Cocoon Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.7,
+    "baseHp": 50,
+    "baseSpAttack": 25,
+    "baseSpDefense": 25,
+    "baseSpeed": 15,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 11.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Castform",
+    "id": 87,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "castform",
+    "japaneseName": "Powalenポワルン",
+    "pokedexNumber": 351,
+    "abilities": ["Forecast"],
+    "baseAttack": 70,
+    "captureRate": 45,
+    "classification": "Weather Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.3,
+    "baseHp": 70,
+    "baseSpAttack": 70,
+    "baseSpDefense": 70,
+    "baseSpeed": 70,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 0.8,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Caterpie",
+    "id": 88,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "caterpie",
+    "japaneseName": "Caterpieキャタピー",
+    "pokedexNumber": 10,
+    "abilities": ["Shield Dust", "Run Away"],
+    "baseAttack": 30,
+    "captureRate": 255,
+    "classification": "Worm Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.3,
+    "baseHp": 45,
+    "baseSpAttack": 20,
+    "baseSpDefense": 20,
+    "baseSpeed": 45,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 2.9,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Celebi",
+    "id": 89,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "celebi",
+    "japaneseName": "Celebiセレビィ",
+    "pokedexNumber": 251,
+    "abilities": ["Natural Cure"],
+    "baseAttack": 100,
+    "captureRate": 45,
+    "classification": "Time Travel Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 0.6,
+    "baseHp": 100,
+    "baseSpAttack": 100,
+    "baseSpDefense": 100,
+    "baseSpeed": 100,
+    "primaryType": "psychic",
+    "secondaryType": "grass",
+    "baseWeight": 5,
+    "generation": 2,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Celesteela",
+    "id": 90,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "celesteela",
+    "japaneseName": "Tekkaguyaテッカグヤ",
+    "pokedexNumber": 797,
+    "abilities": ["Beast Boost"],
+    "baseAttack": 101,
+    "captureRate": 25,
+    "classification": "Launch Pokémon",
+    "baseDefense": 103,
+    "baseHeight": 9.2,
+    "baseHp": 97,
+    "baseSpAttack": 107,
+    "baseSpDefense": 101,
+    "baseSpeed": 61,
+    "primaryType": "steel",
+    "secondaryType": "flying",
+    "baseWeight": 999.9,
+    "generation": 7,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Chandelure",
+    "id": 91,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "chandelure",
+    "japaneseName": "Chandelaシャンデラ",
+    "pokedexNumber": 609,
+    "abilities": ["Flash Fire", "Flame Body", "Infiltrator"],
+    "baseAttack": 55,
+    "captureRate": 45,
+    "classification": "Luring Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 1,
+    "baseHp": 60,
+    "baseSpAttack": 145,
+    "baseSpDefense": 90,
+    "baseSpeed": 80,
+    "primaryType": "ghost",
+    "secondaryType": "fire",
+    "baseWeight": 34.3,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Chansey",
+    "id": 92,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "chansey",
+    "japaneseName": "Luckyラッキー",
+    "pokedexNumber": 113,
+    "abilities": ["Natural Cure", "Serene Grace", "Healer"],
+    "baseAttack": 5,
+    "captureRate": 30,
+    "classification": "Egg Pokémon",
+    "baseDefense": 5,
+    "baseHeight": 1.1,
+    "baseHp": 250,
+    "baseSpAttack": 35,
+    "baseSpDefense": 105,
+    "baseSpeed": 50,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 34.6,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Charizard",
+    "id": 93,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "charizard",
+    "japaneseName": "Lizardonリザードン",
+    "pokedexNumber": 6,
+    "abilities": ["Blaze", "Solar Power"],
+    "baseAttack": 104,
+    "captureRate": 45,
+    "classification": "Flame Pokémon",
+    "baseDefense": 78,
+    "baseHeight": 1.7,
+    "baseHp": 78,
+    "baseSpAttack": 159,
+    "baseSpDefense": 115,
+    "baseSpeed": 100,
+    "primaryType": "fire",
+    "secondaryType": "flying",
+    "baseWeight": 90.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Charjabug",
+    "id": 94,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "charjabug",
+    "japaneseName": "Dendimushiデンヂムシ",
+    "pokedexNumber": 737,
+    "abilities": ["Battery"],
+    "baseAttack": 82,
+    "captureRate": 120,
+    "classification": "Battery Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 0.5,
+    "baseHp": 57,
+    "baseSpAttack": 55,
+    "baseSpDefense": 75,
+    "baseSpeed": 36,
+    "primaryType": "bug",
+    "secondaryType": "electric",
+    "baseWeight": 10.5,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Charmander",
+    "id": 95,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "charmander",
+    "japaneseName": "Hitokageヒトカゲ",
+    "pokedexNumber": 4,
+    "abilities": ["Blaze", "Solar Power"],
+    "baseAttack": 52,
+    "captureRate": 45,
+    "classification": "Lizard Pokémon",
+    "baseDefense": 43,
+    "baseHeight": 0.6,
+    "baseHp": 39,
+    "baseSpAttack": 60,
+    "baseSpDefense": 50,
+    "baseSpeed": 65,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 8.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Charmeleon",
+    "id": 96,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "charmeleon",
+    "japaneseName": "Lizardoリザード",
+    "pokedexNumber": 5,
+    "abilities": ["Blaze", "Solar Power"],
+    "baseAttack": 64,
+    "captureRate": 45,
+    "classification": "Flame Pokémon",
+    "baseDefense": 58,
+    "baseHeight": 1.1,
+    "baseHp": 58,
+    "baseSpAttack": 80,
+    "baseSpDefense": 65,
+    "baseSpeed": 80,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 19,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Chatot",
+    "id": 97,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "chatot",
+    "japaneseName": "Perapペラップ",
+    "pokedexNumber": 441,
+    "abilities": ["Keen Eye", "Tangled Feet", "Big Pecks"],
+    "baseAttack": 65,
+    "captureRate": 30,
+    "classification": "Music Note Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.5,
+    "baseHp": 76,
+    "baseSpAttack": 92,
+    "baseSpDefense": 42,
+    "baseSpeed": 91,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 1.9,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Cherrim",
+    "id": 98,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cherrim",
+    "japaneseName": "Cherrimチェリム",
+    "pokedexNumber": 421,
+    "abilities": ["Flower Gift"],
+    "baseAttack": 60,
+    "captureRate": 75,
+    "classification": "Blossom Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.5,
+    "baseHp": 70,
+    "baseSpAttack": 87,
+    "baseSpDefense": 78,
+    "baseSpeed": 85,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 9.3,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Cherubi",
+    "id": 99,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cherubi",
+    "japaneseName": "Cherinboチェリンボ",
+    "pokedexNumber": 420,
+    "abilities": ["Chlorophyll"],
+    "baseAttack": 35,
+    "captureRate": 190,
+    "classification": "Cherry Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.4,
+    "baseHp": 45,
+    "baseSpAttack": 62,
+    "baseSpDefense": 53,
+    "baseSpeed": 35,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 3.3,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Chesnaught",
+    "id": 100,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "chesnaught",
+    "japaneseName": "Brigarronブリガロン",
+    "pokedexNumber": 652,
+    "abilities": ["Overgrow", "Bulletproof"],
+    "baseAttack": 107,
+    "captureRate": 45,
+    "classification": "Spiny Armor Pokémon",
+    "baseDefense": 122,
+    "baseHeight": 1.6,
+    "baseHp": 88,
+    "baseSpAttack": 74,
+    "baseSpDefense": 75,
+    "baseSpeed": 64,
+    "primaryType": "grass",
+    "secondaryType": "fighting",
+    "baseWeight": 90,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Chespin",
+    "id": 101,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "chespin",
+    "japaneseName": "Harimaronハリマロン",
+    "pokedexNumber": 650,
+    "abilities": ["Overgrow", "Bulletproof"],
+    "baseAttack": 61,
+    "captureRate": 45,
+    "classification": "Spiky Nut Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 0.4,
+    "baseHp": 56,
+    "baseSpAttack": 48,
+    "baseSpDefense": 45,
+    "baseSpeed": 38,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 9,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Chikorita",
+    "id": 102,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "chikorita",
+    "japaneseName": "Chicoritaチコリータ",
+    "pokedexNumber": 152,
+    "abilities": ["Overgrow", "Leaf Guard"],
+    "baseAttack": 49,
+    "captureRate": 45,
+    "classification": "Leaf Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 0.9,
+    "baseHp": 45,
+    "baseSpAttack": 49,
+    "baseSpDefense": 65,
+    "baseSpeed": 45,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 6.4,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Chimchar",
+    "id": 103,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "chimchar",
+    "japaneseName": "Hikozaruヒコザル",
+    "pokedexNumber": 390,
+    "abilities": ["Blaze", "Iron Fist"],
+    "baseAttack": 58,
+    "captureRate": 45,
+    "classification": "Chimp Pokémon",
+    "baseDefense": 44,
+    "baseHeight": 0.5,
+    "baseHp": 44,
+    "baseSpAttack": 58,
+    "baseSpDefense": 44,
+    "baseSpeed": 61,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 6.2,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Chimecho",
+    "id": 104,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "chimecho",
+    "japaneseName": "Chireanチリーン",
+    "pokedexNumber": 358,
+    "abilities": ["Levitate"],
+    "baseAttack": 50,
+    "captureRate": 45,
+    "classification": "Wind Chime Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 0.6,
+    "baseHp": 75,
+    "baseSpAttack": 95,
+    "baseSpDefense": 90,
+    "baseSpeed": 65,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 1,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Chinchou",
+    "id": 105,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "chinchou",
+    "japaneseName": "Chonchieチョンチー",
+    "pokedexNumber": 170,
+    "abilities": ["Volt Absorb", "Illuminate", "Water Absorb"],
+    "baseAttack": 38,
+    "captureRate": 190,
+    "classification": "Angler Pokémon",
+    "baseDefense": 38,
+    "baseHeight": 0.5,
+    "baseHp": 75,
+    "baseSpAttack": 56,
+    "baseSpDefense": 56,
+    "baseSpeed": 67,
+    "primaryType": "water",
+    "secondaryType": "electric",
+    "baseWeight": 12,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Chingling",
+    "id": 106,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "chingling",
+    "japaneseName": "Lisyanリーシャン",
+    "pokedexNumber": 433,
+    "abilities": ["Levitate"],
+    "baseAttack": 30,
+    "captureRate": 120,
+    "classification": "Bell Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.2,
+    "baseHp": 45,
+    "baseSpAttack": 65,
+    "baseSpDefense": 50,
+    "baseSpeed": 45,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 0.6,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Cinccino",
+    "id": 107,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cinccino",
+    "japaneseName": "Chillaccinoチラチーノ",
+    "pokedexNumber": 573,
+    "abilities": ["Cute Charm", "Technician", "Skill Link"],
+    "baseAttack": 95,
+    "captureRate": 60,
+    "classification": "Scarf Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.5,
+    "baseHp": 75,
+    "baseSpAttack": 65,
+    "baseSpDefense": 60,
+    "baseSpeed": 115,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 7.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Clamperl",
+    "id": 108,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "clamperl",
+    "japaneseName": "Pearluluパールル",
+    "pokedexNumber": 366,
+    "abilities": ["Shell Armor", "Rattled"],
+    "baseAttack": 64,
+    "captureRate": 255,
+    "classification": "Bivalve Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 0.4,
+    "baseHp": 35,
+    "baseSpAttack": 74,
+    "baseSpDefense": 55,
+    "baseSpeed": 32,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 52.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Clauncher",
+    "id": 109,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "clauncher",
+    "japaneseName": "Udeppouウデッポウ",
+    "pokedexNumber": 692,
+    "abilities": ["Mega Launcher"],
+    "baseAttack": 53,
+    "captureRate": 225,
+    "classification": "Water Gun Pokémon",
+    "baseDefense": 62,
+    "baseHeight": 0.5,
+    "baseHp": 50,
+    "baseSpAttack": 58,
+    "baseSpDefense": 63,
+    "baseSpeed": 44,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 8.3,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Clawitzer",
+    "id": 110,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "clawitzer",
+    "japaneseName": "Blosterブロスター",
+    "pokedexNumber": 693,
+    "abilities": ["Mega Launcher"],
+    "baseAttack": 73,
+    "captureRate": 55,
+    "classification": "Howitzer Pokémon",
+    "baseDefense": 88,
+    "baseHeight": 1.3,
+    "baseHp": 71,
+    "baseSpAttack": 120,
+    "baseSpDefense": 89,
+    "baseSpeed": 59,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 35.3,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Claydol",
+    "id": 111,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "claydol",
+    "japaneseName": "Nendollネンドール",
+    "pokedexNumber": 344,
+    "abilities": ["Levitate"],
+    "baseAttack": 70,
+    "captureRate": 90,
+    "classification": "Clay Doll Pokémon",
+    "baseDefense": 105,
+    "baseHeight": 1.5,
+    "baseHp": 60,
+    "baseSpAttack": 70,
+    "baseSpDefense": 120,
+    "baseSpeed": 75,
+    "primaryType": "ground",
+    "secondaryType": "psychic",
+    "baseWeight": 108,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Clefable",
+    "id": 112,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "clefable",
+    "japaneseName": "Pixyピクシー",
+    "pokedexNumber": 36,
+    "abilities": ["Cute Charm", "Magic Guard", "Unaware"],
+    "baseAttack": 70,
+    "captureRate": 25,
+    "classification": "Fairy Pokémon",
+    "baseDefense": 73,
+    "baseHeight": 1.3,
+    "baseHp": 95,
+    "baseSpAttack": 95,
+    "baseSpDefense": 90,
+    "baseSpeed": 60,
+    "primaryType": "fairy",
+    "secondaryType": "",
+    "baseWeight": 40,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Clefairy",
+    "id": 113,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "clefairy",
+    "japaneseName": "Pippiピッピ",
+    "pokedexNumber": 35,
+    "abilities": ["Cute Charm", "Magic Guard", "Friend Guard"],
+    "baseAttack": 45,
+    "captureRate": 150,
+    "classification": "Fairy Pokémon",
+    "baseDefense": 48,
+    "baseHeight": 0.6,
+    "baseHp": 70,
+    "baseSpAttack": 60,
+    "baseSpDefense": 65,
+    "baseSpeed": 35,
+    "primaryType": "fairy",
+    "secondaryType": "",
+    "baseWeight": 7.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Cleffa",
+    "id": 114,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cleffa",
+    "japaneseName": "Pyピィ",
+    "pokedexNumber": 173,
+    "abilities": ["Cute Charm", "Magic Guard", "Friend Guard"],
+    "baseAttack": 25,
+    "captureRate": 150,
+    "classification": "Star Shape Pokémon",
+    "baseDefense": 28,
+    "baseHeight": 0.3,
+    "baseHp": 50,
+    "baseSpAttack": 45,
+    "baseSpDefense": 55,
+    "baseSpeed": 15,
+    "primaryType": "fairy",
+    "secondaryType": "",
+    "baseWeight": 3,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Cloyster",
+    "id": 115,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cloyster",
+    "japaneseName": "Parshenパルシェン",
+    "pokedexNumber": 91,
+    "abilities": ["Shell Armor", "Skill Link", "Overcoat"],
+    "baseAttack": 95,
+    "captureRate": 60,
+    "classification": "Bivalve Pokémon",
+    "baseDefense": 180,
+    "baseHeight": 1.5,
+    "baseHp": 50,
+    "baseSpAttack": 85,
+    "baseSpDefense": 45,
+    "baseSpeed": 70,
+    "primaryType": "water",
+    "secondaryType": "ice",
+    "baseWeight": 132.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Cobalion",
+    "id": 116,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cobalion",
+    "japaneseName": "Cobalonコバルオン",
+    "pokedexNumber": 638,
+    "abilities": ["Justified"],
+    "baseAttack": 90,
+    "captureRate": 3,
+    "classification": "Iron Will Pokémon",
+    "baseDefense": 129,
+    "baseHeight": 2.1,
+    "baseHp": 91,
+    "baseSpAttack": 90,
+    "baseSpDefense": 72,
+    "baseSpeed": 108,
+    "primaryType": "steel",
+    "secondaryType": "fighting",
+    "baseWeight": 250,
+    "generation": 5,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Cofagrigus",
+    "id": 117,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cofagrigus",
+    "japaneseName": "Desukarnデスカーン",
+    "pokedexNumber": 563,
+    "abilities": ["Mummy"],
+    "baseAttack": 50,
+    "captureRate": 90,
+    "classification": "Coffin Pokémon",
+    "baseDefense": 145,
+    "baseHeight": 1.7,
+    "baseHp": 58,
+    "baseSpAttack": 95,
+    "baseSpDefense": 105,
+    "baseSpeed": 30,
+    "primaryType": "ghost",
+    "secondaryType": "",
+    "baseWeight": 76.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Combee",
+    "id": 118,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "combee",
+    "japaneseName": "Mitsuhoneyミツハニー",
+    "pokedexNumber": 415,
+    "abilities": ["Honey Gather", "Hustle"],
+    "baseAttack": 30,
+    "captureRate": 120,
+    "classification": "Tiny Bee Pokémon",
+    "baseDefense": 42,
+    "baseHeight": 0.3,
+    "baseHp": 30,
+    "baseSpAttack": 30,
+    "baseSpDefense": 42,
+    "baseSpeed": 70,
+    "primaryType": "bug",
+    "secondaryType": "flying",
+    "baseWeight": 5.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Combusken",
+    "id": 119,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "combusken",
+    "japaneseName": "Wakasyamoワカシャモ",
+    "pokedexNumber": 256,
+    "abilities": ["Blaze", "Speed Boost"],
+    "baseAttack": 85,
+    "captureRate": 45,
+    "classification": "Young Fowl Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.9,
+    "baseHp": 60,
+    "baseSpAttack": 85,
+    "baseSpDefense": 60,
+    "baseSpeed": 55,
+    "primaryType": "fire",
+    "secondaryType": "fighting",
+    "baseWeight": 19.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Comfey",
+    "id": 120,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "comfey",
+    "japaneseName": "Cuwawaキュワワー",
+    "pokedexNumber": 764,
+    "abilities": ["Flower Veil", "Triage", "Natural Cure"],
+    "baseAttack": 52,
+    "captureRate": 60,
+    "classification": "Posy Picker Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 0.1,
+    "baseHp": 51,
+    "baseSpAttack": 82,
+    "baseSpDefense": 110,
+    "baseSpeed": 100,
+    "primaryType": "fairy",
+    "secondaryType": "",
+    "baseWeight": 0.3,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Conkeldurr",
+    "id": 121,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "conkeldurr",
+    "japaneseName": "Roubushinローブシン",
+    "pokedexNumber": 534,
+    "abilities": ["Guts", "Sheer Force", "Iron Fist"],
+    "baseAttack": 140,
+    "captureRate": 45,
+    "classification": "Muscular Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 1.4,
+    "baseHp": 105,
+    "baseSpAttack": 55,
+    "baseSpDefense": 65,
+    "baseSpeed": 45,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 87,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Corphish",
+    "id": 122,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "corphish",
+    "japaneseName": "Heiganiヘイガニ",
+    "pokedexNumber": 341,
+    "abilities": ["Hyper Cutter", "Shell Armor", "Adaptability"],
+    "baseAttack": 80,
+    "captureRate": 205,
+    "classification": "Ruffian Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 0.6,
+    "baseHp": 43,
+    "baseSpAttack": 50,
+    "baseSpDefense": 35,
+    "baseSpeed": 35,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 11.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Corsola",
+    "id": 123,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "corsola",
+    "japaneseName": "Sunnygoサニーゴ",
+    "pokedexNumber": 222,
+    "abilities": ["Hustle", "Natural Cure", "Regenerator"],
+    "baseAttack": 55,
+    "captureRate": 60,
+    "classification": "Coral Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 0.6,
+    "baseHp": 65,
+    "baseSpAttack": 65,
+    "baseSpDefense": 95,
+    "baseSpeed": 35,
+    "primaryType": "water",
+    "secondaryType": "rock",
+    "baseWeight": 5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Cosmoem",
+    "id": 124,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cosmoem",
+    "japaneseName": "Cosmovumコスモウム",
+    "pokedexNumber": 790,
+    "abilities": ["Sturdy"],
+    "baseAttack": 29,
+    "captureRate": 45,
+    "classification": "Protostar Pokémon",
+    "baseDefense": 131,
+    "baseHeight": 0.1,
+    "baseHp": 43,
+    "baseSpAttack": 29,
+    "baseSpDefense": 131,
+    "baseSpeed": 37,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 999.9,
+    "generation": 7,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Cosmog",
+    "id": 125,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cosmog",
+    "japaneseName": "Cosmogコスモッグ",
+    "pokedexNumber": 789,
+    "abilities": ["Unaware"],
+    "baseAttack": 29,
+    "captureRate": 45,
+    "classification": "Nebula Pokémon",
+    "baseDefense": 31,
+    "baseHeight": 0.2,
+    "baseHp": 43,
+    "baseSpAttack": 29,
+    "baseSpDefense": 31,
+    "baseSpeed": 37,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 0.1,
+    "generation": 7,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Cottonee",
+    "id": 126,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cottonee",
+    "japaneseName": "Monmenモンメン",
+    "pokedexNumber": 546,
+    "abilities": ["Prankster", "Infiltrator", "Chlorophyll"],
+    "baseAttack": 27,
+    "captureRate": 190,
+    "classification": "Cotton Puff Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.3,
+    "baseHp": 40,
+    "baseSpAttack": 37,
+    "baseSpDefense": 50,
+    "baseSpeed": 66,
+    "primaryType": "grass",
+    "secondaryType": "fairy",
+    "baseWeight": 0.6,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Crabominable",
+    "id": 127,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "crabominable",
+    "japaneseName": "Kekenkaniケケンカニ",
+    "pokedexNumber": 740,
+    "abilities": ["Hyper Cutter", "Iron Fist", "Anger Point"],
+    "baseAttack": 132,
+    "captureRate": 60,
+    "classification": "Woolly Crab Pokémon",
+    "baseDefense": 77,
+    "baseHeight": 1.7,
+    "baseHp": 97,
+    "baseSpAttack": 62,
+    "baseSpDefense": 67,
+    "baseSpeed": 43,
+    "primaryType": "fighting",
+    "secondaryType": "ice",
+    "baseWeight": 180,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Crabrawler",
+    "id": 128,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "crabrawler",
+    "japaneseName": "Makenkaniマケンカニ",
+    "pokedexNumber": 739,
+    "abilities": ["Hyper Cutter", "Iron Fist", "Anger Point"],
+    "baseAttack": 82,
+    "captureRate": 225,
+    "classification": "Boxing Pokémon",
+    "baseDefense": 57,
+    "baseHeight": 0.6,
+    "baseHp": 47,
+    "baseSpAttack": 42,
+    "baseSpDefense": 47,
+    "baseSpeed": 63,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 7,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Cradily",
+    "id": 129,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cradily",
+    "japaneseName": "Yuradleユレイドル",
+    "pokedexNumber": 346,
+    "abilities": ["Suction Cups", "Storm Drain"],
+    "baseAttack": 81,
+    "captureRate": 45,
+    "classification": "Barnacle Pokémon",
+    "baseDefense": 97,
+    "baseHeight": 1.5,
+    "baseHp": 86,
+    "baseSpAttack": 81,
+    "baseSpDefense": 107,
+    "baseSpeed": 43,
+    "primaryType": "rock",
+    "secondaryType": "grass",
+    "baseWeight": 60.4,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Cranidos",
+    "id": 130,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cranidos",
+    "japaneseName": "Zugaidosズガイドス",
+    "pokedexNumber": 408,
+    "abilities": ["Mold Breaker", "Sheer Force"],
+    "baseAttack": 125,
+    "captureRate": 45,
+    "classification": "Head Butt Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.9,
+    "baseHp": 67,
+    "baseSpAttack": 30,
+    "baseSpDefense": 30,
+    "baseSpeed": 58,
+    "primaryType": "rock",
+    "secondaryType": "",
+    "baseWeight": 31.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Crawdaunt",
+    "id": 131,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "crawdaunt",
+    "japaneseName": "Shizarigerシザリガー",
+    "pokedexNumber": 342,
+    "abilities": ["Hyper Cutter", "Shell Armor", "Adaptability"],
+    "baseAttack": 120,
+    "captureRate": 155,
+    "classification": "Rogue Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 1.1,
+    "baseHp": 63,
+    "baseSpAttack": 90,
+    "baseSpDefense": 55,
+    "baseSpeed": 55,
+    "primaryType": "water",
+    "secondaryType": "dark",
+    "baseWeight": 32.8,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Cresselia",
+    "id": 132,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cresselia",
+    "japaneseName": "Cresseliaクレセリア",
+    "pokedexNumber": 488,
+    "abilities": ["Levitate"],
+    "baseAttack": 70,
+    "captureRate": 3,
+    "classification": "Lunar Pokémon",
+    "baseDefense": 120,
+    "baseHeight": 1.5,
+    "baseHp": 120,
+    "baseSpAttack": 75,
+    "baseSpDefense": 130,
+    "baseSpeed": 85,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 85.6,
+    "generation": 4,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Croagunk",
+    "id": 133,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "croagunk",
+    "japaneseName": "Gureggruグレッグル",
+    "pokedexNumber": 453,
+    "abilities": ["Anticipation", "Dry Skin", "Poison Touch"],
+    "baseAttack": 61,
+    "captureRate": 140,
+    "classification": "Toxic Mouth Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.7,
+    "baseHp": 48,
+    "baseSpAttack": 61,
+    "baseSpDefense": 40,
+    "baseSpeed": 50,
+    "primaryType": "poison",
+    "secondaryType": "fighting",
+    "baseWeight": 23,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Crobat",
+    "id": 134,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "crobat",
+    "japaneseName": "Crobatクロバット",
+    "pokedexNumber": 169,
+    "abilities": ["Inner Focus", "Infiltrator"],
+    "baseAttack": 90,
+    "captureRate": 90,
+    "classification": "Bat Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.8,
+    "baseHp": 85,
+    "baseSpAttack": 70,
+    "baseSpDefense": 80,
+    "baseSpeed": 130,
+    "primaryType": "poison",
+    "secondaryType": "flying",
+    "baseWeight": 75,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Croconaw",
+    "id": 135,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "croconaw",
+    "japaneseName": "Alligatesアリゲイツ",
+    "pokedexNumber": 159,
+    "abilities": ["Torrent", "Sheer Force"],
+    "baseAttack": 80,
+    "captureRate": 45,
+    "classification": "Big Jaw Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.1,
+    "baseHp": 65,
+    "baseSpAttack": 59,
+    "baseSpDefense": 63,
+    "baseSpeed": 58,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 25,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Crustle",
+    "id": 136,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "crustle",
+    "japaneseName": "Iwapalaceイワパレス",
+    "pokedexNumber": 558,
+    "abilities": ["Sturdy", "Shell Armor", "Weak Armor"],
+    "baseAttack": 105,
+    "captureRate": 75,
+    "classification": "Stone Home Pokémon",
+    "baseDefense": 125,
+    "baseHeight": 1.4,
+    "baseHp": 70,
+    "baseSpAttack": 65,
+    "baseSpDefense": 75,
+    "baseSpeed": 45,
+    "primaryType": "bug",
+    "secondaryType": "rock",
+    "baseWeight": 200,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Cryogonal",
+    "id": 137,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cryogonal",
+    "japaneseName": "Freegeoフリージオ",
+    "pokedexNumber": 615,
+    "abilities": ["Levitate"],
+    "baseAttack": 50,
+    "captureRate": 25,
+    "classification": "Crystallizing Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 1.1,
+    "baseHp": 80,
+    "baseSpAttack": 95,
+    "baseSpDefense": 135,
+    "baseSpeed": 105,
+    "primaryType": "ice",
+    "secondaryType": "",
+    "baseWeight": 148,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Cubchoo",
+    "id": 138,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cubchoo",
+    "japaneseName": "Kumasyunクマシュン",
+    "pokedexNumber": 613,
+    "abilities": ["Snow Cloak", "Slush Rush", "Rattled"],
+    "baseAttack": 70,
+    "captureRate": 120,
+    "classification": "Chill Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.5,
+    "baseHp": 55,
+    "baseSpAttack": 60,
+    "baseSpDefense": 40,
+    "baseSpeed": 40,
+    "primaryType": "ice",
+    "secondaryType": "",
+    "baseWeight": 8.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Cubone",
+    "id": 139,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cubone",
+    "japaneseName": "Karakaraカラカラ",
+    "pokedexNumber": 104,
+    "abilities": ["Rock Head", "Lightningrod", "Battle Armor"],
+    "baseAttack": 50,
+    "captureRate": 190,
+    "classification": "Lonely Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 0.4,
+    "baseHp": 50,
+    "baseSpAttack": 40,
+    "baseSpDefense": 50,
+    "baseSpeed": 35,
+    "primaryType": "ground",
+    "secondaryType": "",
+    "baseWeight": 6.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Cutiefly",
+    "id": 140,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cutiefly",
+    "japaneseName": "Abulyアブリー",
+    "pokedexNumber": 742,
+    "abilities": ["Honey Gather", "Shield Dust", "Sweet Veil"],
+    "baseAttack": 45,
+    "captureRate": 190,
+    "classification": "Bee Fly Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.1,
+    "baseHp": 40,
+    "baseSpAttack": 55,
+    "baseSpDefense": 40,
+    "baseSpeed": 84,
+    "primaryType": "bug",
+    "secondaryType": "fairy",
+    "baseWeight": 0.2,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Cyndaquil",
+    "id": 141,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "cyndaquil",
+    "japaneseName": "Hinoarashiヒノアラシ",
+    "pokedexNumber": 155,
+    "abilities": ["Blaze", "Flash Fire"],
+    "baseAttack": 52,
+    "captureRate": 45,
+    "classification": "Fire Mouse Pokémon",
+    "baseDefense": 43,
+    "baseHeight": 0.5,
+    "baseHp": 39,
+    "baseSpAttack": 60,
+    "baseSpDefense": 50,
+    "baseSpeed": 65,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 7.9,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Darkrai",
+    "id": 142,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "darkrai",
+    "japaneseName": "Darkraiダークライ",
+    "pokedexNumber": 491,
+    "abilities": ["Bad Dreams"],
+    "baseAttack": 90,
+    "captureRate": 3,
+    "classification": "Pitch-Black Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 1.5,
+    "baseHp": 70,
+    "baseSpAttack": 135,
+    "baseSpDefense": 90,
+    "baseSpeed": 125,
+    "primaryType": "dark",
+    "secondaryType": "",
+    "baseWeight": 50.5,
+    "generation": 4,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Darmanitan",
+    "id": 143,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "darmanitan-standard",
+    "japaneseName": "Hihidarumaヒヒダルマ",
+    "pokedexNumber": 555,
+    "abilities": ["Sheer Force", "Zen Mode"],
+    "baseAttack": 30,
+    "captureRate": 60,
+    "classification": "Blazing Pokémon",
+    "baseDefense": 105,
+    "baseHeight": 1.3,
+    "baseHp": 105,
+    "baseSpAttack": 140,
+    "baseSpDefense": 105,
+    "baseSpeed": 55,
+    "primaryType": "fire",
+    "secondaryType": "fire",
+    "baseWeight": 92.9,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Dartrix",
+    "id": 144,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dartrix",
+    "japaneseName": "Fukuthrowフクスロー",
+    "pokedexNumber": 723,
+    "abilities": ["Overgrow", "Long Reach"],
+    "baseAttack": 75,
+    "captureRate": 45,
+    "classification": "Blade Quill Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 0.7,
+    "baseHp": 78,
+    "baseSpAttack": 70,
+    "baseSpDefense": 70,
+    "baseSpeed": 52,
+    "primaryType": "grass",
+    "secondaryType": "flying",
+    "baseWeight": 16,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Darumaka",
+    "id": 145,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "darumaka",
+    "japaneseName": "Darumakkaダルマッカ",
+    "pokedexNumber": 554,
+    "abilities": ["Hustle", "Inner Focus"],
+    "baseAttack": 90,
+    "captureRate": 120,
+    "classification": "Zen Charm Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.6,
+    "baseHp": 70,
+    "baseSpAttack": 15,
+    "baseSpDefense": 45,
+    "baseSpeed": 50,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 37.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Decidueye",
+    "id": 146,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "decidueye",
+    "japaneseName": "Junaiperジュナイパー",
+    "pokedexNumber": 724,
+    "abilities": ["Overgrow", "Long Reach"],
+    "baseAttack": 107,
+    "captureRate": 45,
+    "classification": "Arrow Quill Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 1.6,
+    "baseHp": 78,
+    "baseSpAttack": 100,
+    "baseSpDefense": 100,
+    "baseSpeed": 70,
+    "primaryType": "grass",
+    "secondaryType": "ghost",
+    "baseWeight": 36.6,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Dedenne",
+    "id": 147,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dedenne",
+    "japaneseName": "Dedenneデデンネ",
+    "pokedexNumber": 702,
+    "abilities": ["Cheek Pouch", "Pickup", "Plus"],
+    "baseAttack": 58,
+    "captureRate": 180,
+    "classification": "Antenna Pokémon",
+    "baseDefense": 57,
+    "baseHeight": 0.2,
+    "baseHp": 67,
+    "baseSpAttack": 81,
+    "baseSpDefense": 67,
+    "baseSpeed": 101,
+    "primaryType": "electric",
+    "secondaryType": "fairy",
+    "baseWeight": 2.2,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Deerling",
+    "id": 148,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "deerling",
+    "japaneseName": "Shikijikaシキジカ",
+    "pokedexNumber": 585,
+    "abilities": ["Chlorophyll", "Sap Sipper", "Serene Grace"],
+    "baseAttack": 60,
+    "captureRate": 190,
+    "classification": "Season Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.6,
+    "baseHp": 60,
+    "baseSpAttack": 40,
+    "baseSpDefense": 50,
+    "baseSpeed": 75,
+    "primaryType": "normal",
+    "secondaryType": "grass",
+    "baseWeight": 19.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Deino",
+    "id": 149,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "deino",
+    "japaneseName": "Monozuモノズ",
+    "pokedexNumber": 633,
+    "abilities": ["Hustle"],
+    "baseAttack": 65,
+    "captureRate": 45,
+    "classification": "Irate Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.8,
+    "baseHp": 52,
+    "baseSpAttack": 45,
+    "baseSpDefense": 50,
+    "baseSpeed": 38,
+    "primaryType": "dark",
+    "secondaryType": "dragon",
+    "baseWeight": 17.3,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Delcatty",
+    "id": 150,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "delcatty",
+    "japaneseName": "Enekororoエネコロロ",
+    "pokedexNumber": 301,
+    "abilities": ["Cute Charm", "Normalize", "Wonder Skin "],
+    "baseAttack": 65,
+    "captureRate": 60,
+    "classification": "Prim Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1.1,
+    "baseHp": 70,
+    "baseSpAttack": 55,
+    "baseSpDefense": 55,
+    "baseSpeed": 90,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 32.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Delibird",
+    "id": 151,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "delibird",
+    "japaneseName": "Delibirdデリバード",
+    "pokedexNumber": 225,
+    "abilities": ["Vital Spirit", "Hustle", "Insomnia"],
+    "baseAttack": 55,
+    "captureRate": 45,
+    "classification": "Delivery Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.9,
+    "baseHp": 45,
+    "baseSpAttack": 65,
+    "baseSpDefense": 45,
+    "baseSpeed": 75,
+    "primaryType": "ice",
+    "secondaryType": "flying",
+    "baseWeight": 16,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Delphox",
+    "id": 152,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "delphox",
+    "japaneseName": "Mahoxyマフォクシー",
+    "pokedexNumber": 655,
+    "abilities": ["Blaze", "Magician"],
+    "baseAttack": 69,
+    "captureRate": 45,
+    "classification": "Fox Pokémon",
+    "baseDefense": 72,
+    "baseHeight": 1.5,
+    "baseHp": 75,
+    "baseSpAttack": 114,
+    "baseSpDefense": 100,
+    "baseSpeed": 104,
+    "primaryType": "fire",
+    "secondaryType": "psychic",
+    "baseWeight": 39,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Deoxys",
+    "id": 153,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "deoxys-normal",
+    "japaneseName": "Deoxysデオキシス",
+    "pokedexNumber": 386,
+    "abilities": ["Pressure"],
+    "baseAttack": 95,
+    "captureRate": 3,
+    "classification": "DNA Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 1.7,
+    "baseHp": 50,
+    "baseSpAttack": 95,
+    "baseSpDefense": 90,
+    "baseSpeed": 180,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 60.8,
+    "generation": 3,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Dewgong",
+    "id": 154,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dewgong",
+    "japaneseName": "Jugonジュゴン",
+    "pokedexNumber": 87,
+    "abilities": ["Thick Fat", "Hydration", "Ice Body"],
+    "baseAttack": 70,
+    "captureRate": 75,
+    "classification": "Sea Lion Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.7,
+    "baseHp": 90,
+    "baseSpAttack": 70,
+    "baseSpDefense": 95,
+    "baseSpeed": 70,
+    "primaryType": "water",
+    "secondaryType": "ice",
+    "baseWeight": 120,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Dewott",
+    "id": 155,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dewott",
+    "japaneseName": "Futachimaruフタチマル",
+    "pokedexNumber": 502,
+    "abilities": ["Torrent", "Shell Armor"],
+    "baseAttack": 75,
+    "captureRate": 45,
+    "classification": "Discipline Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.8,
+    "baseHp": 75,
+    "baseSpAttack": 83,
+    "baseSpDefense": 60,
+    "baseSpeed": 60,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 24.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Dewpider",
+    "id": 156,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dewpider",
+    "japaneseName": "Shizukumoシズクモ",
+    "pokedexNumber": 751,
+    "abilities": ["Water Bubble", "Water Absorb"],
+    "baseAttack": 40,
+    "captureRate": 200,
+    "classification": "Water Bubble Pokémon",
+    "baseDefense": 52,
+    "baseHeight": 0.3,
+    "baseHp": 38,
+    "baseSpAttack": 40,
+    "baseSpDefense": 72,
+    "baseSpeed": 27,
+    "primaryType": "water",
+    "secondaryType": "bug",
+    "baseWeight": 4,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Dhelmise",
+    "id": 157,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dhelmise",
+    "japaneseName": "Dadarinダダリン",
+    "pokedexNumber": 781,
+    "abilities": ["Steelworker"],
+    "baseAttack": 131,
+    "captureRate": 25,
+    "classification": "Sea Creeper Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 3.9,
+    "baseHp": 70,
+    "baseSpAttack": 86,
+    "baseSpDefense": 90,
+    "baseSpeed": 40,
+    "primaryType": "ghost",
+    "secondaryType": "grass",
+    "baseWeight": 210,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Dialga",
+    "id": 158,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dialga",
+    "japaneseName": "Dialgaディアルガ",
+    "pokedexNumber": 483,
+    "abilities": ["Pressure", "Telepathy"],
+    "baseAttack": 120,
+    "captureRate": 3,
+    "classification": "Temporal Pokémon",
+    "baseDefense": 120,
+    "baseHeight": 5.4,
+    "baseHp": 100,
+    "baseSpAttack": 150,
+    "baseSpDefense": 100,
+    "baseSpeed": 90,
+    "primaryType": "steel",
+    "secondaryType": "dragon",
+    "baseWeight": 683,
+    "generation": 4,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Diancie",
+    "id": 159,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "diancie",
+    "japaneseName": "Diancieディアンシー",
+    "pokedexNumber": 719,
+    "abilities": ["Clear Body"],
+    "baseAttack": 160,
+    "captureRate": 3,
+    "classification": "Jewel Pokémon",
+    "baseDefense": 110,
+    "baseHeight": 0.7,
+    "baseHp": 50,
+    "baseSpAttack": 160,
+    "baseSpDefense": 110,
+    "baseSpeed": 110,
+    "primaryType": "rock",
+    "secondaryType": "fairy",
+    "baseWeight": 8.8,
+    "generation": 6,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Diggersby",
+    "id": 160,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "diggersby",
+    "japaneseName": "Horudoホルード",
+    "pokedexNumber": 660,
+    "abilities": ["Pickup", "Cheek Pouch", "Huge Power"],
+    "baseAttack": 56,
+    "captureRate": 127,
+    "classification": "Digging Pokémon",
+    "baseDefense": 77,
+    "baseHeight": 1,
+    "baseHp": 85,
+    "baseSpAttack": 50,
+    "baseSpDefense": 77,
+    "baseSpeed": 78,
+    "primaryType": "normal",
+    "secondaryType": "ground",
+    "baseWeight": 42.4,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Diglett",
+    "id": 161,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "diglett",
+    "japaneseName": "Digdaディグダ",
+    "pokedexNumber": 50,
+    "abilities": ["Sand Veil", "Arena Trap", "Sand Force", "Sand Veil", "Tangling Hair", "Sand Force"],
+    "baseAttack": 55,
+    "captureRate": 255,
+    "classification": "Mole Pokémon",
+    "baseDefense": 30,
+    "baseHeight": "",
+    "baseHp": 10,
+    "baseSpAttack": 35,
+    "baseSpDefense": 45,
+    "baseSpeed": 90,
+    "primaryType": "ground",
+    "secondaryType": "ground",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ditto",
+    "id": 162,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ditto",
+    "japaneseName": "Metamonメタモン",
+    "pokedexNumber": 132,
+    "abilities": ["Limber", "Imposter"],
+    "baseAttack": 48,
+    "captureRate": 35,
+    "classification": "Transform Pokémon",
+    "baseDefense": 48,
+    "baseHeight": 0.3,
+    "baseHp": 48,
+    "baseSpAttack": 48,
+    "baseSpDefense": 48,
+    "baseSpeed": 48,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 4,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Dodrio",
+    "id": 163,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dodrio",
+    "japaneseName": "Dodorioドードリオ",
+    "pokedexNumber": 85,
+    "abilities": ["Run Away", "Early Bird", "Tangled Feet"],
+    "baseAttack": 110,
+    "captureRate": 45,
+    "classification": "Triple Bird Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.8,
+    "baseHp": 60,
+    "baseSpAttack": 60,
+    "baseSpDefense": 60,
+    "baseSpeed": 110,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 85.2,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Doduo",
+    "id": 164,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "doduo",
+    "japaneseName": "Dodoドードー",
+    "pokedexNumber": 84,
+    "abilities": ["Run Away", "Early Bird", "Tangled Feet"],
+    "baseAttack": 85,
+    "captureRate": 190,
+    "classification": "Twin Bird Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 1.4,
+    "baseHp": 35,
+    "baseSpAttack": 35,
+    "baseSpDefense": 35,
+    "baseSpeed": 75,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 39.2,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Donphan",
+    "id": 165,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "donphan",
+    "japaneseName": "Donfanドンファン",
+    "pokedexNumber": 232,
+    "abilities": ["Sturdy", "Sand Veil"],
+    "baseAttack": 120,
+    "captureRate": 60,
+    "classification": "Armor Pokémon",
+    "baseDefense": 120,
+    "baseHeight": 1.1,
+    "baseHp": 90,
+    "baseSpAttack": 60,
+    "baseSpDefense": 60,
+    "baseSpeed": 50,
+    "primaryType": "ground",
+    "secondaryType": "",
+    "baseWeight": 120,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Doublade",
+    "id": 166,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "doublade",
+    "japaneseName": "Nidangillニダンギル",
+    "pokedexNumber": 680,
+    "abilities": ["No Guard"],
+    "baseAttack": 110,
+    "captureRate": 90,
+    "classification": "Sword Pokémon",
+    "baseDefense": 150,
+    "baseHeight": 0.8,
+    "baseHp": 59,
+    "baseSpAttack": 45,
+    "baseSpDefense": 49,
+    "baseSpeed": 35,
+    "primaryType": "steel",
+    "secondaryType": "ghost",
+    "baseWeight": 4.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Dragalge",
+    "id": 167,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dragalge",
+    "japaneseName": "Dramidoroドラミドロ",
+    "pokedexNumber": 691,
+    "abilities": ["Poison Point", "Poison Touch", "Adaptability"],
+    "baseAttack": 75,
+    "captureRate": 55,
+    "classification": "Mock Kelp Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 1.8,
+    "baseHp": 65,
+    "baseSpAttack": 97,
+    "baseSpDefense": 123,
+    "baseSpeed": 44,
+    "primaryType": "poison",
+    "secondaryType": "dragon",
+    "baseWeight": 81.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Dragonair",
+    "id": 168,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dragonair",
+    "japaneseName": "Hakuryuハクリュー",
+    "pokedexNumber": 148,
+    "abilities": ["Shed Skin", "Marvel Scale"],
+    "baseAttack": 84,
+    "captureRate": 45,
+    "classification": "Dragon Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 4,
+    "baseHp": 61,
+    "baseSpAttack": 70,
+    "baseSpDefense": 70,
+    "baseSpeed": 70,
+    "primaryType": "dragon",
+    "secondaryType": "",
+    "baseWeight": 16.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Dragonite",
+    "id": 169,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dragonite",
+    "japaneseName": "Kairyuカイリュー",
+    "pokedexNumber": 149,
+    "abilities": ["Inner Focus", "Multiscale"],
+    "baseAttack": 134,
+    "captureRate": 45,
+    "classification": "Dragon Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 2.2,
+    "baseHp": 91,
+    "baseSpAttack": 100,
+    "baseSpDefense": 100,
+    "baseSpeed": 80,
+    "primaryType": "dragon",
+    "secondaryType": "flying",
+    "baseWeight": 210,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Drampa",
+    "id": 170,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "drampa",
+    "japaneseName": "Jijilongジジーロン",
+    "pokedexNumber": 780,
+    "abilities": ["Berserk", "Sap Sipper", "Cloud Nine"],
+    "baseAttack": 60,
+    "captureRate": 70,
+    "classification": "Placid Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 3,
+    "baseHp": 78,
+    "baseSpAttack": 135,
+    "baseSpDefense": 91,
+    "baseSpeed": 36,
+    "primaryType": "normal",
+    "secondaryType": "dragon",
+    "baseWeight": 185,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Drapion",
+    "id": 171,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "drapion",
+    "japaneseName": "Dorapionドラピオン",
+    "pokedexNumber": 452,
+    "abilities": ["Battle Armor", "Sniper", "Keen Eye"],
+    "baseAttack": 90,
+    "captureRate": 45,
+    "classification": "Ogre Scorp Pokémon",
+    "baseDefense": 110,
+    "baseHeight": 1.3,
+    "baseHp": 70,
+    "baseSpAttack": 60,
+    "baseSpDefense": 75,
+    "baseSpeed": 95,
+    "primaryType": "poison",
+    "secondaryType": "dark",
+    "baseWeight": 61.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Dratini",
+    "id": 172,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dratini",
+    "japaneseName": "Miniryuミニリュウ",
+    "pokedexNumber": 147,
+    "abilities": ["Shed Skin", "Marvel Scale"],
+    "baseAttack": 64,
+    "captureRate": 45,
+    "classification": "Dragon Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 1.8,
+    "baseHp": 41,
+    "baseSpAttack": 50,
+    "baseSpDefense": 50,
+    "baseSpeed": 50,
+    "primaryType": "dragon",
+    "secondaryType": "",
+    "baseWeight": 3.3,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Drifblim",
+    "id": 173,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "drifblim",
+    "japaneseName": "Fuwarideフワライド",
+    "pokedexNumber": 426,
+    "abilities": ["Aftermath", "Unburden", "Flare Boost"],
+    "baseAttack": 80,
+    "captureRate": 60,
+    "classification": "Blimp Pokémon",
+    "baseDefense": 44,
+    "baseHeight": 1.2,
+    "baseHp": 150,
+    "baseSpAttack": 90,
+    "baseSpDefense": 54,
+    "baseSpeed": 80,
+    "primaryType": "ghost",
+    "secondaryType": "flying",
+    "baseWeight": 15,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Drifloon",
+    "id": 174,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "drifloon",
+    "japaneseName": "Fuwanteフワンテ",
+    "pokedexNumber": 425,
+    "abilities": ["Aftermath", "Unburden", "Flare Boost"],
+    "baseAttack": 50,
+    "captureRate": 125,
+    "classification": "Balloon Pokémon",
+    "baseDefense": 34,
+    "baseHeight": 0.4,
+    "baseHp": 90,
+    "baseSpAttack": 60,
+    "baseSpDefense": 44,
+    "baseSpeed": 70,
+    "primaryType": "ghost",
+    "secondaryType": "flying",
+    "baseWeight": 1.2,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Drilbur",
+    "id": 175,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "drilbur",
+    "japaneseName": "Mogurewモグリュー",
+    "pokedexNumber": 529,
+    "abilities": ["Sand Rush", "Sand Force", "Mold Breaker"],
+    "baseAttack": 85,
+    "captureRate": 120,
+    "classification": "Mole Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.3,
+    "baseHp": 60,
+    "baseSpAttack": 30,
+    "baseSpDefense": 45,
+    "baseSpeed": 68,
+    "primaryType": "ground",
+    "secondaryType": "",
+    "baseWeight": 8.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Drowzee",
+    "id": 176,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "drowzee",
+    "japaneseName": "Sleepeスリープ",
+    "pokedexNumber": 96,
+    "abilities": ["Insomnia", "Forewarn", "Inner Focus"],
+    "baseAttack": 48,
+    "captureRate": 190,
+    "classification": "Hypnosis Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 1,
+    "baseHp": 60,
+    "baseSpAttack": 43,
+    "baseSpDefense": 90,
+    "baseSpeed": 42,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 32.4,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Druddigon",
+    "id": 177,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "druddigon",
+    "japaneseName": "Crimganクリムガン",
+    "pokedexNumber": 621,
+    "abilities": ["Rough Skin", "Sheer Force", "Mold Breaker"],
+    "baseAttack": 120,
+    "captureRate": 45,
+    "classification": "Cave Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 1.6,
+    "baseHp": 77,
+    "baseSpAttack": 60,
+    "baseSpDefense": 90,
+    "baseSpeed": 48,
+    "primaryType": "dragon",
+    "secondaryType": "",
+    "baseWeight": 139,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ducklett",
+    "id": 178,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ducklett",
+    "japaneseName": "Koaruhieコアルヒー",
+    "pokedexNumber": 580,
+    "abilities": ["Keen Eye", "Big Pecks", "Hydration"],
+    "baseAttack": 44,
+    "captureRate": 190,
+    "classification": "Water Bird Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.5,
+    "baseHp": 62,
+    "baseSpAttack": 44,
+    "baseSpDefense": 50,
+    "baseSpeed": 55,
+    "primaryType": "water",
+    "secondaryType": "flying",
+    "baseWeight": 5.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Dugtrio",
+    "id": 179,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dugtrio",
+    "japaneseName": "Dugtrioダグトリオ",
+    "pokedexNumber": 51,
+    "abilities": ["Sand Veil", "Arena Trap", "Sand Force", "Sand Veil", "Tangling Hair", "Sand Force"],
+    "baseAttack": 100,
+    "captureRate": 50,
+    "classification": "Mole Pokémon",
+    "baseDefense": 60,
+    "baseHeight": "",
+    "baseHp": 35,
+    "baseSpAttack": 50,
+    "baseSpDefense": 70,
+    "baseSpeed": 110,
+    "primaryType": "ground",
+    "secondaryType": "ground",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Dunsparce",
+    "id": 180,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dunsparce",
+    "japaneseName": "Nokocchiノコッチ",
+    "pokedexNumber": 206,
+    "abilities": ["Serene Grace", "Run Away", "Rattled"],
+    "baseAttack": 70,
+    "captureRate": 190,
+    "classification": "Land Snake Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.5,
+    "baseHp": 100,
+    "baseSpAttack": 65,
+    "baseSpDefense": 65,
+    "baseSpeed": 45,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 14,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Duosion",
+    "id": 181,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "duosion",
+    "japaneseName": "Doublanダブラン",
+    "pokedexNumber": 578,
+    "abilities": ["Overcoat", "Magic Guard", "Regenerator"],
+    "baseAttack": 40,
+    "captureRate": 100,
+    "classification": "Mitosis Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.6,
+    "baseHp": 65,
+    "baseSpAttack": 125,
+    "baseSpDefense": 60,
+    "baseSpeed": 30,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 8,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Durant",
+    "id": 182,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "durant",
+    "japaneseName": "Aiantアイアント",
+    "pokedexNumber": 632,
+    "abilities": ["Swarm", "Hustle", "Truant"],
+    "baseAttack": 109,
+    "captureRate": 90,
+    "classification": "Iron Ant Pokémon",
+    "baseDefense": 112,
+    "baseHeight": 0.3,
+    "baseHp": 58,
+    "baseSpAttack": 48,
+    "baseSpDefense": 48,
+    "baseSpeed": 109,
+    "primaryType": "bug",
+    "secondaryType": "steel",
+    "baseWeight": 33,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Dusclops",
+    "id": 183,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dusclops",
+    "japaneseName": "Samayouruサマヨール",
+    "pokedexNumber": 356,
+    "abilities": ["Pressure", "Frisk"],
+    "baseAttack": 70,
+    "captureRate": 90,
+    "classification": "Beckon Pokémon",
+    "baseDefense": 130,
+    "baseHeight": 1.6,
+    "baseHp": 40,
+    "baseSpAttack": 60,
+    "baseSpDefense": 130,
+    "baseSpeed": 25,
+    "primaryType": "ghost",
+    "secondaryType": "",
+    "baseWeight": 30.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Dusknoir",
+    "id": 184,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dusknoir",
+    "japaneseName": "Yonoirヨノワール",
+    "pokedexNumber": 477,
+    "abilities": ["Pressure", "Frisk"],
+    "baseAttack": 100,
+    "captureRate": 45,
+    "classification": "Gripper Pokémon",
+    "baseDefense": 135,
+    "baseHeight": 2.2,
+    "baseHp": 45,
+    "baseSpAttack": 65,
+    "baseSpDefense": 135,
+    "baseSpeed": 45,
+    "primaryType": "ghost",
+    "secondaryType": "",
+    "baseWeight": 106.6,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Duskull",
+    "id": 185,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "duskull",
+    "japaneseName": "Yomawaruヨマワル",
+    "pokedexNumber": 355,
+    "abilities": ["Levitate", "Frisk"],
+    "baseAttack": 40,
+    "captureRate": 190,
+    "classification": "Requiem Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 0.8,
+    "baseHp": 20,
+    "baseSpAttack": 30,
+    "baseSpDefense": 90,
+    "baseSpeed": 25,
+    "primaryType": "ghost",
+    "secondaryType": "",
+    "baseWeight": 15,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Dustox",
+    "id": 186,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dustox",
+    "japaneseName": "Dokucaleドクケイル",
+    "pokedexNumber": 269,
+    "abilities": ["Shield Dust", "Compoundeyes"],
+    "baseAttack": 50,
+    "captureRate": 45,
+    "classification": "Poison Moth Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.2,
+    "baseHp": 60,
+    "baseSpAttack": 50,
+    "baseSpDefense": 90,
+    "baseSpeed": 65,
+    "primaryType": "bug",
+    "secondaryType": "poison",
+    "baseWeight": 31.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Dwebble",
+    "id": 187,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "dwebble",
+    "japaneseName": "Ishizumaiイシズマイ",
+    "pokedexNumber": 557,
+    "abilities": ["Sturdy", "Shell Armor", "Weak Armor"],
+    "baseAttack": 65,
+    "captureRate": 190,
+    "classification": "Rock Inn Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 0.3,
+    "baseHp": 50,
+    "baseSpAttack": 35,
+    "baseSpDefense": 35,
+    "baseSpeed": 55,
+    "primaryType": "bug",
+    "secondaryType": "rock",
+    "baseWeight": 14.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Eelektrik",
+    "id": 188,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "eelektrik",
+    "japaneseName": "Shibibeelシビビール",
+    "pokedexNumber": 603,
+    "abilities": ["Levitate"],
+    "baseAttack": 85,
+    "captureRate": 60,
+    "classification": "EleFish Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.2,
+    "baseHp": 65,
+    "baseSpAttack": 75,
+    "baseSpDefense": 70,
+    "baseSpeed": 40,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 22,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Eelektross",
+    "id": 189,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "eelektross",
+    "japaneseName": "Shibirudonシビルドン",
+    "pokedexNumber": 604,
+    "abilities": ["Levitate"],
+    "baseAttack": 115,
+    "captureRate": 30,
+    "classification": "EleFish Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 2.1,
+    "baseHp": 85,
+    "baseSpAttack": 105,
+    "baseSpDefense": 80,
+    "baseSpeed": 50,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 80.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Eevee",
+    "id": 190,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "eevee",
+    "japaneseName": "Eievuiイーブイ",
+    "pokedexNumber": 133,
+    "abilities": ["Run Away", "Adaptability", "Anticipation"],
+    "baseAttack": 55,
+    "captureRate": 45,
+    "classification": "Evolution Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.3,
+    "baseHp": 55,
+    "baseSpAttack": 45,
+    "baseSpDefense": 65,
+    "baseSpeed": 55,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 6.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ekans",
+    "id": 191,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ekans",
+    "japaneseName": "Arboアーボ",
+    "pokedexNumber": 23,
+    "abilities": ["Intimidate", "Shed Skin", "Unnerve"],
+    "baseAttack": 60,
+    "captureRate": 255,
+    "classification": "Snake Pokémon",
+    "baseDefense": 44,
+    "baseHeight": 2,
+    "baseHp": 35,
+    "baseSpAttack": 40,
+    "baseSpDefense": 54,
+    "baseSpeed": 55,
+    "primaryType": "poison",
+    "secondaryType": "",
+    "baseWeight": 6.9,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Electabuzz",
+    "id": 192,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "electabuzz",
+    "japaneseName": "Elebooエレブー",
+    "pokedexNumber": 125,
+    "abilities": ["Static", "Vital Spirit"],
+    "baseAttack": 83,
+    "captureRate": 45,
+    "classification": "Electric Pokémon",
+    "baseDefense": 57,
+    "baseHeight": 1.1,
+    "baseHp": 65,
+    "baseSpAttack": 95,
+    "baseSpDefense": 85,
+    "baseSpeed": 105,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 30,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Electivire",
+    "id": 193,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "electivire",
+    "japaneseName": "Elekibleエレキブル",
+    "pokedexNumber": 466,
+    "abilities": ["Motor Drive", "Vital Spirit"],
+    "baseAttack": 123,
+    "captureRate": 30,
+    "classification": "Thunderbolt Pokémon",
+    "baseDefense": 67,
+    "baseHeight": 1.8,
+    "baseHp": 75,
+    "baseSpAttack": 95,
+    "baseSpDefense": 85,
+    "baseSpeed": 95,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 138.6,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Electrike",
+    "id": 194,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "electrike",
+    "japaneseName": "Rakuraiラクライ",
+    "pokedexNumber": 309,
+    "abilities": ["Static", "Lightningrod", "Minus"],
+    "baseAttack": 45,
+    "captureRate": 120,
+    "classification": "Lightning Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.6,
+    "baseHp": 40,
+    "baseSpAttack": 65,
+    "baseSpDefense": 40,
+    "baseSpeed": 65,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 15.2,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Electrode",
+    "id": 195,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "electrode",
+    "japaneseName": "Marumineマルマイン",
+    "pokedexNumber": 101,
+    "abilities": ["Soundproof", "Static", "Aftermath"],
+    "baseAttack": 50,
+    "captureRate": 60,
+    "classification": "Ball Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.2,
+    "baseHp": 60,
+    "baseSpAttack": 80,
+    "baseSpDefense": 80,
+    "baseSpeed": 150,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 66.6,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Elekid",
+    "id": 196,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "elekid",
+    "japaneseName": "Elekidエレキッド",
+    "pokedexNumber": 239,
+    "abilities": ["Static", "Vital Spirit"],
+    "baseAttack": 63,
+    "captureRate": 45,
+    "classification": "Electric Pokémon",
+    "baseDefense": 37,
+    "baseHeight": 0.6,
+    "baseHp": 45,
+    "baseSpAttack": 65,
+    "baseSpDefense": 55,
+    "baseSpeed": 95,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 23.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Elgyem",
+    "id": 197,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "elgyem",
+    "japaneseName": "Ligrayリグレー",
+    "pokedexNumber": 605,
+    "abilities": ["Telepathy", "Synchronize", "Analytic"],
+    "baseAttack": 55,
+    "captureRate": 255,
+    "classification": "Cerebral Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.5,
+    "baseHp": 55,
+    "baseSpAttack": 85,
+    "baseSpDefense": 55,
+    "baseSpeed": 30,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 9,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Emboar",
+    "id": 198,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "emboar",
+    "japaneseName": "Enbuohエンブオー",
+    "pokedexNumber": 500,
+    "abilities": ["Blaze", "Reckless"],
+    "baseAttack": 123,
+    "captureRate": 45,
+    "classification": "Mega Fire Pig Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1.6,
+    "baseHp": 110,
+    "baseSpAttack": 100,
+    "baseSpDefense": 65,
+    "baseSpeed": 65,
+    "primaryType": "fire",
+    "secondaryType": "fighting",
+    "baseWeight": 150,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Emolga",
+    "id": 199,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "emolga",
+    "japaneseName": "Emongaエモンガ",
+    "pokedexNumber": 587,
+    "abilities": ["Static", "Motor Drive"],
+    "baseAttack": 75,
+    "captureRate": 200,
+    "classification": "Sky Squirrel Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.4,
+    "baseHp": 55,
+    "baseSpAttack": 75,
+    "baseSpDefense": 60,
+    "baseSpeed": 103,
+    "primaryType": "electric",
+    "secondaryType": "flying",
+    "baseWeight": 5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Empoleon",
+    "id": 200,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "empoleon",
+    "japaneseName": "Emperteエンペルト",
+    "pokedexNumber": 395,
+    "abilities": ["Torrent", "Defiant"],
+    "baseAttack": 86,
+    "captureRate": 45,
+    "classification": "Emperor Pokémon",
+    "baseDefense": 88,
+    "baseHeight": 1.7,
+    "baseHp": 84,
+    "baseSpAttack": 111,
+    "baseSpDefense": 101,
+    "baseSpeed": 60,
+    "primaryType": "water",
+    "secondaryType": "steel",
+    "baseWeight": 84.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Entei",
+    "id": 201,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "entei",
+    "japaneseName": "Enteiエンテイ",
+    "pokedexNumber": 244,
+    "abilities": ["Pressure", "Inner Focus"],
+    "baseAttack": 115,
+    "captureRate": 3,
+    "classification": "Volcano Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 2.1,
+    "baseHp": 115,
+    "baseSpAttack": 90,
+    "baseSpDefense": 75,
+    "baseSpeed": 100,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 198,
+    "generation": 2,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Escavalier",
+    "id": 202,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "escavalier",
+    "japaneseName": "Chevargoシュバルゴ",
+    "pokedexNumber": 589,
+    "abilities": ["Swarm", "Shell Armor", "Overcoat"],
+    "baseAttack": 135,
+    "captureRate": 75,
+    "classification": "Cavalry Pokémon",
+    "baseDefense": 105,
+    "baseHeight": 1,
+    "baseHp": 70,
+    "baseSpAttack": 60,
+    "baseSpDefense": 105,
+    "baseSpeed": 20,
+    "primaryType": "bug",
+    "secondaryType": "steel",
+    "baseWeight": 33,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Espeon",
+    "id": 203,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "espeon",
+    "japaneseName": "Eifieエーフィ",
+    "pokedexNumber": 196,
+    "abilities": ["Synchronize", "Magic Bounce"],
+    "baseAttack": 65,
+    "captureRate": 45,
+    "classification": "Sun Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.9,
+    "baseHp": 65,
+    "baseSpAttack": 130,
+    "baseSpDefense": 95,
+    "baseSpeed": 110,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 26.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Espurr",
+    "id": 204,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "espurr",
+    "japaneseName": "Nyasperニャスパー",
+    "pokedexNumber": 677,
+    "abilities": ["Keen Eye", "Infiltrator", "Own Tempo"],
+    "baseAttack": 48,
+    "captureRate": 190,
+    "classification": "Restraint Pokémon",
+    "baseDefense": 54,
+    "baseHeight": 0.3,
+    "baseHp": 62,
+    "baseSpAttack": 63,
+    "baseSpDefense": 60,
+    "baseSpeed": 68,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 3.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Excadrill",
+    "id": 205,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "excadrill",
+    "japaneseName": "Doryuzuドリュウズ",
+    "pokedexNumber": 530,
+    "abilities": ["Sand Rush", "Sand Force", "Mold Breaker"],
+    "baseAttack": 135,
+    "captureRate": 60,
+    "classification": "Subterrene Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.7,
+    "baseHp": 110,
+    "baseSpAttack": 50,
+    "baseSpDefense": 65,
+    "baseSpeed": 88,
+    "primaryType": "ground",
+    "secondaryType": "steel",
+    "baseWeight": 40.4,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Exeggcute",
+    "id": 206,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "exeggcute",
+    "japaneseName": "Tamatamaタマタマ",
+    "pokedexNumber": 102,
+    "abilities": ["Chlorophyll", "Harvest"],
+    "baseAttack": 40,
+    "captureRate": 90,
+    "classification": "Egg Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 0.4,
+    "baseHp": 60,
+    "baseSpAttack": 60,
+    "baseSpDefense": 45,
+    "baseSpeed": 40,
+    "primaryType": "grass",
+    "secondaryType": "psychic",
+    "baseWeight": 2.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Exeggutor",
+    "id": 207,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "exeggutor",
+    "japaneseName": "Nassyナッシー",
+    "pokedexNumber": 103,
+    "abilities": ["Chlorophyll", "Harvest", "Frisk", "Harvest"],
+    "baseAttack": 105,
+    "captureRate": 45,
+    "classification": "Coconut Pokémon",
+    "baseDefense": 85,
+    "baseHeight": "",
+    "baseHp": 95,
+    "baseSpAttack": 125,
+    "baseSpDefense": 75,
+    "baseSpeed": 45,
+    "primaryType": "grass",
+    "secondaryType": "psychic",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Exploud",
+    "id": 208,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "exploud",
+    "japaneseName": "Bakuongバクオング",
+    "pokedexNumber": 295,
+    "abilities": ["Soundproof", "Scrappy"],
+    "baseAttack": 91,
+    "captureRate": 45,
+    "classification": "Loud Noise Pokémon",
+    "baseDefense": 63,
+    "baseHeight": 1.5,
+    "baseHp": 104,
+    "baseSpAttack": 91,
+    "baseSpDefense": 73,
+    "baseSpeed": 68,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 84,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Farfetch'd",
+    "id": 209,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "farfetchd",
+    "japaneseName": "Kamonegiカモネギ",
+    "pokedexNumber": 83,
+    "abilities": ["Keen Eye", "Inner Focus", "Defiant"],
+    "baseAttack": 90,
+    "captureRate": 45,
+    "classification": "Wild Duck Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.8,
+    "baseHp": 52,
+    "baseSpAttack": 58,
+    "baseSpDefense": 62,
+    "baseSpeed": 60,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 15,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Fearow",
+    "id": 210,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "fearow",
+    "japaneseName": "Onidrillオニドリル",
+    "pokedexNumber": 22,
+    "abilities": ["Keen Eye", "Sniper"],
+    "baseAttack": 90,
+    "captureRate": 90,
+    "classification": "Beak Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1.2,
+    "baseHp": 65,
+    "baseSpAttack": 61,
+    "baseSpDefense": 61,
+    "baseSpeed": 100,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 38,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Feebas",
+    "id": 211,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "feebas",
+    "japaneseName": "Hinbassヒンバス",
+    "pokedexNumber": 349,
+    "abilities": ["Swift Swim", "Oblivious", "Adaptability"],
+    "baseAttack": 15,
+    "captureRate": 255,
+    "classification": "Fish Pokémon",
+    "baseDefense": 20,
+    "baseHeight": 0.6,
+    "baseHp": 20,
+    "baseSpAttack": 10,
+    "baseSpDefense": 55,
+    "baseSpeed": 80,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 7.4,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Fennekin",
+    "id": 212,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "fennekin",
+    "japaneseName": "Fokkoフォッコ",
+    "pokedexNumber": 653,
+    "abilities": ["Blaze", "Magician"],
+    "baseAttack": 45,
+    "captureRate": 45,
+    "classification": "Fox Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.4,
+    "baseHp": 40,
+    "baseSpAttack": 62,
+    "baseSpDefense": 60,
+    "baseSpeed": 60,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 9.4,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Feraligatr",
+    "id": 213,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "feraligatr",
+    "japaneseName": "Ordileオーダイル",
+    "pokedexNumber": 160,
+    "abilities": ["Torrent", "Sheer Force"],
+    "baseAttack": 105,
+    "captureRate": 45,
+    "classification": "Big Jaw Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 2.3,
+    "baseHp": 85,
+    "baseSpAttack": 79,
+    "baseSpDefense": 83,
+    "baseSpeed": 78,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 88.8,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ferroseed",
+    "id": 214,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ferroseed",
+    "japaneseName": "Tesseedテッシード",
+    "pokedexNumber": 597,
+    "abilities": ["Iron Barbs"],
+    "baseAttack": 50,
+    "captureRate": 255,
+    "classification": "Thorn Seed Pokémon",
+    "baseDefense": 91,
+    "baseHeight": 0.6,
+    "baseHp": 44,
+    "baseSpAttack": 24,
+    "baseSpDefense": 86,
+    "baseSpeed": 10,
+    "primaryType": "grass",
+    "secondaryType": "steel",
+    "baseWeight": 18.8,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ferrothorn",
+    "id": 215,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ferrothorn",
+    "japaneseName": "Nutreyナットレイ",
+    "pokedexNumber": 598,
+    "abilities": ["Iron Barbs", "Anticipation"],
+    "baseAttack": 94,
+    "captureRate": 90,
+    "classification": "Thorn Pod Pokémon",
+    "baseDefense": 131,
+    "baseHeight": 1,
+    "baseHp": 74,
+    "baseSpAttack": 54,
+    "baseSpDefense": 116,
+    "baseSpeed": 20,
+    "primaryType": "grass",
+    "secondaryType": "steel",
+    "baseWeight": 110,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Finneon",
+    "id": 216,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "finneon",
+    "japaneseName": "Keikouoケイコウオ",
+    "pokedexNumber": 456,
+    "abilities": ["Swift Swim", "Storm Drain", "Water Veil"],
+    "baseAttack": 49,
+    "captureRate": 190,
+    "classification": "Wing Fish Pokémon",
+    "baseDefense": 56,
+    "baseHeight": 0.4,
+    "baseHp": 49,
+    "baseSpAttack": 49,
+    "baseSpDefense": 61,
+    "baseSpeed": 66,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 7,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Flaaffy",
+    "id": 217,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "flaaffy",
+    "japaneseName": "Mokokoモココ",
+    "pokedexNumber": 180,
+    "abilities": ["Static", "Plus"],
+    "baseAttack": 55,
+    "captureRate": 120,
+    "classification": "Wool Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.8,
+    "baseHp": 70,
+    "baseSpAttack": 80,
+    "baseSpDefense": 60,
+    "baseSpeed": 45,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 13.3,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Flabébé",
+    "id": 218,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "flabebe",
+    "japaneseName": "Flabebeフラベベ",
+    "pokedexNumber": 669,
+    "abilities": ["Flower Veil", "Symbiosis"],
+    "baseAttack": 38,
+    "captureRate": 225,
+    "classification": "Single Bloom Pokémon",
+    "baseDefense": 39,
+    "baseHeight": 0.1,
+    "baseHp": 44,
+    "baseSpAttack": 61,
+    "baseSpDefense": 79,
+    "baseSpeed": 42,
+    "primaryType": "fairy",
+    "secondaryType": "",
+    "baseWeight": 0.1,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Flareon",
+    "id": 219,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "flareon",
+    "japaneseName": "Boosterブースター",
+    "pokedexNumber": 136,
+    "abilities": ["Flash Fire", "Guts"],
+    "baseAttack": 130,
+    "captureRate": 45,
+    "classification": "Flame Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.9,
+    "baseHp": 65,
+    "baseSpAttack": 95,
+    "baseSpDefense": 110,
+    "baseSpeed": 65,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 25,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Fletchinder",
+    "id": 220,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "fletchinder",
+    "japaneseName": "Hinoyakomaヒノヤコマ",
+    "pokedexNumber": 662,
+    "abilities": ["Flame Body", "Gale Wings"],
+    "baseAttack": 73,
+    "captureRate": 120,
+    "classification": "Ember Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.7,
+    "baseHp": 62,
+    "baseSpAttack": 56,
+    "baseSpDefense": 52,
+    "baseSpeed": 84,
+    "primaryType": "fire",
+    "secondaryType": "flying",
+    "baseWeight": 16,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Fletchling",
+    "id": 221,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "fletchling",
+    "japaneseName": "Yayakomaヤヤコマ",
+    "pokedexNumber": 661,
+    "abilities": ["Big Pecks", "Gale Wings"],
+    "baseAttack": 50,
+    "captureRate": 255,
+    "classification": "Tiny Robin Pokémon",
+    "baseDefense": 43,
+    "baseHeight": 0.3,
+    "baseHp": 45,
+    "baseSpAttack": 40,
+    "baseSpDefense": 38,
+    "baseSpeed": 62,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 1.7,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Floatzel",
+    "id": 222,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "floatzel",
+    "japaneseName": "Floazelフローゼル",
+    "pokedexNumber": 419,
+    "abilities": ["Swift Swim", "Water Veil"],
+    "baseAttack": 105,
+    "captureRate": 75,
+    "classification": "Sea Weasel Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 1.1,
+    "baseHp": 85,
+    "baseSpAttack": 85,
+    "baseSpDefense": 50,
+    "baseSpeed": 115,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 33.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Floette",
+    "id": 223,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "floette",
+    "japaneseName": "Floetteフラエッテ",
+    "pokedexNumber": 670,
+    "abilities": ["Flower Veil", "Symbiosis"],
+    "baseAttack": 65,
+    "captureRate": 120,
+    "classification": "Fairy Pokémon",
+    "baseDefense": 67,
+    "baseHeight": 0.2,
+    "baseHp": 74,
+    "baseSpAttack": 125,
+    "baseSpDefense": 128,
+    "baseSpeed": 92,
+    "primaryType": "fairy",
+    "secondaryType": "",
+    "baseWeight": 0.9,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Florges",
+    "id": 224,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "florges",
+    "japaneseName": "Florgesフラージェス",
+    "pokedexNumber": 671,
+    "abilities": ["Flower Veil", "Symbiosis"],
+    "baseAttack": 65,
+    "captureRate": 45,
+    "classification": "Garden Pokémon",
+    "baseDefense": 68,
+    "baseHeight": 1.1,
+    "baseHp": 78,
+    "baseSpAttack": 112,
+    "baseSpDefense": 154,
+    "baseSpeed": 75,
+    "primaryType": "fairy",
+    "secondaryType": "",
+    "baseWeight": 10,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Flygon",
+    "id": 225,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "flygon",
+    "japaneseName": "Flygonフライゴン",
+    "pokedexNumber": 330,
+    "abilities": ["Levitate"],
+    "baseAttack": 100,
+    "captureRate": 45,
+    "classification": "Mystic Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 2,
+    "baseHp": 80,
+    "baseSpAttack": 80,
+    "baseSpDefense": 80,
+    "baseSpeed": 100,
+    "primaryType": "ground",
+    "secondaryType": "dragon",
+    "baseWeight": 82,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Fomantis",
+    "id": 226,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "fomantis",
+    "japaneseName": "Karikiriカリキリ",
+    "pokedexNumber": 753,
+    "abilities": ["Leaf Guard", "Contrary"],
+    "baseAttack": 55,
+    "captureRate": 190,
+    "classification": "Sickle Grass Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.3,
+    "baseHp": 40,
+    "baseSpAttack": 50,
+    "baseSpDefense": 35,
+    "baseSpeed": 35,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 1.5,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Foongus",
+    "id": 227,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "foongus",
+    "japaneseName": "Tamagetakeタマゲタケ",
+    "pokedexNumber": 590,
+    "abilities": ["Effect Spore", "Regenerator"],
+    "baseAttack": 55,
+    "captureRate": 190,
+    "classification": "Mushroom Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.2,
+    "baseHp": 69,
+    "baseSpAttack": 55,
+    "baseSpDefense": 55,
+    "baseSpeed": 15,
+    "primaryType": "grass",
+    "secondaryType": "poison",
+    "baseWeight": 1,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Forretress",
+    "id": 228,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "forretress",
+    "japaneseName": "Foretosフォレトス",
+    "pokedexNumber": 205,
+    "abilities": ["Sturdy", "Overcoat"],
+    "baseAttack": 90,
+    "captureRate": 75,
+    "classification": "Bagworm Pokémon",
+    "baseDefense": 140,
+    "baseHeight": 1.2,
+    "baseHp": 75,
+    "baseSpAttack": 60,
+    "baseSpDefense": 60,
+    "baseSpeed": 40,
+    "primaryType": "bug",
+    "secondaryType": "steel",
+    "baseWeight": 125.8,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Fraxure",
+    "id": 229,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "fraxure",
+    "japaneseName": "Onondoオノンド",
+    "pokedexNumber": 611,
+    "abilities": ["Rivalry", "Mold Breaker", "Unnerve"],
+    "baseAttack": 117,
+    "captureRate": 60,
+    "classification": "Axe Jaw Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1,
+    "baseHp": 66,
+    "baseSpAttack": 40,
+    "baseSpDefense": 50,
+    "baseSpeed": 67,
+    "primaryType": "dragon",
+    "secondaryType": "",
+    "baseWeight": 36,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Frillish",
+    "id": 230,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "frillish",
+    "japaneseName": "Pururillプルリル",
+    "pokedexNumber": 592,
+    "abilities": ["Water Absorb", "Cursed Body", "Damp"],
+    "baseAttack": 40,
+    "captureRate": 190,
+    "classification": "Floating Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 1.2,
+    "baseHp": 55,
+    "baseSpAttack": 65,
+    "baseSpDefense": 85,
+    "baseSpeed": 40,
+    "primaryType": "water",
+    "secondaryType": "ghost",
+    "baseWeight": 33,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Froakie",
+    "id": 231,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "froakie",
+    "japaneseName": "Keromatsuケロマツ",
+    "pokedexNumber": 656,
+    "abilities": ["Torrent", "Protean"],
+    "baseAttack": 56,
+    "captureRate": 45,
+    "classification": "Bubble Frog Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.3,
+    "baseHp": 41,
+    "baseSpAttack": 62,
+    "baseSpDefense": 44,
+    "baseSpeed": 71,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 7,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Frogadier",
+    "id": 232,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "frogadier",
+    "japaneseName": "Gekogashiraゲコガシラ",
+    "pokedexNumber": 657,
+    "abilities": ["Torrent", "Protean"],
+    "baseAttack": 63,
+    "captureRate": 45,
+    "classification": "Bubble Frog Pokémon",
+    "baseDefense": 52,
+    "baseHeight": 0.6,
+    "baseHp": 54,
+    "baseSpAttack": 83,
+    "baseSpDefense": 56,
+    "baseSpeed": 97,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 10.9,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Froslass",
+    "id": 233,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "froslass",
+    "japaneseName": "Yukimenokoユキメノコ",
+    "pokedexNumber": 478,
+    "abilities": ["Snow Cloak", "Cursed Body"],
+    "baseAttack": 80,
+    "captureRate": 75,
+    "classification": "Snow Land Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.3,
+    "baseHp": 70,
+    "baseSpAttack": 80,
+    "baseSpDefense": 70,
+    "baseSpeed": 110,
+    "primaryType": "ice",
+    "secondaryType": "ghost",
+    "baseWeight": 26.6,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Furfrou",
+    "id": 234,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "furfrou",
+    "japaneseName": "Trimmienトリミアン",
+    "pokedexNumber": 676,
+    "abilities": ["Fur Coat"],
+    "baseAttack": 80,
+    "captureRate": 160,
+    "classification": "Poodle Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 1.2,
+    "baseHp": 75,
+    "baseSpAttack": 65,
+    "baseSpDefense": 90,
+    "baseSpeed": 102,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 28,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Furret",
+    "id": 235,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "furret",
+    "japaneseName": "Ootachiオオタチ",
+    "pokedexNumber": 162,
+    "abilities": ["Run Away", "Keen Eye", "Frisk"],
+    "baseAttack": 76,
+    "captureRate": 90,
+    "classification": "Long Body Pokémon",
+    "baseDefense": 64,
+    "baseHeight": 1.8,
+    "baseHp": 85,
+    "baseSpAttack": 45,
+    "baseSpDefense": 55,
+    "baseSpeed": 90,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 32.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gabite",
+    "id": 236,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gabite",
+    "japaneseName": "Gabiteガバイト",
+    "pokedexNumber": 444,
+    "abilities": ["Sand Veil", "Rough Skin"],
+    "baseAttack": 90,
+    "captureRate": 45,
+    "classification": "Cave Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1.4,
+    "baseHp": 68,
+    "baseSpAttack": 50,
+    "baseSpDefense": 55,
+    "baseSpeed": 82,
+    "primaryType": "dragon",
+    "secondaryType": "ground",
+    "baseWeight": 56,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gallade",
+    "id": 237,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gallade",
+    "japaneseName": "Erureidoエルレイド",
+    "pokedexNumber": 475,
+    "abilities": ["Steadfast", "Justified"],
+    "baseAttack": 165,
+    "captureRate": 45,
+    "classification": "Blade Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 1.6,
+    "baseHp": 68,
+    "baseSpAttack": 65,
+    "baseSpDefense": 115,
+    "baseSpeed": 110,
+    "primaryType": "psychic",
+    "secondaryType": "fighting",
+    "baseWeight": 52,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Galvantula",
+    "id": 238,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "galvantula",
+    "japaneseName": "Dentulaデンチュラ",
+    "pokedexNumber": 596,
+    "abilities": ["Compoundeyes", "Unnerve", "Swarm"],
+    "baseAttack": 77,
+    "captureRate": 75,
+    "classification": "EleSpider Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.8,
+    "baseHp": 70,
+    "baseSpAttack": 97,
+    "baseSpDefense": 60,
+    "baseSpeed": 108,
+    "primaryType": "bug",
+    "secondaryType": "electric",
+    "baseWeight": 14.3,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Garbodor",
+    "id": 239,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "garbodor",
+    "japaneseName": "Dustdasダストダス",
+    "pokedexNumber": 569,
+    "abilities": ["Stench", "Weak Armor", "Aftermath"],
+    "baseAttack": 95,
+    "captureRate": 60,
+    "classification": "Trash Heap Pokémon",
+    "baseDefense": 82,
+    "baseHeight": 1.9,
+    "baseHp": 80,
+    "baseSpAttack": 60,
+    "baseSpDefense": 82,
+    "baseSpeed": 75,
+    "primaryType": "poison",
+    "secondaryType": "",
+    "baseWeight": 107.3,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Garchomp",
+    "id": 240,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "garchomp",
+    "japaneseName": "Gaburiasガブリアス",
+    "pokedexNumber": 445,
+    "abilities": ["Sand Veil", "Rough Skin"],
+    "baseAttack": 170,
+    "captureRate": 45,
+    "classification": "Mach Pokémon",
+    "baseDefense": 115,
+    "baseHeight": 1.9,
+    "baseHp": 108,
+    "baseSpAttack": 120,
+    "baseSpDefense": 95,
+    "baseSpeed": 92,
+    "primaryType": "dragon",
+    "secondaryType": "ground",
+    "baseWeight": 95,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gardevoir",
+    "id": 241,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gardevoir",
+    "japaneseName": "Sirnightサーナイト",
+    "pokedexNumber": 282,
+    "abilities": ["Synchronize", "Trace", "Telepathy"],
+    "baseAttack": 85,
+    "captureRate": 45,
+    "classification": "Embrace Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1.6,
+    "baseHp": 68,
+    "baseSpAttack": 165,
+    "baseSpDefense": 135,
+    "baseSpeed": 100,
+    "primaryType": "psychic",
+    "secondaryType": "fairy",
+    "baseWeight": 48.4,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gastly",
+    "id": 242,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gastly",
+    "japaneseName": "Ghosゴース",
+    "pokedexNumber": 92,
+    "abilities": ["Levitate"],
+    "baseAttack": 35,
+    "captureRate": 190,
+    "classification": "Gas Pokémon",
+    "baseDefense": 30,
+    "baseHeight": 1.3,
+    "baseHp": 30,
+    "baseSpAttack": 100,
+    "baseSpDefense": 35,
+    "baseSpeed": 80,
+    "primaryType": "ghost",
+    "secondaryType": "poison",
+    "baseWeight": 0.1,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gastrodon",
+    "id": 243,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gastrodon",
+    "japaneseName": "Tritodonトリトドン",
+    "pokedexNumber": 423,
+    "abilities": ["Sticky Hold", "Storm Drain", "Sand Force"],
+    "baseAttack": 83,
+    "captureRate": 75,
+    "classification": "Sea Slug Pokémon",
+    "baseDefense": 68,
+    "baseHeight": 0.9,
+    "baseHp": 111,
+    "baseSpAttack": 92,
+    "baseSpDefense": 82,
+    "baseSpeed": 39,
+    "primaryType": "water",
+    "secondaryType": "ground",
+    "baseWeight": 29.9,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Genesect",
+    "id": 244,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "genesect",
+    "japaneseName": "Genesectゲノセクト",
+    "pokedexNumber": 649,
+    "abilities": ["Download"],
+    "baseAttack": 120,
+    "captureRate": 3,
+    "classification": "Paleozoic Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 1.5,
+    "baseHp": 71,
+    "baseSpAttack": 120,
+    "baseSpDefense": 95,
+    "baseSpeed": 99,
+    "primaryType": "bug",
+    "secondaryType": "steel",
+    "baseWeight": 82.5,
+    "generation": 5,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Gengar",
+    "id": 245,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gengar",
+    "japaneseName": "Gangarゲンガー",
+    "pokedexNumber": 94,
+    "abilities": ["Cursed Body"],
+    "baseAttack": 65,
+    "captureRate": 45,
+    "classification": "Shadow Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.5,
+    "baseHp": 60,
+    "baseSpAttack": 170,
+    "baseSpDefense": 95,
+    "baseSpeed": 130,
+    "primaryType": "ghost",
+    "secondaryType": "poison",
+    "baseWeight": 40.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Geodude",
+    "id": 246,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "geodude",
+    "japaneseName": "Isitsubuteイシツブテ",
+    "pokedexNumber": 74,
+    "abilities": ["Rock Head", "Sturdy", "Sand Veil", "Magnet Pull", "Sturdy", "Galvanize"],
+    "baseAttack": 80,
+    "captureRate": 255,
+    "classification": "Rock Pokémon",
+    "baseDefense": 100,
+    "baseHeight": "",
+    "baseHp": 40,
+    "baseSpAttack": 30,
+    "baseSpDefense": 30,
+    "baseSpeed": 20,
+    "primaryType": "rock",
+    "secondaryType": "ground",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gible",
+    "id": 247,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gible",
+    "japaneseName": "Fukamaruフカマル",
+    "pokedexNumber": 443,
+    "abilities": ["Sand Veil", "Rough Skin"],
+    "baseAttack": 70,
+    "captureRate": 45,
+    "classification": "Land Shark Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.7,
+    "baseHp": 58,
+    "baseSpAttack": 40,
+    "baseSpDefense": 45,
+    "baseSpeed": 42,
+    "primaryType": "dragon",
+    "secondaryType": "ground",
+    "baseWeight": 20.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gigalith",
+    "id": 248,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gigalith",
+    "japaneseName": "Gigaiathギガイアス",
+    "pokedexNumber": 526,
+    "abilities": ["Sturdy", "Sand Stream", "Sand Force"],
+    "baseAttack": 135,
+    "captureRate": 45,
+    "classification": "Compressed Pokémon",
+    "baseDefense": 130,
+    "baseHeight": 1.7,
+    "baseHp": 85,
+    "baseSpAttack": 60,
+    "baseSpDefense": 80,
+    "baseSpeed": 25,
+    "primaryType": "rock",
+    "secondaryType": "",
+    "baseWeight": 260,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Girafarig",
+    "id": 249,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "girafarig",
+    "japaneseName": "Kirinrikiキリンリキ",
+    "pokedexNumber": 203,
+    "abilities": ["Inner Focus", "Early Bird", "Sap Sipper"],
+    "baseAttack": 80,
+    "captureRate": 60,
+    "classification": "Long Neck Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1.5,
+    "baseHp": 70,
+    "baseSpAttack": 90,
+    "baseSpDefense": 65,
+    "baseSpeed": 85,
+    "primaryType": "normal",
+    "secondaryType": "psychic",
+    "baseWeight": 41.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Giratina",
+    "id": 250,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "giratina-altered",
+    "japaneseName": "Giratina (another Forme)ギラティナ",
+    "pokedexNumber": 487,
+    "abilities": ["Pressure", "Telepathy", "Levitate"],
+    "baseAttack": 120,
+    "captureRate": 3,
+    "classification": "Renegade Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 4.5,
+    "baseHp": 150,
+    "baseSpAttack": 120,
+    "baseSpDefense": 100,
+    "baseSpeed": 90,
+    "primaryType": "ghost",
+    "secondaryType": "dragon",
+    "baseWeight": 750,
+    "generation": 4,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Glaceon",
+    "id": 251,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "glaceon",
+    "japaneseName": "Glaciaグレイシア",
+    "pokedexNumber": 471,
+    "abilities": ["Snow Cloak", "Ice Body"],
+    "baseAttack": 60,
+    "captureRate": 45,
+    "classification": "Fresh Snow Pokémon",
+    "baseDefense": 110,
+    "baseHeight": 0.8,
+    "baseHp": 65,
+    "baseSpAttack": 130,
+    "baseSpDefense": 95,
+    "baseSpeed": 65,
+    "primaryType": "ice",
+    "secondaryType": "",
+    "baseWeight": 25.9,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Glalie",
+    "id": 252,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "glalie",
+    "japaneseName": "Onigohriオニゴーリ",
+    "pokedexNumber": 362,
+    "abilities": ["Inner Focus", "Ice Body", "Moody"],
+    "baseAttack": 120,
+    "captureRate": 75,
+    "classification": "Face Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.5,
+    "baseHp": 80,
+    "baseSpAttack": 120,
+    "baseSpDefense": 80,
+    "baseSpeed": 100,
+    "primaryType": "ice",
+    "secondaryType": "",
+    "baseWeight": 256.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Glameow",
+    "id": 253,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "glameow",
+    "japaneseName": "Nyarmarニャルマー",
+    "pokedexNumber": 431,
+    "abilities": ["Limber", "Own Tempo", "Keen Eye"],
+    "baseAttack": 55,
+    "captureRate": 190,
+    "classification": "Catty Pokémon",
+    "baseDefense": 42,
+    "baseHeight": 0.5,
+    "baseHp": 49,
+    "baseSpAttack": 42,
+    "baseSpDefense": 37,
+    "baseSpeed": 85,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 3.9,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gligar",
+    "id": 254,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gligar",
+    "japaneseName": "Gligerグライガー",
+    "pokedexNumber": 207,
+    "abilities": ["Hyper Cutter", "Sand Veil", "Immunity"],
+    "baseAttack": 75,
+    "captureRate": 60,
+    "classification": "Flyscorpion Pokémon",
+    "baseDefense": 105,
+    "baseHeight": 1.1,
+    "baseHp": 65,
+    "baseSpAttack": 35,
+    "baseSpDefense": 65,
+    "baseSpeed": 85,
+    "primaryType": "ground",
+    "secondaryType": "flying",
+    "baseWeight": 64.8,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gliscor",
+    "id": 255,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gliscor",
+    "japaneseName": "Glionグライオン",
+    "pokedexNumber": 472,
+    "abilities": ["Hyper Cutter", "Sand Veil", "Poison Heal"],
+    "baseAttack": 95,
+    "captureRate": 30,
+    "classification": "Fang Scorp Pokémon",
+    "baseDefense": 125,
+    "baseHeight": 2,
+    "baseHp": 75,
+    "baseSpAttack": 45,
+    "baseSpDefense": 75,
+    "baseSpeed": 95,
+    "primaryType": "ground",
+    "secondaryType": "flying",
+    "baseWeight": 42.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gloom",
+    "id": 256,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gloom",
+    "japaneseName": "Kusaihanaクサイハナ",
+    "pokedexNumber": 44,
+    "abilities": ["Chlorophyll", "Stench"],
+    "baseAttack": 65,
+    "captureRate": 120,
+    "classification": "Weed Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.8,
+    "baseHp": 60,
+    "baseSpAttack": 85,
+    "baseSpDefense": 75,
+    "baseSpeed": 40,
+    "primaryType": "grass",
+    "secondaryType": "poison",
+    "baseWeight": 8.6,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gogoat",
+    "id": 257,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gogoat",
+    "japaneseName": "Gogoatゴーゴート",
+    "pokedexNumber": 673,
+    "abilities": ["Sap Sipper", "Grass Pelt"],
+    "baseAttack": 100,
+    "captureRate": 45,
+    "classification": "Mount Pokémon",
+    "baseDefense": 62,
+    "baseHeight": 1.7,
+    "baseHp": 123,
+    "baseSpAttack": 97,
+    "baseSpDefense": 81,
+    "baseSpeed": 68,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 91,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Golbat",
+    "id": 258,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "golbat",
+    "japaneseName": "Golbatゴルバット",
+    "pokedexNumber": 42,
+    "abilities": ["Inner Focus", "Infiltrator"],
+    "baseAttack": 80,
+    "captureRate": 90,
+    "classification": "Bat Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.6,
+    "baseHp": 75,
+    "baseSpAttack": 65,
+    "baseSpDefense": 75,
+    "baseSpeed": 90,
+    "primaryType": "poison",
+    "secondaryType": "flying",
+    "baseWeight": 55,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Goldeen",
+    "id": 259,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "goldeen",
+    "japaneseName": "Tosakintoトサキント",
+    "pokedexNumber": 118,
+    "abilities": ["Swift Swim", "Water Veil", "Lightningrod"],
+    "baseAttack": 67,
+    "captureRate": 225,
+    "classification": "Goldfish Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.6,
+    "baseHp": 45,
+    "baseSpAttack": 35,
+    "baseSpDefense": 50,
+    "baseSpeed": 63,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 15,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Golduck",
+    "id": 260,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "golduck",
+    "japaneseName": "Golduckゴルダック",
+    "pokedexNumber": 55,
+    "abilities": ["Damp", "Cloud Nine", "Swift Swim"],
+    "baseAttack": 82,
+    "captureRate": 75,
+    "classification": "Duck Pokémon",
+    "baseDefense": 78,
+    "baseHeight": 1.7,
+    "baseHp": 80,
+    "baseSpAttack": 95,
+    "baseSpDefense": 80,
+    "baseSpeed": 85,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 76.6,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Golem",
+    "id": 261,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "golem",
+    "japaneseName": "Golonyaゴローニャ",
+    "pokedexNumber": 76,
+    "abilities": ["Rock Head", "Sturdy", "Sand Veil", "Magnet Pull", "Sturdy", "Galvanize"],
+    "baseAttack": 120,
+    "captureRate": 45,
+    "classification": "Megaton Pokémon",
+    "baseDefense": 130,
+    "baseHeight": "",
+    "baseHp": 80,
+    "baseSpAttack": 55,
+    "baseSpDefense": 65,
+    "baseSpeed": 45,
+    "primaryType": "rock",
+    "secondaryType": "ground",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Golett",
+    "id": 262,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "golett",
+    "japaneseName": "Gobitゴビット",
+    "pokedexNumber": 622,
+    "abilities": ["Iron Fist", "Klutz", "No Guard"],
+    "baseAttack": 74,
+    "captureRate": 190,
+    "classification": "Automaton Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 1,
+    "baseHp": 59,
+    "baseSpAttack": 35,
+    "baseSpDefense": 50,
+    "baseSpeed": 35,
+    "primaryType": "ground",
+    "secondaryType": "ghost",
+    "baseWeight": 92,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Golisopod",
+    "id": 263,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "golisopod",
+    "japaneseName": "Gusokumushaグソクムシャ",
+    "pokedexNumber": 768,
+    "abilities": ["Emergency Exit"],
+    "baseAttack": 125,
+    "captureRate": 45,
+    "classification": "Hard Scale Pokémon",
+    "baseDefense": 140,
+    "baseHeight": 2,
+    "baseHp": 75,
+    "baseSpAttack": 60,
+    "baseSpDefense": 90,
+    "baseSpeed": 40,
+    "primaryType": "bug",
+    "secondaryType": "water",
+    "baseWeight": 108,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Golurk",
+    "id": 264,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "golurk",
+    "japaneseName": "Goloogゴルーグ",
+    "pokedexNumber": 623,
+    "abilities": ["Iron Fist", "Klutz", "No Guard"],
+    "baseAttack": 124,
+    "captureRate": 90,
+    "classification": "Automaton Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 2.8,
+    "baseHp": 89,
+    "baseSpAttack": 55,
+    "baseSpDefense": 80,
+    "baseSpeed": 55,
+    "primaryType": "ground",
+    "secondaryType": "ghost",
+    "baseWeight": 330,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Goodra",
+    "id": 265,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "goodra",
+    "japaneseName": "Numelgonヌメルゴン",
+    "pokedexNumber": 706,
+    "abilities": ["Sap Sipper", "Hydration", "Gooey"],
+    "baseAttack": 100,
+    "captureRate": 45,
+    "classification": "Dragon Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 2,
+    "baseHp": 90,
+    "baseSpAttack": 110,
+    "baseSpDefense": 150,
+    "baseSpeed": 80,
+    "primaryType": "dragon",
+    "secondaryType": "",
+    "baseWeight": 150.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Goomy",
+    "id": 266,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "goomy",
+    "japaneseName": "Numeraヌメラ",
+    "pokedexNumber": 704,
+    "abilities": ["Sap Sipper", "Hydration", "Gooey"],
+    "baseAttack": 50,
+    "captureRate": 45,
+    "classification": "Soft Tissue Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.3,
+    "baseHp": 45,
+    "baseSpAttack": 55,
+    "baseSpDefense": 75,
+    "baseSpeed": 40,
+    "primaryType": "dragon",
+    "secondaryType": "",
+    "baseWeight": 2.8,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gorebyss",
+    "id": 267,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gorebyss",
+    "japaneseName": "Sakurabyssサクラビス",
+    "pokedexNumber": 368,
+    "abilities": ["Swift Swim", "Hydration"],
+    "baseAttack": 84,
+    "captureRate": 60,
+    "classification": "South Sea Pokémon",
+    "baseDefense": 105,
+    "baseHeight": 1.8,
+    "baseHp": 55,
+    "baseSpAttack": 114,
+    "baseSpDefense": 75,
+    "baseSpeed": 52,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 22.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gothita",
+    "id": 268,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gothita",
+    "japaneseName": "Gothimuゴチム",
+    "pokedexNumber": 574,
+    "abilities": ["Frisk", "Competitive", "Shadow Tag"],
+    "baseAttack": 30,
+    "captureRate": 200,
+    "classification": "Fixation Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.4,
+    "baseHp": 45,
+    "baseSpAttack": 55,
+    "baseSpDefense": 65,
+    "baseSpeed": 45,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 5.8,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gothitelle",
+    "id": 269,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gothitelle",
+    "japaneseName": "Gothiruselleゴチルゼル",
+    "pokedexNumber": 576,
+    "abilities": ["Frisk", "Competitive", "Shadow Tag"],
+    "baseAttack": 55,
+    "captureRate": 50,
+    "classification": "Astral Body Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 1.5,
+    "baseHp": 70,
+    "baseSpAttack": 95,
+    "baseSpDefense": 110,
+    "baseSpeed": 65,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 44,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gothorita",
+    "id": 270,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gothorita",
+    "japaneseName": "Gothimiruゴチミル",
+    "pokedexNumber": 575,
+    "abilities": ["Frisk", "Competitive", "Shadow Tag"],
+    "baseAttack": 45,
+    "captureRate": 100,
+    "classification": "Manipulate Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.7,
+    "baseHp": 60,
+    "baseSpAttack": 75,
+    "baseSpDefense": 85,
+    "baseSpeed": 55,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 18,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gourgeist",
+    "id": 271,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gourgeist-average",
+    "japaneseName": "Pumpjinパンプジン",
+    "pokedexNumber": 711,
+    "abilities": ["Pickup", "Frisk", "Insomnia"],
+    "baseAttack": 100,
+    "captureRate": 60,
+    "classification": "Pumpkin Pokémon",
+    "baseDefense": 122,
+    "baseHeight": 1.7,
+    "baseHp": 85,
+    "baseSpAttack": 58,
+    "baseSpDefense": 75,
+    "baseSpeed": 54,
+    "primaryType": "ghost",
+    "secondaryType": "grass",
+    "baseWeight": 39,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Granbull",
+    "id": 272,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "granbull",
+    "japaneseName": "Granbuluグランブル",
+    "pokedexNumber": 210,
+    "abilities": ["Intimidate", "Quick Feet", "Rattled"],
+    "baseAttack": 120,
+    "captureRate": 75,
+    "classification": "Fairy Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 1.4,
+    "baseHp": 90,
+    "baseSpAttack": 60,
+    "baseSpDefense": 60,
+    "baseSpeed": 45,
+    "primaryType": "fairy",
+    "secondaryType": "",
+    "baseWeight": 48.7,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Graveler",
+    "id": 273,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "graveler",
+    "japaneseName": "Goloneゴローン",
+    "pokedexNumber": 75,
+    "abilities": ["Rock Head", "Sturdy", "Sand Veil", "Magnet Pull", "Sturdy", "Galvanize"],
+    "baseAttack": 95,
+    "captureRate": 120,
+    "classification": "Rock Pokémon",
+    "baseDefense": 115,
+    "baseHeight": "",
+    "baseHp": 55,
+    "baseSpAttack": 45,
+    "baseSpDefense": 45,
+    "baseSpeed": 35,
+    "primaryType": "rock",
+    "secondaryType": "ground",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Greninja",
+    "id": 274,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "greninja",
+    "japaneseName": "Gekkougaゲッコウガ",
+    "pokedexNumber": 658,
+    "abilities": ["Torrent", "Protean", "Battle Bond"],
+    "baseAttack": 145,
+    "captureRate": 45,
+    "classification": "Ninja Pokémon",
+    "baseDefense": 67,
+    "baseHeight": 1.5,
+    "baseHp": 72,
+    "baseSpAttack": 153,
+    "baseSpDefense": 71,
+    "baseSpeed": 132,
+    "primaryType": "water",
+    "secondaryType": "dark",
+    "baseWeight": 40,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Grimer",
+    "id": 275,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "grimer",
+    "japaneseName": "Betbeterベトベター",
+    "pokedexNumber": 88,
+    "abilities": ["Stench", "Sticky Hold", "Poison Touch", "Poison Touch", "Gluttony", "Power of Alchemy"],
+    "baseAttack": 80,
+    "captureRate": 190,
+    "classification": "Sludge Pokémon",
+    "baseDefense": 50,
+    "baseHeight": "",
+    "baseHp": 80,
+    "baseSpAttack": 40,
+    "baseSpDefense": 50,
+    "baseSpeed": 25,
+    "primaryType": "poison",
+    "secondaryType": "poison",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Grotle",
+    "id": 276,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "grotle",
+    "japaneseName": "Hayashigameハヤシガメ",
+    "pokedexNumber": 388,
+    "abilities": ["Overgrow", "Shell Armor"],
+    "baseAttack": 89,
+    "captureRate": 45,
+    "classification": "Grove Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 1.1,
+    "baseHp": 75,
+    "baseSpAttack": 55,
+    "baseSpDefense": 65,
+    "baseSpeed": 36,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 97,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Groudon",
+    "id": 277,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "groudon",
+    "japaneseName": "Groudonグラードン",
+    "pokedexNumber": 383,
+    "abilities": ["Drought"],
+    "baseAttack": 180,
+    "captureRate": 3,
+    "classification": "Continent Pokémon",
+    "baseDefense": 160,
+    "baseHeight": 3.5,
+    "baseHp": 100,
+    "baseSpAttack": 150,
+    "baseSpDefense": 90,
+    "baseSpeed": 90,
+    "primaryType": "ground",
+    "secondaryType": "",
+    "baseWeight": 950,
+    "generation": 3,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Grovyle",
+    "id": 278,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "grovyle",
+    "japaneseName": "Juptileジュプトル",
+    "pokedexNumber": 253,
+    "abilities": ["Overgrow", "Unburden"],
+    "baseAttack": 65,
+    "captureRate": 45,
+    "classification": "Wood Gecko Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.9,
+    "baseHp": 50,
+    "baseSpAttack": 85,
+    "baseSpDefense": 65,
+    "baseSpeed": 95,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 21.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Growlithe",
+    "id": 279,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "growlithe",
+    "japaneseName": "Gardieガーディ",
+    "pokedexNumber": 58,
+    "abilities": ["Intimidate", "Flash Fire", "Justified"],
+    "baseAttack": 70,
+    "captureRate": 190,
+    "classification": "Puppy Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.7,
+    "baseHp": 55,
+    "baseSpAttack": 70,
+    "baseSpDefense": 50,
+    "baseSpeed": 60,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 19,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Grubbin",
+    "id": 280,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "grubbin",
+    "japaneseName": "Agojimushiアゴジムシ",
+    "pokedexNumber": 736,
+    "abilities": ["Swarm"],
+    "baseAttack": 62,
+    "captureRate": 255,
+    "classification": "Larva Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.4,
+    "baseHp": 47,
+    "baseSpAttack": 55,
+    "baseSpDefense": 45,
+    "baseSpeed": 46,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 4.4,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Grumpig",
+    "id": 281,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "grumpig",
+    "japaneseName": "Boopigブーピッグ",
+    "pokedexNumber": 326,
+    "abilities": ["Thick Fat", "Own Tempo", "Gluttony"],
+    "baseAttack": 45,
+    "captureRate": 60,
+    "classification": "Manipulate Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 0.9,
+    "baseHp": 80,
+    "baseSpAttack": 90,
+    "baseSpDefense": 110,
+    "baseSpeed": 80,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 71.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gulpin",
+    "id": 282,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gulpin",
+    "japaneseName": "Gokulinゴクリン",
+    "pokedexNumber": 316,
+    "abilities": ["Liquid Ooze", "Sticky Hold", "Gluttony"],
+    "baseAttack": 43,
+    "captureRate": 225,
+    "classification": "Stomach Pokémon",
+    "baseDefense": 53,
+    "baseHeight": 0.4,
+    "baseHp": 70,
+    "baseSpAttack": 43,
+    "baseSpDefense": 53,
+    "baseSpeed": 40,
+    "primaryType": "poison",
+    "secondaryType": "",
+    "baseWeight": 10.3,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gumshoos",
+    "id": 283,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gumshoos",
+    "japaneseName": "Dekagooseデカグース",
+    "pokedexNumber": 735,
+    "abilities": ["Stakeout", "Strong Jaw", "Adaptability"],
+    "baseAttack": 110,
+    "captureRate": 127,
+    "classification": "Stakeout Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.7,
+    "baseHp": 88,
+    "baseSpAttack": 55,
+    "baseSpDefense": 60,
+    "baseSpeed": 45,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 14.2,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Gurdurr",
+    "id": 284,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gurdurr",
+    "japaneseName": "Dotekkotsuドテッコツ",
+    "pokedexNumber": 533,
+    "abilities": ["Guts", "Sheer Force", "Iron Fist"],
+    "baseAttack": 105,
+    "captureRate": 90,
+    "classification": "Muscular Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 1.2,
+    "baseHp": 85,
+    "baseSpAttack": 40,
+    "baseSpDefense": 50,
+    "baseSpeed": 40,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 40,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Guzzlord",
+    "id": 285,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "guzzlord",
+    "japaneseName": "Akuzikingアクジキング",
+    "pokedexNumber": 799,
+    "abilities": ["Beast Boost"],
+    "baseAttack": 101,
+    "captureRate": 15,
+    "classification": "Junkivore Pokémon",
+    "baseDefense": 53,
+    "baseHeight": 5.5,
+    "baseHp": 223,
+    "baseSpAttack": 97,
+    "baseSpDefense": 53,
+    "baseSpeed": 43,
+    "primaryType": "dark",
+    "secondaryType": "dragon",
+    "baseWeight": 888,
+    "generation": 7,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Gyarados",
+    "id": 286,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "gyarados",
+    "japaneseName": "Gyaradosギャラドス",
+    "pokedexNumber": 130,
+    "abilities": ["Intimidate", "Moxie"],
+    "baseAttack": 155,
+    "captureRate": 45,
+    "classification": "Atrocious Pokémon",
+    "baseDefense": 109,
+    "baseHeight": 6.5,
+    "baseHp": 95,
+    "baseSpAttack": 70,
+    "baseSpDefense": 130,
+    "baseSpeed": 81,
+    "primaryType": "water",
+    "secondaryType": "flying",
+    "baseWeight": 235,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Hakamo-o",
+    "id": 287,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "hakamo-o",
+    "japaneseName": "Jyarangoジャランゴ",
+    "pokedexNumber": 783,
+    "abilities": ["Bulletproof", "Soundproof", "Overcoat"],
+    "baseAttack": 75,
+    "captureRate": 45,
+    "classification": "Scaly Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 1.2,
+    "baseHp": 55,
+    "baseSpAttack": 65,
+    "baseSpDefense": 70,
+    "baseSpeed": 65,
+    "primaryType": "dragon",
+    "secondaryType": "fighting",
+    "baseWeight": 47,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Happiny",
+    "id": 288,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "happiny",
+    "japaneseName": "Pinpukuピンプク",
+    "pokedexNumber": 440,
+    "abilities": ["Natural Cure", "Serene Grace", "Friend Guard"],
+    "baseAttack": 5,
+    "captureRate": 130,
+    "classification": "Playhouse Pokémon",
+    "baseDefense": 5,
+    "baseHeight": 0.6,
+    "baseHp": 100,
+    "baseSpAttack": 15,
+    "baseSpDefense": 65,
+    "baseSpeed": 30,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 24.4,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Hariyama",
+    "id": 289,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "hariyama",
+    "japaneseName": "Hariteyamaハリテヤマ",
+    "pokedexNumber": 297,
+    "abilities": ["Thick Fat", "Guts", "Sheer Force"],
+    "baseAttack": 120,
+    "captureRate": 200,
+    "classification": "Arm Thrust Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 2.3,
+    "baseHp": 144,
+    "baseSpAttack": 40,
+    "baseSpDefense": 60,
+    "baseSpeed": 50,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 253.8,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Haunter",
+    "id": 290,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "haunter",
+    "japaneseName": "Ghostゴースト",
+    "pokedexNumber": 93,
+    "abilities": ["Levitate"],
+    "baseAttack": 50,
+    "captureRate": 90,
+    "classification": "Gas Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 1.6,
+    "baseHp": 45,
+    "baseSpAttack": 115,
+    "baseSpDefense": 55,
+    "baseSpeed": 95,
+    "primaryType": "ghost",
+    "secondaryType": "poison",
+    "baseWeight": 0.1,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Hawlucha",
+    "id": 291,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "hawlucha",
+    "japaneseName": "Luchabullルチャブル",
+    "pokedexNumber": 701,
+    "abilities": ["Limber", "Unburden", "Mold Breaker"],
+    "baseAttack": 92,
+    "captureRate": 100,
+    "classification": "Wrestling Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 0.8,
+    "baseHp": 78,
+    "baseSpAttack": 74,
+    "baseSpDefense": 63,
+    "baseSpeed": 118,
+    "primaryType": "fighting",
+    "secondaryType": "flying",
+    "baseWeight": 21.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Haxorus",
+    "id": 292,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "haxorus",
+    "japaneseName": "Ononokusオノノクス",
+    "pokedexNumber": 612,
+    "abilities": ["Rivalry", "Mold Breaker", "Unnerve"],
+    "baseAttack": 147,
+    "captureRate": 45,
+    "classification": "Axe Jaw Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 1.8,
+    "baseHp": 76,
+    "baseSpAttack": 60,
+    "baseSpDefense": 70,
+    "baseSpeed": 97,
+    "primaryType": "dragon",
+    "secondaryType": "",
+    "baseWeight": 105.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Heatmor",
+    "id": 293,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "heatmor",
+    "japaneseName": "Kuitaranクイタラン",
+    "pokedexNumber": 631,
+    "abilities": ["Gluttony", "Flash Fire", "White Smoke"],
+    "baseAttack": 97,
+    "captureRate": 90,
+    "classification": "Anteater Pokémon",
+    "baseDefense": 66,
+    "baseHeight": 1.4,
+    "baseHp": 85,
+    "baseSpAttack": 105,
+    "baseSpDefense": 66,
+    "baseSpeed": 65,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 58,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Heatran",
+    "id": 294,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "heatran",
+    "japaneseName": "Heatranヒードラン",
+    "pokedexNumber": 485,
+    "abilities": ["Flash Fire", "Flame Body"],
+    "baseAttack": 90,
+    "captureRate": 3,
+    "classification": "Lava Dome Pokémon",
+    "baseDefense": 106,
+    "baseHeight": 1.7,
+    "baseHp": 91,
+    "baseSpAttack": 130,
+    "baseSpDefense": 106,
+    "baseSpeed": 77,
+    "primaryType": "fire",
+    "secondaryType": "steel",
+    "baseWeight": 430,
+    "generation": 4,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Heliolisk",
+    "id": 295,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "heliolisk",
+    "japaneseName": "Elezardエレザード",
+    "pokedexNumber": 695,
+    "abilities": ["Dry Skin", "Sand Veil", "Solar Power"],
+    "baseAttack": 55,
+    "captureRate": 75,
+    "classification": "Generator Pokémon",
+    "baseDefense": 52,
+    "baseHeight": 1,
+    "baseHp": 62,
+    "baseSpAttack": 109,
+    "baseSpDefense": 94,
+    "baseSpeed": 109,
+    "primaryType": "electric",
+    "secondaryType": "normal",
+    "baseWeight": 21,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Helioptile",
+    "id": 296,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "helioptile",
+    "japaneseName": "Erikiteruエリキテル",
+    "pokedexNumber": 694,
+    "abilities": ["Dry Skin", "Sand Veil", "Solar Power"],
+    "baseAttack": 38,
+    "captureRate": 190,
+    "classification": "Generator Pokémon",
+    "baseDefense": 33,
+    "baseHeight": 0.5,
+    "baseHp": 44,
+    "baseSpAttack": 61,
+    "baseSpDefense": 43,
+    "baseSpeed": 70,
+    "primaryType": "electric",
+    "secondaryType": "normal",
+    "baseWeight": 6,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Heracross",
+    "id": 297,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "heracross",
+    "japaneseName": "Heracrosヘラクロス",
+    "pokedexNumber": 214,
+    "abilities": ["Swarm", "Guts", "Moxie"],
+    "baseAttack": 185,
+    "captureRate": 45,
+    "classification": "Singlehorn Pokémon",
+    "baseDefense": 115,
+    "baseHeight": 1.5,
+    "baseHp": 80,
+    "baseSpAttack": 40,
+    "baseSpDefense": 105,
+    "baseSpeed": 75,
+    "primaryType": "bug",
+    "secondaryType": "fighting",
+    "baseWeight": 54,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Herdier",
+    "id": 298,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "herdier",
+    "japaneseName": "Herderrieハーデリア",
+    "pokedexNumber": 507,
+    "abilities": ["Intimidate", "Sand Rush", "Scrappy"],
+    "baseAttack": 80,
+    "captureRate": 120,
+    "classification": "Loyal Dog Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 0.9,
+    "baseHp": 65,
+    "baseSpAttack": 35,
+    "baseSpDefense": 65,
+    "baseSpeed": 60,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 14.7,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Hippopotas",
+    "id": 299,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "hippopotas",
+    "japaneseName": "Hippopotasヒポポタス",
+    "pokedexNumber": 449,
+    "abilities": ["Sand Stream", "Sand Force"],
+    "baseAttack": 72,
+    "captureRate": 140,
+    "classification": "Hippo Pokémon",
+    "baseDefense": 78,
+    "baseHeight": 0.8,
+    "baseHp": 68,
+    "baseSpAttack": 38,
+    "baseSpDefense": 42,
+    "baseSpeed": 32,
+    "primaryType": "ground",
+    "secondaryType": "",
+    "baseWeight": 49.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Hippowdon",
+    "id": 300,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "hippowdon",
+    "japaneseName": "Kabaldonカバルドン",
+    "pokedexNumber": 450,
+    "abilities": ["Sand Stream", "Sand Force"],
+    "baseAttack": 112,
+    "captureRate": 60,
+    "classification": "Heavyweight Pokémon",
+    "baseDefense": 118,
+    "baseHeight": 2,
+    "baseHp": 108,
+    "baseSpAttack": 68,
+    "baseSpDefense": 72,
+    "baseSpeed": 47,
+    "primaryType": "ground",
+    "secondaryType": "",
+    "baseWeight": 300,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Hitmonchan",
+    "id": 301,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "hitmonchan",
+    "japaneseName": "Ebiwalarエビワラー",
+    "pokedexNumber": 107,
+    "abilities": ["Keen Eye", "Iron Fist", "Inner Focus"],
+    "baseAttack": 105,
+    "captureRate": 45,
+    "classification": "Punching Pokémon",
+    "baseDefense": 79,
+    "baseHeight": 1.4,
+    "baseHp": 50,
+    "baseSpAttack": 35,
+    "baseSpDefense": 110,
+    "baseSpeed": 76,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 50.2,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Hitmonlee",
+    "id": 302,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "hitmonlee",
+    "japaneseName": "Sawamularサワムラー",
+    "pokedexNumber": 106,
+    "abilities": ["Limber", "Reckless", "Unburden"],
+    "baseAttack": 120,
+    "captureRate": 45,
+    "classification": "Kicking Pokémon",
+    "baseDefense": 53,
+    "baseHeight": 1.5,
+    "baseHp": 50,
+    "baseSpAttack": 35,
+    "baseSpDefense": 110,
+    "baseSpeed": 87,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 49.8,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Hitmontop",
+    "id": 303,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "hitmontop",
+    "japaneseName": "Kapoererカポエラー",
+    "pokedexNumber": 237,
+    "abilities": ["Intimidate", "Technician", "Steadfast"],
+    "baseAttack": 95,
+    "captureRate": 45,
+    "classification": "Handstand Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 1.4,
+    "baseHp": 50,
+    "baseSpAttack": 35,
+    "baseSpDefense": 110,
+    "baseSpeed": 70,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 48,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ho-Oh",
+    "id": 304,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ho-oh",
+    "japaneseName": "Hououホウオウ",
+    "pokedexNumber": 250,
+    "abilities": ["Pressure", "Regenerator"],
+    "baseAttack": 130,
+    "captureRate": 3,
+    "classification": "Rainbow Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 3.8,
+    "baseHp": 106,
+    "baseSpAttack": 110,
+    "baseSpDefense": 154,
+    "baseSpeed": 90,
+    "primaryType": "fire",
+    "secondaryType": "flying",
+    "baseWeight": 199,
+    "generation": 2,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Honchkrow",
+    "id": 305,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "honchkrow",
+    "japaneseName": "Dongkarasuドンカラス",
+    "pokedexNumber": 430,
+    "abilities": ["Insomnia", "Super Luck", "Moxie"],
+    "baseAttack": 125,
+    "captureRate": 30,
+    "classification": "Big Boss Pokémon",
+    "baseDefense": 52,
+    "baseHeight": 0.9,
+    "baseHp": 100,
+    "baseSpAttack": 105,
+    "baseSpDefense": 52,
+    "baseSpeed": 71,
+    "primaryType": "dark",
+    "secondaryType": "flying",
+    "baseWeight": 27.3,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Honedge",
+    "id": 306,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "honedge",
+    "japaneseName": "Hitotsukiヒトツキ",
+    "pokedexNumber": 679,
+    "abilities": ["No Guard"],
+    "baseAttack": 80,
+    "captureRate": 180,
+    "classification": "Sword Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 0.8,
+    "baseHp": 45,
+    "baseSpAttack": 35,
+    "baseSpDefense": 37,
+    "baseSpeed": 28,
+    "primaryType": "steel",
+    "secondaryType": "ghost",
+    "baseWeight": 2,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Hoopa",
+    "id": 307,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "hoopa-confined",
+    "japaneseName": "Hoopa (imashimerareshi Hoopa)フーパ",
+    "pokedexNumber": 720,
+    "abilities": ["Magician"],
+    "baseAttack": 160,
+    "captureRate": 3,
+    "classification": "Mischief Pokémon (Confined)Djinn Pokémonn (Unbound)",
+    "baseDefense": 60,
+    "baseHeight": "",
+    "baseHp": 80,
+    "baseSpAttack": 170,
+    "baseSpDefense": 130,
+    "baseSpeed": 80,
+    "primaryType": "psychic",
+    "secondaryType": "ghost",
+    "baseWeight": "",
+    "generation": 6,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Hoothoot",
+    "id": 308,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "hoothoot",
+    "japaneseName": "Hohoホーホー",
+    "pokedexNumber": 163,
+    "abilities": ["Insomnia", "Keen Eye", "Tinted Lens"],
+    "baseAttack": 30,
+    "captureRate": 255,
+    "classification": "Owl Pokémon",
+    "baseDefense": 30,
+    "baseHeight": 0.7,
+    "baseHp": 60,
+    "baseSpAttack": 36,
+    "baseSpDefense": 56,
+    "baseSpeed": 50,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 21.2,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Hoppip",
+    "id": 309,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "hoppip",
+    "japaneseName": "Haneccoハネッコ",
+    "pokedexNumber": 187,
+    "abilities": ["Chlorophyll", "Leaf Guard", "Infiltrator"],
+    "baseAttack": 35,
+    "captureRate": 255,
+    "classification": "Cottonweed Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.4,
+    "baseHp": 35,
+    "baseSpAttack": 35,
+    "baseSpDefense": 55,
+    "baseSpeed": 50,
+    "primaryType": "grass",
+    "secondaryType": "flying",
+    "baseWeight": 0.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Horsea",
+    "id": 310,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "horsea",
+    "japaneseName": "Tattuタッツー",
+    "pokedexNumber": 116,
+    "abilities": ["Swift Swim", "Sniper", "Damp"],
+    "baseAttack": 40,
+    "captureRate": 225,
+    "classification": "Dragon Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.4,
+    "baseHp": 30,
+    "baseSpAttack": 70,
+    "baseSpDefense": 25,
+    "baseSpeed": 60,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 8,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Houndoom",
+    "id": 311,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "houndoom",
+    "japaneseName": "Hellgarヘルガー",
+    "pokedexNumber": 229,
+    "abilities": ["Early Bird", "Flash Fire", "Unnerve"],
+    "baseAttack": 90,
+    "captureRate": 45,
+    "classification": "Dark Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 1.4,
+    "baseHp": 75,
+    "baseSpAttack": 140,
+    "baseSpDefense": 90,
+    "baseSpeed": 115,
+    "primaryType": "dark",
+    "secondaryType": "fire",
+    "baseWeight": 35,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Houndour",
+    "id": 312,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "houndour",
+    "japaneseName": "Delvilデルビル",
+    "pokedexNumber": 228,
+    "abilities": ["Early Bird", "Flash Fire", "Unnerve"],
+    "baseAttack": 60,
+    "captureRate": 120,
+    "classification": "Dark Pokémon",
+    "baseDefense": 30,
+    "baseHeight": 0.6,
+    "baseHp": 45,
+    "baseSpAttack": 80,
+    "baseSpDefense": 50,
+    "baseSpeed": 65,
+    "primaryType": "dark",
+    "secondaryType": "fire",
+    "baseWeight": 10.8,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Huntail",
+    "id": 313,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "huntail",
+    "japaneseName": "Huntailハンテール",
+    "pokedexNumber": 367,
+    "abilities": ["Swift Swim", "Water Veil"],
+    "baseAttack": 104,
+    "captureRate": 60,
+    "classification": "Deep Sea Pokémon",
+    "baseDefense": 105,
+    "baseHeight": 1.7,
+    "baseHp": 55,
+    "baseSpAttack": 94,
+    "baseSpDefense": 75,
+    "baseSpeed": 52,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 27,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Hydreigon",
+    "id": 314,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "hydreigon",
+    "japaneseName": "Sazandoraサザンドラ",
+    "pokedexNumber": 635,
+    "abilities": ["Levitate"],
+    "baseAttack": 105,
+    "captureRate": 45,
+    "classification": "Brutal Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 1.8,
+    "baseHp": 92,
+    "baseSpAttack": 125,
+    "baseSpDefense": 90,
+    "baseSpeed": 98,
+    "primaryType": "dark",
+    "secondaryType": "dragon",
+    "baseWeight": 160,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Hypno",
+    "id": 315,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "hypno",
+    "japaneseName": "Sleeperスリーパー",
+    "pokedexNumber": 97,
+    "abilities": ["Insomnia", "Forewarn", "Inner Focus"],
+    "baseAttack": 73,
+    "captureRate": 75,
+    "classification": "Hypnosis Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.6,
+    "baseHp": 85,
+    "baseSpAttack": 73,
+    "baseSpDefense": 115,
+    "baseSpeed": 67,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 75.6,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Igglybuff",
+    "id": 316,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "igglybuff",
+    "japaneseName": "Pupurinププリン",
+    "pokedexNumber": 174,
+    "abilities": ["Cute Charm", "Competitive", "Friend Guard"],
+    "baseAttack": 30,
+    "captureRate": 170,
+    "classification": "Balloon Pokémon",
+    "baseDefense": 15,
+    "baseHeight": 0.3,
+    "baseHp": 90,
+    "baseSpAttack": 40,
+    "baseSpDefense": 20,
+    "baseSpeed": 15,
+    "primaryType": "normal",
+    "secondaryType": "fairy",
+    "baseWeight": 1,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Illumise",
+    "id": 317,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "illumise",
+    "japaneseName": "Illumiseイルミーゼ",
+    "pokedexNumber": 314,
+    "abilities": ["Oblivious", "Tinted Lens", "Prankster"],
+    "baseAttack": 47,
+    "captureRate": 150,
+    "classification": "Firefly Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 0.6,
+    "baseHp": 65,
+    "baseSpAttack": 73,
+    "baseSpDefense": 85,
+    "baseSpeed": 85,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 17.7,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Incineroar",
+    "id": 318,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "incineroar",
+    "japaneseName": "Gaogaenガオガエン",
+    "pokedexNumber": 727,
+    "abilities": ["Blaze", "Intimidate"],
+    "baseAttack": 115,
+    "captureRate": 45,
+    "classification": "Heel Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 1.8,
+    "baseHp": 95,
+    "baseSpAttack": 80,
+    "baseSpDefense": 90,
+    "baseSpeed": 60,
+    "primaryType": "fire",
+    "secondaryType": "dark",
+    "baseWeight": 83,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Infernape",
+    "id": 319,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "infernape",
+    "japaneseName": "Goukazaruゴウカザル",
+    "pokedexNumber": 392,
+    "abilities": ["Blaze", "Iron Fist"],
+    "baseAttack": 104,
+    "captureRate": 45,
+    "classification": "Flame Pokémon",
+    "baseDefense": 71,
+    "baseHeight": 1.2,
+    "baseHp": 76,
+    "baseSpAttack": 104,
+    "baseSpDefense": 71,
+    "baseSpeed": 108,
+    "primaryType": "fire",
+    "secondaryType": "fighting",
+    "baseWeight": 55,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Inkay",
+    "id": 320,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "inkay",
+    "japaneseName": "Maaiikaマーイーカ",
+    "pokedexNumber": 686,
+    "abilities": ["Contrary", "Suction Cups", "Infiltrator"],
+    "baseAttack": 54,
+    "captureRate": 190,
+    "classification": "Revolving Pokémon",
+    "baseDefense": 53,
+    "baseHeight": 0.4,
+    "baseHp": 53,
+    "baseSpAttack": 37,
+    "baseSpDefense": 46,
+    "baseSpeed": 45,
+    "primaryType": "dark",
+    "secondaryType": "psychic",
+    "baseWeight": 3.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ivysaur",
+    "id": 321,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ivysaur",
+    "japaneseName": "Fushigisouフシギソウ",
+    "pokedexNumber": 2,
+    "abilities": ["Overgrow", "Chlorophyll"],
+    "baseAttack": 62,
+    "captureRate": 45,
+    "classification": "Seed Pokémon",
+    "baseDefense": 63,
+    "baseHeight": 1,
+    "baseHp": 60,
+    "baseSpAttack": 80,
+    "baseSpDefense": 80,
+    "baseSpeed": 60,
+    "primaryType": "grass",
+    "secondaryType": "poison",
+    "baseWeight": 13,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Jangmo-o",
+    "id": 322,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "jangmo-o",
+    "japaneseName": "Jyarakoジャラコ",
+    "pokedexNumber": 782,
+    "abilities": ["Bulletproof", "Soundproof", "Overcoat"],
+    "baseAttack": 55,
+    "captureRate": 45,
+    "classification": "Scaly Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 0.6,
+    "baseHp": 45,
+    "baseSpAttack": 45,
+    "baseSpDefense": 45,
+    "baseSpeed": 45,
+    "primaryType": "dragon",
+    "secondaryType": "",
+    "baseWeight": 29.7,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Jellicent",
+    "id": 323,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "jellicent",
+    "japaneseName": "Burungelブルンゲル",
+    "pokedexNumber": 593,
+    "abilities": ["Water Absorb", "Cursed Body", "Damp"],
+    "baseAttack": 60,
+    "captureRate": 60,
+    "classification": "Floating Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 2.2,
+    "baseHp": 100,
+    "baseSpAttack": 85,
+    "baseSpDefense": 105,
+    "baseSpeed": 60,
+    "primaryType": "water",
+    "secondaryType": "ghost",
+    "baseWeight": 135,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Jigglypuff",
+    "id": 324,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "jigglypuff",
+    "japaneseName": "Purinプリン",
+    "pokedexNumber": 39,
+    "abilities": ["Cute Charm", "Competitive", "Friend Guard"],
+    "baseAttack": 45,
+    "captureRate": 170,
+    "classification": "Balloon Pokémon",
+    "baseDefense": 20,
+    "baseHeight": 0.5,
+    "baseHp": 115,
+    "baseSpAttack": 45,
+    "baseSpDefense": 25,
+    "baseSpeed": 20,
+    "primaryType": "normal",
+    "secondaryType": "fairy",
+    "baseWeight": 5.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Jirachi",
+    "id": 325,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "jirachi",
+    "japaneseName": "Jirachiジラーチ",
+    "pokedexNumber": 385,
+    "abilities": ["Serene Grace"],
+    "baseAttack": 100,
+    "captureRate": 3,
+    "classification": "Wish Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 0.3,
+    "baseHp": 100,
+    "baseSpAttack": 100,
+    "baseSpDefense": 100,
+    "baseSpeed": 100,
+    "primaryType": "steel",
+    "secondaryType": "psychic",
+    "baseWeight": 1.1,
+    "generation": 3,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Jolteon",
+    "id": 326,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "jolteon",
+    "japaneseName": "Thundersサンダース",
+    "pokedexNumber": 135,
+    "abilities": ["Volt Absorb", "Quick Feet"],
+    "baseAttack": 65,
+    "captureRate": 45,
+    "classification": "Lightning Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.8,
+    "baseHp": 65,
+    "baseSpAttack": 110,
+    "baseSpDefense": 95,
+    "baseSpeed": 130,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 24.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Joltik",
+    "id": 327,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "joltik",
+    "japaneseName": "Bachuruバチュル",
+    "pokedexNumber": 595,
+    "abilities": ["Compoundeyes", "Unnerve", "Swarm"],
+    "baseAttack": 47,
+    "captureRate": 190,
+    "classification": "Attaching Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.1,
+    "baseHp": 50,
+    "baseSpAttack": 57,
+    "baseSpDefense": 50,
+    "baseSpeed": 65,
+    "primaryType": "bug",
+    "secondaryType": "electric",
+    "baseWeight": 0.6,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Jumpluff",
+    "id": 328,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "jumpluff",
+    "japaneseName": "Wataccoワタッコ",
+    "pokedexNumber": 189,
+    "abilities": ["Chlorophyll", "Leaf Guard", "Infiltrator"],
+    "baseAttack": 55,
+    "captureRate": 45,
+    "classification": "Cottonweed Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.8,
+    "baseHp": 75,
+    "baseSpAttack": 55,
+    "baseSpDefense": 95,
+    "baseSpeed": 110,
+    "primaryType": "grass",
+    "secondaryType": "flying",
+    "baseWeight": 3,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Jynx",
+    "id": 329,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "jynx",
+    "japaneseName": "Rougelaルージュラ",
+    "pokedexNumber": 124,
+    "abilities": ["Oblivious", "Forewarn", "Dry Skin"],
+    "baseAttack": 50,
+    "captureRate": 45,
+    "classification": "Humanshape Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 1.4,
+    "baseHp": 65,
+    "baseSpAttack": 115,
+    "baseSpDefense": 95,
+    "baseSpeed": 95,
+    "primaryType": "ice",
+    "secondaryType": "psychic",
+    "baseWeight": 40.6,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Kabuto",
+    "id": 330,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "kabuto",
+    "japaneseName": "Kabutoカブト",
+    "pokedexNumber": 140,
+    "abilities": ["Swift Swim", "Battle Armor", "Weak Armor"],
+    "baseAttack": 80,
+    "captureRate": 45,
+    "classification": "Shellfish Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 0.5,
+    "baseHp": 30,
+    "baseSpAttack": 55,
+    "baseSpDefense": 45,
+    "baseSpeed": 55,
+    "primaryType": "rock",
+    "secondaryType": "water",
+    "baseWeight": 11.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Kabutops",
+    "id": 331,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "kabutops",
+    "japaneseName": "Kabutopsカブトプス",
+    "pokedexNumber": 141,
+    "abilities": ["Swift Swim", "Battle Armor", "Weak Armor"],
+    "baseAttack": 115,
+    "captureRate": 45,
+    "classification": "Shellfish Pokémon",
+    "baseDefense": 105,
+    "baseHeight": 1.3,
+    "baseHp": 60,
+    "baseSpAttack": 65,
+    "baseSpDefense": 70,
+    "baseSpeed": 80,
+    "primaryType": "rock",
+    "secondaryType": "water",
+    "baseWeight": 40.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Kadabra",
+    "id": 332,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "kadabra",
+    "japaneseName": "Yungererユンゲラー",
+    "pokedexNumber": 64,
+    "abilities": ["Synchronize", "Inner Focus", "Magic Guard"],
+    "baseAttack": 35,
+    "captureRate": 100,
+    "classification": "Psi Pokémon",
+    "baseDefense": 30,
+    "baseHeight": 1.3,
+    "baseHp": 40,
+    "baseSpAttack": 120,
+    "baseSpDefense": 70,
+    "baseSpeed": 105,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 56.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Kakuna",
+    "id": 333,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "kakuna",
+    "japaneseName": "Cocoonコクーン",
+    "pokedexNumber": 14,
+    "abilities": ["Shed Skin"],
+    "baseAttack": 25,
+    "captureRate": 120,
+    "classification": "Cocoon Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.6,
+    "baseHp": 45,
+    "baseSpAttack": 25,
+    "baseSpDefense": 25,
+    "baseSpeed": 35,
+    "primaryType": "bug",
+    "secondaryType": "poison",
+    "baseWeight": 10,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Kangaskhan",
+    "id": 334,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "kangaskhan",
+    "japaneseName": "Garuraガルーラ",
+    "pokedexNumber": 115,
+    "abilities": ["Early Bird", "Scrappy", "Inner Focus"],
+    "baseAttack": 125,
+    "captureRate": 45,
+    "classification": "Parent Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 2.2,
+    "baseHp": 105,
+    "baseSpAttack": 60,
+    "baseSpDefense": 100,
+    "baseSpeed": 100,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 80,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Karrablast",
+    "id": 335,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "karrablast",
+    "japaneseName": "Kaburumoカブルモ",
+    "pokedexNumber": 588,
+    "abilities": ["Swarm", "Shed Skin", "No Guard"],
+    "baseAttack": 75,
+    "captureRate": 200,
+    "classification": "Clamping Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.5,
+    "baseHp": 50,
+    "baseSpAttack": 40,
+    "baseSpDefense": 45,
+    "baseSpeed": 60,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 5.9,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Kartana",
+    "id": 336,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "kartana",
+    "japaneseName": "Kamiturugiカミツルギ",
+    "pokedexNumber": 798,
+    "abilities": ["Beast Boost"],
+    "baseAttack": 181,
+    "captureRate": 255,
+    "classification": "Drawn Sword Pokémon",
+    "baseDefense": 131,
+    "baseHeight": 0.3,
+    "baseHp": 59,
+    "baseSpAttack": 59,
+    "baseSpDefense": 31,
+    "baseSpeed": 109,
+    "primaryType": "grass",
+    "secondaryType": "steel",
+    "baseWeight": 0.1,
+    "generation": 7,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Kecleon",
+    "id": 337,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "kecleon",
+    "japaneseName": "Kakureonカクレオン",
+    "pokedexNumber": 352,
+    "abilities": ["Color Change", "Protean"],
+    "baseAttack": 90,
+    "captureRate": 200,
+    "classification": "Color Swap Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1,
+    "baseHp": 60,
+    "baseSpAttack": 60,
+    "baseSpDefense": 120,
+    "baseSpeed": 40,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 22,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Keldeo",
+    "id": 338,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "keldeo-ordinary",
+    "japaneseName": "Keldeo (itsumo No Sugata)ケルディオ",
+    "pokedexNumber": 647,
+    "abilities": ["Justified"],
+    "baseAttack": 72,
+    "captureRate": 3,
+    "classification": "Colt Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 1.4,
+    "baseHp": 91,
+    "baseSpAttack": 129,
+    "baseSpDefense": 90,
+    "baseSpeed": 108,
+    "primaryType": "water",
+    "secondaryType": "fighting",
+    "baseWeight": 48.5,
+    "generation": 5,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Kingdra",
+    "id": 339,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "kingdra",
+    "japaneseName": "Kingdraキングドラ",
+    "pokedexNumber": 230,
+    "abilities": ["Swift Swim", "Sniper", "Damp"],
+    "baseAttack": 95,
+    "captureRate": 45,
+    "classification": "Dragon Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 1.8,
+    "baseHp": 75,
+    "baseSpAttack": 95,
+    "baseSpDefense": 95,
+    "baseSpeed": 85,
+    "primaryType": "water",
+    "secondaryType": "dragon",
+    "baseWeight": 152,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Kingler",
+    "id": 340,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "kingler",
+    "japaneseName": "Kinglerキングラー",
+    "pokedexNumber": 99,
+    "abilities": ["Hyper Cutter", "Shell Armor", "Sheer Force"],
+    "baseAttack": 130,
+    "captureRate": 60,
+    "classification": "Pincer Pokémon",
+    "baseDefense": 115,
+    "baseHeight": 1.3,
+    "baseHp": 55,
+    "baseSpAttack": 50,
+    "baseSpDefense": 50,
+    "baseSpeed": 75,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 60,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Kirlia",
+    "id": 341,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "kirlia",
+    "japaneseName": "Kirliaキルリア",
+    "pokedexNumber": 281,
+    "abilities": ["Synchronize", "Trace", "Telepathy"],
+    "baseAttack": 35,
+    "captureRate": 120,
+    "classification": "Emotion Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.8,
+    "baseHp": 38,
+    "baseSpAttack": 65,
+    "baseSpDefense": 55,
+    "baseSpeed": 50,
+    "primaryType": "psychic",
+    "secondaryType": "fairy",
+    "baseWeight": 20.2,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Klang",
+    "id": 342,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "klang",
+    "japaneseName": "Gigiaruギギアル",
+    "pokedexNumber": 600,
+    "abilities": ["Plus", "Minus", "Clear Body"],
+    "baseAttack": 80,
+    "captureRate": 60,
+    "classification": "Gear Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 0.6,
+    "baseHp": 60,
+    "baseSpAttack": 70,
+    "baseSpDefense": 85,
+    "baseSpeed": 50,
+    "primaryType": "steel",
+    "secondaryType": "",
+    "baseWeight": 51,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Klefki",
+    "id": 343,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "klefki",
+    "japaneseName": "Cleffyクレッフィ",
+    "pokedexNumber": 707,
+    "abilities": ["Prankster", "Magician"],
+    "baseAttack": 80,
+    "captureRate": 75,
+    "classification": "Key Ring Pokémon",
+    "baseDefense": 91,
+    "baseHeight": 0.2,
+    "baseHp": 57,
+    "baseSpAttack": 80,
+    "baseSpDefense": 87,
+    "baseSpeed": 75,
+    "primaryType": "steel",
+    "secondaryType": "fairy",
+    "baseWeight": 3,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Klink",
+    "id": 344,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "klink",
+    "japaneseName": "Giaruギアル",
+    "pokedexNumber": 599,
+    "abilities": ["Plus", "Minus", "Clear Body"],
+    "baseAttack": 55,
+    "captureRate": 130,
+    "classification": "Gear Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.3,
+    "baseHp": 40,
+    "baseSpAttack": 45,
+    "baseSpDefense": 60,
+    "baseSpeed": 30,
+    "primaryType": "steel",
+    "secondaryType": "",
+    "baseWeight": 21,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Klinklang",
+    "id": 345,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "klinklang",
+    "japaneseName": "Gigigiaruギギギアル",
+    "pokedexNumber": 601,
+    "abilities": ["Plus", "Minus", "Clear Body"],
+    "baseAttack": 100,
+    "captureRate": 30,
+    "classification": "Gear Pokémon",
+    "baseDefense": 115,
+    "baseHeight": 0.6,
+    "baseHp": 60,
+    "baseSpAttack": 70,
+    "baseSpDefense": 85,
+    "baseSpeed": 90,
+    "primaryType": "steel",
+    "secondaryType": "",
+    "baseWeight": 81,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Koffing",
+    "id": 346,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "koffing",
+    "japaneseName": "Dogarsドガース",
+    "pokedexNumber": 109,
+    "abilities": ["Levitate"],
+    "baseAttack": 65,
+    "captureRate": 190,
+    "classification": "Poison Gas Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 0.6,
+    "baseHp": 40,
+    "baseSpAttack": 60,
+    "baseSpDefense": 45,
+    "baseSpeed": 35,
+    "primaryType": "poison",
+    "secondaryType": "",
+    "baseWeight": 1,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Komala",
+    "id": 347,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "komala",
+    "japaneseName": "Nekkoaraネッコアラ",
+    "pokedexNumber": 775,
+    "abilities": ["Comatose"],
+    "baseAttack": 115,
+    "captureRate": 45,
+    "classification": "Drowsing Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 0.4,
+    "baseHp": 65,
+    "baseSpAttack": 75,
+    "baseSpDefense": 95,
+    "baseSpeed": 65,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 19.9,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Kommo-o",
+    "id": 348,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "kommo-o",
+    "japaneseName": "Jyararangaジャラランガ",
+    "pokedexNumber": 784,
+    "abilities": ["Bulletproof", "Soundproof", "Overcoat"],
+    "baseAttack": 110,
+    "captureRate": 45,
+    "classification": "Scaly Pokémon",
+    "baseDefense": 125,
+    "baseHeight": 1.6,
+    "baseHp": 75,
+    "baseSpAttack": 100,
+    "baseSpDefense": 105,
+    "baseSpeed": 85,
+    "primaryType": "dragon",
+    "secondaryType": "fighting",
+    "baseWeight": 78.2,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Krabby",
+    "id": 349,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "krabby",
+    "japaneseName": "Crabクラブ",
+    "pokedexNumber": 98,
+    "abilities": ["Hyper Cutter", "Shell Armor", "Sheer Force"],
+    "baseAttack": 105,
+    "captureRate": 225,
+    "classification": "River Crab Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 0.4,
+    "baseHp": 30,
+    "baseSpAttack": 25,
+    "baseSpDefense": 25,
+    "baseSpeed": 50,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 6.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Kricketot",
+    "id": 350,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "kricketot",
+    "japaneseName": "Korobohshiコロボーシ",
+    "pokedexNumber": 401,
+    "abilities": ["Shed Skin", "Run Away"],
+    "baseAttack": 25,
+    "captureRate": 255,
+    "classification": "Cricket Pokémon",
+    "baseDefense": 41,
+    "baseHeight": 0.3,
+    "baseHp": 37,
+    "baseSpAttack": 25,
+    "baseSpDefense": 41,
+    "baseSpeed": 25,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 2.2,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Kricketune",
+    "id": 351,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "kricketune",
+    "japaneseName": "Korotockコロトック",
+    "pokedexNumber": 402,
+    "abilities": ["Swarm", "Technician"],
+    "baseAttack": 85,
+    "captureRate": 45,
+    "classification": "Cricket Pokémon",
+    "baseDefense": 51,
+    "baseHeight": 1,
+    "baseHp": 77,
+    "baseSpAttack": 55,
+    "baseSpDefense": 51,
+    "baseSpeed": 65,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 25.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Krokorok",
+    "id": 352,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "krokorok",
+    "japaneseName": "Waruvileワルビル",
+    "pokedexNumber": 552,
+    "abilities": ["Intimidate", "Moxie", "Anger Point"],
+    "baseAttack": 82,
+    "captureRate": 90,
+    "classification": "Desert Croc Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 1,
+    "baseHp": 60,
+    "baseSpAttack": 45,
+    "baseSpDefense": 45,
+    "baseSpeed": 74,
+    "primaryType": "ground",
+    "secondaryType": "dark",
+    "baseWeight": 33.4,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Krookodile",
+    "id": 353,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "krookodile",
+    "japaneseName": "Waruvialワルビアル",
+    "pokedexNumber": 553,
+    "abilities": ["Intimidate", "Moxie", "Anger Point"],
+    "baseAttack": 117,
+    "captureRate": 45,
+    "classification": "Intimidation Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.5,
+    "baseHp": 95,
+    "baseSpAttack": 65,
+    "baseSpDefense": 70,
+    "baseSpeed": 92,
+    "primaryType": "ground",
+    "secondaryType": "dark",
+    "baseWeight": 96.3,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Kyogre",
+    "id": 354,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "kyogre",
+    "japaneseName": "Kyogreカイオーガ",
+    "pokedexNumber": 382,
+    "abilities": ["Drizzle"],
+    "baseAttack": 150,
+    "captureRate": 3,
+    "classification": "Sea Basin Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 4.5,
+    "baseHp": 100,
+    "baseSpAttack": 180,
+    "baseSpDefense": 160,
+    "baseSpeed": 90,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 352,
+    "generation": 3,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Kyurem",
+    "id": 355,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "kyurem",
+    "japaneseName": "Kyuremキュレム",
+    "pokedexNumber": 646,
+    "abilities": ["Pressure", "Teravolt", "Turboblaze"],
+    "baseAttack": 120,
+    "captureRate": 3,
+    "classification": "Boundary Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 3,
+    "baseHp": 125,
+    "baseSpAttack": 170,
+    "baseSpDefense": 100,
+    "baseSpeed": 95,
+    "primaryType": "dragon",
+    "secondaryType": "ice",
+    "baseWeight": 325,
+    "generation": 5,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Lairon",
+    "id": 356,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lairon",
+    "japaneseName": "Kodoraコドラ",
+    "pokedexNumber": 305,
+    "abilities": ["Sturdy", "Rock Head", "Heavy Metal"],
+    "baseAttack": 90,
+    "captureRate": 90,
+    "classification": "Iron Armor Pokémon",
+    "baseDefense": 140,
+    "baseHeight": 0.9,
+    "baseHp": 60,
+    "baseSpAttack": 50,
+    "baseSpDefense": 50,
+    "baseSpeed": 40,
+    "primaryType": "steel",
+    "secondaryType": "rock",
+    "baseWeight": 120,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Lampent",
+    "id": 357,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lampent",
+    "japaneseName": "Lamplerランプラー",
+    "pokedexNumber": 608,
+    "abilities": ["Flash Fire", "Flame Body", "Infiltrator"],
+    "baseAttack": 40,
+    "captureRate": 90,
+    "classification": "Lamp Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.6,
+    "baseHp": 60,
+    "baseSpAttack": 95,
+    "baseSpDefense": 60,
+    "baseSpeed": 55,
+    "primaryType": "ghost",
+    "secondaryType": "fire",
+    "baseWeight": 13,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Landorus",
+    "id": 358,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "landorus-incarnate",
+    "japaneseName": "Landlos (keshin Forme)ランドロス",
+    "pokedexNumber": 645,
+    "abilities": ["Sand Force", "Sheer Force", "Intimidate"],
+    "baseAttack": 145,
+    "captureRate": 3,
+    "classification": "Abundance Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 1.5,
+    "baseHp": 89,
+    "baseSpAttack": 105,
+    "baseSpDefense": 80,
+    "baseSpeed": 91,
+    "primaryType": "ground",
+    "secondaryType": "flying",
+    "baseWeight": 68,
+    "generation": 5,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Lanturn",
+    "id": 359,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lanturn",
+    "japaneseName": "Lanternランターン",
+    "pokedexNumber": 171,
+    "abilities": ["Volt Absorb", "Illuminate", "Water Absorb"],
+    "baseAttack": 58,
+    "captureRate": 75,
+    "classification": "Light Pokémon",
+    "baseDefense": 58,
+    "baseHeight": 1.2,
+    "baseHp": 125,
+    "baseSpAttack": 76,
+    "baseSpDefense": 76,
+    "baseSpeed": 67,
+    "primaryType": "water",
+    "secondaryType": "electric",
+    "baseWeight": 22.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Lapras",
+    "id": 360,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lapras",
+    "japaneseName": "Laplaceラプラス",
+    "pokedexNumber": 131,
+    "abilities": ["Water Absorb", "Shell Armor", "Hydration"],
+    "baseAttack": 85,
+    "captureRate": 45,
+    "classification": "Transport Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 2.5,
+    "baseHp": 130,
+    "baseSpAttack": 85,
+    "baseSpDefense": 95,
+    "baseSpeed": 60,
+    "primaryType": "water",
+    "secondaryType": "ice",
+    "baseWeight": 220,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Larvesta",
+    "id": 361,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "larvesta",
+    "japaneseName": "Merlarvaメラルバ",
+    "pokedexNumber": 636,
+    "abilities": ["Flame Body", "Swarm"],
+    "baseAttack": 85,
+    "captureRate": 45,
+    "classification": "Torch Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 1.1,
+    "baseHp": 55,
+    "baseSpAttack": 50,
+    "baseSpDefense": 55,
+    "baseSpeed": 60,
+    "primaryType": "bug",
+    "secondaryType": "fire",
+    "baseWeight": 28.8,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Larvitar",
+    "id": 362,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "larvitar",
+    "japaneseName": "Yogirasヨーギラス",
+    "pokedexNumber": 246,
+    "abilities": ["Guts", "Sand Veil"],
+    "baseAttack": 64,
+    "captureRate": 45,
+    "classification": "Rock Skin Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.6,
+    "baseHp": 50,
+    "baseSpAttack": 45,
+    "baseSpDefense": 50,
+    "baseSpeed": 41,
+    "primaryType": "rock",
+    "secondaryType": "ground",
+    "baseWeight": 72,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Latias",
+    "id": 363,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "latias",
+    "japaneseName": "Latiasラティアス",
+    "pokedexNumber": 380,
+    "abilities": ["Levitate"],
+    "baseAttack": 100,
+    "captureRate": 3,
+    "classification": "Eon Pokémon",
+    "baseDefense": 120,
+    "baseHeight": 1.4,
+    "baseHp": 80,
+    "baseSpAttack": 140,
+    "baseSpDefense": 150,
+    "baseSpeed": 110,
+    "primaryType": "dragon",
+    "secondaryType": "psychic",
+    "baseWeight": 40,
+    "generation": 3,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Latios",
+    "id": 364,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "latios",
+    "japaneseName": "Latiosラティオス",
+    "pokedexNumber": 381,
+    "abilities": ["Levitate"],
+    "baseAttack": 130,
+    "captureRate": 3,
+    "classification": "Eon Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 2,
+    "baseHp": 80,
+    "baseSpAttack": 160,
+    "baseSpDefense": 120,
+    "baseSpeed": 110,
+    "primaryType": "dragon",
+    "secondaryType": "psychic",
+    "baseWeight": 60,
+    "generation": 3,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Leafeon",
+    "id": 365,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "leafeon",
+    "japaneseName": "Leafiaリーフィア",
+    "pokedexNumber": 470,
+    "abilities": ["Leaf Guard", "Chlorophyll"],
+    "baseAttack": 110,
+    "captureRate": 45,
+    "classification": "Verdant Pokémon",
+    "baseDefense": 130,
+    "baseHeight": 1,
+    "baseHp": 65,
+    "baseSpAttack": 60,
+    "baseSpDefense": 65,
+    "baseSpeed": 95,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 25.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Leavanny",
+    "id": 366,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "leavanny",
+    "japaneseName": "Hahakomoriハハコモリ",
+    "pokedexNumber": 542,
+    "abilities": ["Swarm", "Chlorophyll", "Overcoat"],
+    "baseAttack": 103,
+    "captureRate": 45,
+    "classification": "Nurturing Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.2,
+    "baseHp": 75,
+    "baseSpAttack": 70,
+    "baseSpDefense": 80,
+    "baseSpeed": 92,
+    "primaryType": "bug",
+    "secondaryType": "grass",
+    "baseWeight": 20.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ledian",
+    "id": 367,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ledian",
+    "japaneseName": "Redianレディアン",
+    "pokedexNumber": 166,
+    "abilities": ["Swarm", "Early Bird", "Iron Fist"],
+    "baseAttack": 35,
+    "captureRate": 90,
+    "classification": "Five Star Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 1.4,
+    "baseHp": 55,
+    "baseSpAttack": 55,
+    "baseSpDefense": 110,
+    "baseSpeed": 85,
+    "primaryType": "bug",
+    "secondaryType": "flying",
+    "baseWeight": 35.6,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ledyba",
+    "id": 368,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ledyba",
+    "japaneseName": "Redibaレディバ",
+    "pokedexNumber": 165,
+    "abilities": ["Swarm", "Early Bird", "Rattled"],
+    "baseAttack": 20,
+    "captureRate": 255,
+    "classification": "Five Star Pokémon",
+    "baseDefense": 30,
+    "baseHeight": 1,
+    "baseHp": 40,
+    "baseSpAttack": 40,
+    "baseSpDefense": 80,
+    "baseSpeed": 55,
+    "primaryType": "bug",
+    "secondaryType": "flying",
+    "baseWeight": 10.8,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Lickilicky",
+    "id": 369,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lickilicky",
+    "japaneseName": "Berobeltベロベルト",
+    "pokedexNumber": 463,
+    "abilities": ["Own Tempo", "Oblivious", "Cloud Nine"],
+    "baseAttack": 85,
+    "captureRate": 30,
+    "classification": "Licking Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 1.7,
+    "baseHp": 110,
+    "baseSpAttack": 80,
+    "baseSpDefense": 95,
+    "baseSpeed": 50,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 140,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Lickitung",
+    "id": 370,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lickitung",
+    "japaneseName": "Beroringaベロリンガ",
+    "pokedexNumber": 108,
+    "abilities": ["Own Tempo", "Oblivious", "Cloud Nine"],
+    "baseAttack": 55,
+    "captureRate": 45,
+    "classification": "Licking Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 1.2,
+    "baseHp": 90,
+    "baseSpAttack": 60,
+    "baseSpDefense": 75,
+    "baseSpeed": 30,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 65.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Liepard",
+    "id": 371,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "liepard",
+    "japaneseName": "Lepardasレパルダス",
+    "pokedexNumber": 510,
+    "abilities": ["Limber", "Unburden", "Prankster"],
+    "baseAttack": 88,
+    "captureRate": 90,
+    "classification": "Cruel Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 1.1,
+    "baseHp": 64,
+    "baseSpAttack": 88,
+    "baseSpDefense": 50,
+    "baseSpeed": 106,
+    "primaryType": "dark",
+    "secondaryType": "",
+    "baseWeight": 37.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Lileep",
+    "id": 372,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lileep",
+    "japaneseName": "Lilylaリリーラ",
+    "pokedexNumber": 345,
+    "abilities": ["Suction Cups", "Storm Drain"],
+    "baseAttack": 41,
+    "captureRate": 45,
+    "classification": "Sea Lily Pokémon",
+    "baseDefense": 77,
+    "baseHeight": 1,
+    "baseHp": 66,
+    "baseSpAttack": 61,
+    "baseSpDefense": 87,
+    "baseSpeed": 23,
+    "primaryType": "rock",
+    "secondaryType": "grass",
+    "baseWeight": 23.8,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Lilligant",
+    "id": 373,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lilligant",
+    "japaneseName": "Dredearドレディア",
+    "pokedexNumber": 549,
+    "abilities": ["Chlorophyll", "Own Tempo", "Leaf Guard"],
+    "baseAttack": 60,
+    "captureRate": 75,
+    "classification": "Flowering Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 1.1,
+    "baseHp": 70,
+    "baseSpAttack": 110,
+    "baseSpDefense": 75,
+    "baseSpeed": 90,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 16.3,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Lillipup",
+    "id": 374,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lillipup",
+    "japaneseName": "Yorterrieヨーテリー",
+    "pokedexNumber": 506,
+    "abilities": ["Vital Spirit", "Pickup", "Run Away"],
+    "baseAttack": 60,
+    "captureRate": 255,
+    "classification": "Puppy Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.4,
+    "baseHp": 45,
+    "baseSpAttack": 25,
+    "baseSpDefense": 45,
+    "baseSpeed": 55,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 4.1,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Linoone",
+    "id": 375,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "linoone",
+    "japaneseName": "Massugumaマッスグマ",
+    "pokedexNumber": 264,
+    "abilities": ["Pickup", "Gluttony", "Quick Feet"],
+    "baseAttack": 70,
+    "captureRate": 90,
+    "classification": "Rush Pokémon",
+    "baseDefense": 61,
+    "baseHeight": 0.5,
+    "baseHp": 78,
+    "baseSpAttack": 50,
+    "baseSpDefense": 61,
+    "baseSpeed": 100,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 32.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Litleo",
+    "id": 376,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "litleo",
+    "japaneseName": "Shishikoシシコ",
+    "pokedexNumber": 667,
+    "abilities": ["Rivalry", "Unnerve", "Moxie"],
+    "baseAttack": 50,
+    "captureRate": 220,
+    "classification": "Lion Cub Pokémon",
+    "baseDefense": 58,
+    "baseHeight": 0.6,
+    "baseHp": 62,
+    "baseSpAttack": 73,
+    "baseSpDefense": 54,
+    "baseSpeed": 72,
+    "primaryType": "fire",
+    "secondaryType": "normal",
+    "baseWeight": 13.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Litten",
+    "id": 377,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "litten",
+    "japaneseName": "Nyabbyニャビー",
+    "pokedexNumber": 725,
+    "abilities": ["Blaze", "Intimidate"],
+    "baseAttack": 65,
+    "captureRate": 45,
+    "classification": "Fire Cat Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.4,
+    "baseHp": 45,
+    "baseSpAttack": 60,
+    "baseSpDefense": 40,
+    "baseSpeed": 70,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 4.3,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Litwick",
+    "id": 378,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "litwick",
+    "japaneseName": "Hitomoshiヒトモシ",
+    "pokedexNumber": 607,
+    "abilities": ["Flash Fire", "Flame Body", "Infiltrator"],
+    "baseAttack": 30,
+    "captureRate": 190,
+    "classification": "Candle Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.3,
+    "baseHp": 50,
+    "baseSpAttack": 65,
+    "baseSpDefense": 55,
+    "baseSpeed": 20,
+    "primaryType": "ghost",
+    "secondaryType": "fire",
+    "baseWeight": 3.1,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Lombre",
+    "id": 379,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lombre",
+    "japaneseName": "Hasubreroハスブレロ",
+    "pokedexNumber": 271,
+    "abilities": ["Swift Swim", "Rain Dish", "Own Tempo"],
+    "baseAttack": 50,
+    "captureRate": 120,
+    "classification": "Jolly Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 1.2,
+    "baseHp": 60,
+    "baseSpAttack": 60,
+    "baseSpDefense": 70,
+    "baseSpeed": 50,
+    "primaryType": "water",
+    "secondaryType": "grass",
+    "baseWeight": 32.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Lopunny",
+    "id": 380,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lopunny",
+    "japaneseName": "Mimilopミミロップ",
+    "pokedexNumber": 428,
+    "abilities": ["Cute Charm", "Klutz", "Limber"],
+    "baseAttack": 136,
+    "captureRate": 60,
+    "classification": "Rabbit Pokémon",
+    "baseDefense": 94,
+    "baseHeight": 1.2,
+    "baseHp": 65,
+    "baseSpAttack": 54,
+    "baseSpDefense": 96,
+    "baseSpeed": 135,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 33.3,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Lotad",
+    "id": 381,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lotad",
+    "japaneseName": "Hassbohハスボー",
+    "pokedexNumber": 270,
+    "abilities": ["Swift Swim", "Rain Dish", "Own Tempo"],
+    "baseAttack": 30,
+    "captureRate": 255,
+    "classification": "Water Weed Pokémon",
+    "baseDefense": 30,
+    "baseHeight": 0.5,
+    "baseHp": 40,
+    "baseSpAttack": 40,
+    "baseSpDefense": 50,
+    "baseSpeed": 30,
+    "primaryType": "water",
+    "secondaryType": "grass",
+    "baseWeight": 2.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Loudred",
+    "id": 382,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "loudred",
+    "japaneseName": "Dogohmbドゴーム",
+    "pokedexNumber": 294,
+    "abilities": ["Soundproof", "Scrappy"],
+    "baseAttack": 71,
+    "captureRate": 120,
+    "classification": "Big Voice Pokémon",
+    "baseDefense": 43,
+    "baseHeight": 1,
+    "baseHp": 84,
+    "baseSpAttack": 71,
+    "baseSpDefense": 43,
+    "baseSpeed": 48,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 40.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Lucario",
+    "id": 383,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lucario",
+    "japaneseName": "Lucarioルカリオ",
+    "pokedexNumber": 448,
+    "abilities": ["Steadfast", "Inner Focus", "Justified"],
+    "baseAttack": 145,
+    "captureRate": 45,
+    "classification": "Aura Pokémon",
+    "baseDefense": 88,
+    "baseHeight": 1.2,
+    "baseHp": 70,
+    "baseSpAttack": 140,
+    "baseSpDefense": 70,
+    "baseSpeed": 112,
+    "primaryType": "fighting",
+    "secondaryType": "steel",
+    "baseWeight": 54,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ludicolo",
+    "id": 384,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ludicolo",
+    "japaneseName": "Runpappaルンパッパ",
+    "pokedexNumber": 272,
+    "abilities": ["Swift Swim", "Rain Dish", "Own Tempo"],
+    "baseAttack": 70,
+    "captureRate": 45,
+    "classification": "Carefree Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.5,
+    "baseHp": 80,
+    "baseSpAttack": 90,
+    "baseSpDefense": 100,
+    "baseSpeed": 70,
+    "primaryType": "water",
+    "secondaryType": "grass",
+    "baseWeight": 55,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Lugia",
+    "id": 385,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lugia",
+    "japaneseName": "Lugiaルギア",
+    "pokedexNumber": 249,
+    "abilities": ["Pressure", "Multiscale"],
+    "baseAttack": 90,
+    "captureRate": 3,
+    "classification": "Diving Pokémon",
+    "baseDefense": 130,
+    "baseHeight": 5.2,
+    "baseHp": 106,
+    "baseSpAttack": 90,
+    "baseSpDefense": 154,
+    "baseSpeed": 110,
+    "primaryType": "psychic",
+    "secondaryType": "flying",
+    "baseWeight": 216,
+    "generation": 2,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Lumineon",
+    "id": 386,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lumineon",
+    "japaneseName": "Neolantネオラント",
+    "pokedexNumber": 457,
+    "abilities": ["Swift Swim", "Storm Drain", "Water Veil"],
+    "baseAttack": 69,
+    "captureRate": 75,
+    "classification": "Neon Pokémon",
+    "baseDefense": 76,
+    "baseHeight": 1.2,
+    "baseHp": 69,
+    "baseSpAttack": 69,
+    "baseSpDefense": 86,
+    "baseSpeed": 91,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 24,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Lunala",
+    "id": 387,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lunala",
+    "japaneseName": "Lunalaルナアーラ",
+    "pokedexNumber": 792,
+    "abilities": ["Shadow Shield"],
+    "baseAttack": 113,
+    "captureRate": 45,
+    "classification": "Moone Pokémon",
+    "baseDefense": 89,
+    "baseHeight": 4,
+    "baseHp": 137,
+    "baseSpAttack": 137,
+    "baseSpDefense": 107,
+    "baseSpeed": 97,
+    "primaryType": "psychic",
+    "secondaryType": "ghost",
+    "baseWeight": 120,
+    "generation": 7,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Lunatone",
+    "id": 388,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lunatone",
+    "japaneseName": "Lunatoneルナトーン",
+    "pokedexNumber": 337,
+    "abilities": ["Levitate"],
+    "baseAttack": 55,
+    "captureRate": 45,
+    "classification": "Meteorite Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1,
+    "baseHp": 90,
+    "baseSpAttack": 95,
+    "baseSpDefense": 85,
+    "baseSpeed": 70,
+    "primaryType": "rock",
+    "secondaryType": "psychic",
+    "baseWeight": 168,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Lurantis",
+    "id": 389,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lurantis",
+    "japaneseName": "Lalantesラランテス",
+    "pokedexNumber": 754,
+    "abilities": ["Leaf Guard", "Contrary"],
+    "baseAttack": 105,
+    "captureRate": 75,
+    "classification": "Bloom Sickle Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 0.9,
+    "baseHp": 70,
+    "baseSpAttack": 80,
+    "baseSpDefense": 90,
+    "baseSpeed": 45,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 18.5,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Luvdisc",
+    "id": 390,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "luvdisc",
+    "japaneseName": "Lovecusラブカス",
+    "pokedexNumber": 370,
+    "abilities": ["Swift Swim", "Hydration"],
+    "baseAttack": 30,
+    "captureRate": 225,
+    "classification": "Rendezvous Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.6,
+    "baseHp": 43,
+    "baseSpAttack": 40,
+    "baseSpDefense": 65,
+    "baseSpeed": 97,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 8.7,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Luxio",
+    "id": 391,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "luxio",
+    "japaneseName": "Luxioルクシオ",
+    "pokedexNumber": 404,
+    "abilities": ["Rivalry", "Intimidate", "Guts"],
+    "baseAttack": 85,
+    "captureRate": 120,
+    "classification": "Spark Pokémon",
+    "baseDefense": 49,
+    "baseHeight": 0.9,
+    "baseHp": 60,
+    "baseSpAttack": 60,
+    "baseSpDefense": 49,
+    "baseSpeed": 60,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 30.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Luxray",
+    "id": 392,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "luxray",
+    "japaneseName": "Rentorarレントラー",
+    "pokedexNumber": 405,
+    "abilities": ["Rivalry", "Intimidate", "Guts"],
+    "baseAttack": 120,
+    "captureRate": 45,
+    "classification": "Gleam Eyes Pokémon",
+    "baseDefense": 79,
+    "baseHeight": 1.4,
+    "baseHp": 80,
+    "baseSpAttack": 95,
+    "baseSpDefense": 79,
+    "baseSpeed": 70,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 42,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Lycanroc",
+    "id": 393,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "lycanroc-midday",
+    "japaneseName": "Lugarugan (mahiru No Sugata)ルガルガン",
+    "pokedexNumber": 745,
+    "abilities": ["Keen Eye", "Sand Rush", "Steadfast", "Keen Eye", "Vital Spirit", "No Guard"],
+    "baseAttack": 115,
+    "captureRate": 90,
+    "classification": "Wolf Pokémon",
+    "baseDefense": 75,
+    "baseHeight": "",
+    "baseHp": 85,
+    "baseSpAttack": 55,
+    "baseSpDefense": 75,
+    "baseSpeed": 82,
+    "primaryType": "rock",
+    "secondaryType": "",
+    "baseWeight": "",
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Machamp",
+    "id": 394,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "machamp",
+    "japaneseName": "Kairikyカイリキー",
+    "pokedexNumber": 68,
+    "abilities": ["Guts", "No Guard", "Steadfast"],
+    "baseAttack": 130,
+    "captureRate": 45,
+    "classification": "Superpower Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.6,
+    "baseHp": 90,
+    "baseSpAttack": 65,
+    "baseSpDefense": 85,
+    "baseSpeed": 55,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 130,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Machoke",
+    "id": 395,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "machoke",
+    "japaneseName": "Gorikyゴーリキー",
+    "pokedexNumber": 67,
+    "abilities": ["Guts", "No Guard", "Steadfast"],
+    "baseAttack": 100,
+    "captureRate": 90,
+    "classification": "Superpower Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.5,
+    "baseHp": 80,
+    "baseSpAttack": 50,
+    "baseSpDefense": 60,
+    "baseSpeed": 45,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 70.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Machop",
+    "id": 396,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "machop",
+    "japaneseName": "Wanrikyワンリキー",
+    "pokedexNumber": 66,
+    "abilities": ["Guts", "No Guard", "Steadfast"],
+    "baseAttack": 80,
+    "captureRate": 180,
+    "classification": "Superpower Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.8,
+    "baseHp": 70,
+    "baseSpAttack": 35,
+    "baseSpDefense": 35,
+    "baseSpeed": 35,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 19.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Magby",
+    "id": 397,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "magby",
+    "japaneseName": "Bubyブビィ",
+    "pokedexNumber": 240,
+    "abilities": ["Flame Body", "Vital Spirit"],
+    "baseAttack": 75,
+    "captureRate": 45,
+    "classification": "Live Coal Pokémon",
+    "baseDefense": 37,
+    "baseHeight": 0.7,
+    "baseHp": 45,
+    "baseSpAttack": 70,
+    "baseSpDefense": 55,
+    "baseSpeed": 83,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 21.4,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Magcargo",
+    "id": 398,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "magcargo",
+    "japaneseName": "Magcargotマグカルゴ",
+    "pokedexNumber": 219,
+    "abilities": ["Magma Armor", "Flame Body", "Weak Armor"],
+    "baseAttack": 50,
+    "captureRate": 75,
+    "classification": "Lava Pokémon",
+    "baseDefense": 120,
+    "baseHeight": 0.8,
+    "baseHp": 60,
+    "baseSpAttack": 90,
+    "baseSpDefense": 80,
+    "baseSpeed": 30,
+    "primaryType": "fire",
+    "secondaryType": "rock",
+    "baseWeight": 55,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Magearna",
+    "id": 399,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "magearna",
+    "japaneseName": "Magearnaマギアナ",
+    "pokedexNumber": 801,
+    "abilities": ["Soul-Heart"],
+    "baseAttack": 95,
+    "captureRate": 3,
+    "classification": "Artificial Pokémon",
+    "baseDefense": 115,
+    "baseHeight": 1,
+    "baseHp": 80,
+    "baseSpAttack": 130,
+    "baseSpDefense": 115,
+    "baseSpeed": 65,
+    "primaryType": "steel",
+    "secondaryType": "fairy",
+    "baseWeight": 80.5,
+    "generation": 7,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Magikarp",
+    "id": 400,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "magikarp",
+    "japaneseName": "Koikingコイキング",
+    "pokedexNumber": 129,
+    "abilities": ["Swift Swim", "Rattled"],
+    "baseAttack": 10,
+    "captureRate": 255,
+    "classification": "Fish Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.9,
+    "baseHp": 20,
+    "baseSpAttack": 15,
+    "baseSpDefense": 20,
+    "baseSpeed": 80,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 10,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Magmar",
+    "id": 401,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "magmar",
+    "japaneseName": "Booberブーバー",
+    "pokedexNumber": 126,
+    "abilities": ["Flame Body", "Vital Spirit"],
+    "baseAttack": 95,
+    "captureRate": 45,
+    "classification": "Spitfire Pokémon",
+    "baseDefense": 57,
+    "baseHeight": 1.3,
+    "baseHp": 65,
+    "baseSpAttack": 100,
+    "baseSpDefense": 85,
+    "baseSpeed": 93,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 44.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Magmortar",
+    "id": 402,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "magmortar",
+    "japaneseName": "Booburnブーバーン",
+    "pokedexNumber": 467,
+    "abilities": ["Flame Body", "Vital Spirit"],
+    "baseAttack": 95,
+    "captureRate": 30,
+    "classification": "Blast Pokémon",
+    "baseDefense": 67,
+    "baseHeight": 1.6,
+    "baseHp": 75,
+    "baseSpAttack": 125,
+    "baseSpDefense": 95,
+    "baseSpeed": 83,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 68,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Magnemite",
+    "id": 403,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "magnemite",
+    "japaneseName": "Coilコイル",
+    "pokedexNumber": 81,
+    "abilities": ["Magnet Pull", "Sturdy", "Analytic"],
+    "baseAttack": 35,
+    "captureRate": 190,
+    "classification": "Magnet Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.3,
+    "baseHp": 25,
+    "baseSpAttack": 95,
+    "baseSpDefense": 55,
+    "baseSpeed": 45,
+    "primaryType": "electric",
+    "secondaryType": "steel",
+    "baseWeight": 6,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Magneton",
+    "id": 404,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "magneton",
+    "japaneseName": "Rarecoilレアコイル",
+    "pokedexNumber": 82,
+    "abilities": ["Magnet Pull", "Sturdy", "Analytic"],
+    "baseAttack": 60,
+    "captureRate": 60,
+    "classification": "Magnet Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 1,
+    "baseHp": 50,
+    "baseSpAttack": 120,
+    "baseSpDefense": 70,
+    "baseSpeed": 70,
+    "primaryType": "electric",
+    "secondaryType": "steel",
+    "baseWeight": 60,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Magnezone",
+    "id": 405,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "magnezone",
+    "japaneseName": "Jibacoilジバコイル",
+    "pokedexNumber": 462,
+    "abilities": ["Magnet Pull", "Sturdy", "Analytic"],
+    "baseAttack": 70,
+    "captureRate": 30,
+    "classification": "Magnet Area Pokémon",
+    "baseDefense": 115,
+    "baseHeight": 1.2,
+    "baseHp": 70,
+    "baseSpAttack": 130,
+    "baseSpDefense": 90,
+    "baseSpeed": 60,
+    "primaryType": "electric",
+    "secondaryType": "steel",
+    "baseWeight": 180,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Makuhita",
+    "id": 406,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "makuhita",
+    "japaneseName": "Makunoshitaマクノシタ",
+    "pokedexNumber": 296,
+    "abilities": ["Thick Fat", "Guts", "Sheer Force"],
+    "baseAttack": 60,
+    "captureRate": 180,
+    "classification": "Guts Pokémon",
+    "baseDefense": 30,
+    "baseHeight": 1,
+    "baseHp": 72,
+    "baseSpAttack": 20,
+    "baseSpDefense": 30,
+    "baseSpeed": 25,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 86.4,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Malamar",
+    "id": 407,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "malamar",
+    "japaneseName": "Calamaneroカラマネロ",
+    "pokedexNumber": 687,
+    "abilities": ["Contrary", "Suction Cups", "Infiltrator"],
+    "baseAttack": 92,
+    "captureRate": 80,
+    "classification": "Overturning Pokémon",
+    "baseDefense": 88,
+    "baseHeight": 1.5,
+    "baseHp": 86,
+    "baseSpAttack": 68,
+    "baseSpDefense": 75,
+    "baseSpeed": 73,
+    "primaryType": "dark",
+    "secondaryType": "psychic",
+    "baseWeight": 47,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mamoswine",
+    "id": 408,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mamoswine",
+    "japaneseName": "Mammooマンムー",
+    "pokedexNumber": 473,
+    "abilities": ["Oblivious", "Snow Cloak", "Thick Fat"],
+    "baseAttack": 130,
+    "captureRate": 50,
+    "classification": "Twin Tusk Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 2.5,
+    "baseHp": 110,
+    "baseSpAttack": 70,
+    "baseSpDefense": 60,
+    "baseSpeed": 80,
+    "primaryType": "ice",
+    "secondaryType": "ground",
+    "baseWeight": 291,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Manaphy",
+    "id": 409,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "manaphy",
+    "japaneseName": "Manaphyマナフィ",
+    "pokedexNumber": 490,
+    "abilities": ["Hydration"],
+    "baseAttack": 100,
+    "captureRate": 3,
+    "classification": "Seafaring Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 0.3,
+    "baseHp": 100,
+    "baseSpAttack": 100,
+    "baseSpDefense": 100,
+    "baseSpeed": 100,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 1.4,
+    "generation": 4,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Mandibuzz",
+    "id": 410,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mandibuzz",
+    "japaneseName": "Vulginaバルジーナ",
+    "pokedexNumber": 630,
+    "abilities": ["Big Pecks", "Overcoat", "Weak Armor"],
+    "baseAttack": 65,
+    "captureRate": 60,
+    "classification": "Bone Vulture Pokémon",
+    "baseDefense": 105,
+    "baseHeight": 1.2,
+    "baseHp": 110,
+    "baseSpAttack": 55,
+    "baseSpDefense": 95,
+    "baseSpeed": 80,
+    "primaryType": "dark",
+    "secondaryType": "flying",
+    "baseWeight": 39.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Manectric",
+    "id": 411,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "manectric",
+    "japaneseName": "Livoltライボルト",
+    "pokedexNumber": 310,
+    "abilities": ["Static", "Lightningrod", "Minus"],
+    "baseAttack": 75,
+    "captureRate": 45,
+    "classification": "Discharge Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.5,
+    "baseHp": 70,
+    "baseSpAttack": 135,
+    "baseSpDefense": 80,
+    "baseSpeed": 135,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 40.2,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mankey",
+    "id": 412,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mankey",
+    "japaneseName": "Mankeyマンキー",
+    "pokedexNumber": 56,
+    "abilities": ["Vital Spirit", "Anger Point", "Defiant"],
+    "baseAttack": 80,
+    "captureRate": 190,
+    "classification": "Pig Monkey Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.5,
+    "baseHp": 40,
+    "baseSpAttack": 35,
+    "baseSpDefense": 45,
+    "baseSpeed": 70,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 28,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mantine",
+    "id": 413,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mantine",
+    "japaneseName": "Mantainマンタイン",
+    "pokedexNumber": 226,
+    "abilities": ["Swift Swim", "Water Absorb", "Water Veil"],
+    "baseAttack": 40,
+    "captureRate": 25,
+    "classification": "Kite Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 2.1,
+    "baseHp": 85,
+    "baseSpAttack": 80,
+    "baseSpDefense": 140,
+    "baseSpeed": 70,
+    "primaryType": "water",
+    "secondaryType": "flying",
+    "baseWeight": 220,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mantyke",
+    "id": 414,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mantyke",
+    "japaneseName": "Tamantaタマンタ",
+    "pokedexNumber": 458,
+    "abilities": ["Swift Swim", "Water Absorb", "Water Veil"],
+    "baseAttack": 20,
+    "captureRate": 25,
+    "classification": "Kite Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 1,
+    "baseHp": 45,
+    "baseSpAttack": 60,
+    "baseSpDefense": 120,
+    "baseSpeed": 50,
+    "primaryType": "water",
+    "secondaryType": "flying",
+    "baseWeight": 65,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Maractus",
+    "id": 415,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "maractus",
+    "japaneseName": "Maracacchiマラカッチ",
+    "pokedexNumber": 556,
+    "abilities": ["Water Absorb", "Chlorophyll", "Storm Drain"],
+    "baseAttack": 86,
+    "captureRate": 255,
+    "classification": "Cactus Pokémon",
+    "baseDefense": 67,
+    "baseHeight": 1,
+    "baseHp": 75,
+    "baseSpAttack": 106,
+    "baseSpDefense": 67,
+    "baseSpeed": 60,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 28,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mareanie",
+    "id": 416,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mareanie",
+    "japaneseName": "Hidoideヒドイデ",
+    "pokedexNumber": 747,
+    "abilities": ["Merciless", "Limber", "Regenerator"],
+    "baseAttack": 53,
+    "captureRate": 190,
+    "classification": "Brutal Star Pokémon",
+    "baseDefense": 62,
+    "baseHeight": 0.4,
+    "baseHp": 50,
+    "baseSpAttack": 43,
+    "baseSpDefense": 52,
+    "baseSpeed": 45,
+    "primaryType": "poison",
+    "secondaryType": "water",
+    "baseWeight": 8,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mareep",
+    "id": 417,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mareep",
+    "japaneseName": "Merriepメリープ",
+    "pokedexNumber": 179,
+    "abilities": ["Static", "Plus"],
+    "baseAttack": 40,
+    "captureRate": 235,
+    "classification": "Wool Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.6,
+    "baseHp": 55,
+    "baseSpAttack": 65,
+    "baseSpDefense": 45,
+    "baseSpeed": 35,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 7.8,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Marill",
+    "id": 418,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "marill",
+    "japaneseName": "Marilマリル",
+    "pokedexNumber": 183,
+    "abilities": ["Thick Fat", "Huge Power", "Sap Sipper"],
+    "baseAttack": 20,
+    "captureRate": 190,
+    "classification": "Aquamouse Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.4,
+    "baseHp": 70,
+    "baseSpAttack": 20,
+    "baseSpDefense": 50,
+    "baseSpeed": 40,
+    "primaryType": "water",
+    "secondaryType": "fairy",
+    "baseWeight": 8.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Marowak",
+    "id": 419,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "marowak",
+    "japaneseName": "Garagaraガラガラ",
+    "pokedexNumber": 105,
+    "abilities": ["Rock Head", "Lightningrod", "Battle Armor", "Cursed Body", "Lightningrod", "Rock Head"],
+    "baseAttack": 80,
+    "captureRate": 75,
+    "classification": "Bone Keeper Pokémon",
+    "baseDefense": 110,
+    "baseHeight": "",
+    "baseHp": 60,
+    "baseSpAttack": 50,
+    "baseSpDefense": 80,
+    "baseSpeed": 45,
+    "primaryType": "ground",
+    "secondaryType": "fire",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Marshtomp",
+    "id": 420,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "marshtomp",
+    "japaneseName": "Numacrawヌマクロー",
+    "pokedexNumber": 259,
+    "abilities": ["Torrent", "Damp"],
+    "baseAttack": 85,
+    "captureRate": 45,
+    "classification": "Mud Fish Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.7,
+    "baseHp": 70,
+    "baseSpAttack": 60,
+    "baseSpDefense": 70,
+    "baseSpeed": 50,
+    "primaryType": "water",
+    "secondaryType": "ground",
+    "baseWeight": 28,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Masquerain",
+    "id": 421,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "masquerain",
+    "japaneseName": "Amemothアメモース",
+    "pokedexNumber": 284,
+    "abilities": ["Intimidate", "Unnerve"],
+    "baseAttack": 60,
+    "captureRate": 75,
+    "classification": "Eyeball Pokémon",
+    "baseDefense": 62,
+    "baseHeight": 0.8,
+    "baseHp": 70,
+    "baseSpAttack": 100,
+    "baseSpDefense": 82,
+    "baseSpeed": 80,
+    "primaryType": "bug",
+    "secondaryType": "flying",
+    "baseWeight": 3.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mawile",
+    "id": 422,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mawile",
+    "japaneseName": "Kucheatクチート",
+    "pokedexNumber": 303,
+    "abilities": ["Hyper Cutter", "Intimidate", "Sheer Force"],
+    "baseAttack": 105,
+    "captureRate": 45,
+    "classification": "Deceiver Pokémon",
+    "baseDefense": 125,
+    "baseHeight": 0.6,
+    "baseHp": 50,
+    "baseSpAttack": 55,
+    "baseSpDefense": 95,
+    "baseSpeed": 50,
+    "primaryType": "steel",
+    "secondaryType": "fairy",
+    "baseWeight": 11.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Medicham",
+    "id": 423,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "medicham",
+    "japaneseName": "Charemチャーレム",
+    "pokedexNumber": 308,
+    "abilities": ["Pure Power", "Telepathy"],
+    "baseAttack": 100,
+    "captureRate": 90,
+    "classification": "Meditate Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 1.3,
+    "baseHp": 60,
+    "baseSpAttack": 80,
+    "baseSpDefense": 85,
+    "baseSpeed": 100,
+    "primaryType": "fighting",
+    "secondaryType": "psychic",
+    "baseWeight": 31.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Meditite",
+    "id": 424,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "meditite",
+    "japaneseName": "Asananアサナン",
+    "pokedexNumber": 307,
+    "abilities": ["Pure Power", "Telepathy"],
+    "baseAttack": 40,
+    "captureRate": 180,
+    "classification": "Meditate Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.6,
+    "baseHp": 30,
+    "baseSpAttack": 40,
+    "baseSpDefense": 55,
+    "baseSpeed": 60,
+    "primaryType": "fighting",
+    "secondaryType": "psychic",
+    "baseWeight": 11.2,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Meganium",
+    "id": 425,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "meganium",
+    "japaneseName": "Meganiumメガニウム",
+    "pokedexNumber": 154,
+    "abilities": ["Overgrow", "Leaf Guard"],
+    "baseAttack": 82,
+    "captureRate": 45,
+    "classification": "Herb Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 1.8,
+    "baseHp": 80,
+    "baseSpAttack": 83,
+    "baseSpDefense": 100,
+    "baseSpeed": 80,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 100.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Meloetta",
+    "id": 426,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "meloetta-aria",
+    "japaneseName": "Meloetta (step Forme)メロエッタ",
+    "pokedexNumber": 648,
+    "abilities": ["Serene Grace"],
+    "baseAttack": 128,
+    "captureRate": 3,
+    "classification": "Melody Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 0.6,
+    "baseHp": 100,
+    "baseSpAttack": 77,
+    "baseSpDefense": 77,
+    "baseSpeed": 128,
+    "primaryType": "normal",
+    "secondaryType": "psychic",
+    "baseWeight": 6.5,
+    "generation": 5,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Meowstic",
+    "id": 427,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "meowstic-male",
+    "japaneseName": "Nyaonixニャオニクス",
+    "pokedexNumber": 678,
+    "abilities": ["Keen Eye", "Infiltrator", "Prankster", "Competitive"],
+    "baseAttack": 48,
+    "captureRate": 75,
+    "classification": "Constraint Pokémon",
+    "baseDefense": 76,
+    "baseHeight": 0.6,
+    "baseHp": 74,
+    "baseSpAttack": 83,
+    "baseSpDefense": 81,
+    "baseSpeed": 104,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 8.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Meowth",
+    "id": 428,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "meowth",
+    "japaneseName": "Nyarthニャース",
+    "pokedexNumber": 52,
+    "abilities": ["Pickup", "Technician", "Unnerve", "Pickup", "Technician", "Rattled"],
+    "baseAttack": 35,
+    "captureRate": 255,
+    "classification": "Scratch Cat Pokémon",
+    "baseDefense": 35,
+    "baseHeight": "",
+    "baseHp": 40,
+    "baseSpAttack": 50,
+    "baseSpDefense": 40,
+    "baseSpeed": 90,
+    "primaryType": "normal",
+    "secondaryType": "dark",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mesprit",
+    "id": 429,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mesprit",
+    "japaneseName": "Emritエムリット",
+    "pokedexNumber": 481,
+    "abilities": ["Levitate"],
+    "baseAttack": 105,
+    "captureRate": 3,
+    "classification": "Emotion Pokémon",
+    "baseDefense": 105,
+    "baseHeight": 0.3,
+    "baseHp": 80,
+    "baseSpAttack": 105,
+    "baseSpDefense": 105,
+    "baseSpeed": 80,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 0.3,
+    "generation": 4,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Metagross",
+    "id": 430,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "metagross",
+    "japaneseName": "Metagrossメタグロス",
+    "pokedexNumber": 376,
+    "abilities": ["Clear Body", "Light Metal"],
+    "baseAttack": 145,
+    "captureRate": 3,
+    "classification": "Iron Leg Pokémon",
+    "baseDefense": 150,
+    "baseHeight": 1.6,
+    "baseHp": 80,
+    "baseSpAttack": 105,
+    "baseSpDefense": 110,
+    "baseSpeed": 110,
+    "primaryType": "steel",
+    "secondaryType": "psychic",
+    "baseWeight": 550,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Metang",
+    "id": 431,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "metang",
+    "japaneseName": "Metangメタング",
+    "pokedexNumber": 375,
+    "abilities": ["Clear Body", "Light Metal"],
+    "baseAttack": 75,
+    "captureRate": 3,
+    "classification": "Iron Claw Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 1.2,
+    "baseHp": 60,
+    "baseSpAttack": 55,
+    "baseSpDefense": 80,
+    "baseSpeed": 50,
+    "primaryType": "steel",
+    "secondaryType": "psychic",
+    "baseWeight": 202.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Metapod",
+    "id": 432,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "metapod",
+    "japaneseName": "Transelトランセル",
+    "pokedexNumber": 11,
+    "abilities": ["Shed Skin"],
+    "baseAttack": 20,
+    "captureRate": 120,
+    "classification": "Cocoon Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.7,
+    "baseHp": 50,
+    "baseSpAttack": 25,
+    "baseSpDefense": 25,
+    "baseSpeed": 30,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 9.9,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mew",
+    "id": 433,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mew",
+    "japaneseName": "Mewミュウ",
+    "pokedexNumber": 151,
+    "abilities": ["Synchronize"],
+    "baseAttack": 100,
+    "captureRate": 45,
+    "classification": "New Species Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 0.4,
+    "baseHp": 100,
+    "baseSpAttack": 100,
+    "baseSpDefense": 100,
+    "baseSpeed": 100,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 4,
+    "generation": 1,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Mewtwo",
+    "id": 434,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mewtwo",
+    "japaneseName": "Mewtwoミュウツー",
+    "pokedexNumber": 150,
+    "abilities": ["Pressure", "Unnerve"],
+    "baseAttack": 150,
+    "captureRate": 3,
+    "classification": "Genetic Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 2,
+    "baseHp": 106,
+    "baseSpAttack": 194,
+    "baseSpDefense": 120,
+    "baseSpeed": 140,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 122,
+    "generation": 1,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Mienfoo",
+    "id": 435,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mienfoo",
+    "japaneseName": "Kojofuコジョフー",
+    "pokedexNumber": 619,
+    "abilities": ["Inner Focus", "Regenerator", "Reckless"],
+    "baseAttack": 85,
+    "captureRate": 180,
+    "classification": "Martial Arts Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.9,
+    "baseHp": 45,
+    "baseSpAttack": 55,
+    "baseSpDefense": 50,
+    "baseSpeed": 65,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 20,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mienshao",
+    "id": 436,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mienshao",
+    "japaneseName": "Kojondoコジョンド",
+    "pokedexNumber": 620,
+    "abilities": ["Inner Focus", "Regenerator", "Reckless"],
+    "baseAttack": 125,
+    "captureRate": 45,
+    "classification": "Martial Arts Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 1.4,
+    "baseHp": 65,
+    "baseSpAttack": 95,
+    "baseSpDefense": 60,
+    "baseSpeed": 105,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 35.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mightyena",
+    "id": 437,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mightyena",
+    "japaneseName": "Graenaグラエナ",
+    "pokedexNumber": 262,
+    "abilities": ["Intimidate", "Quick Feet", "Moxie"],
+    "baseAttack": 90,
+    "captureRate": 127,
+    "classification": "Bite Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1,
+    "baseHp": 70,
+    "baseSpAttack": 60,
+    "baseSpDefense": 60,
+    "baseSpeed": 70,
+    "primaryType": "dark",
+    "secondaryType": "",
+    "baseWeight": 37,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Milotic",
+    "id": 438,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "milotic",
+    "japaneseName": "Milokarossミロカロス",
+    "pokedexNumber": 350,
+    "abilities": ["Marvel Scale", "Competitive", "Cute Charm"],
+    "baseAttack": 60,
+    "captureRate": 60,
+    "classification": "Tender Pokémon",
+    "baseDefense": 79,
+    "baseHeight": 6.2,
+    "baseHp": 95,
+    "baseSpAttack": 100,
+    "baseSpDefense": 125,
+    "baseSpeed": 81,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 162,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Miltank",
+    "id": 439,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "miltank",
+    "japaneseName": "Miltankミルタンク",
+    "pokedexNumber": 241,
+    "abilities": ["Thick Fat", "Scrappy", "Sap Sipper"],
+    "baseAttack": 80,
+    "captureRate": 45,
+    "classification": "Milk Cow Pokémon",
+    "baseDefense": 105,
+    "baseHeight": 1.2,
+    "baseHp": 95,
+    "baseSpAttack": 40,
+    "baseSpDefense": 70,
+    "baseSpeed": 100,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 75.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mime Jr.",
+    "id": 440,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mime-jr",
+    "japaneseName": "Maneneマネネ",
+    "pokedexNumber": 439,
+    "abilities": ["Soundproof", "Filter", "Technician"],
+    "baseAttack": 25,
+    "captureRate": 145,
+    "classification": "Mime Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.6,
+    "baseHp": 20,
+    "baseSpAttack": 70,
+    "baseSpDefense": 90,
+    "baseSpeed": 60,
+    "primaryType": "psychic",
+    "secondaryType": "fairy",
+    "baseWeight": 13,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mimikyu",
+    "id": 441,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mimikyu",
+    "japaneseName": "Mimikkyuミミッキュ",
+    "pokedexNumber": 778,
+    "abilities": ["Disguise"],
+    "baseAttack": 90,
+    "captureRate": 45,
+    "classification": "Disguise Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 0.2,
+    "baseHp": 55,
+    "baseSpAttack": 50,
+    "baseSpDefense": 105,
+    "baseSpeed": 96,
+    "primaryType": "ghost",
+    "secondaryType": "fairy",
+    "baseWeight": 0.7,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Minccino",
+    "id": 442,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "minccino",
+    "japaneseName": "Chillarmyチラーミィ",
+    "pokedexNumber": 572,
+    "abilities": ["Cute Charm", "Technician", "Skill Link"],
+    "baseAttack": 50,
+    "captureRate": 255,
+    "classification": "Chinchilla Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.4,
+    "baseHp": 55,
+    "baseSpAttack": 40,
+    "baseSpDefense": 40,
+    "baseSpeed": 75,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 5.8,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Minior",
+    "id": 443,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "minior-meteor",
+    "japaneseName": "Metenoメテノ",
+    "pokedexNumber": 774,
+    "abilities": ["Shields Down"],
+    "baseAttack": 100,
+    "captureRate": 255,
+    "classification": "Meteor Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.3,
+    "baseHp": 60,
+    "baseSpAttack": 100,
+    "baseSpDefense": 60,
+    "baseSpeed": 120,
+    "primaryType": "rock",
+    "secondaryType": "flying",
+    "baseWeight": 40,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Minun",
+    "id": 444,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "minun",
+    "japaneseName": "Minunマイナン",
+    "pokedexNumber": 312,
+    "abilities": ["Minus", "Volt Absorb"],
+    "baseAttack": 40,
+    "captureRate": 200,
+    "classification": "Cheering Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.4,
+    "baseHp": 60,
+    "baseSpAttack": 75,
+    "baseSpDefense": 85,
+    "baseSpeed": 95,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 4.2,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Misdreavus",
+    "id": 445,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "misdreavus",
+    "japaneseName": "Mumaムウマ",
+    "pokedexNumber": 200,
+    "abilities": ["Levitate"],
+    "baseAttack": 60,
+    "captureRate": 45,
+    "classification": "Screech Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.7,
+    "baseHp": 60,
+    "baseSpAttack": 85,
+    "baseSpDefense": 85,
+    "baseSpeed": 85,
+    "primaryType": "ghost",
+    "secondaryType": "",
+    "baseWeight": 1,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mismagius",
+    "id": 446,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mismagius",
+    "japaneseName": "Mumargiムウマージ",
+    "pokedexNumber": 429,
+    "abilities": ["Levitate"],
+    "baseAttack": 60,
+    "captureRate": 45,
+    "classification": "Magical Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.9,
+    "baseHp": 60,
+    "baseSpAttack": 105,
+    "baseSpDefense": 105,
+    "baseSpeed": 105,
+    "primaryType": "ghost",
+    "secondaryType": "",
+    "baseWeight": 4.4,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Moltres",
+    "id": 447,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "moltres",
+    "japaneseName": "Fireファイヤー",
+    "pokedexNumber": 146,
+    "abilities": ["Pressure", "Flame Body"],
+    "baseAttack": 100,
+    "captureRate": 3,
+    "classification": "Flame Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 2,
+    "baseHp": 90,
+    "baseSpAttack": 125,
+    "baseSpDefense": 85,
+    "baseSpeed": 90,
+    "primaryType": "fire",
+    "secondaryType": "flying",
+    "baseWeight": 60,
+    "generation": 1,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Monferno",
+    "id": 448,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "monferno",
+    "japaneseName": "Moukazaruモウカザル",
+    "pokedexNumber": 391,
+    "abilities": ["Blaze", "Iron Fist"],
+    "baseAttack": 78,
+    "captureRate": 45,
+    "classification": "Playful Pokémon",
+    "baseDefense": 52,
+    "baseHeight": 0.9,
+    "baseHp": 64,
+    "baseSpAttack": 78,
+    "baseSpDefense": 52,
+    "baseSpeed": 81,
+    "primaryType": "fire",
+    "secondaryType": "fighting",
+    "baseWeight": 22,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Morelull",
+    "id": 449,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "morelull",
+    "japaneseName": "Nemasyuネマシュ",
+    "pokedexNumber": 755,
+    "abilities": ["Illuminate", "Effect Spore", "Rain Dish"],
+    "baseAttack": 35,
+    "captureRate": 190,
+    "classification": "Illuminating Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.2,
+    "baseHp": 40,
+    "baseSpAttack": 65,
+    "baseSpDefense": 75,
+    "baseSpeed": 15,
+    "primaryType": "grass",
+    "secondaryType": "fairy",
+    "baseWeight": 1.5,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mothim",
+    "id": 450,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mothim",
+    "japaneseName": "Gamaleガーメイル",
+    "pokedexNumber": 414,
+    "abilities": ["Swarm", "Tinted Lens"],
+    "baseAttack": 94,
+    "captureRate": 45,
+    "classification": "Moth Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.9,
+    "baseHp": 70,
+    "baseSpAttack": 94,
+    "baseSpDefense": 50,
+    "baseSpeed": 66,
+    "primaryType": "bug",
+    "secondaryType": "flying",
+    "baseWeight": 23.3,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mr. Mime",
+    "id": 451,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mr-mime",
+    "japaneseName": "Barrierdバリヤード",
+    "pokedexNumber": 122,
+    "abilities": ["Soundproof", "Filter", "Technician"],
+    "baseAttack": 45,
+    "captureRate": 45,
+    "classification": "Barrier Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1.3,
+    "baseHp": 40,
+    "baseSpAttack": 100,
+    "baseSpDefense": 120,
+    "baseSpeed": 90,
+    "primaryType": "psychic",
+    "secondaryType": "fairy",
+    "baseWeight": 54.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mudbray",
+    "id": 452,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mudbray",
+    "japaneseName": "Dorobankoドロバンコ",
+    "pokedexNumber": 749,
+    "abilities": ["Own Tempo", "Stamina", "Inner Focus"],
+    "baseAttack": 100,
+    "captureRate": 190,
+    "classification": "Donkey Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1,
+    "baseHp": 70,
+    "baseSpAttack": 45,
+    "baseSpDefense": 55,
+    "baseSpeed": 45,
+    "primaryType": "ground",
+    "secondaryType": "",
+    "baseWeight": 110,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mudkip",
+    "id": 453,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mudkip",
+    "japaneseName": "Mizugorouミズゴロウ",
+    "pokedexNumber": 258,
+    "abilities": ["Torrent", "Damp"],
+    "baseAttack": 70,
+    "captureRate": 45,
+    "classification": "Mud Fish Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.4,
+    "baseHp": 50,
+    "baseSpAttack": 50,
+    "baseSpDefense": 50,
+    "baseSpeed": 40,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 7.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Mudsdale",
+    "id": 454,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "mudsdale",
+    "japaneseName": "Banbadoroバンバドロ",
+    "pokedexNumber": 750,
+    "abilities": ["Own Tempo", "Stamina", "Inner Focus"],
+    "baseAttack": 125,
+    "captureRate": 60,
+    "classification": "Draft Horse Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 2.5,
+    "baseHp": 100,
+    "baseSpAttack": 55,
+    "baseSpDefense": 85,
+    "baseSpeed": 35,
+    "primaryType": "ground",
+    "secondaryType": "",
+    "baseWeight": 920,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Muk",
+    "id": 455,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "muk",
+    "japaneseName": "Betbetonベトベトン",
+    "pokedexNumber": 89,
+    "abilities": ["Stench", "Sticky Hold", "Poison Touch", "Poison Touch", "Gluttony", "Power of Alchemy"],
+    "baseAttack": 105,
+    "captureRate": 75,
+    "classification": "Sludge Pokémon",
+    "baseDefense": 75,
+    "baseHeight": "",
+    "baseHp": 105,
+    "baseSpAttack": 65,
+    "baseSpDefense": 100,
+    "baseSpeed": 50,
+    "primaryType": "poison",
+    "secondaryType": "poison",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Munchlax",
+    "id": 456,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "munchlax",
+    "japaneseName": "Gonbeゴンベ",
+    "pokedexNumber": 446,
+    "abilities": ["Pickup", "Thick Fat", "Gluttony"],
+    "baseAttack": 85,
+    "captureRate": 50,
+    "classification": "Big Eater Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.6,
+    "baseHp": 135,
+    "baseSpAttack": 40,
+    "baseSpDefense": 85,
+    "baseSpeed": 5,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 105,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Munna",
+    "id": 457,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "munna",
+    "japaneseName": "Munnaムンナ",
+    "pokedexNumber": 517,
+    "abilities": ["Forewarn", "Synchronize", "Telepathy"],
+    "baseAttack": 25,
+    "captureRate": 190,
+    "classification": "Dream Eater Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.6,
+    "baseHp": 76,
+    "baseSpAttack": 67,
+    "baseSpDefense": 55,
+    "baseSpeed": 24,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 23.3,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Murkrow",
+    "id": 458,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "murkrow",
+    "japaneseName": "Yamikarasuヤミカラス",
+    "pokedexNumber": 198,
+    "abilities": ["Insomnia", "Super Luck", "Prankster"],
+    "baseAttack": 85,
+    "captureRate": 30,
+    "classification": "Darkness Pokémon",
+    "baseDefense": 42,
+    "baseHeight": 0.5,
+    "baseHp": 60,
+    "baseSpAttack": 85,
+    "baseSpDefense": 42,
+    "baseSpeed": 91,
+    "primaryType": "dark",
+    "secondaryType": "flying",
+    "baseWeight": 2.1,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Musharna",
+    "id": 459,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "musharna",
+    "japaneseName": "Musharnaムシャーナ",
+    "pokedexNumber": 518,
+    "abilities": ["Forewarn", "Synchronize", "Telepathy"],
+    "baseAttack": 55,
+    "captureRate": 75,
+    "classification": "Drowsing Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 1.1,
+    "baseHp": 116,
+    "baseSpAttack": 107,
+    "baseSpDefense": 95,
+    "baseSpeed": 29,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 60.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Natu",
+    "id": 460,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "natu",
+    "japaneseName": "Natyネイティ",
+    "pokedexNumber": 177,
+    "abilities": ["Synchronize", "Early Bird", "Magic Bounce"],
+    "baseAttack": 50,
+    "captureRate": 190,
+    "classification": "Little Bird Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.2,
+    "baseHp": 40,
+    "baseSpAttack": 70,
+    "baseSpDefense": 45,
+    "baseSpeed": 70,
+    "primaryType": "psychic",
+    "secondaryType": "flying",
+    "baseWeight": 2,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Necrozma",
+    "id": 461,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "necrozma",
+    "japaneseName": "Necrozmaネクロズマ",
+    "pokedexNumber": 800,
+    "abilities": ["Prism Armor"],
+    "baseAttack": 107,
+    "captureRate": 3,
+    "classification": "Prism Pokémon",
+    "baseDefense": 101,
+    "baseHeight": 2.4,
+    "baseHp": 97,
+    "baseSpAttack": 127,
+    "baseSpDefense": 89,
+    "baseSpeed": 79,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 230,
+    "generation": 7,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Nidoking",
+    "id": 462,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "nidoking",
+    "japaneseName": "Nidokingニドキング",
+    "pokedexNumber": 34,
+    "abilities": ["Poison Point", "Rivalry", "Sheer Force"],
+    "baseAttack": 102,
+    "captureRate": 45,
+    "classification": "Drill Pokémon",
+    "baseDefense": 77,
+    "baseHeight": 1.4,
+    "baseHp": 81,
+    "baseSpAttack": 85,
+    "baseSpDefense": 75,
+    "baseSpeed": 85,
+    "primaryType": "poison",
+    "secondaryType": "ground",
+    "baseWeight": 62,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Nidoqueen",
+    "id": 463,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "nidoqueen",
+    "japaneseName": "Nidoqueenニドクイン",
+    "pokedexNumber": 31,
+    "abilities": ["Poison Point", "Rivalry", "Sheer Force"],
+    "baseAttack": 92,
+    "captureRate": 45,
+    "classification": "Drill Pokémon",
+    "baseDefense": 87,
+    "baseHeight": 1.3,
+    "baseHp": 90,
+    "baseSpAttack": 75,
+    "baseSpDefense": 85,
+    "baseSpeed": 76,
+    "primaryType": "poison",
+    "secondaryType": "ground",
+    "baseWeight": 60,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Nidoran♀",
+    "id": 464,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "nidoran-f",
+    "japaneseName": "Nidoran?ニドラン♀",
+    "pokedexNumber": 29,
+    "abilities": ["Poison Point", "Rivalry", "Hustle"],
+    "baseAttack": 47,
+    "captureRate": 235,
+    "classification": "Poison Pin Pokémon",
+    "baseDefense": 52,
+    "baseHeight": 0.4,
+    "baseHp": 55,
+    "baseSpAttack": 40,
+    "baseSpDefense": 40,
+    "baseSpeed": 41,
+    "primaryType": "poison",
+    "secondaryType": "",
+    "baseWeight": 7,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Nidoran♂",
+    "id": 465,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "nidoran-m",
+    "japaneseName": "Nidoran?ニドラン♂",
+    "pokedexNumber": 32,
+    "abilities": ["Poison Point", "Rivalry", "Hustle"],
+    "baseAttack": 57,
+    "captureRate": 235,
+    "classification": "Poison Pin Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.5,
+    "baseHp": 46,
+    "baseSpAttack": 40,
+    "baseSpDefense": 40,
+    "baseSpeed": 50,
+    "primaryType": "poison",
+    "secondaryType": "",
+    "baseWeight": 9,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Nidorina",
+    "id": 466,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "nidorina",
+    "japaneseName": "Nidorinaニドリーナ",
+    "pokedexNumber": 30,
+    "abilities": ["Poison Point", "Rivalry", "Hustle"],
+    "baseAttack": 62,
+    "captureRate": 120,
+    "classification": "Poison Pin Pokémon",
+    "baseDefense": 67,
+    "baseHeight": 0.8,
+    "baseHp": 70,
+    "baseSpAttack": 55,
+    "baseSpDefense": 55,
+    "baseSpeed": 56,
+    "primaryType": "poison",
+    "secondaryType": "",
+    "baseWeight": 20,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Nidorino",
+    "id": 467,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "nidorino",
+    "japaneseName": "Nidorinoニドリーノ",
+    "pokedexNumber": 33,
+    "abilities": ["Poison Point", "Rivalry", "Hustle"],
+    "baseAttack": 72,
+    "captureRate": 120,
+    "classification": "Poison Pin Pokémon",
+    "baseDefense": 57,
+    "baseHeight": 0.9,
+    "baseHp": 61,
+    "baseSpAttack": 55,
+    "baseSpDefense": 55,
+    "baseSpeed": 65,
+    "primaryType": "poison",
+    "secondaryType": "",
+    "baseWeight": 19.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Nihilego",
+    "id": 468,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "nihilego",
+    "japaneseName": "Uturoidウツロイド",
+    "pokedexNumber": 793,
+    "abilities": ["Beast Boost"],
+    "baseAttack": 53,
+    "captureRate": 45,
+    "classification": "Parasite Pokémon",
+    "baseDefense": 47,
+    "baseHeight": 1.2,
+    "baseHp": 109,
+    "baseSpAttack": 127,
+    "baseSpDefense": 131,
+    "baseSpeed": 103,
+    "primaryType": "rock",
+    "secondaryType": "poison",
+    "baseWeight": 55.5,
+    "generation": 7,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Nincada",
+    "id": 469,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "nincada",
+    "japaneseName": "Tutininツチニン",
+    "pokedexNumber": 290,
+    "abilities": ["Compoundeyes", "Run Away"],
+    "baseAttack": 45,
+    "captureRate": 255,
+    "classification": "Trainee Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 0.5,
+    "baseHp": 31,
+    "baseSpAttack": 30,
+    "baseSpDefense": 30,
+    "baseSpeed": 40,
+    "primaryType": "bug",
+    "secondaryType": "ground",
+    "baseWeight": 5.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ninetales",
+    "id": 470,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ninetales",
+    "japaneseName": "Kyukonキュウコン",
+    "pokedexNumber": 38,
+    "abilities": ["Flash Fire", "Drought", "Snow Cloak", "Snow Warning"],
+    "baseAttack": 67,
+    "captureRate": 75,
+    "classification": "Fox Pokémon",
+    "baseDefense": 75,
+    "baseHeight": "",
+    "baseHp": 73,
+    "baseSpAttack": 81,
+    "baseSpDefense": 100,
+    "baseSpeed": 109,
+    "primaryType": "fire",
+    "secondaryType": "ice",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ninjask",
+    "id": 471,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ninjask",
+    "japaneseName": "Tekkaninテッカニン",
+    "pokedexNumber": 291,
+    "abilities": ["Speed Boost", "Infiltrator"],
+    "baseAttack": 90,
+    "captureRate": 120,
+    "classification": "Ninja Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.8,
+    "baseHp": 61,
+    "baseSpAttack": 50,
+    "baseSpDefense": 50,
+    "baseSpeed": 160,
+    "primaryType": "bug",
+    "secondaryType": "flying",
+    "baseWeight": 12,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Noctowl",
+    "id": 472,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "noctowl",
+    "japaneseName": "Yorunozukuヨルノズク",
+    "pokedexNumber": 164,
+    "abilities": ["Insomnia", "Keen Eye", "Tinted Lens"],
+    "baseAttack": 50,
+    "captureRate": 90,
+    "classification": "Owl Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 1.6,
+    "baseHp": 100,
+    "baseSpAttack": 86,
+    "baseSpDefense": 96,
+    "baseSpeed": 70,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 40.8,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Noibat",
+    "id": 473,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "noibat",
+    "japaneseName": "Onbatオンバット",
+    "pokedexNumber": 714,
+    "abilities": ["Frisk", "Infiltrator", "Telepathy"],
+    "baseAttack": 30,
+    "captureRate": 190,
+    "classification": "Sound Wave Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.5,
+    "baseHp": 40,
+    "baseSpAttack": 45,
+    "baseSpDefense": 40,
+    "baseSpeed": 55,
+    "primaryType": "flying",
+    "secondaryType": "dragon",
+    "baseWeight": 8,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Noivern",
+    "id": 474,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "noivern",
+    "japaneseName": "Onvernオンバーン",
+    "pokedexNumber": 715,
+    "abilities": ["Frisk", "Infiltrator", "Telepathy"],
+    "baseAttack": 70,
+    "captureRate": 45,
+    "classification": "Sound Wave Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.5,
+    "baseHp": 85,
+    "baseSpAttack": 97,
+    "baseSpDefense": 80,
+    "baseSpeed": 123,
+    "primaryType": "flying",
+    "secondaryType": "dragon",
+    "baseWeight": 85,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Nosepass",
+    "id": 475,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "nosepass",
+    "japaneseName": "Nosepassノズパス",
+    "pokedexNumber": 299,
+    "abilities": ["Sturdy", "Magnet Pull", "Sand Force"],
+    "baseAttack": 45,
+    "captureRate": 255,
+    "classification": "Compass Pokémon",
+    "baseDefense": 135,
+    "baseHeight": 1,
+    "baseHp": 30,
+    "baseSpAttack": 45,
+    "baseSpDefense": 90,
+    "baseSpeed": 30,
+    "primaryType": "rock",
+    "secondaryType": "",
+    "baseWeight": 97,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Numel",
+    "id": 476,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "numel",
+    "japaneseName": "Donmelドンメル",
+    "pokedexNumber": 322,
+    "abilities": ["Oblivious", "Simple", "Own Tempo"],
+    "baseAttack": 60,
+    "captureRate": 255,
+    "classification": "Numb Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.7,
+    "baseHp": 60,
+    "baseSpAttack": 65,
+    "baseSpDefense": 45,
+    "baseSpeed": 35,
+    "primaryType": "fire",
+    "secondaryType": "ground",
+    "baseWeight": 24,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Nuzleaf",
+    "id": 477,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "nuzleaf",
+    "japaneseName": "Konohanaコノハナ",
+    "pokedexNumber": 274,
+    "abilities": ["Chlorophyll", "Early Bird", "Pickpocket"],
+    "baseAttack": 70,
+    "captureRate": 120,
+    "classification": "Wily Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 1,
+    "baseHp": 70,
+    "baseSpAttack": 60,
+    "baseSpDefense": 40,
+    "baseSpeed": 60,
+    "primaryType": "grass",
+    "secondaryType": "dark",
+    "baseWeight": 28,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Octillery",
+    "id": 478,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "octillery",
+    "japaneseName": "Okutankオクタン",
+    "pokedexNumber": 224,
+    "abilities": ["Suction Cups", "Sniper", "Moody"],
+    "baseAttack": 105,
+    "captureRate": 75,
+    "classification": "Jet Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 0.9,
+    "baseHp": 75,
+    "baseSpAttack": 105,
+    "baseSpDefense": 75,
+    "baseSpeed": 45,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 28.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Oddish",
+    "id": 479,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "oddish",
+    "japaneseName": "Nazonokusaナゾノクサ",
+    "pokedexNumber": 43,
+    "abilities": ["Chlorophyll", "Run Away"],
+    "baseAttack": 50,
+    "captureRate": 255,
+    "classification": "Weed Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.5,
+    "baseHp": 45,
+    "baseSpAttack": 75,
+    "baseSpDefense": 65,
+    "baseSpeed": 30,
+    "primaryType": "grass",
+    "secondaryType": "poison",
+    "baseWeight": 5.4,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Omanyte",
+    "id": 480,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "omanyte",
+    "japaneseName": "Omniteオムナイト",
+    "pokedexNumber": 138,
+    "abilities": ["Swift Swim", "Shell Armor", "Weak Armor"],
+    "baseAttack": 40,
+    "captureRate": 45,
+    "classification": "Spiral Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 0.4,
+    "baseHp": 35,
+    "baseSpAttack": 90,
+    "baseSpDefense": 55,
+    "baseSpeed": 35,
+    "primaryType": "rock",
+    "secondaryType": "water",
+    "baseWeight": 7.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Omastar",
+    "id": 481,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "omastar",
+    "japaneseName": "Omstarオムスター",
+    "pokedexNumber": 139,
+    "abilities": ["Swift Swim", "Shell Armor", "Weak Armor"],
+    "baseAttack": 60,
+    "captureRate": 45,
+    "classification": "Spiral Pokémon",
+    "baseDefense": 125,
+    "baseHeight": 1,
+    "baseHp": 70,
+    "baseSpAttack": 115,
+    "baseSpDefense": 70,
+    "baseSpeed": 55,
+    "primaryType": "rock",
+    "secondaryType": "water",
+    "baseWeight": 35,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Onix",
+    "id": 482,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "onix",
+    "japaneseName": "Iwarkイワーク",
+    "pokedexNumber": 95,
+    "abilities": ["Rock Head", "Sturdy", "Weak Armor"],
+    "baseAttack": 45,
+    "captureRate": 45,
+    "classification": "Rock Snake Pokémon",
+    "baseDefense": 160,
+    "baseHeight": 8.8,
+    "baseHp": 35,
+    "baseSpAttack": 30,
+    "baseSpDefense": 45,
+    "baseSpeed": 70,
+    "primaryType": "rock",
+    "secondaryType": "ground",
+    "baseWeight": 210,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Oranguru",
+    "id": 483,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "oranguru",
+    "japaneseName": "Yareyuutanヤレユータン",
+    "pokedexNumber": 765,
+    "abilities": ["Inner Focus", "Telepathy", "Symbiosis"],
+    "baseAttack": 60,
+    "captureRate": 45,
+    "classification": "Sage Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.5,
+    "baseHp": 90,
+    "baseSpAttack": 90,
+    "baseSpDefense": 110,
+    "baseSpeed": 60,
+    "primaryType": "normal",
+    "secondaryType": "psychic",
+    "baseWeight": 76,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Oricorio",
+    "id": 484,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "oricorio-baile",
+    "japaneseName": "Odoridori (pachipachi Style)オドリドリ",
+    "pokedexNumber": 741,
+    "abilities": ["Dancer"],
+    "baseAttack": 70,
+    "captureRate": 45,
+    "classification": "Dancing Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.6,
+    "baseHp": 75,
+    "baseSpAttack": 98,
+    "baseSpDefense": 70,
+    "baseSpeed": 93,
+    "primaryType": "fire",
+    "secondaryType": "flying",
+    "baseWeight": 3.4,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Oshawott",
+    "id": 485,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "oshawott",
+    "japaneseName": "Mijumaruミジュマル",
+    "pokedexNumber": 501,
+    "abilities": ["Torrent", "Shell Armor"],
+    "baseAttack": 55,
+    "captureRate": 45,
+    "classification": "Sea Otter Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.5,
+    "baseHp": 55,
+    "baseSpAttack": 63,
+    "baseSpDefense": 45,
+    "baseSpeed": 45,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 5.9,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pachirisu",
+    "id": 486,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pachirisu",
+    "japaneseName": "Pachirisuパチリス",
+    "pokedexNumber": 417,
+    "abilities": ["Run Away", "Pickup", "Volt Absorb"],
+    "baseAttack": 45,
+    "captureRate": 200,
+    "classification": "EleSquirrel Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.4,
+    "baseHp": 60,
+    "baseSpAttack": 45,
+    "baseSpDefense": 90,
+    "baseSpeed": 95,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 3.9,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Palkia",
+    "id": 487,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "palkia",
+    "japaneseName": "Palkiaパルキア",
+    "pokedexNumber": 484,
+    "abilities": ["Pressure", "Telepathy"],
+    "baseAttack": 120,
+    "captureRate": 3,
+    "classification": "Spatial Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 4.2,
+    "baseHp": 90,
+    "baseSpAttack": 150,
+    "baseSpDefense": 120,
+    "baseSpeed": 100,
+    "primaryType": "water",
+    "secondaryType": "dragon",
+    "baseWeight": 336,
+    "generation": 4,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Palossand",
+    "id": 488,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "palossand",
+    "japaneseName": "Sirodethnaシロデスナ",
+    "pokedexNumber": 770,
+    "abilities": ["Water Compaction", "Sand Veil"],
+    "baseAttack": 75,
+    "captureRate": 60,
+    "classification": "Sand Castle Pokémon",
+    "baseDefense": 110,
+    "baseHeight": 1.3,
+    "baseHp": 85,
+    "baseSpAttack": 100,
+    "baseSpDefense": 75,
+    "baseSpeed": 35,
+    "primaryType": "ghost",
+    "secondaryType": "ground",
+    "baseWeight": 250,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Palpitoad",
+    "id": 489,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "palpitoad",
+    "japaneseName": "Gamagaruガマガル",
+    "pokedexNumber": 536,
+    "abilities": ["Swift Swim", "Hydration", "Water Absorb"],
+    "baseAttack": 65,
+    "captureRate": 120,
+    "classification": "Vibration Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.8,
+    "baseHp": 75,
+    "baseSpAttack": 65,
+    "baseSpDefense": 55,
+    "baseSpeed": 69,
+    "primaryType": "water",
+    "secondaryType": "ground",
+    "baseWeight": 17,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pancham",
+    "id": 490,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pancham",
+    "japaneseName": "Yanchamヤンチャム",
+    "pokedexNumber": 674,
+    "abilities": ["Iron Fist", "Mold Breaker", "Scrappy"],
+    "baseAttack": 82,
+    "captureRate": 220,
+    "classification": "Playful Pokémon",
+    "baseDefense": 62,
+    "baseHeight": 0.6,
+    "baseHp": 67,
+    "baseSpAttack": 46,
+    "baseSpDefense": 48,
+    "baseSpeed": 43,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 8,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pangoro",
+    "id": 491,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pangoro",
+    "japaneseName": "Gorondaゴロンダ",
+    "pokedexNumber": 675,
+    "abilities": ["Iron Fist", "Mold Breaker", "Scrappy"],
+    "baseAttack": 124,
+    "captureRate": 65,
+    "classification": "Daunting Pokémon",
+    "baseDefense": 78,
+    "baseHeight": 2.1,
+    "baseHp": 95,
+    "baseSpAttack": 69,
+    "baseSpDefense": 71,
+    "baseSpeed": 58,
+    "primaryType": "fighting",
+    "secondaryType": "dark",
+    "baseWeight": 136,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Panpour",
+    "id": 492,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "panpour",
+    "japaneseName": "Hiyappuヒヤップ",
+    "pokedexNumber": 515,
+    "abilities": ["Gluttony", "Torrent"],
+    "baseAttack": 53,
+    "captureRate": 190,
+    "classification": "Spray Pokémon",
+    "baseDefense": 48,
+    "baseHeight": 0.6,
+    "baseHp": 50,
+    "baseSpAttack": 53,
+    "baseSpDefense": 48,
+    "baseSpeed": 64,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 13.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pansage",
+    "id": 493,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pansage",
+    "japaneseName": "Yanappuヤナップ",
+    "pokedexNumber": 511,
+    "abilities": ["Gluttony", "Overgrow"],
+    "baseAttack": 53,
+    "captureRate": 190,
+    "classification": "Grass Monkey Pokémon",
+    "baseDefense": 48,
+    "baseHeight": 0.6,
+    "baseHp": 50,
+    "baseSpAttack": 53,
+    "baseSpDefense": 48,
+    "baseSpeed": 64,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 10.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pansear",
+    "id": 494,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pansear",
+    "japaneseName": "Baoppuバオップ",
+    "pokedexNumber": 513,
+    "abilities": ["Gluttony", "Blaze"],
+    "baseAttack": 53,
+    "captureRate": 190,
+    "classification": "High Temp Pokémon",
+    "baseDefense": 48,
+    "baseHeight": 0.6,
+    "baseHp": 50,
+    "baseSpAttack": 53,
+    "baseSpDefense": 48,
+    "baseSpeed": 64,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 11,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Paras",
+    "id": 495,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "paras",
+    "japaneseName": "Parasパラス",
+    "pokedexNumber": 46,
+    "abilities": ["Effect Spore", "Dry Skin", "Damp"],
+    "baseAttack": 70,
+    "captureRate": 190,
+    "classification": "Mushroom Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.3,
+    "baseHp": 35,
+    "baseSpAttack": 45,
+    "baseSpDefense": 55,
+    "baseSpeed": 25,
+    "primaryType": "bug",
+    "secondaryType": "grass",
+    "baseWeight": 5.4,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Parasect",
+    "id": 496,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "parasect",
+    "japaneseName": "Parasectパラセクト",
+    "pokedexNumber": 47,
+    "abilities": ["Effect Spore", "Dry Skin", "Damp"],
+    "baseAttack": 95,
+    "captureRate": 75,
+    "classification": "Mushroom Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1,
+    "baseHp": 60,
+    "baseSpAttack": 60,
+    "baseSpDefense": 80,
+    "baseSpeed": 30,
+    "primaryType": "bug",
+    "secondaryType": "grass",
+    "baseWeight": 29.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Passimian",
+    "id": 497,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "passimian",
+    "japaneseName": "Nagetukesaruナゲツケサル",
+    "pokedexNumber": 766,
+    "abilities": ["Receiver", "Defiant"],
+    "baseAttack": 120,
+    "captureRate": 45,
+    "classification": "Teamwork Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 2,
+    "baseHp": 100,
+    "baseSpAttack": 40,
+    "baseSpDefense": 60,
+    "baseSpeed": 80,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 82.8,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Patrat",
+    "id": 498,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "patrat",
+    "japaneseName": "Minezumiミネズミ",
+    "pokedexNumber": 504,
+    "abilities": ["Run Away", "Keen Eye", "Analytic"],
+    "baseAttack": 55,
+    "captureRate": 255,
+    "classification": "Scout Pokémon",
+    "baseDefense": 39,
+    "baseHeight": 0.5,
+    "baseHp": 45,
+    "baseSpAttack": 35,
+    "baseSpDefense": 39,
+    "baseSpeed": 42,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 11.6,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pawniard",
+    "id": 499,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pawniard",
+    "japaneseName": "Komatanaコマタナ",
+    "pokedexNumber": 624,
+    "abilities": ["Defiant", "Inner Focus", "Pressure"],
+    "baseAttack": 85,
+    "captureRate": 120,
+    "classification": "Sharp Blade Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.5,
+    "baseHp": 45,
+    "baseSpAttack": 40,
+    "baseSpDefense": 40,
+    "baseSpeed": 60,
+    "primaryType": "dark",
+    "secondaryType": "steel",
+    "baseWeight": 10.2,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pelipper",
+    "id": 500,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pelipper",
+    "japaneseName": "Pelipperペリッパー",
+    "pokedexNumber": 279,
+    "abilities": ["Keen Eye", "Drizzle", "Rain Dish"],
+    "baseAttack": 50,
+    "captureRate": 45,
+    "classification": "Water Bird Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 1.2,
+    "baseHp": 60,
+    "baseSpAttack": 95,
+    "baseSpDefense": 70,
+    "baseSpeed": 65,
+    "primaryType": "water",
+    "secondaryType": "flying",
+    "baseWeight": 28,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Persian",
+    "id": 501,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "persian",
+    "japaneseName": "Persianペルシアン",
+    "pokedexNumber": 53,
+    "abilities": ["Limber", "Technician", "Unnerve", "Fur Coat", "Technician", "Rattled"],
+    "baseAttack": 60,
+    "captureRate": 90,
+    "classification": "Classy Cat Pokémon",
+    "baseDefense": 60,
+    "baseHeight": "",
+    "baseHp": 65,
+    "baseSpAttack": 75,
+    "baseSpDefense": 65,
+    "baseSpeed": 115,
+    "primaryType": "normal",
+    "secondaryType": "dark",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Petilil",
+    "id": 502,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "petilil",
+    "japaneseName": "Churineチュリネ",
+    "pokedexNumber": 548,
+    "abilities": ["Chlorophyll", "Own Tempo", "Leaf Guard"],
+    "baseAttack": 35,
+    "captureRate": 190,
+    "classification": "Bulb Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.5,
+    "baseHp": 45,
+    "baseSpAttack": 70,
+    "baseSpDefense": 50,
+    "baseSpeed": 30,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 6.6,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Phanpy",
+    "id": 503,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "phanpy",
+    "japaneseName": "Gomazouゴマゾウ",
+    "pokedexNumber": 231,
+    "abilities": ["Pickup", "Sand Veil"],
+    "baseAttack": 60,
+    "captureRate": 120,
+    "classification": "Long Nose Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.5,
+    "baseHp": 90,
+    "baseSpAttack": 40,
+    "baseSpDefense": 40,
+    "baseSpeed": 40,
+    "primaryType": "ground",
+    "secondaryType": "",
+    "baseWeight": 33.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Phantump",
+    "id": 504,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "phantump",
+    "japaneseName": "Bokureiボクレー",
+    "pokedexNumber": 708,
+    "abilities": ["Natural Cure", "Frisk", "Harvest"],
+    "baseAttack": 70,
+    "captureRate": 120,
+    "classification": "Stump Pokémon",
+    "baseDefense": 48,
+    "baseHeight": 0.4,
+    "baseHp": 43,
+    "baseSpAttack": 50,
+    "baseSpDefense": 60,
+    "baseSpeed": 38,
+    "primaryType": "ghost",
+    "secondaryType": "grass",
+    "baseWeight": 7,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pheromosa",
+    "id": 505,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pheromosa",
+    "japaneseName": "Pheroacheフェローチェ",
+    "pokedexNumber": 795,
+    "abilities": ["Beast Boost"],
+    "baseAttack": 137,
+    "captureRate": 255,
+    "classification": "Lissome Pokémon",
+    "baseDefense": 37,
+    "baseHeight": 1.8,
+    "baseHp": 71,
+    "baseSpAttack": 137,
+    "baseSpDefense": 37,
+    "baseSpeed": 151,
+    "primaryType": "bug",
+    "secondaryType": "fighting",
+    "baseWeight": 25,
+    "generation": 7,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Phione",
+    "id": 506,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "phione",
+    "japaneseName": "Phioneフィオネ",
+    "pokedexNumber": 489,
+    "abilities": ["Hydration"],
+    "baseAttack": 80,
+    "captureRate": 30,
+    "classification": "Sea Drifter Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 0.4,
+    "baseHp": 80,
+    "baseSpAttack": 80,
+    "baseSpDefense": 80,
+    "baseSpeed": 80,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 3.1,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pichu",
+    "id": 507,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pichu",
+    "japaneseName": "Pichuピチュー",
+    "pokedexNumber": 172,
+    "abilities": ["Static", "Lightningrod"],
+    "baseAttack": 40,
+    "captureRate": 190,
+    "classification": "Tiny Mouse Pokémon",
+    "baseDefense": 15,
+    "baseHeight": 0.3,
+    "baseHp": 20,
+    "baseSpAttack": 35,
+    "baseSpDefense": 35,
+    "baseSpeed": 60,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 2,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pidgeot",
+    "id": 508,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pidgeot",
+    "japaneseName": "Pigeotピジョット",
+    "pokedexNumber": 18,
+    "abilities": ["Keen Eye", "Tangled Feet", "Big Pecks"],
+    "baseAttack": 80,
+    "captureRate": 45,
+    "classification": "Bird Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.5,
+    "baseHp": 83,
+    "baseSpAttack": 135,
+    "baseSpDefense": 80,
+    "baseSpeed": 121,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 39.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pidgeotto",
+    "id": 509,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pidgeotto",
+    "japaneseName": "Pigeonピジョン",
+    "pokedexNumber": 17,
+    "abilities": ["Keen Eye", "Tangled Feet", "Big Pecks"],
+    "baseAttack": 60,
+    "captureRate": 120,
+    "classification": "Bird Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 1.1,
+    "baseHp": 63,
+    "baseSpAttack": 50,
+    "baseSpDefense": 50,
+    "baseSpeed": 71,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 30,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pidgey",
+    "id": 510,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pidgey",
+    "japaneseName": "Poppoポッポ",
+    "pokedexNumber": 16,
+    "abilities": ["Keen Eye", "Tangled Feet", "Big Pecks"],
+    "baseAttack": 45,
+    "captureRate": 255,
+    "classification": "Tiny Bird Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.3,
+    "baseHp": 40,
+    "baseSpAttack": 35,
+    "baseSpDefense": 35,
+    "baseSpeed": 56,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 1.8,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pidove",
+    "id": 511,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pidove",
+    "japaneseName": "Mamepatoマメパト",
+    "pokedexNumber": 519,
+    "abilities": ["Big Pecks", "Super Luck", "Rivalry"],
+    "baseAttack": 55,
+    "captureRate": 255,
+    "classification": "Tiny Pigeon Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.3,
+    "baseHp": 50,
+    "baseSpAttack": 36,
+    "baseSpDefense": 30,
+    "baseSpeed": 43,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 2.1,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pignite",
+    "id": 512,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pignite",
+    "japaneseName": "Chaobooチャオブー",
+    "pokedexNumber": 499,
+    "abilities": ["Blaze", "Thick Fat"],
+    "baseAttack": 93,
+    "captureRate": 45,
+    "classification": "Fire Pig Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 1,
+    "baseHp": 90,
+    "baseSpAttack": 70,
+    "baseSpDefense": 55,
+    "baseSpeed": 55,
+    "primaryType": "fire",
+    "secondaryType": "fighting",
+    "baseWeight": 55.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pikachu",
+    "id": 513,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pikachu",
+    "japaneseName": "Pikachuピカチュウ",
+    "pokedexNumber": 25,
+    "abilities": ["Static", "Lightningrod"],
+    "baseAttack": 55,
+    "captureRate": 190,
+    "classification": "Mouse Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.4,
+    "baseHp": 35,
+    "baseSpAttack": 50,
+    "baseSpDefense": 50,
+    "baseSpeed": 90,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 6,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pikipek",
+    "id": 514,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pikipek",
+    "japaneseName": "Tsutsukeraツツケラ",
+    "pokedexNumber": 731,
+    "abilities": ["Keen Eye", "Skill Link", "Pickup"],
+    "baseAttack": 75,
+    "captureRate": 255,
+    "classification": "Woodpecker Pokémon",
+    "baseDefense": 30,
+    "baseHeight": 0.3,
+    "baseHp": 35,
+    "baseSpAttack": 30,
+    "baseSpDefense": 30,
+    "baseSpeed": 65,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 1.2,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Piloswine",
+    "id": 515,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "piloswine",
+    "japaneseName": "Inomooイノムー",
+    "pokedexNumber": 221,
+    "abilities": ["Oblivious", "Snow Cloak", "Thick Fat"],
+    "baseAttack": 100,
+    "captureRate": 75,
+    "classification": "Swine Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.1,
+    "baseHp": 100,
+    "baseSpAttack": 60,
+    "baseSpDefense": 60,
+    "baseSpeed": 50,
+    "primaryType": "ice",
+    "secondaryType": "ground",
+    "baseWeight": 55.8,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pineco",
+    "id": 516,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pineco",
+    "japaneseName": "Kunugidamaクヌギダマ",
+    "pokedexNumber": 204,
+    "abilities": ["Sturdy", "Overcoat"],
+    "baseAttack": 65,
+    "captureRate": 190,
+    "classification": "Bagworm Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 0.6,
+    "baseHp": 50,
+    "baseSpAttack": 35,
+    "baseSpDefense": 35,
+    "baseSpeed": 15,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 7.2,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pinsir",
+    "id": 517,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pinsir",
+    "japaneseName": "Kailiosカイロス",
+    "pokedexNumber": 127,
+    "abilities": ["Hyper Cutter", "Mold Breaker", "Moxie"],
+    "baseAttack": 155,
+    "captureRate": 45,
+    "classification": "Stagbeetle Pokémon",
+    "baseDefense": 120,
+    "baseHeight": 1.5,
+    "baseHp": 65,
+    "baseSpAttack": 65,
+    "baseSpDefense": 90,
+    "baseSpeed": 105,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 55,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Piplup",
+    "id": 518,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "piplup",
+    "japaneseName": "Pochamaポッチャマ",
+    "pokedexNumber": 393,
+    "abilities": ["Torrent", "Defiant"],
+    "baseAttack": 51,
+    "captureRate": 45,
+    "classification": "Penguin Pokémon",
+    "baseDefense": 53,
+    "baseHeight": 0.4,
+    "baseHp": 53,
+    "baseSpAttack": 61,
+    "baseSpDefense": 56,
+    "baseSpeed": 40,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 5.2,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Plusle",
+    "id": 519,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "plusle",
+    "japaneseName": "Prasleプラスル",
+    "pokedexNumber": 311,
+    "abilities": ["Plus", "Lightningrod"],
+    "baseAttack": 50,
+    "captureRate": 200,
+    "classification": "Cheering Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.4,
+    "baseHp": 60,
+    "baseSpAttack": 85,
+    "baseSpDefense": 75,
+    "baseSpeed": 95,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 4.2,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Politoed",
+    "id": 520,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "politoed",
+    "japaneseName": "Nyorotonoニョロトノ",
+    "pokedexNumber": 186,
+    "abilities": ["Water Absorb", "Damp", "Drizzle"],
+    "baseAttack": 75,
+    "captureRate": 45,
+    "classification": "Frog Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 1.1,
+    "baseHp": 90,
+    "baseSpAttack": 90,
+    "baseSpDefense": 100,
+    "baseSpeed": 70,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 33.9,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Poliwag",
+    "id": 521,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "poliwag",
+    "japaneseName": "Nyoromoニョロモ",
+    "pokedexNumber": 60,
+    "abilities": ["Water Absorb", "Damp", "Swift Swim"],
+    "baseAttack": 50,
+    "captureRate": 255,
+    "classification": "Tadpole Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.6,
+    "baseHp": 40,
+    "baseSpAttack": 40,
+    "baseSpDefense": 40,
+    "baseSpeed": 90,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 12.4,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Poliwhirl",
+    "id": 522,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "poliwhirl",
+    "japaneseName": "Nyorozoニョロゾ",
+    "pokedexNumber": 61,
+    "abilities": ["Water Absorb", "Damp", "Swift Swim"],
+    "baseAttack": 65,
+    "captureRate": 120,
+    "classification": "Tadpole Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1,
+    "baseHp": 65,
+    "baseSpAttack": 50,
+    "baseSpDefense": 50,
+    "baseSpeed": 90,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 20,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Poliwrath",
+    "id": 523,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "poliwrath",
+    "japaneseName": "Nyorobonニョロボン",
+    "pokedexNumber": 62,
+    "abilities": ["Water Absorb", "Damp", "Swift Swim"],
+    "baseAttack": 95,
+    "captureRate": 45,
+    "classification": "Tadpole Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 1.3,
+    "baseHp": 90,
+    "baseSpAttack": 70,
+    "baseSpDefense": 90,
+    "baseSpeed": 70,
+    "primaryType": "water",
+    "secondaryType": "fighting",
+    "baseWeight": 54,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ponyta",
+    "id": 524,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ponyta",
+    "japaneseName": "Ponytaポニータ",
+    "pokedexNumber": 77,
+    "abilities": ["Run Away", "Flash Fire", "Flame Body"],
+    "baseAttack": 85,
+    "captureRate": 190,
+    "classification": "Fire Horse Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 1,
+    "baseHp": 50,
+    "baseSpAttack": 65,
+    "baseSpDefense": 65,
+    "baseSpeed": 90,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 30,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Poochyena",
+    "id": 525,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "poochyena",
+    "japaneseName": "Pochienaポチエナ",
+    "pokedexNumber": 261,
+    "abilities": ["Run Away", "Quick Feet", "Rattled"],
+    "baseAttack": 55,
+    "captureRate": 255,
+    "classification": "Bite Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.5,
+    "baseHp": 35,
+    "baseSpAttack": 30,
+    "baseSpDefense": 30,
+    "baseSpeed": 35,
+    "primaryType": "dark",
+    "secondaryType": "",
+    "baseWeight": 13.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Popplio",
+    "id": 526,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "popplio",
+    "japaneseName": "Ashimariアシマリ",
+    "pokedexNumber": 728,
+    "abilities": ["Torrent", "Liquid Voice"],
+    "baseAttack": 54,
+    "captureRate": 45,
+    "classification": "Sea Lion Pokémon",
+    "baseDefense": 54,
+    "baseHeight": 0.4,
+    "baseHp": 50,
+    "baseSpAttack": 66,
+    "baseSpDefense": 56,
+    "baseSpeed": 40,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 7.5,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Porygon",
+    "id": 527,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "porygon",
+    "japaneseName": "Porygonポリゴン",
+    "pokedexNumber": 137,
+    "abilities": ["Trace", "Download", "Analytic"],
+    "baseAttack": 60,
+    "captureRate": 45,
+    "classification": "Virtual Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.8,
+    "baseHp": 65,
+    "baseSpAttack": 85,
+    "baseSpDefense": 75,
+    "baseSpeed": 40,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 36.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Porygon-Z",
+    "id": 528,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "porygon-z",
+    "japaneseName": "Porygon-zポリゴンZ",
+    "pokedexNumber": 474,
+    "abilities": ["Adaptability", "Download", "Analytic"],
+    "baseAttack": 80,
+    "captureRate": 30,
+    "classification": "Virtual Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.9,
+    "baseHp": 85,
+    "baseSpAttack": 135,
+    "baseSpDefense": 75,
+    "baseSpeed": 90,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 34,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Porygon2",
+    "id": 529,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "porygon2",
+    "japaneseName": "Porygon2ポリゴン2",
+    "pokedexNumber": 233,
+    "abilities": ["Trace", "Download", "Analytic"],
+    "baseAttack": 80,
+    "captureRate": 45,
+    "classification": "Virtual Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 0.6,
+    "baseHp": 85,
+    "baseSpAttack": 105,
+    "baseSpDefense": 95,
+    "baseSpeed": 60,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 32.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Primarina",
+    "id": 530,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "primarina",
+    "japaneseName": "Ashireneアシレーヌ",
+    "pokedexNumber": 730,
+    "abilities": ["Torrent", "Liquid Voice"],
+    "baseAttack": 74,
+    "captureRate": 45,
+    "classification": "Soloist Pokémon",
+    "baseDefense": 74,
+    "baseHeight": 1.8,
+    "baseHp": 80,
+    "baseSpAttack": 126,
+    "baseSpDefense": 116,
+    "baseSpeed": 60,
+    "primaryType": "water",
+    "secondaryType": "fairy",
+    "baseWeight": 44,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Primeape",
+    "id": 531,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "primeape",
+    "japaneseName": "Okorizaruオコリザル",
+    "pokedexNumber": 57,
+    "abilities": ["Vital Spirit", "Anger Point", "Defiant"],
+    "baseAttack": 105,
+    "captureRate": 75,
+    "classification": "Pig Monkey Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 1,
+    "baseHp": 65,
+    "baseSpAttack": 60,
+    "baseSpDefense": 70,
+    "baseSpeed": 95,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 32,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Prinplup",
+    "id": 532,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "prinplup",
+    "japaneseName": "Pottaishiポッタイシ",
+    "pokedexNumber": 394,
+    "abilities": ["Torrent", "Defiant"],
+    "baseAttack": 66,
+    "captureRate": 45,
+    "classification": "Penguin Pokémon",
+    "baseDefense": 68,
+    "baseHeight": 0.8,
+    "baseHp": 64,
+    "baseSpAttack": 81,
+    "baseSpDefense": 76,
+    "baseSpeed": 50,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 23,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Probopass",
+    "id": 533,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "probopass",
+    "japaneseName": "Dainoseダイノーズ",
+    "pokedexNumber": 476,
+    "abilities": ["Sturdy", "Magnet Pull", "Sand Force"],
+    "baseAttack": 55,
+    "captureRate": 60,
+    "classification": "Compass Pokémon",
+    "baseDefense": 145,
+    "baseHeight": 1.4,
+    "baseHp": 60,
+    "baseSpAttack": 75,
+    "baseSpDefense": 150,
+    "baseSpeed": 40,
+    "primaryType": "rock",
+    "secondaryType": "steel",
+    "baseWeight": 340,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Psyduck",
+    "id": 534,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "psyduck",
+    "japaneseName": "Koduckコダック",
+    "pokedexNumber": 54,
+    "abilities": ["Damp", "Cloud Nine", "Swift Swim"],
+    "baseAttack": 52,
+    "captureRate": 190,
+    "classification": "Duck Pokémon",
+    "baseDefense": 48,
+    "baseHeight": 0.8,
+    "baseHp": 50,
+    "baseSpAttack": 65,
+    "baseSpDefense": 50,
+    "baseSpeed": 55,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 19.6,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pumpkaboo",
+    "id": 535,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pumpkaboo-average",
+    "japaneseName": "Bakecchaバケッチャ",
+    "pokedexNumber": 710,
+    "abilities": ["Pickup", "Frisk", "Insomnia"],
+    "baseAttack": 66,
+    "captureRate": 120,
+    "classification": "Pumpkin Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.8,
+    "baseHp": 59,
+    "baseSpAttack": 44,
+    "baseSpDefense": 55,
+    "baseSpeed": 41,
+    "primaryType": "ghost",
+    "secondaryType": "grass",
+    "baseWeight": 15,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pupitar",
+    "id": 536,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pupitar",
+    "japaneseName": "Sanagirasサナギラス",
+    "pokedexNumber": 247,
+    "abilities": ["Shed Skin"],
+    "baseAttack": 84,
+    "captureRate": 45,
+    "classification": "Hard Shell Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.2,
+    "baseHp": 70,
+    "baseSpAttack": 65,
+    "baseSpDefense": 70,
+    "baseSpeed": 51,
+    "primaryType": "rock",
+    "secondaryType": "ground",
+    "baseWeight": 152,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Purrloin",
+    "id": 537,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "purrloin",
+    "japaneseName": "Choronekoチョロネコ",
+    "pokedexNumber": 509,
+    "abilities": ["Limber", "Unburden", "Prankster"],
+    "baseAttack": 50,
+    "captureRate": 255,
+    "classification": "Devious Pokémon",
+    "baseDefense": 37,
+    "baseHeight": 0.4,
+    "baseHp": 41,
+    "baseSpAttack": 50,
+    "baseSpDefense": 37,
+    "baseSpeed": 66,
+    "primaryType": "dark",
+    "secondaryType": "",
+    "baseWeight": 10.1,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Purugly",
+    "id": 538,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "purugly",
+    "japaneseName": "Bunyattoブニャット",
+    "pokedexNumber": 432,
+    "abilities": ["Thick Fat", "Own Tempo", "Defiant"],
+    "baseAttack": 82,
+    "captureRate": 75,
+    "classification": "Tiger Cat Pokémon",
+    "baseDefense": 64,
+    "baseHeight": 1,
+    "baseHp": 71,
+    "baseSpAttack": 64,
+    "baseSpDefense": 59,
+    "baseSpeed": 112,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 43.8,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pyroar",
+    "id": 539,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pyroar",
+    "japaneseName": "Kaenjishiカエンジシ",
+    "pokedexNumber": 668,
+    "abilities": ["Rivalry", "Unnerve", "Moxie"],
+    "baseAttack": 68,
+    "captureRate": 65,
+    "classification": "Royal Pokémon",
+    "baseDefense": 72,
+    "baseHeight": 1.5,
+    "baseHp": 86,
+    "baseSpAttack": 109,
+    "baseSpDefense": 66,
+    "baseSpeed": 106,
+    "primaryType": "fire",
+    "secondaryType": "normal",
+    "baseWeight": 81.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Pyukumuku",
+    "id": 540,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "pyukumuku",
+    "japaneseName": "Namakobushiナマコブシ",
+    "pokedexNumber": 771,
+    "abilities": ["Innards Out", "Unaware"],
+    "baseAttack": 60,
+    "captureRate": 60,
+    "classification": "Sea Cucumber Pokémon",
+    "baseDefense": 130,
+    "baseHeight": 0.3,
+    "baseHp": 55,
+    "baseSpAttack": 30,
+    "baseSpDefense": 130,
+    "baseSpeed": 5,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 1.2,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Quagsire",
+    "id": 541,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "quagsire",
+    "japaneseName": "Nuohヌオー",
+    "pokedexNumber": 195,
+    "abilities": ["Damp", "Water Absorb", "Unaware"],
+    "baseAttack": 85,
+    "captureRate": 90,
+    "classification": "Water Fish Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 1.4,
+    "baseHp": 95,
+    "baseSpAttack": 65,
+    "baseSpDefense": 65,
+    "baseSpeed": 35,
+    "primaryType": "water",
+    "secondaryType": "ground",
+    "baseWeight": 75,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Quilava",
+    "id": 542,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "quilava",
+    "japaneseName": "Magmarashiマグマラシ",
+    "pokedexNumber": 156,
+    "abilities": ["Blaze", "Flash Fire"],
+    "baseAttack": 64,
+    "captureRate": 45,
+    "classification": "Volcano Pokémon",
+    "baseDefense": 58,
+    "baseHeight": 0.9,
+    "baseHp": 58,
+    "baseSpAttack": 80,
+    "baseSpDefense": 65,
+    "baseSpeed": 80,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 19,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Quilladin",
+    "id": 543,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "quilladin",
+    "japaneseName": "Hariborgハリボーグ",
+    "pokedexNumber": 651,
+    "abilities": ["Overgrow", "Bulletproof"],
+    "baseAttack": 78,
+    "captureRate": 45,
+    "classification": "Spiny Armor Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 0.7,
+    "baseHp": 61,
+    "baseSpAttack": 56,
+    "baseSpDefense": 58,
+    "baseSpeed": 57,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 29,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Qwilfish",
+    "id": 544,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "qwilfish",
+    "japaneseName": "Harysenハリーセン",
+    "pokedexNumber": 211,
+    "abilities": ["Poison Point", "Swift Swim", "Intimidate"],
+    "baseAttack": 95,
+    "captureRate": 45,
+    "classification": "Balloon Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 0.5,
+    "baseHp": 65,
+    "baseSpAttack": 55,
+    "baseSpDefense": 55,
+    "baseSpeed": 85,
+    "primaryType": "water",
+    "secondaryType": "poison",
+    "baseWeight": 3.9,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Raichu",
+    "id": 545,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "raichu",
+    "japaneseName": "Raichuライチュウ",
+    "pokedexNumber": 26,
+    "abilities": ["Static", "Lightningrod", "Surge Surfer"],
+    "baseAttack": 85,
+    "captureRate": 75,
+    "classification": "Mouse Pokémon",
+    "baseDefense": 50,
+    "baseHeight": "",
+    "baseHp": 60,
+    "baseSpAttack": 95,
+    "baseSpDefense": 85,
+    "baseSpeed": 110,
+    "primaryType": "electric",
+    "secondaryType": "electric",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Raikou",
+    "id": 546,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "raikou",
+    "japaneseName": "Raikouライコウ",
+    "pokedexNumber": 243,
+    "abilities": ["Pressure", "Inner Focus"],
+    "baseAttack": 85,
+    "captureRate": 3,
+    "classification": "Thunder Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 1.9,
+    "baseHp": 90,
+    "baseSpAttack": 115,
+    "baseSpDefense": 100,
+    "baseSpeed": 115,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 178,
+    "generation": 2,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Ralts",
+    "id": 547,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ralts",
+    "japaneseName": "Raltsラルトス",
+    "pokedexNumber": 280,
+    "abilities": ["Synchronize", "Trace", "Telepathy"],
+    "baseAttack": 25,
+    "captureRate": 235,
+    "classification": "Feeling Pokémon",
+    "baseDefense": 25,
+    "baseHeight": 0.4,
+    "baseHp": 28,
+    "baseSpAttack": 45,
+    "baseSpDefense": 35,
+    "baseSpeed": 40,
+    "primaryType": "psychic",
+    "secondaryType": "fairy",
+    "baseWeight": 6.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Rampardos",
+    "id": 548,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "rampardos",
+    "japaneseName": "Rampaldラムパルド",
+    "pokedexNumber": 409,
+    "abilities": ["Mold Breaker", "Sheer Force"],
+    "baseAttack": 165,
+    "captureRate": 45,
+    "classification": "Head Butt Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 1.6,
+    "baseHp": 97,
+    "baseSpAttack": 65,
+    "baseSpDefense": 50,
+    "baseSpeed": 58,
+    "primaryType": "rock",
+    "secondaryType": "",
+    "baseWeight": 102.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Rapidash",
+    "id": 549,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "rapidash",
+    "japaneseName": "Gallopギャロップ",
+    "pokedexNumber": 78,
+    "abilities": ["Run Away", "Flash Fire", "Flame Body"],
+    "baseAttack": 100,
+    "captureRate": 60,
+    "classification": "Fire Horse Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.7,
+    "baseHp": 65,
+    "baseSpAttack": 80,
+    "baseSpDefense": 80,
+    "baseSpeed": 105,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 95,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Raticate",
+    "id": 550,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "raticate",
+    "japaneseName": "Rattaラッタ",
+    "pokedexNumber": 20,
+    "abilities": ["Run Away", "Guts", "Hustle", "Gluttony", "Hustle", "Thick Fat"],
+    "baseAttack": 71,
+    "captureRate": 127,
+    "classification": "Mouse Pokémon",
+    "baseDefense": 70,
+    "baseHeight": "",
+    "baseHp": 75,
+    "baseSpAttack": 40,
+    "baseSpDefense": 80,
+    "baseSpeed": 77,
+    "primaryType": "normal",
+    "secondaryType": "dark",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Rattata",
+    "id": 551,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "rattata",
+    "japaneseName": "Korattaコラッタ",
+    "pokedexNumber": 19,
+    "abilities": ["Run Away", "Guts", "Hustle", "Gluttony", "Hustle", "Thick Fat"],
+    "baseAttack": 56,
+    "captureRate": 255,
+    "classification": "Mouse Pokémon",
+    "baseDefense": 35,
+    "baseHeight": "",
+    "baseHp": 30,
+    "baseSpAttack": 25,
+    "baseSpDefense": 35,
+    "baseSpeed": 72,
+    "primaryType": "normal",
+    "secondaryType": "dark",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Rayquaza",
+    "id": 552,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "rayquaza",
+    "japaneseName": "Rayquazaレックウザ",
+    "pokedexNumber": 384,
+    "abilities": ["Air Lock"],
+    "baseAttack": 180,
+    "captureRate": 45,
+    "classification": "Sky High Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 7,
+    "baseHp": 105,
+    "baseSpAttack": 180,
+    "baseSpDefense": 100,
+    "baseSpeed": 115,
+    "primaryType": "dragon",
+    "secondaryType": "flying",
+    "baseWeight": 206.5,
+    "generation": 3,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Regice",
+    "id": 553,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "regice",
+    "japaneseName": "Regiceレジアイス",
+    "pokedexNumber": 378,
+    "abilities": ["Clear Body", "Ice Body"],
+    "baseAttack": 50,
+    "captureRate": 3,
+    "classification": "Iceberg Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 1.8,
+    "baseHp": 80,
+    "baseSpAttack": 100,
+    "baseSpDefense": 200,
+    "baseSpeed": 50,
+    "primaryType": "ice",
+    "secondaryType": "",
+    "baseWeight": 175,
+    "generation": 3,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Regigigas",
+    "id": 554,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "regigigas",
+    "japaneseName": "Regigigasレジギガス",
+    "pokedexNumber": 486,
+    "abilities": ["Slow Start"],
+    "baseAttack": 160,
+    "captureRate": 3,
+    "classification": "Colossal Pokémon",
+    "baseDefense": 110,
+    "baseHeight": 3.7,
+    "baseHp": 110,
+    "baseSpAttack": 80,
+    "baseSpDefense": 110,
+    "baseSpeed": 100,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 420,
+    "generation": 4,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Regirock",
+    "id": 555,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "regirock",
+    "japaneseName": "Regirockレジロック",
+    "pokedexNumber": 377,
+    "abilities": ["Clear Body", "Sturdy"],
+    "baseAttack": 100,
+    "captureRate": 3,
+    "classification": "Rock Peak Pokémon",
+    "baseDefense": 200,
+    "baseHeight": 1.7,
+    "baseHp": 80,
+    "baseSpAttack": 50,
+    "baseSpDefense": 100,
+    "baseSpeed": 50,
+    "primaryType": "rock",
+    "secondaryType": "",
+    "baseWeight": 230,
+    "generation": 3,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Registeel",
+    "id": 556,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "registeel",
+    "japaneseName": "Registeelレジスチル",
+    "pokedexNumber": 379,
+    "abilities": ["Clear Body", "Light Metal"],
+    "baseAttack": 75,
+    "captureRate": 3,
+    "classification": "Iron Pokémon",
+    "baseDefense": 150,
+    "baseHeight": 1.9,
+    "baseHp": 80,
+    "baseSpAttack": 75,
+    "baseSpDefense": 150,
+    "baseSpeed": 50,
+    "primaryType": "steel",
+    "secondaryType": "",
+    "baseWeight": 205,
+    "generation": 3,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Relicanth",
+    "id": 557,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "relicanth",
+    "japaneseName": "Glanthジーランス",
+    "pokedexNumber": 369,
+    "abilities": ["Swift Swim", "Rock Head", "Sturdy"],
+    "baseAttack": 90,
+    "captureRate": 25,
+    "classification": "Longevity Pokémon",
+    "baseDefense": 130,
+    "baseHeight": 1,
+    "baseHp": 100,
+    "baseSpAttack": 45,
+    "baseSpDefense": 65,
+    "baseSpeed": 55,
+    "primaryType": "water",
+    "secondaryType": "rock",
+    "baseWeight": 23.4,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Remoraid",
+    "id": 558,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "remoraid",
+    "japaneseName": "Teppouoテッポウオ",
+    "pokedexNumber": 223,
+    "abilities": ["Hustle", "Sniper", "Moody"],
+    "baseAttack": 65,
+    "captureRate": 190,
+    "classification": "Jet Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.6,
+    "baseHp": 35,
+    "baseSpAttack": 65,
+    "baseSpDefense": 35,
+    "baseSpeed": 65,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 12,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Reshiram",
+    "id": 559,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "reshiram",
+    "japaneseName": "Reshiramレシラム",
+    "pokedexNumber": 643,
+    "abilities": ["Turboblaze"],
+    "baseAttack": 120,
+    "captureRate": 3,
+    "classification": "Vast White Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 3.2,
+    "baseHp": 100,
+    "baseSpAttack": 150,
+    "baseSpDefense": 120,
+    "baseSpeed": 90,
+    "primaryType": "dragon",
+    "secondaryType": "fire",
+    "baseWeight": 330,
+    "generation": 5,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Reuniclus",
+    "id": 560,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "reuniclus",
+    "japaneseName": "Lanculusランクルス",
+    "pokedexNumber": 579,
+    "abilities": ["Overcoat", "Magic Guard", "Regenerator"],
+    "baseAttack": 65,
+    "captureRate": 50,
+    "classification": "Multiplying Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 1,
+    "baseHp": 110,
+    "baseSpAttack": 125,
+    "baseSpDefense": 85,
+    "baseSpeed": 30,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 20.1,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Rhydon",
+    "id": 561,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "rhydon",
+    "japaneseName": "Sidonサイドン",
+    "pokedexNumber": 112,
+    "abilities": ["Lightningrod", "Rock Head", "Reckless"],
+    "baseAttack": 130,
+    "captureRate": 60,
+    "classification": "Drill Pokémon",
+    "baseDefense": 120,
+    "baseHeight": 1.9,
+    "baseHp": 105,
+    "baseSpAttack": 45,
+    "baseSpDefense": 45,
+    "baseSpeed": 40,
+    "primaryType": "ground",
+    "secondaryType": "rock",
+    "baseWeight": 120,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Rhyhorn",
+    "id": 562,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "rhyhorn",
+    "japaneseName": "Sihornサイホーン",
+    "pokedexNumber": 111,
+    "abilities": ["Lightningrod", "Rock Head", "Reckless"],
+    "baseAttack": 85,
+    "captureRate": 120,
+    "classification": "Spikes Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 1,
+    "baseHp": 80,
+    "baseSpAttack": 30,
+    "baseSpDefense": 30,
+    "baseSpeed": 25,
+    "primaryType": "ground",
+    "secondaryType": "rock",
+    "baseWeight": 115,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Rhyperior",
+    "id": 563,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "rhyperior",
+    "japaneseName": "Dosidonドサイドン",
+    "pokedexNumber": 464,
+    "abilities": ["Lightningrod", "Solid Rock", "Reckless"],
+    "baseAttack": 140,
+    "captureRate": 30,
+    "classification": "Drill Pokémon",
+    "baseDefense": 130,
+    "baseHeight": 2.4,
+    "baseHp": 115,
+    "baseSpAttack": 55,
+    "baseSpDefense": 55,
+    "baseSpeed": 40,
+    "primaryType": "ground",
+    "secondaryType": "rock",
+    "baseWeight": 282.8,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ribombee",
+    "id": 564,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ribombee",
+    "japaneseName": "Aburibbonアブリボン",
+    "pokedexNumber": 743,
+    "abilities": ["Honey Gather", "Shield Dust", "Sweet Veil"],
+    "baseAttack": 55,
+    "captureRate": 75,
+    "classification": "Bee Fly Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.2,
+    "baseHp": 60,
+    "baseSpAttack": 95,
+    "baseSpDefense": 70,
+    "baseSpeed": 124,
+    "primaryType": "bug",
+    "secondaryType": "fairy",
+    "baseWeight": 0.5,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Riolu",
+    "id": 565,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "riolu",
+    "japaneseName": "Rioluリオル",
+    "pokedexNumber": 447,
+    "abilities": ["Steadfast", "Inner Focus", "Prankster"],
+    "baseAttack": 70,
+    "captureRate": 75,
+    "classification": "Emanation Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.7,
+    "baseHp": 40,
+    "baseSpAttack": 35,
+    "baseSpDefense": 40,
+    "baseSpeed": 60,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 20.2,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Rockruff",
+    "id": 566,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "rockruff",
+    "japaneseName": "Iwankoイワンコ",
+    "pokedexNumber": 744,
+    "abilities": ["Keen Eye", "Vital Spirit", "Steadfast"],
+    "baseAttack": 65,
+    "captureRate": 190,
+    "classification": "Puppy Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.5,
+    "baseHp": 45,
+    "baseSpAttack": 30,
+    "baseSpDefense": 40,
+    "baseSpeed": 60,
+    "primaryType": "rock",
+    "secondaryType": "",
+    "baseWeight": 9.2,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Roggenrola",
+    "id": 567,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "roggenrola",
+    "japaneseName": "Dangoroダンゴロ",
+    "pokedexNumber": 524,
+    "abilities": ["Sturdy", "Weak Armor", "Sand Force"],
+    "baseAttack": 75,
+    "captureRate": 255,
+    "classification": "Mantle Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 0.4,
+    "baseHp": 55,
+    "baseSpAttack": 25,
+    "baseSpDefense": 25,
+    "baseSpeed": 15,
+    "primaryType": "rock",
+    "secondaryType": "",
+    "baseWeight": 18,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Roselia",
+    "id": 568,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "roselia",
+    "japaneseName": "Roseliaロゼリア",
+    "pokedexNumber": 315,
+    "abilities": ["Natural Cure", "Poison Point", "Leaf Guard"],
+    "baseAttack": 60,
+    "captureRate": 150,
+    "classification": "Thorn Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.3,
+    "baseHp": 50,
+    "baseSpAttack": 100,
+    "baseSpDefense": 80,
+    "baseSpeed": 65,
+    "primaryType": "grass",
+    "secondaryType": "poison",
+    "baseWeight": 2,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Roserade",
+    "id": 569,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "roserade",
+    "japaneseName": "Roseradeロズレイド",
+    "pokedexNumber": 407,
+    "abilities": ["Natural Cure", "Poison Point", "Technician"],
+    "baseAttack": 70,
+    "captureRate": 75,
+    "classification": "Bouquet Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 0.9,
+    "baseHp": 60,
+    "baseSpAttack": 125,
+    "baseSpDefense": 105,
+    "baseSpeed": 90,
+    "primaryType": "grass",
+    "secondaryType": "poison",
+    "baseWeight": 14.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Rotom",
+    "id": 570,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "rotom",
+    "japaneseName": "Rotomロトム",
+    "pokedexNumber": 479,
+    "abilities": ["Levitate"],
+    "baseAttack": 65,
+    "captureRate": 45,
+    "classification": "Plasma Pokémon",
+    "baseDefense": 107,
+    "baseHeight": 0.3,
+    "baseHp": 50,
+    "baseSpAttack": 105,
+    "baseSpDefense": 107,
+    "baseSpeed": 86,
+    "primaryType": "electric",
+    "secondaryType": "ghost",
+    "baseWeight": 0.3,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Rowlet",
+    "id": 571,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "rowlet",
+    "japaneseName": "Mokurohモクロー",
+    "pokedexNumber": 722,
+    "abilities": ["Overgrow", "Long Reach"],
+    "baseAttack": 55,
+    "captureRate": 45,
+    "classification": "Grass Quill Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.3,
+    "baseHp": 68,
+    "baseSpAttack": 50,
+    "baseSpDefense": 50,
+    "baseSpeed": 42,
+    "primaryType": "grass",
+    "secondaryType": "flying",
+    "baseWeight": 1.5,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Rufflet",
+    "id": 572,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "rufflet",
+    "japaneseName": "Washibonワシボン",
+    "pokedexNumber": 627,
+    "abilities": ["Keen Eye", "Sheer Force", "Hustle"],
+    "baseAttack": 83,
+    "captureRate": 190,
+    "classification": "Eaglet Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.5,
+    "baseHp": 70,
+    "baseSpAttack": 37,
+    "baseSpDefense": 50,
+    "baseSpeed": 60,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 10.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sableye",
+    "id": 573,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sableye",
+    "japaneseName": "Yamiramiヤミラミ",
+    "pokedexNumber": 302,
+    "abilities": ["Keen Eye", "Stall", "Prankster"],
+    "baseAttack": 85,
+    "captureRate": 45,
+    "classification": "Darkness Pokémon",
+    "baseDefense": 125,
+    "baseHeight": 0.5,
+    "baseHp": 50,
+    "baseSpAttack": 85,
+    "baseSpDefense": 115,
+    "baseSpeed": 20,
+    "primaryType": "dark",
+    "secondaryType": "ghost",
+    "baseWeight": 11,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Salamence",
+    "id": 574,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "salamence",
+    "japaneseName": "Bohmanderボーマンダ",
+    "pokedexNumber": 373,
+    "abilities": ["Intimidate", "Moxie"],
+    "baseAttack": 145,
+    "captureRate": 45,
+    "classification": "Dragon Pokémon",
+    "baseDefense": 130,
+    "baseHeight": 1.5,
+    "baseHp": 95,
+    "baseSpAttack": 120,
+    "baseSpDefense": 90,
+    "baseSpeed": 120,
+    "primaryType": "dragon",
+    "secondaryType": "flying",
+    "baseWeight": 102.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Salandit",
+    "id": 575,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "salandit",
+    "japaneseName": "Yatoumoriヤトウモリ",
+    "pokedexNumber": 757,
+    "abilities": ["Corrosion", "Oblivious"],
+    "baseAttack": 44,
+    "captureRate": 120,
+    "classification": "Toxic Lizard Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.6,
+    "baseHp": 48,
+    "baseSpAttack": 71,
+    "baseSpDefense": 40,
+    "baseSpeed": 77,
+    "primaryType": "poison",
+    "secondaryType": "fire",
+    "baseWeight": 4.8,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Salazzle",
+    "id": 576,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "salazzle",
+    "japaneseName": "Ennewtエンニュート",
+    "pokedexNumber": 758,
+    "abilities": ["Corrosion", "Oblivious"],
+    "baseAttack": 64,
+    "captureRate": 45,
+    "classification": "Toxic Lizard Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 1.2,
+    "baseHp": 68,
+    "baseSpAttack": 111,
+    "baseSpDefense": 60,
+    "baseSpeed": 117,
+    "primaryType": "poison",
+    "secondaryType": "fire",
+    "baseWeight": 22.2,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Samurott",
+    "id": 577,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "samurott",
+    "japaneseName": "Daikenkiダイケンキ",
+    "pokedexNumber": 503,
+    "abilities": ["Torrent", "Shell Armor"],
+    "baseAttack": 100,
+    "captureRate": 45,
+    "classification": "Formidable Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 1.5,
+    "baseHp": 95,
+    "baseSpAttack": 108,
+    "baseSpDefense": 70,
+    "baseSpeed": 70,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 94.6,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sandile",
+    "id": 578,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sandile",
+    "japaneseName": "Megurocoメグロコ",
+    "pokedexNumber": 551,
+    "abilities": ["Intimidate", "Moxie", "Anger Point"],
+    "baseAttack": 72,
+    "captureRate": 180,
+    "classification": "Desert Croc Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.7,
+    "baseHp": 50,
+    "baseSpAttack": 35,
+    "baseSpDefense": 35,
+    "baseSpeed": 65,
+    "primaryType": "ground",
+    "secondaryType": "dark",
+    "baseWeight": 15.2,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sandshrew",
+    "id": 579,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sandshrew",
+    "japaneseName": "Sandサンド",
+    "pokedexNumber": 27,
+    "abilities": ["Sand Veil", "Sand Rush", "Snow Cloak", "Slush Rush"],
+    "baseAttack": 75,
+    "captureRate": 255,
+    "classification": "Mouse Pokémon",
+    "baseDefense": 90,
+    "baseHeight": "",
+    "baseHp": 50,
+    "baseSpAttack": 10,
+    "baseSpDefense": 35,
+    "baseSpeed": 40,
+    "primaryType": "ground",
+    "secondaryType": "ice",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sandslash",
+    "id": 580,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sandslash",
+    "japaneseName": "Sandpanサンドパン",
+    "pokedexNumber": 28,
+    "abilities": ["Sand Veil", "Sand Rush", "Snow Cloak", "Slush Rush"],
+    "baseAttack": 100,
+    "captureRate": 90,
+    "classification": "Mouse Pokémon",
+    "baseDefense": 120,
+    "baseHeight": "",
+    "baseHp": 75,
+    "baseSpAttack": 25,
+    "baseSpDefense": 65,
+    "baseSpeed": 65,
+    "primaryType": "ground",
+    "secondaryType": "ice",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sandygast",
+    "id": 581,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sandygast",
+    "japaneseName": "Sunabaスナバァ",
+    "pokedexNumber": 769,
+    "abilities": ["Water Compaction", "Sand Veil"],
+    "baseAttack": 55,
+    "captureRate": 140,
+    "classification": "Sand Heap Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 0.5,
+    "baseHp": 55,
+    "baseSpAttack": 70,
+    "baseSpDefense": 45,
+    "baseSpeed": 15,
+    "primaryType": "ghost",
+    "secondaryType": "ground",
+    "baseWeight": 70,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sawk",
+    "id": 582,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sawk",
+    "japaneseName": "Dagekiダゲキ",
+    "pokedexNumber": 539,
+    "abilities": ["Sturdy", "Inner Focus", "Mold Breaker"],
+    "baseAttack": 125,
+    "captureRate": 45,
+    "classification": "Karate Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 1.4,
+    "baseHp": 75,
+    "baseSpAttack": 30,
+    "baseSpDefense": 75,
+    "baseSpeed": 85,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 51,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sawsbuck",
+    "id": 583,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sawsbuck",
+    "japaneseName": "Mebukijikaメブキジカ",
+    "pokedexNumber": 586,
+    "abilities": ["Chlorophyll", "Sap Sipper", "Serene Grace"],
+    "baseAttack": 100,
+    "captureRate": 75,
+    "classification": "Season Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.9,
+    "baseHp": 80,
+    "baseSpAttack": 60,
+    "baseSpDefense": 70,
+    "baseSpeed": 95,
+    "primaryType": "normal",
+    "secondaryType": "grass",
+    "baseWeight": 92.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Scatterbug",
+    "id": 584,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "scatterbug",
+    "japaneseName": "Kofukimushiコフキムシ",
+    "pokedexNumber": 664,
+    "abilities": ["Shield Dust", "Compoundeyes", "Friend Guard"],
+    "baseAttack": 35,
+    "captureRate": 255,
+    "classification": "Scatterdust Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.3,
+    "baseHp": 38,
+    "baseSpAttack": 27,
+    "baseSpDefense": 25,
+    "baseSpeed": 35,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 2.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sceptile",
+    "id": 585,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sceptile",
+    "japaneseName": "Jukainジュカイン",
+    "pokedexNumber": 254,
+    "abilities": ["Overgrow", "Unburden"],
+    "baseAttack": 110,
+    "captureRate": 45,
+    "classification": "Forest Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 1.7,
+    "baseHp": 70,
+    "baseSpAttack": 145,
+    "baseSpDefense": 85,
+    "baseSpeed": 145,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 52.2,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Scizor",
+    "id": 586,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "scizor",
+    "japaneseName": "Hassamハッサム",
+    "pokedexNumber": 212,
+    "abilities": ["Swarm", "Technician", "Light Metal"],
+    "baseAttack": 150,
+    "captureRate": 25,
+    "classification": "Pincer Pokémon",
+    "baseDefense": 140,
+    "baseHeight": 1.8,
+    "baseHp": 70,
+    "baseSpAttack": 65,
+    "baseSpDefense": 100,
+    "baseSpeed": 75,
+    "primaryType": "bug",
+    "secondaryType": "steel",
+    "baseWeight": 118,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Scolipede",
+    "id": 587,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "scolipede",
+    "japaneseName": "Pendrorペンドラー",
+    "pokedexNumber": 545,
+    "abilities": ["Poison Point", "Swarm", "Speed Boost"],
+    "baseAttack": 100,
+    "captureRate": 45,
+    "classification": "Megapede Pokémon",
+    "baseDefense": 89,
+    "baseHeight": 2.5,
+    "baseHp": 60,
+    "baseSpAttack": 55,
+    "baseSpDefense": 69,
+    "baseSpeed": 112,
+    "primaryType": "bug",
+    "secondaryType": "poison",
+    "baseWeight": 200.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Scrafty",
+    "id": 588,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "scrafty",
+    "japaneseName": "Zuruzukinズルズキン",
+    "pokedexNumber": 560,
+    "abilities": ["Shed Skin", "Moxie", "Intimidate"],
+    "baseAttack": 90,
+    "captureRate": 90,
+    "classification": "Hoodlum Pokémon",
+    "baseDefense": 115,
+    "baseHeight": 1.1,
+    "baseHp": 65,
+    "baseSpAttack": 45,
+    "baseSpDefense": 115,
+    "baseSpeed": 58,
+    "primaryType": "dark",
+    "secondaryType": "fighting",
+    "baseWeight": 30,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Scraggy",
+    "id": 589,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "scraggy",
+    "japaneseName": "Zurugguズルッグ",
+    "pokedexNumber": 559,
+    "abilities": ["Shed Skin", "Moxie", "Intimidate"],
+    "baseAttack": 75,
+    "captureRate": 180,
+    "classification": "Shedding Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.6,
+    "baseHp": 50,
+    "baseSpAttack": 35,
+    "baseSpDefense": 70,
+    "baseSpeed": 48,
+    "primaryType": "dark",
+    "secondaryType": "fighting",
+    "baseWeight": 11.8,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Scyther",
+    "id": 590,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "scyther",
+    "japaneseName": "Strikeストライク",
+    "pokedexNumber": 123,
+    "abilities": ["Swarm", "Technician", "Steadfast"],
+    "baseAttack": 110,
+    "captureRate": 45,
+    "classification": "Mantis Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.5,
+    "baseHp": 70,
+    "baseSpAttack": 55,
+    "baseSpDefense": 80,
+    "baseSpeed": 105,
+    "primaryType": "bug",
+    "secondaryType": "flying",
+    "baseWeight": 56,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Seadra",
+    "id": 591,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "seadra",
+    "japaneseName": "Seadraシードラ",
+    "pokedexNumber": 117,
+    "abilities": ["Poison Point", "Sniper", "Damp"],
+    "baseAttack": 65,
+    "captureRate": 75,
+    "classification": "Dragon Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 1.2,
+    "baseHp": 55,
+    "baseSpAttack": 95,
+    "baseSpDefense": 45,
+    "baseSpeed": 85,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 25,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Seaking",
+    "id": 592,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "seaking",
+    "japaneseName": "Azumaoアズマオウ",
+    "pokedexNumber": 119,
+    "abilities": ["Swift Swim", "Water Veil", "Lightningrod"],
+    "baseAttack": 92,
+    "captureRate": 60,
+    "classification": "Goldfish Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1.3,
+    "baseHp": 80,
+    "baseSpAttack": 65,
+    "baseSpDefense": 80,
+    "baseSpeed": 68,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 39,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sealeo",
+    "id": 593,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sealeo",
+    "japaneseName": "Todogglerトドグラー",
+    "pokedexNumber": 364,
+    "abilities": ["Thick Fat", "Ice Body", "Oblivious"],
+    "baseAttack": 60,
+    "captureRate": 120,
+    "classification": "Ball Roll Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.1,
+    "baseHp": 90,
+    "baseSpAttack": 75,
+    "baseSpDefense": 70,
+    "baseSpeed": 45,
+    "primaryType": "ice",
+    "secondaryType": "water",
+    "baseWeight": 87.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Seedot",
+    "id": 594,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "seedot",
+    "japaneseName": "Tanebohタネボー",
+    "pokedexNumber": 273,
+    "abilities": ["Chlorophyll", "Early Bird", "Pickpocket"],
+    "baseAttack": 40,
+    "captureRate": 255,
+    "classification": "Acorn Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.5,
+    "baseHp": 40,
+    "baseSpAttack": 30,
+    "baseSpDefense": 30,
+    "baseSpeed": 30,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 4,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Seel",
+    "id": 595,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "seel",
+    "japaneseName": "Pawouパウワウ",
+    "pokedexNumber": 86,
+    "abilities": ["Thick Fat", "Hydration", "Ice Body"],
+    "baseAttack": 45,
+    "captureRate": 190,
+    "classification": "Sea Lion Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 1.1,
+    "baseHp": 65,
+    "baseSpAttack": 45,
+    "baseSpDefense": 70,
+    "baseSpeed": 45,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 90,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Seismitoad",
+    "id": 596,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "seismitoad",
+    "japaneseName": "Gamagerogeガマゲロゲ",
+    "pokedexNumber": 537,
+    "abilities": ["Swift Swim", "Poison Touch", "Water Absorb"],
+    "baseAttack": 95,
+    "captureRate": 45,
+    "classification": "Vibration Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 1.5,
+    "baseHp": 105,
+    "baseSpAttack": 85,
+    "baseSpDefense": 75,
+    "baseSpeed": 74,
+    "primaryType": "water",
+    "secondaryType": "ground",
+    "baseWeight": 62,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sentret",
+    "id": 597,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sentret",
+    "japaneseName": "Otachiオタチ",
+    "pokedexNumber": 161,
+    "abilities": ["Run Away", "Keen Eye", "Frisk"],
+    "baseAttack": 46,
+    "captureRate": 255,
+    "classification": "Scout Pokémon",
+    "baseDefense": 34,
+    "baseHeight": 0.8,
+    "baseHp": 35,
+    "baseSpAttack": 35,
+    "baseSpDefense": 45,
+    "baseSpeed": 20,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 6,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Serperior",
+    "id": 598,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "serperior",
+    "japaneseName": "Jalordaジャローダ",
+    "pokedexNumber": 497,
+    "abilities": ["Overgrow", "Contrary"],
+    "baseAttack": 75,
+    "captureRate": 45,
+    "classification": "Regal Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 3.3,
+    "baseHp": 75,
+    "baseSpAttack": 75,
+    "baseSpDefense": 95,
+    "baseSpeed": 113,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 63,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Servine",
+    "id": 599,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "servine",
+    "japaneseName": "Janovyジャノビー",
+    "pokedexNumber": 496,
+    "abilities": ["Overgrow", "Contrary"],
+    "baseAttack": 60,
+    "captureRate": 45,
+    "classification": "Grass Snake Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 0.8,
+    "baseHp": 60,
+    "baseSpAttack": 60,
+    "baseSpDefense": 75,
+    "baseSpeed": 83,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 16,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Seviper",
+    "id": 600,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "seviper",
+    "japaneseName": "Habunakeハブネーク",
+    "pokedexNumber": 336,
+    "abilities": ["Shed Skin", "Infiltrator"],
+    "baseAttack": 100,
+    "captureRate": 90,
+    "classification": "Fang Snake Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 2.7,
+    "baseHp": 73,
+    "baseSpAttack": 100,
+    "baseSpDefense": 60,
+    "baseSpeed": 65,
+    "primaryType": "poison",
+    "secondaryType": "",
+    "baseWeight": 52.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sewaddle",
+    "id": 601,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sewaddle",
+    "japaneseName": "Kurumiruクルミル",
+    "pokedexNumber": 540,
+    "abilities": ["Swarm", "Chlorophyll", "Overcoat"],
+    "baseAttack": 53,
+    "captureRate": 255,
+    "classification": "Sewing Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 0.3,
+    "baseHp": 45,
+    "baseSpAttack": 40,
+    "baseSpDefense": 60,
+    "baseSpeed": 42,
+    "primaryType": "bug",
+    "secondaryType": "grass",
+    "baseWeight": 2.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sharpedo",
+    "id": 602,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sharpedo",
+    "japaneseName": "Samehaderサメハダー",
+    "pokedexNumber": 319,
+    "abilities": ["Rough Skin", "Speed Boost"],
+    "baseAttack": 140,
+    "captureRate": 60,
+    "classification": "Brutal Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.8,
+    "baseHp": 70,
+    "baseSpAttack": 110,
+    "baseSpDefense": 65,
+    "baseSpeed": 105,
+    "primaryType": "water",
+    "secondaryType": "dark",
+    "baseWeight": 88.8,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Shaymin",
+    "id": 603,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "shaymin-land",
+    "japaneseName": "Shaymin (sky Forme)シェイミ",
+    "pokedexNumber": 492,
+    "abilities": ["Natural Cure", "Serene Grace"],
+    "baseAttack": 103,
+    "captureRate": 45,
+    "classification": "Gratitude Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 0.2,
+    "baseHp": 100,
+    "baseSpAttack": 120,
+    "baseSpDefense": 75,
+    "baseSpeed": 127,
+    "primaryType": "grass",
+    "secondaryType": "grass",
+    "baseWeight": 2.1,
+    "generation": 4,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Shedinja",
+    "id": 604,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "shedinja",
+    "japaneseName": "Nukeninヌケニン",
+    "pokedexNumber": 292,
+    "abilities": ["Wonder Guard"],
+    "baseAttack": 90,
+    "captureRate": 45,
+    "classification": "Shed Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.8,
+    "baseHp": 1,
+    "baseSpAttack": 30,
+    "baseSpDefense": 30,
+    "baseSpeed": 40,
+    "primaryType": "bug",
+    "secondaryType": "ghost",
+    "baseWeight": 1.2,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Shelgon",
+    "id": 605,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "shelgon",
+    "japaneseName": "Komoruuコモルー",
+    "pokedexNumber": 372,
+    "abilities": ["Rock Head", "Overcoat"],
+    "baseAttack": 95,
+    "captureRate": 45,
+    "classification": "Endurance Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 1.1,
+    "baseHp": 65,
+    "baseSpAttack": 60,
+    "baseSpDefense": 50,
+    "baseSpeed": 50,
+    "primaryType": "dragon",
+    "secondaryType": "",
+    "baseWeight": 110.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Shellder",
+    "id": 606,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "shellder",
+    "japaneseName": "Shellderシェルダー",
+    "pokedexNumber": 90,
+    "abilities": ["Shell Armor", "Skill Link", "Overcoat"],
+    "baseAttack": 65,
+    "captureRate": 190,
+    "classification": "Bivalve Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 0.3,
+    "baseHp": 30,
+    "baseSpAttack": 45,
+    "baseSpDefense": 25,
+    "baseSpeed": 40,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 4,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Shellos",
+    "id": 607,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "shellos",
+    "japaneseName": "Karanakushiカラナクシ",
+    "pokedexNumber": 422,
+    "abilities": ["Sticky Hold", "Storm Drain", "Sand Force"],
+    "baseAttack": 48,
+    "captureRate": 190,
+    "classification": "Sea Slug Pokémon",
+    "baseDefense": 48,
+    "baseHeight": 0.3,
+    "baseHp": 76,
+    "baseSpAttack": 57,
+    "baseSpDefense": 62,
+    "baseSpeed": 34,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 6.3,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Shelmet",
+    "id": 608,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "shelmet",
+    "japaneseName": "Chobomakiチョボマキ",
+    "pokedexNumber": 616,
+    "abilities": ["Hydration", "Shell Armor", "Overcoat"],
+    "baseAttack": 40,
+    "captureRate": 200,
+    "classification": "Snail Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 0.4,
+    "baseHp": 50,
+    "baseSpAttack": 40,
+    "baseSpDefense": 65,
+    "baseSpeed": 25,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 7.7,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Shieldon",
+    "id": 609,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "shieldon",
+    "japaneseName": "Tatetopsタテトプス",
+    "pokedexNumber": 410,
+    "abilities": ["Sturdy", "Soundproof"],
+    "baseAttack": 42,
+    "captureRate": 45,
+    "classification": "Shield Pokémon",
+    "baseDefense": 118,
+    "baseHeight": 0.5,
+    "baseHp": 30,
+    "baseSpAttack": 42,
+    "baseSpDefense": 88,
+    "baseSpeed": 30,
+    "primaryType": "rock",
+    "secondaryType": "steel",
+    "baseWeight": 57,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Shiftry",
+    "id": 610,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "shiftry",
+    "japaneseName": "Dirtengダーテング",
+    "pokedexNumber": 275,
+    "abilities": ["Chlorophyll", "Early Bird", "Pickpocket"],
+    "baseAttack": 100,
+    "captureRate": 45,
+    "classification": "Wickid Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 1.3,
+    "baseHp": 90,
+    "baseSpAttack": 90,
+    "baseSpDefense": 60,
+    "baseSpeed": 80,
+    "primaryType": "grass",
+    "secondaryType": "dark",
+    "baseWeight": 59.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Shiinotic",
+    "id": 611,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "shiinotic",
+    "japaneseName": "Mashadeマシェード",
+    "pokedexNumber": 756,
+    "abilities": ["Illuminate", "Effect Spore", "Rain Dish"],
+    "baseAttack": 45,
+    "captureRate": 75,
+    "classification": "Illuminating Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1,
+    "baseHp": 60,
+    "baseSpAttack": 90,
+    "baseSpDefense": 100,
+    "baseSpeed": 30,
+    "primaryType": "grass",
+    "secondaryType": "fairy",
+    "baseWeight": 11.5,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Shinx",
+    "id": 612,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "shinx",
+    "japaneseName": "Kolinkコリンク",
+    "pokedexNumber": 403,
+    "abilities": ["Rivalry", "Intimidate", "Guts"],
+    "baseAttack": 65,
+    "captureRate": 235,
+    "classification": "Flash Pokémon",
+    "baseDefense": 34,
+    "baseHeight": 0.5,
+    "baseHp": 45,
+    "baseSpAttack": 40,
+    "baseSpDefense": 34,
+    "baseSpeed": 45,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 9.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Shroomish",
+    "id": 613,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "shroomish",
+    "japaneseName": "Kinococoキノココ",
+    "pokedexNumber": 285,
+    "abilities": ["Effect Spore", "Poison Heal", "Quick Feet"],
+    "baseAttack": 40,
+    "captureRate": 255,
+    "classification": "Mushroom Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.4,
+    "baseHp": 60,
+    "baseSpAttack": 40,
+    "baseSpDefense": 60,
+    "baseSpeed": 35,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 4.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Shuckle",
+    "id": 614,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "shuckle",
+    "japaneseName": "Tsubotsuboツボツボ",
+    "pokedexNumber": 213,
+    "abilities": ["Sturdy", "Gluttony", "Contrary"],
+    "baseAttack": 10,
+    "captureRate": 190,
+    "classification": "Mold Pokémon",
+    "baseDefense": 230,
+    "baseHeight": 0.6,
+    "baseHp": 20,
+    "baseSpAttack": 10,
+    "baseSpDefense": 230,
+    "baseSpeed": 5,
+    "primaryType": "bug",
+    "secondaryType": "rock",
+    "baseWeight": 20.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Shuppet",
+    "id": 615,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "shuppet",
+    "japaneseName": "Kagebouzuカゲボウズ",
+    "pokedexNumber": 353,
+    "abilities": ["Insomnia", "Frisk", "Cursed Body"],
+    "baseAttack": 75,
+    "captureRate": 225,
+    "classification": "Puppet Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.6,
+    "baseHp": 44,
+    "baseSpAttack": 63,
+    "baseSpDefense": 33,
+    "baseSpeed": 45,
+    "primaryType": "ghost",
+    "secondaryType": "",
+    "baseWeight": 2.3,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sigilyph",
+    "id": 616,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sigilyph",
+    "japaneseName": "Symbolerシンボラー",
+    "pokedexNumber": 561,
+    "abilities": ["Wonder Skin ", "Magic Guard", "Tinted Lens"],
+    "baseAttack": 58,
+    "captureRate": 45,
+    "classification": "Avianoid Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.4,
+    "baseHp": 72,
+    "baseSpAttack": 103,
+    "baseSpDefense": 80,
+    "baseSpeed": 97,
+    "primaryType": "psychic",
+    "secondaryType": "flying",
+    "baseWeight": 14,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Silcoon",
+    "id": 617,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "silcoon",
+    "japaneseName": "Karasalisカラサリス",
+    "pokedexNumber": 266,
+    "abilities": ["Shed Skin"],
+    "baseAttack": 35,
+    "captureRate": 120,
+    "classification": "Cocoon Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.6,
+    "baseHp": 50,
+    "baseSpAttack": 25,
+    "baseSpDefense": 25,
+    "baseSpeed": 15,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 10,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Silvally",
+    "id": 618,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "silvally",
+    "japaneseName": "Silvadyシルヴァディ",
+    "pokedexNumber": 773,
+    "abilities": ["RKS System"],
+    "baseAttack": 95,
+    "captureRate": 3,
+    "classification": "Synthetic Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 2.3,
+    "baseHp": 95,
+    "baseSpAttack": 95,
+    "baseSpDefense": 95,
+    "baseSpeed": 95,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 100.5,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Simipour",
+    "id": 619,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "simipour",
+    "japaneseName": "Hiyakkieヒヤッキー",
+    "pokedexNumber": 516,
+    "abilities": ["Gluttony", "Torrent"],
+    "baseAttack": 98,
+    "captureRate": 75,
+    "classification": "Geyser Pokémon",
+    "baseDefense": 63,
+    "baseHeight": 1,
+    "baseHp": 75,
+    "baseSpAttack": 98,
+    "baseSpDefense": 63,
+    "baseSpeed": 101,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 29,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Simisage",
+    "id": 620,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "simisage",
+    "japaneseName": "Yanakkieヤナッキー",
+    "pokedexNumber": 512,
+    "abilities": ["Gluttony", "Overgrow"],
+    "baseAttack": 98,
+    "captureRate": 75,
+    "classification": "Thorn Monkey Pokémon",
+    "baseDefense": 63,
+    "baseHeight": 1.1,
+    "baseHp": 75,
+    "baseSpAttack": 98,
+    "baseSpDefense": 63,
+    "baseSpeed": 101,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 30.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Simisear",
+    "id": 621,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "simisear",
+    "japaneseName": "Baokkieバオッキー",
+    "pokedexNumber": 514,
+    "abilities": ["Gluttony", "Blaze"],
+    "baseAttack": 98,
+    "captureRate": 75,
+    "classification": "Ember Pokémon",
+    "baseDefense": 63,
+    "baseHeight": 1,
+    "baseHp": 75,
+    "baseSpAttack": 98,
+    "baseSpDefense": 63,
+    "baseSpeed": 101,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 28,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Skarmory",
+    "id": 622,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "skarmory",
+    "japaneseName": "Airmdエアームド",
+    "pokedexNumber": 227,
+    "abilities": ["Keen Eye", "Sturdy", "Weak Armor"],
+    "baseAttack": 80,
+    "captureRate": 25,
+    "classification": "Armor Bird Pokémon",
+    "baseDefense": 140,
+    "baseHeight": 1.7,
+    "baseHp": 65,
+    "baseSpAttack": 40,
+    "baseSpDefense": 70,
+    "baseSpeed": 70,
+    "primaryType": "steel",
+    "secondaryType": "flying",
+    "baseWeight": 50.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Skiddo",
+    "id": 623,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "skiddo",
+    "japaneseName": "Meecleメェークル",
+    "pokedexNumber": 672,
+    "abilities": ["Sap Sipper", "Grass Pelt"],
+    "baseAttack": 65,
+    "captureRate": 200,
+    "classification": "Mount Pokémon",
+    "baseDefense": 48,
+    "baseHeight": 0.9,
+    "baseHp": 66,
+    "baseSpAttack": 62,
+    "baseSpDefense": 57,
+    "baseSpeed": 52,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 31,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Skiploom",
+    "id": 624,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "skiploom",
+    "japaneseName": "Popoccoポポッコ",
+    "pokedexNumber": 188,
+    "abilities": ["Chlorophyll", "Leaf Guard", "Infiltrator"],
+    "baseAttack": 45,
+    "captureRate": 120,
+    "classification": "Cottonweed Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.6,
+    "baseHp": 55,
+    "baseSpAttack": 45,
+    "baseSpDefense": 65,
+    "baseSpeed": 80,
+    "primaryType": "grass",
+    "secondaryType": "flying",
+    "baseWeight": 1,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Skitty",
+    "id": 625,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "skitty",
+    "japaneseName": "Enecoエネコ",
+    "pokedexNumber": 300,
+    "abilities": ["Cute Charm", "Normalize", "Wonder Skin "],
+    "baseAttack": 45,
+    "captureRate": 255,
+    "classification": "Kitten Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.6,
+    "baseHp": 50,
+    "baseSpAttack": 35,
+    "baseSpDefense": 35,
+    "baseSpeed": 50,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 11,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Skorupi",
+    "id": 626,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "skorupi",
+    "japaneseName": "Scorupiスコルピ",
+    "pokedexNumber": 451,
+    "abilities": ["Battle Armor", "Sniper", "Keen Eye"],
+    "baseAttack": 50,
+    "captureRate": 120,
+    "classification": "Scorpion Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 0.8,
+    "baseHp": 40,
+    "baseSpAttack": 30,
+    "baseSpDefense": 55,
+    "baseSpeed": 65,
+    "primaryType": "poison",
+    "secondaryType": "bug",
+    "baseWeight": 12,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Skrelp",
+    "id": 627,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "skrelp",
+    "japaneseName": "Kuzumoクズモー",
+    "pokedexNumber": 690,
+    "abilities": ["Poison Point", "Poison Touch", "Adaptability"],
+    "baseAttack": 60,
+    "captureRate": 225,
+    "classification": "Mock Kelp Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.5,
+    "baseHp": 50,
+    "baseSpAttack": 60,
+    "baseSpDefense": 60,
+    "baseSpeed": 30,
+    "primaryType": "poison",
+    "secondaryType": "water",
+    "baseWeight": 7.3,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Skuntank",
+    "id": 628,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "skuntank",
+    "japaneseName": "Skutankスカタンク",
+    "pokedexNumber": 435,
+    "abilities": ["Stench", "Aftermath", "Keen Eye"],
+    "baseAttack": 93,
+    "captureRate": 60,
+    "classification": "Skunk Pokémon",
+    "baseDefense": 67,
+    "baseHeight": 1,
+    "baseHp": 103,
+    "baseSpAttack": 71,
+    "baseSpDefense": 61,
+    "baseSpeed": 84,
+    "primaryType": "poison",
+    "secondaryType": "dark",
+    "baseWeight": 38,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Slaking",
+    "id": 629,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "slaking",
+    "japaneseName": "Kekkingケッキング",
+    "pokedexNumber": 289,
+    "abilities": ["Truant"],
+    "baseAttack": 160,
+    "captureRate": 45,
+    "classification": "Lazy Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 2,
+    "baseHp": 150,
+    "baseSpAttack": 95,
+    "baseSpDefense": 65,
+    "baseSpeed": 100,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 130.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Slakoth",
+    "id": 630,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "slakoth",
+    "japaneseName": "Namakeroナマケロ",
+    "pokedexNumber": 287,
+    "abilities": ["Truant"],
+    "baseAttack": 60,
+    "captureRate": 255,
+    "classification": "Slacker Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.8,
+    "baseHp": 60,
+    "baseSpAttack": 35,
+    "baseSpDefense": 35,
+    "baseSpeed": 30,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 24,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sliggoo",
+    "id": 631,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sliggoo",
+    "japaneseName": "Numeilヌメイル",
+    "pokedexNumber": 705,
+    "abilities": ["Sap Sipper", "Hydration", "Gooey"],
+    "baseAttack": 75,
+    "captureRate": 45,
+    "classification": "Soft Tissue Pokémon",
+    "baseDefense": 53,
+    "baseHeight": 0.8,
+    "baseHp": 68,
+    "baseSpAttack": 83,
+    "baseSpDefense": 113,
+    "baseSpeed": 60,
+    "primaryType": "dragon",
+    "secondaryType": "",
+    "baseWeight": 17.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Slowbro",
+    "id": 632,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "slowbro",
+    "japaneseName": "Yadoranヤドラン",
+    "pokedexNumber": 80,
+    "abilities": ["Oblivious", "Own Tempo", "Regenerator"],
+    "baseAttack": 75,
+    "captureRate": 75,
+    "classification": "Hermit Crab Pokémon",
+    "baseDefense": 180,
+    "baseHeight": 1.6,
+    "baseHp": 95,
+    "baseSpAttack": 130,
+    "baseSpDefense": 80,
+    "baseSpeed": 30,
+    "primaryType": "water",
+    "secondaryType": "psychic",
+    "baseWeight": 78.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Slowking",
+    "id": 633,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "slowking",
+    "japaneseName": "Yadokingヤドキング",
+    "pokedexNumber": 199,
+    "abilities": ["Oblivious", "Own Tempo", "Regenerator"],
+    "baseAttack": 75,
+    "captureRate": 70,
+    "classification": "Royal Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 2,
+    "baseHp": 95,
+    "baseSpAttack": 100,
+    "baseSpDefense": 110,
+    "baseSpeed": 30,
+    "primaryType": "water",
+    "secondaryType": "psychic",
+    "baseWeight": 79.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Slowpoke",
+    "id": 634,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "slowpoke",
+    "japaneseName": "Yadonヤドン",
+    "pokedexNumber": 79,
+    "abilities": ["Oblivious", "Own Tempo", "Regenerator"],
+    "baseAttack": 65,
+    "captureRate": 190,
+    "classification": "Dopey Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1.2,
+    "baseHp": 90,
+    "baseSpAttack": 40,
+    "baseSpDefense": 40,
+    "baseSpeed": 15,
+    "primaryType": "water",
+    "secondaryType": "psychic",
+    "baseWeight": 36,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Slugma",
+    "id": 635,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "slugma",
+    "japaneseName": "Magmagマグマッグ",
+    "pokedexNumber": 218,
+    "abilities": ["Magma Armor", "Flame Body", "Weak Armor"],
+    "baseAttack": 40,
+    "captureRate": 190,
+    "classification": "Lava Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.7,
+    "baseHp": 40,
+    "baseSpAttack": 70,
+    "baseSpDefense": 40,
+    "baseSpeed": 20,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 35,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Slurpuff",
+    "id": 636,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "slurpuff",
+    "japaneseName": "Peroreamペロリーム",
+    "pokedexNumber": 685,
+    "abilities": ["Sweet Veil", "Unburden"],
+    "baseAttack": 80,
+    "captureRate": 140,
+    "classification": "Meringue Pokémon",
+    "baseDefense": 86,
+    "baseHeight": 0.8,
+    "baseHp": 82,
+    "baseSpAttack": 85,
+    "baseSpDefense": 75,
+    "baseSpeed": 72,
+    "primaryType": "fairy",
+    "secondaryType": "",
+    "baseWeight": 5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Smeargle",
+    "id": 637,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "smeargle",
+    "japaneseName": "Dobleドーブル",
+    "pokedexNumber": 235,
+    "abilities": ["Own Tempo", "Technician", "Moody"],
+    "baseAttack": 20,
+    "captureRate": 45,
+    "classification": "Painter Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 1.2,
+    "baseHp": 55,
+    "baseSpAttack": 20,
+    "baseSpDefense": 45,
+    "baseSpeed": 75,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 58,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Smoochum",
+    "id": 638,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "smoochum",
+    "japaneseName": "Muchulムチュール",
+    "pokedexNumber": 238,
+    "abilities": ["Oblivious", "Forewarn", "Hydration"],
+    "baseAttack": 30,
+    "captureRate": 45,
+    "classification": "Kiss Pokémon",
+    "baseDefense": 15,
+    "baseHeight": 0.4,
+    "baseHp": 45,
+    "baseSpAttack": 85,
+    "baseSpDefense": 65,
+    "baseSpeed": 65,
+    "primaryType": "ice",
+    "secondaryType": "psychic",
+    "baseWeight": 6,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sneasel",
+    "id": 639,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sneasel",
+    "japaneseName": "Nyulaニューラ",
+    "pokedexNumber": 215,
+    "abilities": ["Inner Focus", "Keen Eye", "Pickpocket"],
+    "baseAttack": 95,
+    "captureRate": 60,
+    "classification": "Sharp Claw Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.9,
+    "baseHp": 55,
+    "baseSpAttack": 35,
+    "baseSpDefense": 75,
+    "baseSpeed": 115,
+    "primaryType": "dark",
+    "secondaryType": "ice",
+    "baseWeight": 28,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Snivy",
+    "id": 640,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "snivy",
+    "japaneseName": "Tsutarjaツタージャ",
+    "pokedexNumber": 495,
+    "abilities": ["Overgrow", "Contrary"],
+    "baseAttack": 45,
+    "captureRate": 45,
+    "classification": "Grass Snake Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.6,
+    "baseHp": 45,
+    "baseSpAttack": 45,
+    "baseSpDefense": 55,
+    "baseSpeed": 63,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 8.1,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Snorlax",
+    "id": 641,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "snorlax",
+    "japaneseName": "Kabigonカビゴン",
+    "pokedexNumber": 143,
+    "abilities": ["Immunity", "Thick Fat", "Gluttony"],
+    "baseAttack": 110,
+    "captureRate": 25,
+    "classification": "Sleeping Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 2.1,
+    "baseHp": 160,
+    "baseSpAttack": 65,
+    "baseSpDefense": 110,
+    "baseSpeed": 30,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 460,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Snorunt",
+    "id": 642,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "snorunt",
+    "japaneseName": "Yukiwarashiユキワラシ",
+    "pokedexNumber": 361,
+    "abilities": ["Inner Focus", "Ice Body", "Moody"],
+    "baseAttack": 50,
+    "captureRate": 190,
+    "classification": "Snow Hat Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.7,
+    "baseHp": 50,
+    "baseSpAttack": 50,
+    "baseSpDefense": 50,
+    "baseSpeed": 50,
+    "primaryType": "ice",
+    "secondaryType": "",
+    "baseWeight": 16.8,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Snover",
+    "id": 643,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "snover",
+    "japaneseName": "Yukikaburiユキカブリ",
+    "pokedexNumber": 459,
+    "abilities": ["Snow Warning", "Soundproof"],
+    "baseAttack": 62,
+    "captureRate": 120,
+    "classification": "Frosted Tree Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 1,
+    "baseHp": 60,
+    "baseSpAttack": 62,
+    "baseSpDefense": 60,
+    "baseSpeed": 40,
+    "primaryType": "grass",
+    "secondaryType": "ice",
+    "baseWeight": 50.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Snubbull",
+    "id": 644,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "snubbull",
+    "japaneseName": "Buluブルー",
+    "pokedexNumber": 209,
+    "abilities": ["Intimidate", "Run Away", "Rattled"],
+    "baseAttack": 80,
+    "captureRate": 190,
+    "classification": "Fairy Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.6,
+    "baseHp": 60,
+    "baseSpAttack": 40,
+    "baseSpDefense": 40,
+    "baseSpeed": 30,
+    "primaryType": "fairy",
+    "secondaryType": "",
+    "baseWeight": 7.8,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Solgaleo",
+    "id": 645,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "solgaleo",
+    "japaneseName": "Solgaleoソルガレオ",
+    "pokedexNumber": 791,
+    "abilities": ["Full Metal Body"],
+    "baseAttack": 137,
+    "captureRate": 45,
+    "classification": "Sunne Pokémon",
+    "baseDefense": 107,
+    "baseHeight": 3.4,
+    "baseHp": 137,
+    "baseSpAttack": 113,
+    "baseSpDefense": 89,
+    "baseSpeed": 97,
+    "primaryType": "psychic",
+    "secondaryType": "steel",
+    "baseWeight": 230,
+    "generation": 7,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Solosis",
+    "id": 646,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "solosis",
+    "japaneseName": "Uniranユニラン",
+    "pokedexNumber": 577,
+    "abilities": ["Overcoat", "Magic Guard", "Regenerator"],
+    "baseAttack": 30,
+    "captureRate": 200,
+    "classification": "Cell Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.3,
+    "baseHp": 45,
+    "baseSpAttack": 105,
+    "baseSpDefense": 50,
+    "baseSpeed": 20,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 1,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Solrock",
+    "id": 647,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "solrock",
+    "japaneseName": "Solrockソルロック",
+    "pokedexNumber": 338,
+    "abilities": ["Levitate"],
+    "baseAttack": 95,
+    "captureRate": 45,
+    "classification": "Meteorite Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 1.2,
+    "baseHp": 90,
+    "baseSpAttack": 55,
+    "baseSpDefense": 65,
+    "baseSpeed": 70,
+    "primaryType": "rock",
+    "secondaryType": "psychic",
+    "baseWeight": 154,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Spearow",
+    "id": 648,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "spearow",
+    "japaneseName": "Onisuzumeオニスズメ",
+    "pokedexNumber": 21,
+    "abilities": ["Keen Eye", "Sniper"],
+    "baseAttack": 60,
+    "captureRate": 255,
+    "classification": "Tiny Bird Pokémon",
+    "baseDefense": 30,
+    "baseHeight": 0.3,
+    "baseHp": 40,
+    "baseSpAttack": 31,
+    "baseSpDefense": 31,
+    "baseSpeed": 70,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 2,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Spewpa",
+    "id": 649,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "spewpa",
+    "japaneseName": "Kofuuraiコフーライ",
+    "pokedexNumber": 665,
+    "abilities": ["Shed Skin", "Friend Guard"],
+    "baseAttack": 22,
+    "captureRate": 120,
+    "classification": "Scatterdust Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.3,
+    "baseHp": 45,
+    "baseSpAttack": 27,
+    "baseSpDefense": 30,
+    "baseSpeed": 29,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 8.4,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Spheal",
+    "id": 650,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "spheal",
+    "japaneseName": "Tamazarashiタマザラシ",
+    "pokedexNumber": 363,
+    "abilities": ["Thick Fat", "Ice Body", "Oblivious"],
+    "baseAttack": 40,
+    "captureRate": 255,
+    "classification": "Clap Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.8,
+    "baseHp": 70,
+    "baseSpAttack": 55,
+    "baseSpDefense": 50,
+    "baseSpeed": 25,
+    "primaryType": "ice",
+    "secondaryType": "water",
+    "baseWeight": 39.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Spinarak",
+    "id": 651,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "spinarak",
+    "japaneseName": "Itomaruイトマル",
+    "pokedexNumber": 167,
+    "abilities": ["Swarm", "Insomnia", "Sniper"],
+    "baseAttack": 60,
+    "captureRate": 255,
+    "classification": "String Spit Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.5,
+    "baseHp": 40,
+    "baseSpAttack": 40,
+    "baseSpDefense": 40,
+    "baseSpeed": 30,
+    "primaryType": "bug",
+    "secondaryType": "poison",
+    "baseWeight": 8.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Spinda",
+    "id": 652,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "spinda",
+    "japaneseName": "Patcheelパッチール",
+    "pokedexNumber": 327,
+    "abilities": ["Own Tempo", "Tangled Feet", "Contrary"],
+    "baseAttack": 60,
+    "captureRate": 255,
+    "classification": "Spot Panda Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 1.1,
+    "baseHp": 60,
+    "baseSpAttack": 60,
+    "baseSpDefense": 60,
+    "baseSpeed": 60,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Spiritomb",
+    "id": 653,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "spiritomb",
+    "japaneseName": "Mikarugeミカルゲ",
+    "pokedexNumber": 442,
+    "abilities": ["Pressure", "Infiltrator"],
+    "baseAttack": 92,
+    "captureRate": 100,
+    "classification": "Forbidden Pokémon",
+    "baseDefense": 108,
+    "baseHeight": 1,
+    "baseHp": 50,
+    "baseSpAttack": 92,
+    "baseSpDefense": 108,
+    "baseSpeed": 35,
+    "primaryType": "ghost",
+    "secondaryType": "dark",
+    "baseWeight": 108,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Spoink",
+    "id": 654,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "spoink",
+    "japaneseName": "Banebooバネブー",
+    "pokedexNumber": 325,
+    "abilities": ["Thick Fat", "Own Tempo", "Gluttony"],
+    "baseAttack": 25,
+    "captureRate": 255,
+    "classification": "Bounce Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.7,
+    "baseHp": 60,
+    "baseSpAttack": 70,
+    "baseSpDefense": 80,
+    "baseSpeed": 60,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 30.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Spritzee",
+    "id": 655,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "spritzee",
+    "japaneseName": "Shushupuシュシュプ",
+    "pokedexNumber": 682,
+    "abilities": ["Healer", "Aroma Veil"],
+    "baseAttack": 52,
+    "captureRate": 200,
+    "classification": "Perfume Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.2,
+    "baseHp": 78,
+    "baseSpAttack": 63,
+    "baseSpDefense": 65,
+    "baseSpeed": 23,
+    "primaryType": "fairy",
+    "secondaryType": "",
+    "baseWeight": 0.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Squirtle",
+    "id": 656,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "squirtle",
+    "japaneseName": "Zenigameゼニガメ",
+    "pokedexNumber": 7,
+    "abilities": ["Torrent", "Rain Dish"],
+    "baseAttack": 48,
+    "captureRate": 45,
+    "classification": "Tiny Turtle Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 0.5,
+    "baseHp": 44,
+    "baseSpAttack": 50,
+    "baseSpDefense": 64,
+    "baseSpeed": 43,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 9,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Stantler",
+    "id": 657,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "stantler",
+    "japaneseName": "Odoshishiオドシシ",
+    "pokedexNumber": 234,
+    "abilities": ["Intimidate", "Frisk", "Sap Sipper"],
+    "baseAttack": 95,
+    "captureRate": 45,
+    "classification": "Big Horn Pokémon",
+    "baseDefense": 62,
+    "baseHeight": 1.4,
+    "baseHp": 73,
+    "baseSpAttack": 85,
+    "baseSpDefense": 65,
+    "baseSpeed": 85,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 71.2,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Staraptor",
+    "id": 658,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "staraptor",
+    "japaneseName": "Mukuhawkムクホーク",
+    "pokedexNumber": 398,
+    "abilities": ["Intimidate", "Reckless"],
+    "baseAttack": 120,
+    "captureRate": 45,
+    "classification": "Predator Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.2,
+    "baseHp": 85,
+    "baseSpAttack": 50,
+    "baseSpDefense": 60,
+    "baseSpeed": 100,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 24.9,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Staravia",
+    "id": 659,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "staravia",
+    "japaneseName": "Mukubirdムクバード",
+    "pokedexNumber": 397,
+    "abilities": ["Intimidate", "Reckless"],
+    "baseAttack": 75,
+    "captureRate": 120,
+    "classification": "Starling Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.6,
+    "baseHp": 55,
+    "baseSpAttack": 40,
+    "baseSpDefense": 40,
+    "baseSpeed": 80,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 15.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Starly",
+    "id": 660,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "starly",
+    "japaneseName": "Mukkuruムックル",
+    "pokedexNumber": 396,
+    "abilities": ["Keen Eye", "Reckless"],
+    "baseAttack": 55,
+    "captureRate": 255,
+    "classification": "Starling Pokémon",
+    "baseDefense": 30,
+    "baseHeight": 0.3,
+    "baseHp": 40,
+    "baseSpAttack": 30,
+    "baseSpDefense": 30,
+    "baseSpeed": 60,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 2,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Starmie",
+    "id": 661,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "starmie",
+    "japaneseName": "Starmieスターミー",
+    "pokedexNumber": 121,
+    "abilities": ["Illuminate", "Natural Cure", "Analytic"],
+    "baseAttack": 75,
+    "captureRate": 60,
+    "classification": "Mysterious Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 1.1,
+    "baseHp": 60,
+    "baseSpAttack": 100,
+    "baseSpDefense": 85,
+    "baseSpeed": 115,
+    "primaryType": "water",
+    "secondaryType": "psychic",
+    "baseWeight": 80,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Staryu",
+    "id": 662,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "staryu",
+    "japaneseName": "Hitodemanヒトデマン",
+    "pokedexNumber": 120,
+    "abilities": ["Illuminate", "Natural Cure", "Analytic"],
+    "baseAttack": 45,
+    "captureRate": 225,
+    "classification": "Starshape Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.8,
+    "baseHp": 30,
+    "baseSpAttack": 70,
+    "baseSpDefense": 55,
+    "baseSpeed": 85,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 34.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Steelix",
+    "id": 663,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "steelix",
+    "japaneseName": "Haganeilハガネール",
+    "pokedexNumber": 208,
+    "abilities": ["Rock Head", "Sturdy", "Sheer Force"],
+    "baseAttack": 125,
+    "captureRate": 25,
+    "classification": "Iron Snake Pokémon",
+    "baseDefense": 230,
+    "baseHeight": 9.2,
+    "baseHp": 75,
+    "baseSpAttack": 55,
+    "baseSpDefense": 95,
+    "baseSpeed": 30,
+    "primaryType": "steel",
+    "secondaryType": "ground",
+    "baseWeight": 400,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Steenee",
+    "id": 664,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "steenee",
+    "japaneseName": "Amamaikoアママイコ",
+    "pokedexNumber": 762,
+    "abilities": ["Leaf Guard", "Oblivious", "Sweet Veil"],
+    "baseAttack": 40,
+    "captureRate": 120,
+    "classification": "Fruit Pokémon",
+    "baseDefense": 48,
+    "baseHeight": 0.7,
+    "baseHp": 52,
+    "baseSpAttack": 40,
+    "baseSpDefense": 48,
+    "baseSpeed": 62,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 8.2,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Stoutland",
+    "id": 665,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "stoutland",
+    "japaneseName": "Moolandムーランド",
+    "pokedexNumber": 508,
+    "abilities": ["Intimidate", "Sand Rush", "Scrappy"],
+    "baseAttack": 110,
+    "captureRate": 45,
+    "classification": "Big-Hearted Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 1.2,
+    "baseHp": 85,
+    "baseSpAttack": 45,
+    "baseSpDefense": 90,
+    "baseSpeed": 80,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 61,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Stufful",
+    "id": 666,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "stufful",
+    "japaneseName": "Nuikogumaヌイコグマ",
+    "pokedexNumber": 759,
+    "abilities": ["Fluffy", "Klutz", "Cute Charm"],
+    "baseAttack": 75,
+    "captureRate": 140,
+    "classification": "Flailing Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.5,
+    "baseHp": 70,
+    "baseSpAttack": 45,
+    "baseSpDefense": 50,
+    "baseSpeed": 50,
+    "primaryType": "normal",
+    "secondaryType": "fighting",
+    "baseWeight": 6.8,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Stunfisk",
+    "id": 667,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "stunfisk",
+    "japaneseName": "Maggyoマッギョ",
+    "pokedexNumber": 618,
+    "abilities": ["Static", "Limber", "Sand Veil"],
+    "baseAttack": 66,
+    "captureRate": 75,
+    "classification": "Trap Pokémon",
+    "baseDefense": 84,
+    "baseHeight": 0.7,
+    "baseHp": 109,
+    "baseSpAttack": 81,
+    "baseSpDefense": 99,
+    "baseSpeed": 32,
+    "primaryType": "ground",
+    "secondaryType": "electric",
+    "baseWeight": 11,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Stunky",
+    "id": 668,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "stunky",
+    "japaneseName": "Skunpuuスカンプー",
+    "pokedexNumber": 434,
+    "abilities": ["Stench", "Aftermath", "Keen Eye"],
+    "baseAttack": 63,
+    "captureRate": 225,
+    "classification": "Skunk Pokémon",
+    "baseDefense": 47,
+    "baseHeight": 0.4,
+    "baseHp": 63,
+    "baseSpAttack": 41,
+    "baseSpDefense": 41,
+    "baseSpeed": 74,
+    "primaryType": "poison",
+    "secondaryType": "dark",
+    "baseWeight": 19.2,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sudowoodo",
+    "id": 669,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sudowoodo",
+    "japaneseName": "Usokkieウソッキー",
+    "pokedexNumber": 185,
+    "abilities": ["Sturdy", "Rock Head", "Rattled"],
+    "baseAttack": 100,
+    "captureRate": 65,
+    "classification": "Imitation Pokémon",
+    "baseDefense": 115,
+    "baseHeight": 1.2,
+    "baseHp": 70,
+    "baseSpAttack": 30,
+    "baseSpDefense": 65,
+    "baseSpeed": 30,
+    "primaryType": "rock",
+    "secondaryType": "",
+    "baseWeight": 38,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Suicune",
+    "id": 670,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "suicune",
+    "japaneseName": "Suicuneスイクン",
+    "pokedexNumber": 245,
+    "abilities": ["Pressure", "Inner Focus"],
+    "baseAttack": 75,
+    "captureRate": 3,
+    "classification": "Aurora Pokémon",
+    "baseDefense": 115,
+    "baseHeight": 2,
+    "baseHp": 100,
+    "baseSpAttack": 90,
+    "baseSpDefense": 115,
+    "baseSpeed": 85,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 187,
+    "generation": 2,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Sunflora",
+    "id": 671,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sunflora",
+    "japaneseName": "Kimawariキマワリ",
+    "pokedexNumber": 192,
+    "abilities": ["Chlorophyll", "Solar Power", "Early Bird"],
+    "baseAttack": 75,
+    "captureRate": 120,
+    "classification": "Sun Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.8,
+    "baseHp": 75,
+    "baseSpAttack": 105,
+    "baseSpDefense": 85,
+    "baseSpeed": 30,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 8.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sunkern",
+    "id": 672,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sunkern",
+    "japaneseName": "Himanutsヒマナッツ",
+    "pokedexNumber": 191,
+    "abilities": ["Chlorophyll", "Solar Power", "Early Bird"],
+    "baseAttack": 30,
+    "captureRate": 235,
+    "classification": "Seed Pokémon",
+    "baseDefense": 30,
+    "baseHeight": 0.3,
+    "baseHp": 30,
+    "baseSpAttack": 30,
+    "baseSpDefense": 30,
+    "baseSpeed": 30,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 1.8,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Surskit",
+    "id": 673,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "surskit",
+    "japaneseName": "Ametamaアメタマ",
+    "pokedexNumber": 283,
+    "abilities": ["Swift Swim", "Rain Dish"],
+    "baseAttack": 30,
+    "captureRate": 200,
+    "classification": "Pond Skater Pokémon",
+    "baseDefense": 32,
+    "baseHeight": 0.5,
+    "baseHp": 40,
+    "baseSpAttack": 50,
+    "baseSpDefense": 52,
+    "baseSpeed": 65,
+    "primaryType": "bug",
+    "secondaryType": "water",
+    "baseWeight": 1.7,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Swablu",
+    "id": 674,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "swablu",
+    "japaneseName": "Tylttoチルット",
+    "pokedexNumber": 333,
+    "abilities": ["Natural Cure", "Cloud Nine"],
+    "baseAttack": 40,
+    "captureRate": 255,
+    "classification": "Cotton Bird Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.4,
+    "baseHp": 45,
+    "baseSpAttack": 40,
+    "baseSpDefense": 75,
+    "baseSpeed": 50,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 1.2,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Swadloon",
+    "id": 675,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "swadloon",
+    "japaneseName": "Kurumayuクルマユ",
+    "pokedexNumber": 541,
+    "abilities": ["Leaf Guard", "Chlorophyll", "Overcoat"],
+    "baseAttack": 63,
+    "captureRate": 120,
+    "classification": "Leaf-Wrapped Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 0.5,
+    "baseHp": 55,
+    "baseSpAttack": 50,
+    "baseSpDefense": 80,
+    "baseSpeed": 42,
+    "primaryType": "bug",
+    "secondaryType": "grass",
+    "baseWeight": 7.3,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Swalot",
+    "id": 676,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "swalot",
+    "japaneseName": "Marunoomマルノーム",
+    "pokedexNumber": 317,
+    "abilities": ["Liquid Ooze", "Sticky Hold", "Gluttony"],
+    "baseAttack": 73,
+    "captureRate": 75,
+    "classification": "Poison Bag Pokémon",
+    "baseDefense": 83,
+    "baseHeight": 1.7,
+    "baseHp": 100,
+    "baseSpAttack": 73,
+    "baseSpDefense": 83,
+    "baseSpeed": 55,
+    "primaryType": "poison",
+    "secondaryType": "",
+    "baseWeight": 80,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Swampert",
+    "id": 677,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "swampert",
+    "japaneseName": "Laglargeラグラージ",
+    "pokedexNumber": 260,
+    "abilities": ["Torrent", "Damp"],
+    "baseAttack": 150,
+    "captureRate": 45,
+    "classification": "Mud Fish Pokémon",
+    "baseDefense": 110,
+    "baseHeight": 1.5,
+    "baseHp": 100,
+    "baseSpAttack": 95,
+    "baseSpDefense": 110,
+    "baseSpeed": 70,
+    "primaryType": "water",
+    "secondaryType": "ground",
+    "baseWeight": 81.9,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Swanna",
+    "id": 678,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "swanna",
+    "japaneseName": "Swannaスワンナ",
+    "pokedexNumber": 581,
+    "abilities": ["Keen Eye", "Big Pecks", "Hydration"],
+    "baseAttack": 87,
+    "captureRate": 45,
+    "classification": "White Bird Pokémon",
+    "baseDefense": 63,
+    "baseHeight": 1.3,
+    "baseHp": 75,
+    "baseSpAttack": 87,
+    "baseSpDefense": 63,
+    "baseSpeed": 98,
+    "primaryType": "water",
+    "secondaryType": "flying",
+    "baseWeight": 24.2,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Swellow",
+    "id": 679,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "swellow",
+    "japaneseName": "Ohsubameオオスバメ",
+    "pokedexNumber": 277,
+    "abilities": ["Guts", "Scrappy"],
+    "baseAttack": 85,
+    "captureRate": 45,
+    "classification": "Swallow Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 0.7,
+    "baseHp": 60,
+    "baseSpAttack": 75,
+    "baseSpDefense": 50,
+    "baseSpeed": 125,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 19.8,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Swinub",
+    "id": 680,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "swinub",
+    "japaneseName": "Urimooウリムー",
+    "pokedexNumber": 220,
+    "abilities": ["Oblivious", "Snow Cloak", "Thick Fat"],
+    "baseAttack": 50,
+    "captureRate": 225,
+    "classification": "Pig Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.4,
+    "baseHp": 50,
+    "baseSpAttack": 30,
+    "baseSpDefense": 30,
+    "baseSpeed": 50,
+    "primaryType": "ice",
+    "secondaryType": "ground",
+    "baseWeight": 6.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Swirlix",
+    "id": 681,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "swirlix",
+    "japaneseName": "Peroppafuペロッパフ",
+    "pokedexNumber": 684,
+    "abilities": ["Sweet Veil", "Unburden"],
+    "baseAttack": 48,
+    "captureRate": 200,
+    "classification": "Cotton Candy Pokémon",
+    "baseDefense": 66,
+    "baseHeight": 0.4,
+    "baseHp": 62,
+    "baseSpAttack": 59,
+    "baseSpDefense": 57,
+    "baseSpeed": 49,
+    "primaryType": "fairy",
+    "secondaryType": "",
+    "baseWeight": 3.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Swoobat",
+    "id": 682,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "swoobat",
+    "japaneseName": "Kokoromoriココロモリ",
+    "pokedexNumber": 528,
+    "abilities": ["Unaware", "Klutz", "Simple"],
+    "baseAttack": 57,
+    "captureRate": 45,
+    "classification": "Courting Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.9,
+    "baseHp": 67,
+    "baseSpAttack": 77,
+    "baseSpDefense": 55,
+    "baseSpeed": 114,
+    "primaryType": "psychic",
+    "secondaryType": "flying",
+    "baseWeight": 10.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Sylveon",
+    "id": 683,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "sylveon",
+    "japaneseName": "Nymphiaニンフィア",
+    "pokedexNumber": 700,
+    "abilities": ["Cute Charm", "Pixilate"],
+    "baseAttack": 65,
+    "captureRate": 45,
+    "classification": "Intertwining Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1,
+    "baseHp": 95,
+    "baseSpAttack": 110,
+    "baseSpDefense": 130,
+    "baseSpeed": 60,
+    "primaryType": "fairy",
+    "secondaryType": "",
+    "baseWeight": 23.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Taillow",
+    "id": 684,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "taillow",
+    "japaneseName": "Subameスバメ",
+    "pokedexNumber": 276,
+    "abilities": ["Guts", "Scrappy"],
+    "baseAttack": 55,
+    "captureRate": 200,
+    "classification": "TinySwallow Pokémon",
+    "baseDefense": 30,
+    "baseHeight": 0.3,
+    "baseHp": 40,
+    "baseSpAttack": 30,
+    "baseSpDefense": 30,
+    "baseSpeed": 85,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 2.3,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Talonflame",
+    "id": 685,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "talonflame",
+    "japaneseName": "Fiarrowファイアロー",
+    "pokedexNumber": 663,
+    "abilities": ["Flame Body", "Gale Wings"],
+    "baseAttack": 81,
+    "captureRate": 45,
+    "classification": "Scorching Pokémon",
+    "baseDefense": 71,
+    "baseHeight": 1.2,
+    "baseHp": 78,
+    "baseSpAttack": 74,
+    "baseSpDefense": 69,
+    "baseSpeed": 126,
+    "primaryType": "fire",
+    "secondaryType": "flying",
+    "baseWeight": 24.5,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Tangela",
+    "id": 686,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tangela",
+    "japaneseName": "Monjaraモンジャラ",
+    "pokedexNumber": 114,
+    "abilities": ["Chlorophyll", "Leaf Guard", "Regenerator"],
+    "baseAttack": 55,
+    "captureRate": 45,
+    "classification": "Vine Pokémon",
+    "baseDefense": 115,
+    "baseHeight": 1,
+    "baseHp": 65,
+    "baseSpAttack": 100,
+    "baseSpDefense": 40,
+    "baseSpeed": 60,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 35,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Tangrowth",
+    "id": 687,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tangrowth",
+    "japaneseName": "Mojumboモジャンボ",
+    "pokedexNumber": 465,
+    "abilities": ["Chlorophyll", "Leaf Guard", "Regenerator"],
+    "baseAttack": 100,
+    "captureRate": 30,
+    "classification": "Vine Pokémon",
+    "baseDefense": 125,
+    "baseHeight": 2,
+    "baseHp": 100,
+    "baseSpAttack": 110,
+    "baseSpDefense": 50,
+    "baseSpeed": 50,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 128.6,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Tapu Bulu",
+    "id": 688,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tapu-bulu",
+    "japaneseName": "Kapu-bululカプ・ブルル",
+    "pokedexNumber": 787,
+    "abilities": ["Grassy Surge", "Telepathy"],
+    "baseAttack": 130,
+    "captureRate": 3,
+    "classification": "Land Spirit Pokémon",
+    "baseDefense": 115,
+    "baseHeight": 1.9,
+    "baseHp": 70,
+    "baseSpAttack": 85,
+    "baseSpDefense": 95,
+    "baseSpeed": 75,
+    "primaryType": "grass",
+    "secondaryType": "fairy",
+    "baseWeight": 45.5,
+    "generation": 7,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Tapu Fini",
+    "id": 689,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tapu-fini",
+    "japaneseName": "Kapu-rehireカプ・レヒレ",
+    "pokedexNumber": 788,
+    "abilities": ["Misty Surge", "Telepathy"],
+    "baseAttack": 75,
+    "captureRate": 3,
+    "classification": "Land Spirit Pokémon",
+    "baseDefense": 115,
+    "baseHeight": 1.3,
+    "baseHp": 70,
+    "baseSpAttack": 95,
+    "baseSpDefense": 130,
+    "baseSpeed": 85,
+    "primaryType": "water",
+    "secondaryType": "fairy",
+    "baseWeight": 21.2,
+    "generation": 7,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Tapu Koko",
+    "id": 690,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tapu-koko",
+    "japaneseName": "Kapu-kokekoカプ・コケコ",
+    "pokedexNumber": 785,
+    "abilities": ["Electric Surge", "Telepathy"],
+    "baseAttack": 115,
+    "captureRate": 3,
+    "classification": "Land Spirit Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 1.8,
+    "baseHp": 70,
+    "baseSpAttack": 95,
+    "baseSpDefense": 75,
+    "baseSpeed": 130,
+    "primaryType": "electric",
+    "secondaryType": "fairy",
+    "baseWeight": 20.5,
+    "generation": 7,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Tapu Lele",
+    "id": 691,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tapu-lele",
+    "japaneseName": "Kapu-tetefuカプ・テテフ",
+    "pokedexNumber": 786,
+    "abilities": ["Psychic Surge", "Telepathy"],
+    "baseAttack": 85,
+    "captureRate": 3,
+    "classification": "Land Spirit Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 1.2,
+    "baseHp": 70,
+    "baseSpAttack": 130,
+    "baseSpDefense": 115,
+    "baseSpeed": 95,
+    "primaryType": "psychic",
+    "secondaryType": "fairy",
+    "baseWeight": 18.6,
+    "generation": 7,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Tauros",
+    "id": 692,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tauros",
+    "japaneseName": "Kentaurosケンタロス",
+    "pokedexNumber": 128,
+    "abilities": ["Intimidate", "Anger Point", "Sheer Force"],
+    "baseAttack": 100,
+    "captureRate": 45,
+    "classification": "Wild Bull Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 1.4,
+    "baseHp": 75,
+    "baseSpAttack": 40,
+    "baseSpDefense": 70,
+    "baseSpeed": 110,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 88.4,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Teddiursa",
+    "id": 693,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "teddiursa",
+    "japaneseName": "Himegumaヒメグマ",
+    "pokedexNumber": 216,
+    "abilities": ["Pickup", "Quick Feet", "Honey Gather"],
+    "baseAttack": 80,
+    "captureRate": 120,
+    "classification": "Little Bear Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.6,
+    "baseHp": 60,
+    "baseSpAttack": 50,
+    "baseSpDefense": 50,
+    "baseSpeed": 40,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 8.8,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Tentacool",
+    "id": 694,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tentacool",
+    "japaneseName": "Menokurageメノクラゲ",
+    "pokedexNumber": 72,
+    "abilities": ["Clear Body", "Liquid Ooze", "Rain Dish"],
+    "baseAttack": 40,
+    "captureRate": 190,
+    "classification": "Jellyfish Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.9,
+    "baseHp": 40,
+    "baseSpAttack": 50,
+    "baseSpDefense": 100,
+    "baseSpeed": 70,
+    "primaryType": "water",
+    "secondaryType": "poison",
+    "baseWeight": 45.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Tentacruel",
+    "id": 695,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tentacruel",
+    "japaneseName": "Dokukurageドククラゲ",
+    "pokedexNumber": 73,
+    "abilities": ["Clear Body", "Liquid Ooze", "Rain Dish"],
+    "baseAttack": 70,
+    "captureRate": 60,
+    "classification": "Jellyfish Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1.6,
+    "baseHp": 80,
+    "baseSpAttack": 80,
+    "baseSpDefense": 120,
+    "baseSpeed": 100,
+    "primaryType": "water",
+    "secondaryType": "poison",
+    "baseWeight": 55,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Tepig",
+    "id": 696,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tepig",
+    "japaneseName": "Pokabuポカブ",
+    "pokedexNumber": 498,
+    "abilities": ["Blaze", "Thick Fat"],
+    "baseAttack": 63,
+    "captureRate": 45,
+    "classification": "Fire Pig Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.5,
+    "baseHp": 65,
+    "baseSpAttack": 45,
+    "baseSpDefense": 45,
+    "baseSpeed": 45,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 9.9,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Terrakion",
+    "id": 697,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "terrakion",
+    "japaneseName": "Terrakionテラキオン",
+    "pokedexNumber": 639,
+    "abilities": ["Justified"],
+    "baseAttack": 129,
+    "captureRate": 3,
+    "classification": "Cavern Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 1.9,
+    "baseHp": 91,
+    "baseSpAttack": 72,
+    "baseSpDefense": 90,
+    "baseSpeed": 108,
+    "primaryType": "rock",
+    "secondaryType": "fighting",
+    "baseWeight": 260,
+    "generation": 5,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Throh",
+    "id": 698,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "throh",
+    "japaneseName": "Nagekiナゲキ",
+    "pokedexNumber": 538,
+    "abilities": ["Guts", "Inner Focus", "Mold Breaker"],
+    "baseAttack": 100,
+    "captureRate": 45,
+    "classification": "Judo Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 1.3,
+    "baseHp": 120,
+    "baseSpAttack": 30,
+    "baseSpDefense": 85,
+    "baseSpeed": 45,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 55.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Thundurus",
+    "id": 699,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "thundurus-incarnate",
+    "japaneseName": "Voltolos (keshin Forme)ボルトロス",
+    "pokedexNumber": 642,
+    "abilities": ["Prankster", "Defiant", "Volt Absorb"],
+    "baseAttack": 105,
+    "captureRate": 3,
+    "classification": "Bolt Strike Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.5,
+    "baseHp": 79,
+    "baseSpAttack": 145,
+    "baseSpDefense": 80,
+    "baseSpeed": 101,
+    "primaryType": "electric",
+    "secondaryType": "flying",
+    "baseWeight": 61,
+    "generation": 5,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Timburr",
+    "id": 700,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "timburr",
+    "japaneseName": "Dokkorerドッコラー",
+    "pokedexNumber": 532,
+    "abilities": ["Guts", "Sheer Force", "Iron Fist"],
+    "baseAttack": 80,
+    "captureRate": 180,
+    "classification": "Muscular Pokémon",
+    "baseDefense": 55,
+    "baseHeight": 0.6,
+    "baseHp": 75,
+    "baseSpAttack": 25,
+    "baseSpDefense": 35,
+    "baseSpeed": 35,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 12.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Tirtouga",
+    "id": 701,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tirtouga",
+    "japaneseName": "Protogaプロトーガ",
+    "pokedexNumber": 564,
+    "abilities": ["Solid Rock", "Sturdy", "Swift Swim"],
+    "baseAttack": 78,
+    "captureRate": 45,
+    "classification": "Prototurtle Pokémon",
+    "baseDefense": 103,
+    "baseHeight": 0.7,
+    "baseHp": 54,
+    "baseSpAttack": 53,
+    "baseSpDefense": 45,
+    "baseSpeed": 22,
+    "primaryType": "water",
+    "secondaryType": "rock",
+    "baseWeight": 16.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Togedemaru",
+    "id": 702,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "togedemaru",
+    "japaneseName": "Togedemaruトゲデマル",
+    "pokedexNumber": 777,
+    "abilities": ["Iron Barbs", "Lightningrod", "Sturdy"],
+    "baseAttack": 98,
+    "captureRate": 180,
+    "classification": "Roly-Poly Pokémon",
+    "baseDefense": 63,
+    "baseHeight": 0.3,
+    "baseHp": 65,
+    "baseSpAttack": 40,
+    "baseSpDefense": 73,
+    "baseSpeed": 96,
+    "primaryType": "electric",
+    "secondaryType": "steel",
+    "baseWeight": 3.3,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Togekiss",
+    "id": 703,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "togekiss",
+    "japaneseName": "Togekissトゲキッス",
+    "pokedexNumber": 468,
+    "abilities": ["Hustle", "Serene Grace", "Super Luck"],
+    "baseAttack": 50,
+    "captureRate": 30,
+    "classification": "Jubilee Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 1.5,
+    "baseHp": 85,
+    "baseSpAttack": 120,
+    "baseSpDefense": 115,
+    "baseSpeed": 80,
+    "primaryType": "fairy",
+    "secondaryType": "flying",
+    "baseWeight": 38,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Togepi",
+    "id": 704,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "togepi",
+    "japaneseName": "Togepyトゲピー",
+    "pokedexNumber": 175,
+    "abilities": ["Hustle", "Serene Grace", "Super Luck"],
+    "baseAttack": 20,
+    "captureRate": 190,
+    "classification": "Spike Ball Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 0.3,
+    "baseHp": 35,
+    "baseSpAttack": 40,
+    "baseSpDefense": 65,
+    "baseSpeed": 20,
+    "primaryType": "fairy",
+    "secondaryType": "",
+    "baseWeight": 1.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Togetic",
+    "id": 705,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "togetic",
+    "japaneseName": "Togechickトゲチック",
+    "pokedexNumber": 176,
+    "abilities": ["Hustle", "Serene Grace", "Super Luck"],
+    "baseAttack": 40,
+    "captureRate": 75,
+    "classification": "Happiness Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 0.6,
+    "baseHp": 55,
+    "baseSpAttack": 80,
+    "baseSpDefense": 105,
+    "baseSpeed": 40,
+    "primaryType": "fairy",
+    "secondaryType": "flying",
+    "baseWeight": 3.2,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Torchic",
+    "id": 706,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "torchic",
+    "japaneseName": "Achamoアチャモ",
+    "pokedexNumber": 255,
+    "abilities": ["Blaze", "Speed Boost"],
+    "baseAttack": 60,
+    "captureRate": 45,
+    "classification": "Chick Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.4,
+    "baseHp": 45,
+    "baseSpAttack": 70,
+    "baseSpDefense": 50,
+    "baseSpeed": 45,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 2.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Torkoal",
+    "id": 707,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "torkoal",
+    "japaneseName": "Cotoiseコータス",
+    "pokedexNumber": 324,
+    "abilities": ["White Smoke", "Drought", "Shell Armor"],
+    "baseAttack": 85,
+    "captureRate": 90,
+    "classification": "Coal Pokémon",
+    "baseDefense": 140,
+    "baseHeight": 0.5,
+    "baseHp": 70,
+    "baseSpAttack": 85,
+    "baseSpDefense": 70,
+    "baseSpeed": 20,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 80.4,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Tornadus",
+    "id": 708,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tornadus-incarnate",
+    "japaneseName": "Tornelos (keshin Forme)トルネロス",
+    "pokedexNumber": 641,
+    "abilities": ["Prankster", "Defiant", "Regenerator"],
+    "baseAttack": 100,
+    "captureRate": 3,
+    "classification": "Cyclone Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.5,
+    "baseHp": 79,
+    "baseSpAttack": 110,
+    "baseSpDefense": 90,
+    "baseSpeed": 121,
+    "primaryType": "flying",
+    "secondaryType": "",
+    "baseWeight": 63,
+    "generation": 5,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Torracat",
+    "id": 709,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "torracat",
+    "japaneseName": "Nyaheatニャヒート",
+    "pokedexNumber": 726,
+    "abilities": ["Blaze", "Intimidate"],
+    "baseAttack": 85,
+    "captureRate": 45,
+    "classification": "Fire Cat Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.7,
+    "baseHp": 65,
+    "baseSpAttack": 80,
+    "baseSpDefense": 50,
+    "baseSpeed": 90,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 25,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Torterra",
+    "id": 710,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "torterra",
+    "japaneseName": "Dodaitoseドダイトス",
+    "pokedexNumber": 389,
+    "abilities": ["Overgrow", "Shell Armor"],
+    "baseAttack": 109,
+    "captureRate": 45,
+    "classification": "Continent Pokémon",
+    "baseDefense": 105,
+    "baseHeight": 2.2,
+    "baseHp": 95,
+    "baseSpAttack": 75,
+    "baseSpDefense": 85,
+    "baseSpeed": 56,
+    "primaryType": "grass",
+    "secondaryType": "ground",
+    "baseWeight": 310,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Totodile",
+    "id": 711,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "totodile",
+    "japaneseName": "Waninokoワニノコ",
+    "pokedexNumber": 158,
+    "abilities": ["Torrent", "Sheer Force"],
+    "baseAttack": 65,
+    "captureRate": 45,
+    "classification": "Big Jaw Pokémon",
+    "baseDefense": 64,
+    "baseHeight": 0.6,
+    "baseHp": 50,
+    "baseSpAttack": 44,
+    "baseSpDefense": 48,
+    "baseSpeed": 43,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 9.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Toucannon",
+    "id": 712,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "toucannon",
+    "japaneseName": "Dodekabashiドデカバシ",
+    "pokedexNumber": 733,
+    "abilities": ["Keen Eye", "Skill Link", "Sheer Force"],
+    "baseAttack": 120,
+    "captureRate": 45,
+    "classification": "Cannon Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 1.1,
+    "baseHp": 80,
+    "baseSpAttack": 75,
+    "baseSpDefense": 75,
+    "baseSpeed": 60,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 26,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Toxapex",
+    "id": 713,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "toxapex",
+    "japaneseName": "Dohidoideドヒドイデ",
+    "pokedexNumber": 748,
+    "abilities": ["Merciless", "Limber", "Regenerator"],
+    "baseAttack": 63,
+    "captureRate": 75,
+    "classification": "Brutal Star Pokémon",
+    "baseDefense": 152,
+    "baseHeight": 0.7,
+    "baseHp": 50,
+    "baseSpAttack": 53,
+    "baseSpDefense": 142,
+    "baseSpeed": 35,
+    "primaryType": "poison",
+    "secondaryType": "water",
+    "baseWeight": 14.5,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Toxicroak",
+    "id": 714,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "toxicroak",
+    "japaneseName": "Dokurogドクロッグ",
+    "pokedexNumber": 454,
+    "abilities": ["Anticipation", "Dry Skin", "Poison Touch"],
+    "baseAttack": 106,
+    "captureRate": 75,
+    "classification": "Toxic Mouth Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1.3,
+    "baseHp": 83,
+    "baseSpAttack": 86,
+    "baseSpDefense": 65,
+    "baseSpeed": 85,
+    "primaryType": "poison",
+    "secondaryType": "fighting",
+    "baseWeight": 44.4,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Tranquill",
+    "id": 715,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tranquill",
+    "japaneseName": "Hatobohハトーボー",
+    "pokedexNumber": 520,
+    "abilities": ["Big Pecks", "Super Luck", "Rivalry"],
+    "baseAttack": 77,
+    "captureRate": 120,
+    "classification": "Wild Pigeon Pokémon",
+    "baseDefense": 62,
+    "baseHeight": 0.6,
+    "baseHp": 62,
+    "baseSpAttack": 50,
+    "baseSpDefense": 42,
+    "baseSpeed": 65,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 15,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Trapinch",
+    "id": 716,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "trapinch",
+    "japaneseName": "Nuckrarナックラー",
+    "pokedexNumber": 328,
+    "abilities": ["Hyper Cutter", "Arena Trap", "Sheer Force"],
+    "baseAttack": 100,
+    "captureRate": 255,
+    "classification": "Ant Pit Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.7,
+    "baseHp": 45,
+    "baseSpAttack": 45,
+    "baseSpDefense": 45,
+    "baseSpeed": 10,
+    "primaryType": "ground",
+    "secondaryType": "",
+    "baseWeight": 15,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Treecko",
+    "id": 717,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "treecko",
+    "japaneseName": "Kimoriキモリ",
+    "pokedexNumber": 252,
+    "abilities": ["Overgrow", "Unburden"],
+    "baseAttack": 45,
+    "captureRate": 45,
+    "classification": "Wood Gecko Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.5,
+    "baseHp": 40,
+    "baseSpAttack": 65,
+    "baseSpDefense": 55,
+    "baseSpeed": 70,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Trevenant",
+    "id": 718,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "trevenant",
+    "japaneseName": "Ohrotオーロット",
+    "pokedexNumber": 709,
+    "abilities": ["Natural Cure", "Frisk", "Harvest"],
+    "baseAttack": 110,
+    "captureRate": 60,
+    "classification": "Elder Tree Pokémon",
+    "baseDefense": 76,
+    "baseHeight": 1.5,
+    "baseHp": 85,
+    "baseSpAttack": 65,
+    "baseSpDefense": 82,
+    "baseSpeed": 56,
+    "primaryType": "ghost",
+    "secondaryType": "grass",
+    "baseWeight": 71,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Tropius",
+    "id": 719,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tropius",
+    "japaneseName": "Tropiusトロピウス",
+    "pokedexNumber": 357,
+    "abilities": ["Chlorophyll", "Solar Power", "Harvest"],
+    "baseAttack": 68,
+    "captureRate": 200,
+    "classification": "Fruit Pokémon",
+    "baseDefense": 83,
+    "baseHeight": 2,
+    "baseHp": 99,
+    "baseSpAttack": 72,
+    "baseSpDefense": 87,
+    "baseSpeed": 51,
+    "primaryType": "grass",
+    "secondaryType": "flying",
+    "baseWeight": 100,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Trubbish",
+    "id": 720,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "trubbish",
+    "japaneseName": "Yabukuronヤブクロン",
+    "pokedexNumber": 568,
+    "abilities": ["Stench", "Sticky Hold", "Aftermath"],
+    "baseAttack": 50,
+    "captureRate": 190,
+    "classification": "Trash Bag Pokémon",
+    "baseDefense": 62,
+    "baseHeight": 0.6,
+    "baseHp": 50,
+    "baseSpAttack": 40,
+    "baseSpDefense": 62,
+    "baseSpeed": 65,
+    "primaryType": "poison",
+    "secondaryType": "",
+    "baseWeight": 31,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Trumbeak",
+    "id": 721,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "trumbeak",
+    "japaneseName": "Kerarappaケララッパ",
+    "pokedexNumber": 732,
+    "abilities": ["Keen Eye", "Skill Link", "Pickup"],
+    "baseAttack": 85,
+    "captureRate": 120,
+    "classification": "Bugle Beak Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.6,
+    "baseHp": 55,
+    "baseSpAttack": 40,
+    "baseSpDefense": 50,
+    "baseSpeed": 75,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 14.8,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Tsareena",
+    "id": 722,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tsareena",
+    "japaneseName": "Amajoアマージョ",
+    "pokedexNumber": 763,
+    "abilities": ["Leaf Guard", "Queenly Majesty", "Sweet Veil"],
+    "baseAttack": 120,
+    "captureRate": 45,
+    "classification": "Fruit Pokémon",
+    "baseDefense": 98,
+    "baseHeight": 1.2,
+    "baseHp": 72,
+    "baseSpAttack": 50,
+    "baseSpDefense": 98,
+    "baseSpeed": 72,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 21.4,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Turtonator",
+    "id": 723,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "turtonator",
+    "japaneseName": "Bakugamesバクガメス",
+    "pokedexNumber": 776,
+    "abilities": ["Shell Armor"],
+    "baseAttack": 78,
+    "captureRate": 70,
+    "classification": "Blast Turtle Pokémon",
+    "baseDefense": 135,
+    "baseHeight": 2,
+    "baseHp": 60,
+    "baseSpAttack": 91,
+    "baseSpDefense": 85,
+    "baseSpeed": 36,
+    "primaryType": "fire",
+    "secondaryType": "dragon",
+    "baseWeight": 212,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Turtwig",
+    "id": 724,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "turtwig",
+    "japaneseName": "Naetleナエトル",
+    "pokedexNumber": 387,
+    "abilities": ["Overgrow", "Shell Armor"],
+    "baseAttack": 68,
+    "captureRate": 45,
+    "classification": "Tiny Leaf Pokémon",
+    "baseDefense": 64,
+    "baseHeight": 0.4,
+    "baseHp": 55,
+    "baseSpAttack": 45,
+    "baseSpDefense": 55,
+    "baseSpeed": 31,
+    "primaryType": "grass",
+    "secondaryType": "",
+    "baseWeight": 10.2,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Tympole",
+    "id": 725,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tympole",
+    "japaneseName": "Otamaroオタマロ",
+    "pokedexNumber": 535,
+    "abilities": ["Swift Swim", "Hydration", "Water Absorb"],
+    "baseAttack": 50,
+    "captureRate": 255,
+    "classification": "Tadpole Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.5,
+    "baseHp": 50,
+    "baseSpAttack": 50,
+    "baseSpDefense": 40,
+    "baseSpeed": 64,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 4.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Tynamo",
+    "id": 726,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tynamo",
+    "japaneseName": "Shibishirasuシビシラス",
+    "pokedexNumber": 602,
+    "abilities": ["Levitate"],
+    "baseAttack": 55,
+    "captureRate": 190,
+    "classification": "EleFish Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.2,
+    "baseHp": 35,
+    "baseSpAttack": 45,
+    "baseSpDefense": 40,
+    "baseSpeed": 60,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 0.3,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Type: Null",
+    "id": 727,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "type-null",
+    "japaneseName": "Type: Nullタイプ:ヌル",
+    "pokedexNumber": 772,
+    "abilities": ["Battle Armor"],
+    "baseAttack": 95,
+    "captureRate": 3,
+    "classification": "Synthetic Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 1.9,
+    "baseHp": 95,
+    "baseSpAttack": 95,
+    "baseSpDefense": 95,
+    "baseSpeed": 59,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 120.5,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Typhlosion",
+    "id": 728,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "typhlosion",
+    "japaneseName": "Bakphoonバクフーン",
+    "pokedexNumber": 157,
+    "abilities": ["Blaze", "Flash Fire"],
+    "baseAttack": 84,
+    "captureRate": 45,
+    "classification": "Volcano Pokémon",
+    "baseDefense": 78,
+    "baseHeight": 1.7,
+    "baseHp": 78,
+    "baseSpAttack": 109,
+    "baseSpDefense": 85,
+    "baseSpeed": 100,
+    "primaryType": "fire",
+    "secondaryType": "",
+    "baseWeight": 79.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Tyranitar",
+    "id": 729,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tyranitar",
+    "japaneseName": "Bangirasバンギラス",
+    "pokedexNumber": 248,
+    "abilities": ["Sand Stream", "Unnerve"],
+    "baseAttack": 164,
+    "captureRate": 45,
+    "classification": "Armor Pokémon",
+    "baseDefense": 150,
+    "baseHeight": 2,
+    "baseHp": 100,
+    "baseSpAttack": 95,
+    "baseSpDefense": 120,
+    "baseSpeed": 71,
+    "primaryType": "rock",
+    "secondaryType": "dark",
+    "baseWeight": 202,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Tyrantrum",
+    "id": 730,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tyrantrum",
+    "japaneseName": "Gachigorasガチゴラス",
+    "pokedexNumber": 697,
+    "abilities": ["Strong Jaw", "Rock Head"],
+    "baseAttack": 121,
+    "captureRate": 45,
+    "classification": "Despot Pokémon",
+    "baseDefense": 119,
+    "baseHeight": 2.5,
+    "baseHp": 82,
+    "baseSpAttack": 69,
+    "baseSpDefense": 59,
+    "baseSpeed": 71,
+    "primaryType": "rock",
+    "secondaryType": "dragon",
+    "baseWeight": 270,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Tyrogue",
+    "id": 731,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tyrogue",
+    "japaneseName": "Balkieバルキー",
+    "pokedexNumber": 236,
+    "abilities": ["Guts", "Steadfast", "Vital Spirit"],
+    "baseAttack": 35,
+    "captureRate": 75,
+    "classification": "Scuffle Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.7,
+    "baseHp": 35,
+    "baseSpAttack": 35,
+    "baseSpDefense": 35,
+    "baseSpeed": 35,
+    "primaryType": "fighting",
+    "secondaryType": "",
+    "baseWeight": 21,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Tyrunt",
+    "id": 732,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "tyrunt",
+    "japaneseName": "Chigorasチゴラス",
+    "pokedexNumber": 696,
+    "abilities": ["Strong Jaw", "Sturdy"],
+    "baseAttack": 89,
+    "captureRate": 45,
+    "classification": "Royal Heir Pokémon",
+    "baseDefense": 77,
+    "baseHeight": 0.8,
+    "baseHp": 58,
+    "baseSpAttack": 45,
+    "baseSpDefense": 45,
+    "baseSpeed": 48,
+    "primaryType": "rock",
+    "secondaryType": "dragon",
+    "baseWeight": 26,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Umbreon",
+    "id": 733,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "umbreon",
+    "japaneseName": "Blackyブラッキー",
+    "pokedexNumber": 197,
+    "abilities": ["Synchronize", "Inner Focus"],
+    "baseAttack": 65,
+    "captureRate": 45,
+    "classification": "Moonlight Pokémon",
+    "baseDefense": 110,
+    "baseHeight": 1,
+    "baseHp": 95,
+    "baseSpAttack": 60,
+    "baseSpDefense": 130,
+    "baseSpeed": 65,
+    "primaryType": "dark",
+    "secondaryType": "",
+    "baseWeight": 27,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Unfezant",
+    "id": 734,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "unfezant",
+    "japaneseName": "Kenhallowケンホロウ",
+    "pokedexNumber": 521,
+    "abilities": ["Big Pecks", "Super Luck", "Rivalry"],
+    "baseAttack": 115,
+    "captureRate": 45,
+    "classification": "Proud Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.2,
+    "baseHp": 80,
+    "baseSpAttack": 65,
+    "baseSpDefense": 55,
+    "baseSpeed": 93,
+    "primaryType": "normal",
+    "secondaryType": "flying",
+    "baseWeight": 29,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Unown",
+    "id": 735,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "unown",
+    "japaneseName": "Unknownアンノーン",
+    "pokedexNumber": 201,
+    "abilities": ["Levitate"],
+    "baseAttack": 72,
+    "captureRate": 225,
+    "classification": "Symbol Pokémon",
+    "baseDefense": 48,
+    "baseHeight": 0.5,
+    "baseHp": 48,
+    "baseSpAttack": 72,
+    "baseSpDefense": 48,
+    "baseSpeed": 48,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Ursaring",
+    "id": 736,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "ursaring",
+    "japaneseName": "Ringumaリングマ",
+    "pokedexNumber": 217,
+    "abilities": ["Guts", "Quick Feet", "Unnerve"],
+    "baseAttack": 130,
+    "captureRate": 60,
+    "classification": "Hibernator Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 1.8,
+    "baseHp": 90,
+    "baseSpAttack": 75,
+    "baseSpDefense": 75,
+    "baseSpeed": 55,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 125.8,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Uxie",
+    "id": 737,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "uxie",
+    "japaneseName": "Yuxieユクシー",
+    "pokedexNumber": 480,
+    "abilities": ["Levitate"],
+    "baseAttack": 75,
+    "captureRate": 3,
+    "classification": "Knowledge Pokémon",
+    "baseDefense": 130,
+    "baseHeight": 0.3,
+    "baseHp": 75,
+    "baseSpAttack": 75,
+    "baseSpDefense": 130,
+    "baseSpeed": 95,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 0.3,
+    "generation": 4,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Vanillish",
+    "id": 738,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "vanillish",
+    "japaneseName": "Vanirichバニリッチ",
+    "pokedexNumber": 583,
+    "abilities": ["Ice Body", "Snow Cloak", "Weak Armor"],
+    "baseAttack": 65,
+    "captureRate": 120,
+    "classification": "Icy Snow Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1.1,
+    "baseHp": 51,
+    "baseSpAttack": 80,
+    "baseSpDefense": 75,
+    "baseSpeed": 59,
+    "primaryType": "ice",
+    "secondaryType": "",
+    "baseWeight": 41,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Vanillite",
+    "id": 739,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "vanillite",
+    "japaneseName": "Vanipetiバニプッチ",
+    "pokedexNumber": 582,
+    "abilities": ["Ice Body", "Snow Cloak", "Weak Armor"],
+    "baseAttack": 50,
+    "captureRate": 255,
+    "classification": "Fresh Snow Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.4,
+    "baseHp": 36,
+    "baseSpAttack": 65,
+    "baseSpDefense": 60,
+    "baseSpeed": 44,
+    "primaryType": "ice",
+    "secondaryType": "",
+    "baseWeight": 5.7,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Vanilluxe",
+    "id": 740,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "vanilluxe",
+    "japaneseName": "Baivanillaバイバニラ",
+    "pokedexNumber": 584,
+    "abilities": ["Ice Body", "Snow Warning", "Weak Armor"],
+    "baseAttack": 95,
+    "captureRate": 45,
+    "classification": "Snowstorm Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 1.3,
+    "baseHp": 71,
+    "baseSpAttack": 110,
+    "baseSpDefense": 95,
+    "baseSpeed": 79,
+    "primaryType": "ice",
+    "secondaryType": "",
+    "baseWeight": 57.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Vaporeon",
+    "id": 741,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "vaporeon",
+    "japaneseName": "Showersシャワーズ",
+    "pokedexNumber": 134,
+    "abilities": ["Water Absorb", "Hydration"],
+    "baseAttack": 65,
+    "captureRate": 45,
+    "classification": "Bubble Jet Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 1,
+    "baseHp": 130,
+    "baseSpAttack": 110,
+    "baseSpDefense": 95,
+    "baseSpeed": 65,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 29,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Venipede",
+    "id": 742,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "venipede",
+    "japaneseName": "Fushideフシデ",
+    "pokedexNumber": 543,
+    "abilities": ["Poison Point", "Swarm", "Speed Boost"],
+    "baseAttack": 45,
+    "captureRate": 255,
+    "classification": "Centipede Pokémon",
+    "baseDefense": 59,
+    "baseHeight": 0.4,
+    "baseHp": 30,
+    "baseSpAttack": 30,
+    "baseSpDefense": 39,
+    "baseSpeed": 57,
+    "primaryType": "bug",
+    "secondaryType": "poison",
+    "baseWeight": 5.3,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Venomoth",
+    "id": 743,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "venomoth",
+    "japaneseName": "Morphonモルフォン",
+    "pokedexNumber": 49,
+    "abilities": ["Shield Dust", "Tinted Lens", "Wonder Skin "],
+    "baseAttack": 65,
+    "captureRate": 75,
+    "classification": "Poison Moth Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 1.5,
+    "baseHp": 70,
+    "baseSpAttack": 90,
+    "baseSpDefense": 75,
+    "baseSpeed": 90,
+    "primaryType": "bug",
+    "secondaryType": "poison",
+    "baseWeight": 12.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Venonat",
+    "id": 744,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "venonat",
+    "japaneseName": "Kongpangコンパン",
+    "pokedexNumber": 48,
+    "abilities": ["Compoundeyes", "Tinted Lens", "Run Away"],
+    "baseAttack": 55,
+    "captureRate": 190,
+    "classification": "Insect Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 1,
+    "baseHp": 60,
+    "baseSpAttack": 40,
+    "baseSpDefense": 55,
+    "baseSpeed": 45,
+    "primaryType": "bug",
+    "secondaryType": "poison",
+    "baseWeight": 30,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Venusaur",
+    "id": 745,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "venusaur",
+    "japaneseName": "Fushigibanaフシギバナ",
+    "pokedexNumber": 3,
+    "abilities": ["Overgrow", "Chlorophyll"],
+    "baseAttack": 100,
+    "captureRate": 45,
+    "classification": "Seed Pokémon",
+    "baseDefense": 123,
+    "baseHeight": 2,
+    "baseHp": 80,
+    "baseSpAttack": 122,
+    "baseSpDefense": 120,
+    "baseSpeed": 80,
+    "primaryType": "grass",
+    "secondaryType": "poison",
+    "baseWeight": 100,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Vespiquen",
+    "id": 746,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "vespiquen",
+    "japaneseName": "Beequenビークイン",
+    "pokedexNumber": 416,
+    "abilities": ["Pressure", "Unnerve"],
+    "baseAttack": 80,
+    "captureRate": 45,
+    "classification": "Beehive Pokémon",
+    "baseDefense": 102,
+    "baseHeight": 1.2,
+    "baseHp": 70,
+    "baseSpAttack": 80,
+    "baseSpDefense": 102,
+    "baseSpeed": 40,
+    "primaryType": "bug",
+    "secondaryType": "flying",
+    "baseWeight": 38.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Vibrava",
+    "id": 747,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "vibrava",
+    "japaneseName": "Vibravaビブラーバ",
+    "pokedexNumber": 329,
+    "abilities": ["Levitate"],
+    "baseAttack": 70,
+    "captureRate": 120,
+    "classification": "Vibration Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 1.1,
+    "baseHp": 50,
+    "baseSpAttack": 50,
+    "baseSpDefense": 50,
+    "baseSpeed": 70,
+    "primaryType": "ground",
+    "secondaryType": "dragon",
+    "baseWeight": 15.3,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Victini",
+    "id": 748,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "victini",
+    "japaneseName": "Victiniビクティニ",
+    "pokedexNumber": 494,
+    "abilities": ["Victory Star"],
+    "baseAttack": 100,
+    "captureRate": 3,
+    "classification": "Victory Pokémon",
+    "baseDefense": 100,
+    "baseHeight": 0.4,
+    "baseHp": 100,
+    "baseSpAttack": 100,
+    "baseSpDefense": 100,
+    "baseSpeed": 100,
+    "primaryType": "psychic",
+    "secondaryType": "fire",
+    "baseWeight": 4,
+    "generation": 5,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Victreebel",
+    "id": 749,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "victreebel",
+    "japaneseName": "Utsubotウツボット",
+    "pokedexNumber": 71,
+    "abilities": ["Chlorophyll", "Gluttony"],
+    "baseAttack": 105,
+    "captureRate": 45,
+    "classification": "Flycatcher Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1.7,
+    "baseHp": 80,
+    "baseSpAttack": 100,
+    "baseSpDefense": 70,
+    "baseSpeed": 70,
+    "primaryType": "grass",
+    "secondaryType": "poison",
+    "baseWeight": 15.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Vigoroth",
+    "id": 750,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "vigoroth",
+    "japaneseName": "Yarukimonoヤルキモノ",
+    "pokedexNumber": 288,
+    "abilities": ["Vital Spirit"],
+    "baseAttack": 80,
+    "captureRate": 120,
+    "classification": "Wild Monkey Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1.4,
+    "baseHp": 80,
+    "baseSpAttack": 55,
+    "baseSpDefense": 55,
+    "baseSpeed": 90,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 46.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Vikavolt",
+    "id": 751,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "vikavolt",
+    "japaneseName": "Kuwagannonクワガノン",
+    "pokedexNumber": 738,
+    "abilities": ["Levitate"],
+    "baseAttack": 70,
+    "captureRate": 45,
+    "classification": "Stag Beetle Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 1.5,
+    "baseHp": 77,
+    "baseSpAttack": 145,
+    "baseSpDefense": 75,
+    "baseSpeed": 43,
+    "primaryType": "bug",
+    "secondaryType": "electric",
+    "baseWeight": 45,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Vileplume",
+    "id": 752,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "vileplume",
+    "japaneseName": "Ruffresiaラフレシア",
+    "pokedexNumber": 45,
+    "abilities": ["Chlorophyll", "Effect Spore"],
+    "baseAttack": 80,
+    "captureRate": 45,
+    "classification": "Flower Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 1.2,
+    "baseHp": 75,
+    "baseSpAttack": 110,
+    "baseSpDefense": 90,
+    "baseSpeed": 50,
+    "primaryType": "grass",
+    "secondaryType": "poison",
+    "baseWeight": 18.6,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Virizion",
+    "id": 753,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "virizion",
+    "japaneseName": "Virizionビリジオン",
+    "pokedexNumber": 640,
+    "abilities": ["Justified"],
+    "baseAttack": 90,
+    "captureRate": 3,
+    "classification": "Grassland Pokémon",
+    "baseDefense": 72,
+    "baseHeight": 2,
+    "baseHp": 91,
+    "baseSpAttack": 90,
+    "baseSpDefense": 129,
+    "baseSpeed": 108,
+    "primaryType": "grass",
+    "secondaryType": "fighting",
+    "baseWeight": 200,
+    "generation": 5,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Vivillon",
+    "id": 754,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "vivillon",
+    "japaneseName": "Viviyonビビヨン",
+    "pokedexNumber": 666,
+    "abilities": ["Shield Dust", "Compoundeyes", "Friend Guard"],
+    "baseAttack": 52,
+    "captureRate": 45,
+    "classification": "Scale Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 1.2,
+    "baseHp": 80,
+    "baseSpAttack": 90,
+    "baseSpDefense": 50,
+    "baseSpeed": 89,
+    "primaryType": "bug",
+    "secondaryType": "flying",
+    "baseWeight": 17,
+    "generation": 6,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Volbeat",
+    "id": 755,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "volbeat",
+    "japaneseName": "Barubeatバルビート",
+    "pokedexNumber": 313,
+    "abilities": ["Illuminate", "Swarm", "Prankster"],
+    "baseAttack": 73,
+    "captureRate": 150,
+    "classification": "Firefly Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 0.7,
+    "baseHp": 65,
+    "baseSpAttack": 47,
+    "baseSpDefense": 85,
+    "baseSpeed": 85,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 17.7,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Volcanion",
+    "id": 756,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "volcanion",
+    "japaneseName": "Volcanionボルケニオン",
+    "pokedexNumber": 721,
+    "abilities": ["Water Absorb"],
+    "baseAttack": 110,
+    "captureRate": 3,
+    "classification": "Steam Pokémon",
+    "baseDefense": 120,
+    "baseHeight": 1.7,
+    "baseHp": 80,
+    "baseSpAttack": 130,
+    "baseSpDefense": 90,
+    "baseSpeed": 70,
+    "primaryType": "fire",
+    "secondaryType": "water",
+    "baseWeight": 195,
+    "generation": 6,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Volcarona",
+    "id": 757,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "volcarona",
+    "japaneseName": "Ulgamothウルガモス",
+    "pokedexNumber": 637,
+    "abilities": ["Flame Body", "Swarm"],
+    "baseAttack": 60,
+    "captureRate": 15,
+    "classification": "Sun Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1.6,
+    "baseHp": 85,
+    "baseSpAttack": 135,
+    "baseSpDefense": 105,
+    "baseSpeed": 100,
+    "primaryType": "bug",
+    "secondaryType": "fire",
+    "baseWeight": 46,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Voltorb",
+    "id": 758,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "voltorb",
+    "japaneseName": "Biriridamaビリリダマ",
+    "pokedexNumber": 100,
+    "abilities": ["Soundproof", "Static", "Aftermath"],
+    "baseAttack": 30,
+    "captureRate": 190,
+    "classification": "Ball Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 0.5,
+    "baseHp": 40,
+    "baseSpAttack": 55,
+    "baseSpDefense": 55,
+    "baseSpeed": 100,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 10.4,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Vullaby",
+    "id": 759,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "vullaby",
+    "japaneseName": "Valchaiバルチャイ",
+    "pokedexNumber": 629,
+    "abilities": ["Big Pecks", "Overcoat", "Weak Armor"],
+    "baseAttack": 55,
+    "captureRate": 190,
+    "classification": "Diapered Pokémon",
+    "baseDefense": 75,
+    "baseHeight": 0.5,
+    "baseHp": 70,
+    "baseSpAttack": 45,
+    "baseSpDefense": 65,
+    "baseSpeed": 60,
+    "primaryType": "dark",
+    "secondaryType": "flying",
+    "baseWeight": 9,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Vulpix",
+    "id": 760,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "vulpix",
+    "japaneseName": "Rokonロコン",
+    "pokedexNumber": 37,
+    "abilities": ["Flash Fire", "Drought", "Snow Cloak", "Snow Warning"],
+    "baseAttack": 41,
+    "captureRate": 190,
+    "classification": "Fox Pokémon",
+    "baseDefense": 40,
+    "baseHeight": "",
+    "baseHp": 38,
+    "baseSpAttack": 50,
+    "baseSpDefense": 65,
+    "baseSpeed": 65,
+    "primaryType": "fire",
+    "secondaryType": "ice",
+    "baseWeight": "",
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Wailmer",
+    "id": 761,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "wailmer",
+    "japaneseName": "Hoerukoホエルコ",
+    "pokedexNumber": 320,
+    "abilities": ["Water Veil", "Oblivious", "Pressure"],
+    "baseAttack": 70,
+    "captureRate": 125,
+    "classification": "Ball Whale Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 2,
+    "baseHp": 130,
+    "baseSpAttack": 70,
+    "baseSpDefense": 35,
+    "baseSpeed": 60,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 130,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Wailord",
+    "id": 762,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "wailord",
+    "japaneseName": "Whalohホエルオー",
+    "pokedexNumber": 321,
+    "abilities": ["Water Veil", "Oblivious", "Pressure"],
+    "baseAttack": 90,
+    "captureRate": 60,
+    "classification": "Float Whale Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 14.5,
+    "baseHp": 170,
+    "baseSpAttack": 90,
+    "baseSpDefense": 45,
+    "baseSpeed": 60,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 398,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Walrein",
+    "id": 763,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "walrein",
+    "japaneseName": "Todoserugaトドゼルガ",
+    "pokedexNumber": 365,
+    "abilities": ["Thick Fat", "Ice Body", "Oblivious"],
+    "baseAttack": 80,
+    "captureRate": 45,
+    "classification": "Ice Break Pokémon",
+    "baseDefense": 90,
+    "baseHeight": 1.4,
+    "baseHp": 110,
+    "baseSpAttack": 95,
+    "baseSpDefense": 90,
+    "baseSpeed": 65,
+    "primaryType": "ice",
+    "secondaryType": "water",
+    "baseWeight": 150.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Wartortle",
+    "id": 764,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "wartortle",
+    "japaneseName": "Kameilカメール",
+    "pokedexNumber": 8,
+    "abilities": ["Torrent", "Rain Dish"],
+    "baseAttack": 63,
+    "captureRate": 45,
+    "classification": "Turtle Pokémon",
+    "baseDefense": 80,
+    "baseHeight": 1,
+    "baseHp": 59,
+    "baseSpAttack": 65,
+    "baseSpDefense": 80,
+    "baseSpeed": 58,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 22.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Watchog",
+    "id": 765,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "watchog",
+    "japaneseName": "Miruhogミルホッグ",
+    "pokedexNumber": 505,
+    "abilities": ["Illuminate", "Keen Eye", "Analytic"],
+    "baseAttack": 85,
+    "captureRate": 255,
+    "classification": "Lookout Pokémon",
+    "baseDefense": 69,
+    "baseHeight": 1.1,
+    "baseHp": 60,
+    "baseSpAttack": 60,
+    "baseSpDefense": 69,
+    "baseSpeed": 77,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 27,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Weavile",
+    "id": 766,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "weavile",
+    "japaneseName": "Manyulaマニューラ",
+    "pokedexNumber": 461,
+    "abilities": ["Pressure", "Pickpocket"],
+    "baseAttack": 120,
+    "captureRate": 45,
+    "classification": "Sharp Claw Pokémon",
+    "baseDefense": 65,
+    "baseHeight": 1.1,
+    "baseHp": 70,
+    "baseSpAttack": 45,
+    "baseSpDefense": 85,
+    "baseSpeed": 125,
+    "primaryType": "dark",
+    "secondaryType": "ice",
+    "baseWeight": 34,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Weedle",
+    "id": 767,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "weedle",
+    "japaneseName": "Beedleビードル",
+    "pokedexNumber": 13,
+    "abilities": ["Shield Dust", "Run Away"],
+    "baseAttack": 35,
+    "captureRate": 255,
+    "classification": "Hairy Pokémon",
+    "baseDefense": 30,
+    "baseHeight": 0.3,
+    "baseHp": 40,
+    "baseSpAttack": 20,
+    "baseSpDefense": 20,
+    "baseSpeed": 50,
+    "primaryType": "bug",
+    "secondaryType": "poison",
+    "baseWeight": 3.2,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Weepinbell",
+    "id": 768,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "weepinbell",
+    "japaneseName": "Utsudonウツドン",
+    "pokedexNumber": 70,
+    "abilities": ["Chlorophyll", "Gluttony"],
+    "baseAttack": 90,
+    "captureRate": 120,
+    "classification": "Flycatcher Pokémon",
+    "baseDefense": 50,
+    "baseHeight": 1,
+    "baseHp": 65,
+    "baseSpAttack": 85,
+    "baseSpDefense": 45,
+    "baseSpeed": 55,
+    "primaryType": "grass",
+    "secondaryType": "poison",
+    "baseWeight": 6.4,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Weezing",
+    "id": 769,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "weezing",
+    "japaneseName": "Matadogasマタドガス",
+    "pokedexNumber": 110,
+    "abilities": ["Levitate"],
+    "baseAttack": 90,
+    "captureRate": 60,
+    "classification": "Poison Gas Pokémon",
+    "baseDefense": 120,
+    "baseHeight": 1.2,
+    "baseHp": 65,
+    "baseSpAttack": 85,
+    "baseSpDefense": 70,
+    "baseSpeed": 60,
+    "primaryType": "poison",
+    "secondaryType": "",
+    "baseWeight": 9.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Whimsicott",
+    "id": 770,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "whimsicott",
+    "japaneseName": "Elfuunエルフーン",
+    "pokedexNumber": 547,
+    "abilities": ["Prankster", "Infiltrator", "Chlorophyll"],
+    "baseAttack": 67,
+    "captureRate": 75,
+    "classification": "Windveiled Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 0.7,
+    "baseHp": 60,
+    "baseSpAttack": 77,
+    "baseSpDefense": 75,
+    "baseSpeed": 116,
+    "primaryType": "grass",
+    "secondaryType": "fairy",
+    "baseWeight": 6.6,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Whirlipede",
+    "id": 771,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "whirlipede",
+    "japaneseName": "Wheegaホイーガ",
+    "pokedexNumber": 544,
+    "abilities": ["Poison Point", "Swarm", "Speed Boost"],
+    "baseAttack": 55,
+    "captureRate": 120,
+    "classification": "Curlipede Pokémon",
+    "baseDefense": 99,
+    "baseHeight": 1.2,
+    "baseHp": 40,
+    "baseSpAttack": 40,
+    "baseSpDefense": 79,
+    "baseSpeed": 47,
+    "primaryType": "bug",
+    "secondaryType": "poison",
+    "baseWeight": 58.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Whiscash",
+    "id": 772,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "whiscash",
+    "japaneseName": "Namazunナマズン",
+    "pokedexNumber": 340,
+    "abilities": ["Oblivious", "Anticipation", "Hydration"],
+    "baseAttack": 78,
+    "captureRate": 75,
+    "classification": "Whiskers Pokémon",
+    "baseDefense": 73,
+    "baseHeight": 0.9,
+    "baseHp": 110,
+    "baseSpAttack": 76,
+    "baseSpDefense": 71,
+    "baseSpeed": 60,
+    "primaryType": "water",
+    "secondaryType": "ground",
+    "baseWeight": 23.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Whismur",
+    "id": 773,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "whismur",
+    "japaneseName": "Gonyonyoゴニョニョ",
+    "pokedexNumber": 293,
+    "abilities": ["Soundproof", "Rattled"],
+    "baseAttack": 51,
+    "captureRate": 190,
+    "classification": "Whisper Pokémon",
+    "baseDefense": 23,
+    "baseHeight": 0.6,
+    "baseHp": 64,
+    "baseSpAttack": 51,
+    "baseSpDefense": 23,
+    "baseSpeed": 28,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 16.3,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Wigglytuff",
+    "id": 774,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "wigglytuff",
+    "japaneseName": "Pukurinプクリン",
+    "pokedexNumber": 40,
+    "abilities": ["Cute Charm", "Competitive", "Frisk"],
+    "baseAttack": 70,
+    "captureRate": 50,
+    "classification": "Balloon Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 1,
+    "baseHp": 140,
+    "baseSpAttack": 85,
+    "baseSpDefense": 50,
+    "baseSpeed": 45,
+    "primaryType": "normal",
+    "secondaryType": "fairy",
+    "baseWeight": 12,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Wimpod",
+    "id": 775,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "wimpod",
+    "japaneseName": "Kosokumushiコソクムシ",
+    "pokedexNumber": 767,
+    "abilities": ["Wimp Out"],
+    "baseAttack": 35,
+    "captureRate": 90,
+    "classification": "Turn Tail Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.5,
+    "baseHp": 25,
+    "baseSpAttack": 20,
+    "baseSpDefense": 30,
+    "baseSpeed": 80,
+    "primaryType": "bug",
+    "secondaryType": "water",
+    "baseWeight": 12,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Wingull",
+    "id": 776,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "wingull",
+    "japaneseName": "Camomeキャモメ",
+    "pokedexNumber": 278,
+    "abilities": ["Keen Eye", "Hydration", "Rain Dish"],
+    "baseAttack": 30,
+    "captureRate": 190,
+    "classification": "Seagull Pokémon",
+    "baseDefense": 30,
+    "baseHeight": 0.6,
+    "baseHp": 40,
+    "baseSpAttack": 55,
+    "baseSpDefense": 30,
+    "baseSpeed": 85,
+    "primaryType": "water",
+    "secondaryType": "flying",
+    "baseWeight": 9.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Wishiwashi",
+    "id": 777,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "wishiwashi-solo",
+    "japaneseName": "Yowashi (tandoku No Sugata)ヨワシ",
+    "pokedexNumber": 746,
+    "abilities": ["Schooling"],
+    "baseAttack": 140,
+    "captureRate": 60,
+    "classification": "Small Fry Pokémon",
+    "baseDefense": 130,
+    "baseHeight": 0.2,
+    "baseHp": 45,
+    "baseSpAttack": 140,
+    "baseSpDefense": 135,
+    "baseSpeed": 30,
+    "primaryType": "water",
+    "secondaryType": "",
+    "baseWeight": 0.3,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Wobbuffet",
+    "id": 778,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "wobbuffet",
+    "japaneseName": "Sonansソーナンス",
+    "pokedexNumber": 202,
+    "abilities": ["Shadow Tag", "Telepathy"],
+    "baseAttack": 33,
+    "captureRate": 45,
+    "classification": "Patient Pokémon",
+    "baseDefense": 58,
+    "baseHeight": 1.3,
+    "baseHp": 190,
+    "baseSpAttack": 33,
+    "baseSpDefense": 58,
+    "baseSpeed": 33,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 28.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Woobat",
+    "id": 779,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "woobat",
+    "japaneseName": "Koromoriコロモリ",
+    "pokedexNumber": 527,
+    "abilities": ["Unaware", "Klutz", "Simple"],
+    "baseAttack": 45,
+    "captureRate": 190,
+    "classification": "Bat Pokémon",
+    "baseDefense": 43,
+    "baseHeight": 0.4,
+    "baseHp": 65,
+    "baseSpAttack": 55,
+    "baseSpDefense": 43,
+    "baseSpeed": 72,
+    "primaryType": "psychic",
+    "secondaryType": "flying",
+    "baseWeight": 2.1,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Wooper",
+    "id": 780,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "wooper",
+    "japaneseName": "Upahウパー",
+    "pokedexNumber": 194,
+    "abilities": ["Damp", "Water Absorb", "Unaware"],
+    "baseAttack": 45,
+    "captureRate": 255,
+    "classification": "Water Fish Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 0.4,
+    "baseHp": 55,
+    "baseSpAttack": 25,
+    "baseSpDefense": 25,
+    "baseSpeed": 15,
+    "primaryType": "water",
+    "secondaryType": "ground",
+    "baseWeight": 8.5,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Wormadam",
+    "id": 781,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "wormadam-plant",
+    "japaneseName": "Minomadam (kusaki No Mino)ミノマダム",
+    "pokedexNumber": 413,
+    "abilities": ["Anticipation", "Overcoat"],
+    "baseAttack": 69,
+    "captureRate": 45,
+    "classification": "Bagworm Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 0.5,
+    "baseHp": 60,
+    "baseSpAttack": 69,
+    "baseSpDefense": 95,
+    "baseSpeed": 36,
+    "primaryType": "bug",
+    "secondaryType": "grass",
+    "baseWeight": 6.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Wurmple",
+    "id": 782,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "wurmple",
+    "japaneseName": "Kemussoケムッソ",
+    "pokedexNumber": 265,
+    "abilities": ["Shield Dust", "Run Away"],
+    "baseAttack": 45,
+    "captureRate": 255,
+    "classification": "Worm Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.3,
+    "baseHp": 45,
+    "baseSpAttack": 20,
+    "baseSpDefense": 30,
+    "baseSpeed": 20,
+    "primaryType": "bug",
+    "secondaryType": "",
+    "baseWeight": 3.6,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Wynaut",
+    "id": 783,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "wynaut",
+    "japaneseName": "Sohnanoソーナノ",
+    "pokedexNumber": 360,
+    "abilities": ["Shadow Tag", "Telepathy"],
+    "baseAttack": 23,
+    "captureRate": 125,
+    "classification": "Bright Pokémon",
+    "baseDefense": 48,
+    "baseHeight": 0.6,
+    "baseHp": 95,
+    "baseSpAttack": 23,
+    "baseSpDefense": 48,
+    "baseSpeed": 23,
+    "primaryType": "psychic",
+    "secondaryType": "",
+    "baseWeight": 14,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Xatu",
+    "id": 784,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "xatu",
+    "japaneseName": "Natioネイティオ",
+    "pokedexNumber": 178,
+    "abilities": ["Synchronize", "Early Bird", "Magic Bounce"],
+    "baseAttack": 75,
+    "captureRate": 75,
+    "classification": "Mystic Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.5,
+    "baseHp": 65,
+    "baseSpAttack": 95,
+    "baseSpDefense": 70,
+    "baseSpeed": 95,
+    "primaryType": "psychic",
+    "secondaryType": "flying",
+    "baseWeight": 15,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Xerneas",
+    "id": 785,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "xerneas",
+    "japaneseName": "Xerneasゼルネアス",
+    "pokedexNumber": 716,
+    "abilities": ["Fairy Aura"],
+    "baseAttack": 131,
+    "captureRate": 45,
+    "classification": "Life Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 3,
+    "baseHp": 126,
+    "baseSpAttack": 131,
+    "baseSpDefense": 98,
+    "baseSpeed": 99,
+    "primaryType": "fairy",
+    "secondaryType": "",
+    "baseWeight": 215,
+    "generation": 6,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Xurkitree",
+    "id": 786,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "xurkitree",
+    "japaneseName": "Denjyumokuデンジュモク",
+    "pokedexNumber": 796,
+    "abilities": ["Beast Boost"],
+    "baseAttack": 89,
+    "captureRate": 30,
+    "classification": "Glowing Pokémon",
+    "baseDefense": 71,
+    "baseHeight": 3.8,
+    "baseHp": 83,
+    "baseSpAttack": 173,
+    "baseSpDefense": 71,
+    "baseSpeed": 83,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 100,
+    "generation": 7,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Yamask",
+    "id": 787,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "yamask",
+    "japaneseName": "Desumasuデスマス",
+    "pokedexNumber": 562,
+    "abilities": ["Mummy"],
+    "baseAttack": 30,
+    "captureRate": 190,
+    "classification": "Spirit Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 0.5,
+    "baseHp": 38,
+    "baseSpAttack": 55,
+    "baseSpDefense": 65,
+    "baseSpeed": 30,
+    "primaryType": "ghost",
+    "secondaryType": "",
+    "baseWeight": 1.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Yanma",
+    "id": 788,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "yanma",
+    "japaneseName": "Yanyanmaヤンヤンマ",
+    "pokedexNumber": 193,
+    "abilities": ["Speed Boost", "Compoundeyes", "Frisk"],
+    "baseAttack": 65,
+    "captureRate": 75,
+    "classification": "Clear Wing Pokémon",
+    "baseDefense": 45,
+    "baseHeight": 1.2,
+    "baseHp": 65,
+    "baseSpAttack": 75,
+    "baseSpDefense": 45,
+    "baseSpeed": 95,
+    "primaryType": "bug",
+    "secondaryType": "flying",
+    "baseWeight": 38,
+    "generation": 2,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Yanmega",
+    "id": 789,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "yanmega",
+    "japaneseName": "Megayanmaメガヤンマ",
+    "pokedexNumber": 469,
+    "abilities": ["Speed Boost", "Tinted Lens", "Frisk"],
+    "baseAttack": 76,
+    "captureRate": 30,
+    "classification": "Ogre Darner Pokémon",
+    "baseDefense": 86,
+    "baseHeight": 1.9,
+    "baseHp": 86,
+    "baseSpAttack": 116,
+    "baseSpDefense": 56,
+    "baseSpeed": 95,
+    "primaryType": "bug",
+    "secondaryType": "flying",
+    "baseWeight": 51.5,
+    "generation": 4,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Yungoos",
+    "id": 790,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "yungoos",
+    "japaneseName": "Youngooseヤングース",
+    "pokedexNumber": 734,
+    "abilities": ["Stakeout", "Strong Jaw", "Adaptability"],
+    "baseAttack": 70,
+    "captureRate": 255,
+    "classification": "Loitering Pokémon",
+    "baseDefense": 30,
+    "baseHeight": 0.4,
+    "baseHp": 48,
+    "baseSpAttack": 30,
+    "baseSpDefense": 30,
+    "baseSpeed": 45,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 6,
+    "generation": 7,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Yveltal",
+    "id": 791,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "yveltal",
+    "japaneseName": "Yveltalイベルタル",
+    "pokedexNumber": 717,
+    "abilities": ["Dark Aura"],
+    "baseAttack": 131,
+    "captureRate": 45,
+    "classification": "Destruction Pokémon",
+    "baseDefense": 95,
+    "baseHeight": 5.8,
+    "baseHp": 126,
+    "baseSpAttack": 131,
+    "baseSpDefense": 98,
+    "baseSpeed": 99,
+    "primaryType": "dark",
+    "secondaryType": "flying",
+    "baseWeight": 203,
+    "generation": 6,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Zangoose",
+    "id": 792,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "zangoose",
+    "japaneseName": "Zangooseザングース",
+    "pokedexNumber": 335,
+    "abilities": ["Immunity", "Toxic Boost"],
+    "baseAttack": 115,
+    "captureRate": 90,
+    "classification": "Cat Ferret Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 1.3,
+    "baseHp": 73,
+    "baseSpAttack": 60,
+    "baseSpDefense": 60,
+    "baseSpeed": 90,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 40.3,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Zapdos",
+    "id": 793,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "zapdos",
+    "japaneseName": "Thunderサンダー",
+    "pokedexNumber": 145,
+    "abilities": ["Pressure", "Static"],
+    "baseAttack": 90,
+    "captureRate": 3,
+    "classification": "Electric Pokémon",
+    "baseDefense": 85,
+    "baseHeight": 1.6,
+    "baseHp": 90,
+    "baseSpAttack": 125,
+    "baseSpDefense": 90,
+    "baseSpeed": 100,
+    "primaryType": "electric",
+    "secondaryType": "flying",
+    "baseWeight": 52.6,
+    "generation": 1,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Zebstrika",
+    "id": 794,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "zebstrika",
+    "japaneseName": "Zebraikaゼブライカ",
+    "pokedexNumber": 523,
+    "abilities": ["Lightningrod", "Motor Drive", "Sap Sipper"],
+    "baseAttack": 100,
+    "captureRate": 75,
+    "classification": "Thunderbolt Pokémon",
+    "baseDefense": 63,
+    "baseHeight": 1.6,
+    "baseHp": 75,
+    "baseSpAttack": 80,
+    "baseSpDefense": 63,
+    "baseSpeed": 116,
+    "primaryType": "electric",
+    "secondaryType": "",
+    "baseWeight": 79.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Zekrom",
+    "id": 795,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "zekrom",
+    "japaneseName": "Zekromゼクロム",
+    "pokedexNumber": 644,
+    "abilities": ["Teravolt"],
+    "baseAttack": 150,
+    "captureRate": 3,
+    "classification": "Deep Black Pokémon",
+    "baseDefense": 120,
+    "baseHeight": 2.9,
+    "baseHp": 100,
+    "baseSpAttack": 120,
+    "baseSpDefense": 100,
+    "baseSpeed": 90,
+    "primaryType": "dragon",
+    "secondaryType": "electric",
+    "baseWeight": 345,
+    "generation": 5,
+    "isLegendary": "TRUE"
+  },
+  {
+    "name": "Zigzagoon",
+    "id": 796,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "zigzagoon",
+    "japaneseName": "Jiguzagumaジグザグマ",
+    "pokedexNumber": 263,
+    "abilities": ["Pickup", "Gluttony", "Quick Feet"],
+    "baseAttack": 30,
+    "captureRate": 255,
+    "classification": "Tiny Racoon Pokémon",
+    "baseDefense": 41,
+    "baseHeight": 0.4,
+    "baseHp": 38,
+    "baseSpAttack": 30,
+    "baseSpDefense": 41,
+    "baseSpeed": 60,
+    "primaryType": "normal",
+    "secondaryType": "",
+    "baseWeight": 17.5,
+    "generation": 3,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Zoroark",
+    "id": 797,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "zoroark",
+    "japaneseName": "Zoroarkゾロアーク",
+    "pokedexNumber": 571,
+    "abilities": ["Illusion"],
+    "baseAttack": 105,
+    "captureRate": 45,
+    "classification": "Illusion Fox Pokémon",
+    "baseDefense": 60,
+    "baseHeight": 1.6,
+    "baseHp": 60,
+    "baseSpAttack": 120,
+    "baseSpDefense": 60,
+    "baseSpeed": 105,
+    "primaryType": "dark",
+    "secondaryType": "",
+    "baseWeight": 81.1,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Zorua",
+    "id": 798,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "zorua",
+    "japaneseName": "Zoruaゾロア",
+    "pokedexNumber": 570,
+    "abilities": ["Illusion"],
+    "baseAttack": 65,
+    "captureRate": 75,
+    "classification": "Tricky Fox Pokémon",
+    "baseDefense": 40,
+    "baseHeight": 0.7,
+    "baseHp": 40,
+    "baseSpAttack": 80,
+    "baseSpDefense": 40,
+    "baseSpeed": 65,
+    "primaryType": "dark",
+    "secondaryType": "",
+    "baseWeight": 12.5,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Zubat",
+    "id": 799,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "zubat",
+    "japaneseName": "Zubatズバット",
+    "pokedexNumber": 41,
+    "abilities": ["Inner Focus", "Infiltrator"],
+    "baseAttack": 45,
+    "captureRate": 255,
+    "classification": "Bat Pokémon",
+    "baseDefense": 35,
+    "baseHeight": 0.8,
+    "baseHp": 40,
+    "baseSpAttack": 30,
+    "baseSpDefense": 40,
+    "baseSpeed": 55,
+    "primaryType": "poison",
+    "secondaryType": "flying",
+    "baseWeight": 7.5,
+    "generation": 1,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Zweilous",
+    "id": 800,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "zweilous",
+    "japaneseName": "Diheadジヘッド",
+    "pokedexNumber": 634,
+    "abilities": ["Hustle"],
+    "baseAttack": 85,
+    "captureRate": 45,
+    "classification": "Hostile Pokémon",
+    "baseDefense": 70,
+    "baseHeight": 1.4,
+    "baseHp": 72,
+    "baseSpAttack": 65,
+    "baseSpDefense": 70,
+    "baseSpeed": 58,
+    "primaryType": "dark",
+    "secondaryType": "dragon",
+    "baseWeight": 50,
+    "generation": 5,
+    "isLegendary": "FALSE"
+  },
+  {
+    "name": "Zygarde",
+    "id": 801,
+    "created": "24/04/2024",
+    "lastUpDate": "24/04/2024",
+    "imgUrl": "zygarde-50",
+    "japaneseName": "Zygarde (10% Forme)ジガルデ",
+    "pokedexNumber": 718,
+    "abilities": ["Aura Break", "Power Construct"],
+    "baseAttack": 100,
+    "captureRate": 3,
+    "classification": "Order Pokémon",
+    "baseDefense": 121,
+    "baseHeight": 5,
+    "baseHp": 216,
+    "baseSpAttack": 91,
+    "baseSpDefense": 95,
+    "baseSpeed": 85,
+    "primaryType": "dragon",
+    "secondaryType": "ground",
+    "baseWeight": 284.6,
+    "generation": 6,
+    "isLegendary": "TRUE"
+  }
+]
\ No newline at end of file
diff --git a/src/main/webapp/images/abomasnow.png b/src/main/webapp/images/abomasnow.png
new file mode 100644
index 0000000000000000000000000000000000000000..36dff2a9472ce930c25dcad2aedc9ff3f0987ca4
Binary files /dev/null and b/src/main/webapp/images/abomasnow.png differ
diff --git a/src/main/webapp/images/abra.png b/src/main/webapp/images/abra.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0d4c69b53197fb6a55e904281f9fa39b9fad492
Binary files /dev/null and b/src/main/webapp/images/abra.png differ
diff --git a/src/main/webapp/images/absol.png b/src/main/webapp/images/absol.png
new file mode 100644
index 0000000000000000000000000000000000000000..2307507b8679a0d8e3548cd1e4ea57f0112041e9
Binary files /dev/null and b/src/main/webapp/images/absol.png differ
diff --git a/src/main/webapp/images/accelgor.png b/src/main/webapp/images/accelgor.png
new file mode 100644
index 0000000000000000000000000000000000000000..17501ab86dc859968ccd3106f5527558a11f10f2
Binary files /dev/null and b/src/main/webapp/images/accelgor.png differ
diff --git a/src/main/webapp/images/aegislash-blade.png b/src/main/webapp/images/aegislash-blade.png
new file mode 100644
index 0000000000000000000000000000000000000000..a0a6ae36f02f3d850632e7237253362b13952766
Binary files /dev/null and b/src/main/webapp/images/aegislash-blade.png differ
diff --git a/src/main/webapp/images/aerodactyl.png b/src/main/webapp/images/aerodactyl.png
new file mode 100644
index 0000000000000000000000000000000000000000..2658993a86afc6ceed2e90cfe8aa259e20dfab5f
Binary files /dev/null and b/src/main/webapp/images/aerodactyl.png differ
diff --git a/src/main/webapp/images/aggron.png b/src/main/webapp/images/aggron.png
new file mode 100644
index 0000000000000000000000000000000000000000..54589af0d7befab46d78bc71bb2ca9bb381c526e
Binary files /dev/null and b/src/main/webapp/images/aggron.png differ
diff --git a/src/main/webapp/images/aipom.png b/src/main/webapp/images/aipom.png
new file mode 100644
index 0000000000000000000000000000000000000000..f5988a7778487abf93d61d47dd8acd6682547045
Binary files /dev/null and b/src/main/webapp/images/aipom.png differ
diff --git a/src/main/webapp/images/alakazam.png b/src/main/webapp/images/alakazam.png
new file mode 100644
index 0000000000000000000000000000000000000000..021ac9179bf10bcd18d96ac0af646abd60943626
Binary files /dev/null and b/src/main/webapp/images/alakazam.png differ
diff --git a/src/main/webapp/images/alomomola.png b/src/main/webapp/images/alomomola.png
new file mode 100644
index 0000000000000000000000000000000000000000..3ba4311e6d3f27a8cdbf8acf5a57fdf5b8125cf7
Binary files /dev/null and b/src/main/webapp/images/alomomola.png differ
diff --git a/src/main/webapp/images/altaria.png b/src/main/webapp/images/altaria.png
new file mode 100644
index 0000000000000000000000000000000000000000..49bcabd238f5f240a0ac9d7a3965802319db15ef
Binary files /dev/null and b/src/main/webapp/images/altaria.png differ
diff --git a/src/main/webapp/images/amaura.png b/src/main/webapp/images/amaura.png
new file mode 100644
index 0000000000000000000000000000000000000000..88828ea573ecd98b8da5f3d8ee17944cd3940322
Binary files /dev/null and b/src/main/webapp/images/amaura.png differ
diff --git a/src/main/webapp/images/ambipom.png b/src/main/webapp/images/ambipom.png
new file mode 100644
index 0000000000000000000000000000000000000000..82b2a641e5a7425122671487ec5986d8f8513bd1
Binary files /dev/null and b/src/main/webapp/images/ambipom.png differ
diff --git a/src/main/webapp/images/amoonguss.png b/src/main/webapp/images/amoonguss.png
new file mode 100644
index 0000000000000000000000000000000000000000..f1e88d5e6ac5d21e913af25da31505dc9f166740
Binary files /dev/null and b/src/main/webapp/images/amoonguss.png differ
diff --git a/src/main/webapp/images/ampharos.png b/src/main/webapp/images/ampharos.png
new file mode 100644
index 0000000000000000000000000000000000000000..8b832517c60ec9f651391707d99b52e8f369ff4f
Binary files /dev/null and b/src/main/webapp/images/ampharos.png differ
diff --git a/src/main/webapp/images/anorith.png b/src/main/webapp/images/anorith.png
new file mode 100644
index 0000000000000000000000000000000000000000..a4467c6896675bc1fbbd49ea3ef0d88e0f55786d
Binary files /dev/null and b/src/main/webapp/images/anorith.png differ
diff --git a/src/main/webapp/images/araquanid.png b/src/main/webapp/images/araquanid.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e9fa3fc1070baeb7d88b5d23c1d931eda3a0f6a
Binary files /dev/null and b/src/main/webapp/images/araquanid.png differ
diff --git a/src/main/webapp/images/arbok.png b/src/main/webapp/images/arbok.png
new file mode 100644
index 0000000000000000000000000000000000000000..7d1a1c618c1bc41c5eb0c8e08f48b9b43803b457
Binary files /dev/null and b/src/main/webapp/images/arbok.png differ
diff --git a/src/main/webapp/images/arcanine.png b/src/main/webapp/images/arcanine.png
new file mode 100644
index 0000000000000000000000000000000000000000..ba5955abd7544fa375bd6e0ace6a1d11389ec037
Binary files /dev/null and b/src/main/webapp/images/arcanine.png differ
diff --git a/src/main/webapp/images/arceus.png b/src/main/webapp/images/arceus.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f488c0d03490061109ea6fa0f61870a692e73a3
Binary files /dev/null and b/src/main/webapp/images/arceus.png differ
diff --git a/src/main/webapp/images/archen.png b/src/main/webapp/images/archen.png
new file mode 100644
index 0000000000000000000000000000000000000000..cdc769f5d6213ad6307fd40b318c358e4687ebf5
Binary files /dev/null and b/src/main/webapp/images/archen.png differ
diff --git a/src/main/webapp/images/archeops.png b/src/main/webapp/images/archeops.png
new file mode 100644
index 0000000000000000000000000000000000000000..eb417b17eaeb37c5450dd585dc1f7a16099c3543
Binary files /dev/null and b/src/main/webapp/images/archeops.png differ
diff --git a/src/main/webapp/images/ariados.png b/src/main/webapp/images/ariados.png
new file mode 100644
index 0000000000000000000000000000000000000000..e45b5b170b9e3f165245e9d378406ecfa5281254
Binary files /dev/null and b/src/main/webapp/images/ariados.png differ
diff --git a/src/main/webapp/images/armaldo.png b/src/main/webapp/images/armaldo.png
new file mode 100644
index 0000000000000000000000000000000000000000..e9fa40657b089e8f85a794045740bca598201a0b
Binary files /dev/null and b/src/main/webapp/images/armaldo.png differ
diff --git a/src/main/webapp/images/aromatisse.png b/src/main/webapp/images/aromatisse.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ea914c215dc4fea4a7e1d5ea1eb23a344550fe0
Binary files /dev/null and b/src/main/webapp/images/aromatisse.png differ
diff --git a/src/main/webapp/images/aron.png b/src/main/webapp/images/aron.png
new file mode 100644
index 0000000000000000000000000000000000000000..88aa152743a1d1500134fa537c93ef1788215495
Binary files /dev/null and b/src/main/webapp/images/aron.png differ
diff --git a/src/main/webapp/images/articuno.png b/src/main/webapp/images/articuno.png
new file mode 100644
index 0000000000000000000000000000000000000000..a146f9f2aefc0cddf129f32a021b81d4b681f7e1
Binary files /dev/null and b/src/main/webapp/images/articuno.png differ
diff --git a/src/main/webapp/images/audino.png b/src/main/webapp/images/audino.png
new file mode 100644
index 0000000000000000000000000000000000000000..44f1a521fbd62991ddb658c5791fb4a19ec9385e
Binary files /dev/null and b/src/main/webapp/images/audino.png differ
diff --git a/src/main/webapp/images/aurorus.png b/src/main/webapp/images/aurorus.png
new file mode 100644
index 0000000000000000000000000000000000000000..41de3a54bb774b9509c3f956f307f6bed3b2ddaf
Binary files /dev/null and b/src/main/webapp/images/aurorus.png differ
diff --git a/src/main/webapp/images/avalugg.png b/src/main/webapp/images/avalugg.png
new file mode 100644
index 0000000000000000000000000000000000000000..d12667dda84bb3873831aed718ea3a1e6b4d9dd8
Binary files /dev/null and b/src/main/webapp/images/avalugg.png differ
diff --git a/src/main/webapp/images/axew.png b/src/main/webapp/images/axew.png
new file mode 100644
index 0000000000000000000000000000000000000000..85d101a16632b2c3a0678a2dd8366bf8db17a8cc
Binary files /dev/null and b/src/main/webapp/images/axew.png differ
diff --git a/src/main/webapp/images/azelf.png b/src/main/webapp/images/azelf.png
new file mode 100644
index 0000000000000000000000000000000000000000..0df0662da85da84e9a33ac9926e67619142b94e1
Binary files /dev/null and b/src/main/webapp/images/azelf.png differ
diff --git a/src/main/webapp/images/azumarill.png b/src/main/webapp/images/azumarill.png
new file mode 100644
index 0000000000000000000000000000000000000000..b29b77c821cb94e012b24f9af055438ecd4ef8d9
Binary files /dev/null and b/src/main/webapp/images/azumarill.png differ
diff --git a/src/main/webapp/images/azurill.png b/src/main/webapp/images/azurill.png
new file mode 100644
index 0000000000000000000000000000000000000000..a369e3bbc4d1b0f1d53a3014fa0e55d271b8a639
Binary files /dev/null and b/src/main/webapp/images/azurill.png differ
diff --git a/src/main/webapp/images/bagon.png b/src/main/webapp/images/bagon.png
new file mode 100644
index 0000000000000000000000000000000000000000..2698f5ef4c79eeaaafd1b4c256aadee3301cf374
Binary files /dev/null and b/src/main/webapp/images/bagon.png differ
diff --git a/src/main/webapp/images/baltoy.png b/src/main/webapp/images/baltoy.png
new file mode 100644
index 0000000000000000000000000000000000000000..7dfe4dcd10a91cac111a5055c0caa48bd9fdf7ce
Binary files /dev/null and b/src/main/webapp/images/baltoy.png differ
diff --git a/src/main/webapp/images/banette.png b/src/main/webapp/images/banette.png
new file mode 100644
index 0000000000000000000000000000000000000000..a57346ac30af64a025dc1eea9e4cd4c8f9789637
Binary files /dev/null and b/src/main/webapp/images/banette.png differ
diff --git a/src/main/webapp/images/barbaracle.png b/src/main/webapp/images/barbaracle.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6fde2f430971033624be8b345706cd138063bff
Binary files /dev/null and b/src/main/webapp/images/barbaracle.png differ
diff --git a/src/main/webapp/images/barboach.png b/src/main/webapp/images/barboach.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c6509d21d7d515aacba3e504e862e08dfcbdf5d
Binary files /dev/null and b/src/main/webapp/images/barboach.png differ
diff --git a/src/main/webapp/images/basculin-red-striped.png b/src/main/webapp/images/basculin-red-striped.png
new file mode 100644
index 0000000000000000000000000000000000000000..d146f05ecd846daa8d7b59a60c14a348b7b1fd87
Binary files /dev/null and b/src/main/webapp/images/basculin-red-striped.png differ
diff --git a/src/main/webapp/images/bastiodon.png b/src/main/webapp/images/bastiodon.png
new file mode 100644
index 0000000000000000000000000000000000000000..daf90c5fbab787f1ecf5612474458ff3080044e1
Binary files /dev/null and b/src/main/webapp/images/bastiodon.png differ
diff --git a/src/main/webapp/images/bayleef.png b/src/main/webapp/images/bayleef.png
new file mode 100644
index 0000000000000000000000000000000000000000..b31fc7905119e59ce2caa3c15a797361689d0422
Binary files /dev/null and b/src/main/webapp/images/bayleef.png differ
diff --git a/src/main/webapp/images/beartic.png b/src/main/webapp/images/beartic.png
new file mode 100644
index 0000000000000000000000000000000000000000..6532b7086af4cf150725a093daf7ad206d0f91f5
Binary files /dev/null and b/src/main/webapp/images/beartic.png differ
diff --git a/src/main/webapp/images/beautifly.png b/src/main/webapp/images/beautifly.png
new file mode 100644
index 0000000000000000000000000000000000000000..e3969b628d8870d72e3996cdb8d0ab7213fbc9f7
Binary files /dev/null and b/src/main/webapp/images/beautifly.png differ
diff --git a/src/main/webapp/images/beedrill.png b/src/main/webapp/images/beedrill.png
new file mode 100644
index 0000000000000000000000000000000000000000..39d8f760e930fa2e55bc63d47d55bc0b21fd0fbb
Binary files /dev/null and b/src/main/webapp/images/beedrill.png differ
diff --git a/src/main/webapp/images/beheeyem.png b/src/main/webapp/images/beheeyem.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7757cf94a657cabd679bf0daac133f4ffd6865b
Binary files /dev/null and b/src/main/webapp/images/beheeyem.png differ
diff --git a/src/main/webapp/images/beldum.png b/src/main/webapp/images/beldum.png
new file mode 100644
index 0000000000000000000000000000000000000000..df3f7cd6db61eb9a1c4a0ba4048bbb2721c61ecd
Binary files /dev/null and b/src/main/webapp/images/beldum.png differ
diff --git a/src/main/webapp/images/bellossom.png b/src/main/webapp/images/bellossom.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6ccd82e7993bc65c767293d98ca39bb28aebfcc
Binary files /dev/null and b/src/main/webapp/images/bellossom.png differ
diff --git a/src/main/webapp/images/bellsprout.png b/src/main/webapp/images/bellsprout.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c1c05310a9f5837a84e9b435d940884e07564a0
Binary files /dev/null and b/src/main/webapp/images/bellsprout.png differ
diff --git a/src/main/webapp/images/bergmite.png b/src/main/webapp/images/bergmite.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab555d34da6e4a4b5986e2fa60c9f37f9de33356
Binary files /dev/null and b/src/main/webapp/images/bergmite.png differ
diff --git a/src/main/webapp/images/bewear.png b/src/main/webapp/images/bewear.png
new file mode 100644
index 0000000000000000000000000000000000000000..9ae84e3cc3e33bc93cd7a6b95bf613e38a7fea1f
Binary files /dev/null and b/src/main/webapp/images/bewear.png differ
diff --git a/src/main/webapp/images/bibarel.png b/src/main/webapp/images/bibarel.png
new file mode 100644
index 0000000000000000000000000000000000000000..f0598dce41b4794b5c4d321950c339ccdc1c991f
Binary files /dev/null and b/src/main/webapp/images/bibarel.png differ
diff --git a/src/main/webapp/images/bidoof.png b/src/main/webapp/images/bidoof.png
new file mode 100644
index 0000000000000000000000000000000000000000..380d75ae24bd0a80fc2def388531467f84a98b6a
Binary files /dev/null and b/src/main/webapp/images/bidoof.png differ
diff --git a/src/main/webapp/images/binacle.png b/src/main/webapp/images/binacle.png
new file mode 100644
index 0000000000000000000000000000000000000000..29dc2d40d02fb38c70370fe2fecca77ecadcb86c
Binary files /dev/null and b/src/main/webapp/images/binacle.png differ
diff --git a/src/main/webapp/images/bisharp.png b/src/main/webapp/images/bisharp.png
new file mode 100644
index 0000000000000000000000000000000000000000..da8005e2a356b3e85b62a5cf64d82566756f2384
Binary files /dev/null and b/src/main/webapp/images/bisharp.png differ
diff --git a/src/main/webapp/images/blacephalon.png b/src/main/webapp/images/blacephalon.png
new file mode 100644
index 0000000000000000000000000000000000000000..eee523611fd056014da5c3865d009d953f1862b7
Binary files /dev/null and b/src/main/webapp/images/blacephalon.png differ
diff --git a/src/main/webapp/images/blastoise.png b/src/main/webapp/images/blastoise.png
new file mode 100644
index 0000000000000000000000000000000000000000..c70d1bb876268be2b222af449a5bd8672810158f
Binary files /dev/null and b/src/main/webapp/images/blastoise.png differ
diff --git a/src/main/webapp/images/blaziken.png b/src/main/webapp/images/blaziken.png
new file mode 100644
index 0000000000000000000000000000000000000000..49e8064cdf7b3ef270e07eea14bb5fdab0f528b6
Binary files /dev/null and b/src/main/webapp/images/blaziken.png differ
diff --git a/src/main/webapp/images/blissey.png b/src/main/webapp/images/blissey.png
new file mode 100644
index 0000000000000000000000000000000000000000..af42e790d9dde49ce02f63731f38d17b81854ce9
Binary files /dev/null and b/src/main/webapp/images/blissey.png differ
diff --git a/src/main/webapp/images/blitzle.png b/src/main/webapp/images/blitzle.png
new file mode 100644
index 0000000000000000000000000000000000000000..8b774a3055b16e24a5e3a264a714b9231555ace8
Binary files /dev/null and b/src/main/webapp/images/blitzle.png differ
diff --git a/src/main/webapp/images/boldore.png b/src/main/webapp/images/boldore.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d2162b312a33860975ea61a98af89508362055e
Binary files /dev/null and b/src/main/webapp/images/boldore.png differ
diff --git a/src/main/webapp/images/bonsly.png b/src/main/webapp/images/bonsly.png
new file mode 100644
index 0000000000000000000000000000000000000000..732cdee7b8025fcb9f3202974367e23da2e2db1d
Binary files /dev/null and b/src/main/webapp/images/bonsly.png differ
diff --git a/src/main/webapp/images/bouffalant.png b/src/main/webapp/images/bouffalant.png
new file mode 100644
index 0000000000000000000000000000000000000000..42bc7aafc144baa8b66905bb57dbb55230d92a9a
Binary files /dev/null and b/src/main/webapp/images/bouffalant.png differ
diff --git a/src/main/webapp/images/bounsweet.png b/src/main/webapp/images/bounsweet.png
new file mode 100644
index 0000000000000000000000000000000000000000..ae71c695e3e0f3a3f55517d48a12f53538c47607
Binary files /dev/null and b/src/main/webapp/images/bounsweet.png differ
diff --git a/src/main/webapp/images/braixen.png b/src/main/webapp/images/braixen.png
new file mode 100644
index 0000000000000000000000000000000000000000..55f7ba97b8f3dfc60d90cda8ad92a74f728c9a74
Binary files /dev/null and b/src/main/webapp/images/braixen.png differ
diff --git a/src/main/webapp/images/braviary.png b/src/main/webapp/images/braviary.png
new file mode 100644
index 0000000000000000000000000000000000000000..f64ef04f9a14b959b3c0f82831a3504dd38d324c
Binary files /dev/null and b/src/main/webapp/images/braviary.png differ
diff --git a/src/main/webapp/images/breloom.png b/src/main/webapp/images/breloom.png
new file mode 100644
index 0000000000000000000000000000000000000000..86e9e82349d8eed8ddcb71f49f58b471abd8eec4
Binary files /dev/null and b/src/main/webapp/images/breloom.png differ
diff --git a/src/main/webapp/images/brionne.png b/src/main/webapp/images/brionne.png
new file mode 100644
index 0000000000000000000000000000000000000000..124d669867e85e55490ea18f9cac894283716338
Binary files /dev/null and b/src/main/webapp/images/brionne.png differ
diff --git a/src/main/webapp/images/bronzong.png b/src/main/webapp/images/bronzong.png
new file mode 100644
index 0000000000000000000000000000000000000000..2d478e0d1fddc61100cefd09713cb9606cf8f993
Binary files /dev/null and b/src/main/webapp/images/bronzong.png differ
diff --git a/src/main/webapp/images/bronzor.png b/src/main/webapp/images/bronzor.png
new file mode 100644
index 0000000000000000000000000000000000000000..7db093a4f942e13542f1b20abbfcf5949a634037
Binary files /dev/null and b/src/main/webapp/images/bronzor.png differ
diff --git a/src/main/webapp/images/bruxish.png b/src/main/webapp/images/bruxish.png
new file mode 100644
index 0000000000000000000000000000000000000000..85b7f8bd8ded6b2864ad8f46eef64507a8ab0a7d
Binary files /dev/null and b/src/main/webapp/images/bruxish.png differ
diff --git a/src/main/webapp/images/budew.png b/src/main/webapp/images/budew.png
new file mode 100644
index 0000000000000000000000000000000000000000..8835732a42005bb6925ac0ab8fcd7c329f8901af
Binary files /dev/null and b/src/main/webapp/images/budew.png differ
diff --git a/src/main/webapp/images/buizel.png b/src/main/webapp/images/buizel.png
new file mode 100644
index 0000000000000000000000000000000000000000..53ee540c0afb03860358a4c76a60962aeac78efb
Binary files /dev/null and b/src/main/webapp/images/buizel.png differ
diff --git a/src/main/webapp/images/bulbasaur.png b/src/main/webapp/images/bulbasaur.png
new file mode 100644
index 0000000000000000000000000000000000000000..2af2bb3ae684a2cebf9cdff779a6f55fafde5923
Binary files /dev/null and b/src/main/webapp/images/bulbasaur.png differ
diff --git a/src/main/webapp/images/buneary.png b/src/main/webapp/images/buneary.png
new file mode 100644
index 0000000000000000000000000000000000000000..2e8007f1d810c06f67e8afa3d00833bf204ef377
Binary files /dev/null and b/src/main/webapp/images/buneary.png differ
diff --git a/src/main/webapp/images/bunnelby.png b/src/main/webapp/images/bunnelby.png
new file mode 100644
index 0000000000000000000000000000000000000000..6b4c3282c0d9a2fbe3c7159cb7899d59c5e5ab72
Binary files /dev/null and b/src/main/webapp/images/bunnelby.png differ
diff --git a/src/main/webapp/images/burmy.png b/src/main/webapp/images/burmy.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7e886790da26cc937ab1017e7ab482431ff9a42
Binary files /dev/null and b/src/main/webapp/images/burmy.png differ
diff --git a/src/main/webapp/images/butterfree.png b/src/main/webapp/images/butterfree.png
new file mode 100644
index 0000000000000000000000000000000000000000..0748496b1ffbf3613bb895d349d4858ed7bc1456
Binary files /dev/null and b/src/main/webapp/images/butterfree.png differ
diff --git a/src/main/webapp/images/buzzwole.png b/src/main/webapp/images/buzzwole.png
new file mode 100644
index 0000000000000000000000000000000000000000..c0487d6a8492b08c5f4da71e4694cbb8bd679849
Binary files /dev/null and b/src/main/webapp/images/buzzwole.png differ
diff --git a/src/main/webapp/images/cacnea.png b/src/main/webapp/images/cacnea.png
new file mode 100644
index 0000000000000000000000000000000000000000..021f6604014162169dc0b96af94a15bf25c33e7b
Binary files /dev/null and b/src/main/webapp/images/cacnea.png differ
diff --git a/src/main/webapp/images/cacturne.png b/src/main/webapp/images/cacturne.png
new file mode 100644
index 0000000000000000000000000000000000000000..f99f922242f7cc9da2dd4e4700eefd33d646c754
Binary files /dev/null and b/src/main/webapp/images/cacturne.png differ
diff --git a/src/main/webapp/images/camerupt.png b/src/main/webapp/images/camerupt.png
new file mode 100644
index 0000000000000000000000000000000000000000..0b0864bd1a405870ec5e9313bb761d773465b480
Binary files /dev/null and b/src/main/webapp/images/camerupt.png differ
diff --git a/src/main/webapp/images/carbink.png b/src/main/webapp/images/carbink.png
new file mode 100644
index 0000000000000000000000000000000000000000..a0b216f29e1cff2f718e7e6c71bd3149c5a3ec8a
Binary files /dev/null and b/src/main/webapp/images/carbink.png differ
diff --git a/src/main/webapp/images/carnivine.png b/src/main/webapp/images/carnivine.png
new file mode 100644
index 0000000000000000000000000000000000000000..846ac2333d2635715bfeba0adf64a41f4560156f
Binary files /dev/null and b/src/main/webapp/images/carnivine.png differ
diff --git a/src/main/webapp/images/carracosta.png b/src/main/webapp/images/carracosta.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d60cb870e8f75a660096ec245585245fe1c86f8
Binary files /dev/null and b/src/main/webapp/images/carracosta.png differ
diff --git a/src/main/webapp/images/carvanha.png b/src/main/webapp/images/carvanha.png
new file mode 100644
index 0000000000000000000000000000000000000000..7503e0b8708dc9e7f6f43b168e06ad1807c5f8cb
Binary files /dev/null and b/src/main/webapp/images/carvanha.png differ
diff --git a/src/main/webapp/images/cascoon.png b/src/main/webapp/images/cascoon.png
new file mode 100644
index 0000000000000000000000000000000000000000..e30f68e6a1cae1fe27e5b9183cc441917af6a628
Binary files /dev/null and b/src/main/webapp/images/cascoon.png differ
diff --git a/src/main/webapp/images/castform.png b/src/main/webapp/images/castform.png
new file mode 100644
index 0000000000000000000000000000000000000000..366e1bf027e6b1381131fd416c133a12ff863cfc
Binary files /dev/null and b/src/main/webapp/images/castform.png differ
diff --git a/src/main/webapp/images/caterpie.png b/src/main/webapp/images/caterpie.png
new file mode 100644
index 0000000000000000000000000000000000000000..90f8aa6dd74f61dfddc16aaca1e071ecc3416b45
Binary files /dev/null and b/src/main/webapp/images/caterpie.png differ
diff --git a/src/main/webapp/images/celebi.png b/src/main/webapp/images/celebi.png
new file mode 100644
index 0000000000000000000000000000000000000000..5add93f7d5c9eff78d91791926b423048b3dcb33
Binary files /dev/null and b/src/main/webapp/images/celebi.png differ
diff --git a/src/main/webapp/images/celesteela.png b/src/main/webapp/images/celesteela.png
new file mode 100644
index 0000000000000000000000000000000000000000..314179d64fd1df352e71e35c623020301ac98e8b
Binary files /dev/null and b/src/main/webapp/images/celesteela.png differ
diff --git a/src/main/webapp/images/chandelure.png b/src/main/webapp/images/chandelure.png
new file mode 100644
index 0000000000000000000000000000000000000000..d172752ffcf84e6d41c8494d58ca75935fed9cb0
Binary files /dev/null and b/src/main/webapp/images/chandelure.png differ
diff --git a/src/main/webapp/images/chansey.png b/src/main/webapp/images/chansey.png
new file mode 100644
index 0000000000000000000000000000000000000000..954b121e83a2909090bf0251e33f8654cc60e7de
Binary files /dev/null and b/src/main/webapp/images/chansey.png differ
diff --git a/src/main/webapp/images/charizard.png b/src/main/webapp/images/charizard.png
new file mode 100644
index 0000000000000000000000000000000000000000..45548c3ca3b430d92eb9448699efd630e2c22ab0
Binary files /dev/null and b/src/main/webapp/images/charizard.png differ
diff --git a/src/main/webapp/images/charjabug.png b/src/main/webapp/images/charjabug.png
new file mode 100644
index 0000000000000000000000000000000000000000..852d9375e3219313c65aed7d839bed451e34ca83
Binary files /dev/null and b/src/main/webapp/images/charjabug.png differ
diff --git a/src/main/webapp/images/charmander.png b/src/main/webapp/images/charmander.png
new file mode 100644
index 0000000000000000000000000000000000000000..45089ed6456a9bd766a6146de93ed6550b54ba05
Binary files /dev/null and b/src/main/webapp/images/charmander.png differ
diff --git a/src/main/webapp/images/charmeleon.png b/src/main/webapp/images/charmeleon.png
new file mode 100644
index 0000000000000000000000000000000000000000..8b6ebddbeb9027f4f35c58c8d7d598cf1423675c
Binary files /dev/null and b/src/main/webapp/images/charmeleon.png differ
diff --git a/src/main/webapp/images/chatot.png b/src/main/webapp/images/chatot.png
new file mode 100644
index 0000000000000000000000000000000000000000..cc09f3b608da60849c121fc5466489ce7368c018
Binary files /dev/null and b/src/main/webapp/images/chatot.png differ
diff --git a/src/main/webapp/images/cherrim.png b/src/main/webapp/images/cherrim.png
new file mode 100644
index 0000000000000000000000000000000000000000..dae185396d731729479f2df58858f471c10d0eef
Binary files /dev/null and b/src/main/webapp/images/cherrim.png differ
diff --git a/src/main/webapp/images/cherubi.png b/src/main/webapp/images/cherubi.png
new file mode 100644
index 0000000000000000000000000000000000000000..a1f3d2b031d620009065f8caf3999e1edf0a0153
Binary files /dev/null and b/src/main/webapp/images/cherubi.png differ
diff --git a/src/main/webapp/images/chesnaught.png b/src/main/webapp/images/chesnaught.png
new file mode 100644
index 0000000000000000000000000000000000000000..d321761713e497bd7266da16f5faeccd3782d514
Binary files /dev/null and b/src/main/webapp/images/chesnaught.png differ
diff --git a/src/main/webapp/images/chespin.png b/src/main/webapp/images/chespin.png
new file mode 100644
index 0000000000000000000000000000000000000000..107a772d5d95692dc270b7090e02aa935fdebf63
Binary files /dev/null and b/src/main/webapp/images/chespin.png differ
diff --git a/src/main/webapp/images/chikorita.png b/src/main/webapp/images/chikorita.png
new file mode 100644
index 0000000000000000000000000000000000000000..9d8454e0c736e788c24b11c86485575935a16265
Binary files /dev/null and b/src/main/webapp/images/chikorita.png differ
diff --git a/src/main/webapp/images/chimchar.png b/src/main/webapp/images/chimchar.png
new file mode 100644
index 0000000000000000000000000000000000000000..5cda0ab159f6ca89cd9980cc0c913ad84b7cc037
Binary files /dev/null and b/src/main/webapp/images/chimchar.png differ
diff --git a/src/main/webapp/images/chimecho.png b/src/main/webapp/images/chimecho.png
new file mode 100644
index 0000000000000000000000000000000000000000..9da4fc61e0c5ae8817ff1f4688744f169cfd7272
Binary files /dev/null and b/src/main/webapp/images/chimecho.png differ
diff --git a/src/main/webapp/images/chinchou.png b/src/main/webapp/images/chinchou.png
new file mode 100644
index 0000000000000000000000000000000000000000..3fb235ccd4b4e4652f585a5512ff8926015e6d45
Binary files /dev/null and b/src/main/webapp/images/chinchou.png differ
diff --git a/src/main/webapp/images/chingling.png b/src/main/webapp/images/chingling.png
new file mode 100644
index 0000000000000000000000000000000000000000..144615828490e2426c4c68daa98dda977822e715
Binary files /dev/null and b/src/main/webapp/images/chingling.png differ
diff --git a/src/main/webapp/images/cinccino.png b/src/main/webapp/images/cinccino.png
new file mode 100644
index 0000000000000000000000000000000000000000..23004cc1f89c3e0a26d3d7714508d33fda3f41f0
Binary files /dev/null and b/src/main/webapp/images/cinccino.png differ
diff --git a/src/main/webapp/images/clamperl.png b/src/main/webapp/images/clamperl.png
new file mode 100644
index 0000000000000000000000000000000000000000..192c35ee29eef84d43b44f43465f222cfadcc28a
Binary files /dev/null and b/src/main/webapp/images/clamperl.png differ
diff --git a/src/main/webapp/images/clauncher.png b/src/main/webapp/images/clauncher.png
new file mode 100644
index 0000000000000000000000000000000000000000..0120e7ab5d2e2eed2d8ed4d940203622982a4478
Binary files /dev/null and b/src/main/webapp/images/clauncher.png differ
diff --git a/src/main/webapp/images/clawitzer.png b/src/main/webapp/images/clawitzer.png
new file mode 100644
index 0000000000000000000000000000000000000000..3fb23ea3b969bd770c00b400199116834076ab16
Binary files /dev/null and b/src/main/webapp/images/clawitzer.png differ
diff --git a/src/main/webapp/images/claydol.png b/src/main/webapp/images/claydol.png
new file mode 100644
index 0000000000000000000000000000000000000000..4f01446bd45d6d11fcda04057244756e290faabc
Binary files /dev/null and b/src/main/webapp/images/claydol.png differ
diff --git a/src/main/webapp/images/clefable.png b/src/main/webapp/images/clefable.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b9a76aeea0ec195eb0e4f1b75c5ca6dc63ff617
Binary files /dev/null and b/src/main/webapp/images/clefable.png differ
diff --git a/src/main/webapp/images/clefairy.png b/src/main/webapp/images/clefairy.png
new file mode 100644
index 0000000000000000000000000000000000000000..deb282857ede9b4c80f5091fafbb0529d46065f4
Binary files /dev/null and b/src/main/webapp/images/clefairy.png differ
diff --git a/src/main/webapp/images/cleffa.png b/src/main/webapp/images/cleffa.png
new file mode 100644
index 0000000000000000000000000000000000000000..e63a71b758c45464be13d611eb04fc5442bfb3f0
Binary files /dev/null and b/src/main/webapp/images/cleffa.png differ
diff --git a/src/main/webapp/images/cloyster.png b/src/main/webapp/images/cloyster.png
new file mode 100644
index 0000000000000000000000000000000000000000..a2dd99b3fbe32fc994d93e7a0174086052407a92
Binary files /dev/null and b/src/main/webapp/images/cloyster.png differ
diff --git a/src/main/webapp/images/cobalion.png b/src/main/webapp/images/cobalion.png
new file mode 100644
index 0000000000000000000000000000000000000000..bc5e1c349b453a2b3171760591b6339b31e6a38f
Binary files /dev/null and b/src/main/webapp/images/cobalion.png differ
diff --git a/src/main/webapp/images/cofagrigus.png b/src/main/webapp/images/cofagrigus.png
new file mode 100644
index 0000000000000000000000000000000000000000..57d165e9a67bdcd47845efc9473014e19903d78b
Binary files /dev/null and b/src/main/webapp/images/cofagrigus.png differ
diff --git a/src/main/webapp/images/combee.png b/src/main/webapp/images/combee.png
new file mode 100644
index 0000000000000000000000000000000000000000..89f6d4b36b39b7ff74f072c261a26e11c4931fa7
Binary files /dev/null and b/src/main/webapp/images/combee.png differ
diff --git a/src/main/webapp/images/combusken.png b/src/main/webapp/images/combusken.png
new file mode 100644
index 0000000000000000000000000000000000000000..9124b2ca2dd24992a5a0620f43c244bf76db2801
Binary files /dev/null and b/src/main/webapp/images/combusken.png differ
diff --git a/src/main/webapp/images/comfey.png b/src/main/webapp/images/comfey.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac6ec2644b22f6fc0a923c4212041e00648ed298
Binary files /dev/null and b/src/main/webapp/images/comfey.png differ
diff --git a/src/main/webapp/images/conkeldurr.png b/src/main/webapp/images/conkeldurr.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ad270215650fe2b9e067ebe14ab18426f4d961b
Binary files /dev/null and b/src/main/webapp/images/conkeldurr.png differ
diff --git a/src/main/webapp/images/corphish.png b/src/main/webapp/images/corphish.png
new file mode 100644
index 0000000000000000000000000000000000000000..1e83830c5a763af49fb08f46f19282966e4e973d
Binary files /dev/null and b/src/main/webapp/images/corphish.png differ
diff --git a/src/main/webapp/images/corsola.png b/src/main/webapp/images/corsola.png
new file mode 100644
index 0000000000000000000000000000000000000000..28ddf00706e144924841c359e4a9dc8edb280f59
Binary files /dev/null and b/src/main/webapp/images/corsola.png differ
diff --git a/src/main/webapp/images/cosmoem.png b/src/main/webapp/images/cosmoem.png
new file mode 100644
index 0000000000000000000000000000000000000000..ec9e6d9462a42df7ac794e5cdbb189d1f7800206
Binary files /dev/null and b/src/main/webapp/images/cosmoem.png differ
diff --git a/src/main/webapp/images/cosmog.png b/src/main/webapp/images/cosmog.png
new file mode 100644
index 0000000000000000000000000000000000000000..3f3cbcda98cc057a335d903074e00b245aebe134
Binary files /dev/null and b/src/main/webapp/images/cosmog.png differ
diff --git a/src/main/webapp/images/cottonee.png b/src/main/webapp/images/cottonee.png
new file mode 100644
index 0000000000000000000000000000000000000000..f5f2c821771bfb938541f833fb201af3fddad212
Binary files /dev/null and b/src/main/webapp/images/cottonee.png differ
diff --git a/src/main/webapp/images/crabominable.png b/src/main/webapp/images/crabominable.png
new file mode 100644
index 0000000000000000000000000000000000000000..833f53db27101312b295c14cec79fcaa80aa2b34
Binary files /dev/null and b/src/main/webapp/images/crabominable.png differ
diff --git a/src/main/webapp/images/crabrawler.png b/src/main/webapp/images/crabrawler.png
new file mode 100644
index 0000000000000000000000000000000000000000..87e86dccb254c384bc691693bcb47167eac990a1
Binary files /dev/null and b/src/main/webapp/images/crabrawler.png differ
diff --git a/src/main/webapp/images/cradily.png b/src/main/webapp/images/cradily.png
new file mode 100644
index 0000000000000000000000000000000000000000..3029c6d9528af87e553ed63fe7ee1d7cf583631d
Binary files /dev/null and b/src/main/webapp/images/cradily.png differ
diff --git a/src/main/webapp/images/cranidos.png b/src/main/webapp/images/cranidos.png
new file mode 100644
index 0000000000000000000000000000000000000000..20cb57eedd396f3b29444ba0610baf1000b7eae6
Binary files /dev/null and b/src/main/webapp/images/cranidos.png differ
diff --git a/src/main/webapp/images/crawdaunt.png b/src/main/webapp/images/crawdaunt.png
new file mode 100644
index 0000000000000000000000000000000000000000..71e00688a257db9d3fed66db407f61f1ba54f2b6
Binary files /dev/null and b/src/main/webapp/images/crawdaunt.png differ
diff --git a/src/main/webapp/images/cresselia.png b/src/main/webapp/images/cresselia.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ed6440416f776a4a73f5df3cd38956b38a894df
Binary files /dev/null and b/src/main/webapp/images/cresselia.png differ
diff --git a/src/main/webapp/images/croagunk.png b/src/main/webapp/images/croagunk.png
new file mode 100644
index 0000000000000000000000000000000000000000..b12797a13262ceff269ef400a10d281f7dc02ae5
Binary files /dev/null and b/src/main/webapp/images/croagunk.png differ
diff --git a/src/main/webapp/images/crobat.png b/src/main/webapp/images/crobat.png
new file mode 100644
index 0000000000000000000000000000000000000000..72dbaeffe58a8d9e3de1174cc1dac80cd217e94d
Binary files /dev/null and b/src/main/webapp/images/crobat.png differ
diff --git a/src/main/webapp/images/croconaw.png b/src/main/webapp/images/croconaw.png
new file mode 100644
index 0000000000000000000000000000000000000000..90bff4432c2658d435634b3b2edc364db128a904
Binary files /dev/null and b/src/main/webapp/images/croconaw.png differ
diff --git a/src/main/webapp/images/crustle.png b/src/main/webapp/images/crustle.png
new file mode 100644
index 0000000000000000000000000000000000000000..35b82dfef0cd2c5e48c5f8d4971b5a7cf3c49421
Binary files /dev/null and b/src/main/webapp/images/crustle.png differ
diff --git a/src/main/webapp/images/cryogonal.png b/src/main/webapp/images/cryogonal.png
new file mode 100644
index 0000000000000000000000000000000000000000..6a3ba833be1d831b18e763cdb7c14dc4115c2f60
Binary files /dev/null and b/src/main/webapp/images/cryogonal.png differ
diff --git a/src/main/webapp/images/cubchoo.png b/src/main/webapp/images/cubchoo.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e7c2618bb59541e833fe14e1e94c77a22231da0
Binary files /dev/null and b/src/main/webapp/images/cubchoo.png differ
diff --git a/src/main/webapp/images/cubone.png b/src/main/webapp/images/cubone.png
new file mode 100644
index 0000000000000000000000000000000000000000..2668a31fc46399764fd646df4da3bf2b9d45a334
Binary files /dev/null and b/src/main/webapp/images/cubone.png differ
diff --git a/src/main/webapp/images/cutiefly.png b/src/main/webapp/images/cutiefly.png
new file mode 100644
index 0000000000000000000000000000000000000000..39cc1a27df1767b4b18591c756944badd6018542
Binary files /dev/null and b/src/main/webapp/images/cutiefly.png differ
diff --git a/src/main/webapp/images/cyndaquil.png b/src/main/webapp/images/cyndaquil.png
new file mode 100644
index 0000000000000000000000000000000000000000..52db4b36aa201e05f096867538fd5a58026937f5
Binary files /dev/null and b/src/main/webapp/images/cyndaquil.png differ
diff --git a/src/main/webapp/images/darkrai.png b/src/main/webapp/images/darkrai.png
new file mode 100644
index 0000000000000000000000000000000000000000..67365a0aca328a9c86d142d983606ce782f36aae
Binary files /dev/null and b/src/main/webapp/images/darkrai.png differ
diff --git a/src/main/webapp/images/darmanitan-standard.png b/src/main/webapp/images/darmanitan-standard.png
new file mode 100644
index 0000000000000000000000000000000000000000..300cc3c0d98274993ed37ee559b4b8af4190a463
Binary files /dev/null and b/src/main/webapp/images/darmanitan-standard.png differ
diff --git a/src/main/webapp/images/dartrix.png b/src/main/webapp/images/dartrix.png
new file mode 100644
index 0000000000000000000000000000000000000000..eef8cc7b1b8049a81c9e81419a46beae209ad163
Binary files /dev/null and b/src/main/webapp/images/dartrix.png differ
diff --git a/src/main/webapp/images/darumaka.png b/src/main/webapp/images/darumaka.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0f15ae6bfed559be15e654d5fa8ab86217d0c7d
Binary files /dev/null and b/src/main/webapp/images/darumaka.png differ
diff --git a/src/main/webapp/images/decidueye.png b/src/main/webapp/images/decidueye.png
new file mode 100644
index 0000000000000000000000000000000000000000..91b08b1a6b6987d26b498df47176f205b1c8f160
Binary files /dev/null and b/src/main/webapp/images/decidueye.png differ
diff --git a/src/main/webapp/images/dedenne.png b/src/main/webapp/images/dedenne.png
new file mode 100644
index 0000000000000000000000000000000000000000..be01cb4dc99ad611684c58ada83aedfa232d8bc3
Binary files /dev/null and b/src/main/webapp/images/dedenne.png differ
diff --git a/src/main/webapp/images/deerling.png b/src/main/webapp/images/deerling.png
new file mode 100644
index 0000000000000000000000000000000000000000..16428e3fd90442996b7fae3e31d5a3ffb0253d7c
Binary files /dev/null and b/src/main/webapp/images/deerling.png differ
diff --git a/src/main/webapp/images/deino.png b/src/main/webapp/images/deino.png
new file mode 100644
index 0000000000000000000000000000000000000000..1812e4fa03ba9f8abb4f2396e4106fb18cb51c19
Binary files /dev/null and b/src/main/webapp/images/deino.png differ
diff --git a/src/main/webapp/images/delcatty.png b/src/main/webapp/images/delcatty.png
new file mode 100644
index 0000000000000000000000000000000000000000..265e2f28e5a02812f011cdce72959513d72ada0f
Binary files /dev/null and b/src/main/webapp/images/delcatty.png differ
diff --git a/src/main/webapp/images/delibird.png b/src/main/webapp/images/delibird.png
new file mode 100644
index 0000000000000000000000000000000000000000..18b7179c98f624d45432f634745e545ff2c7f5db
Binary files /dev/null and b/src/main/webapp/images/delibird.png differ
diff --git a/src/main/webapp/images/delphox.png b/src/main/webapp/images/delphox.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c7535c2e090f859ee7d25bf72ece72e06b41107
Binary files /dev/null and b/src/main/webapp/images/delphox.png differ
diff --git a/src/main/webapp/images/deoxys-normal.png b/src/main/webapp/images/deoxys-normal.png
new file mode 100644
index 0000000000000000000000000000000000000000..b5bf2547bead733998c2ba3267c2b5d76ecd13d5
Binary files /dev/null and b/src/main/webapp/images/deoxys-normal.png differ
diff --git a/src/main/webapp/images/dewgong.png b/src/main/webapp/images/dewgong.png
new file mode 100644
index 0000000000000000000000000000000000000000..1be625613eb482b913562c6854acfacfcaec142a
Binary files /dev/null and b/src/main/webapp/images/dewgong.png differ
diff --git a/src/main/webapp/images/dewott.png b/src/main/webapp/images/dewott.png
new file mode 100644
index 0000000000000000000000000000000000000000..637cc7003980f4a75d148afab6bbab67cda146a3
Binary files /dev/null and b/src/main/webapp/images/dewott.png differ
diff --git a/src/main/webapp/images/dewpider.png b/src/main/webapp/images/dewpider.png
new file mode 100644
index 0000000000000000000000000000000000000000..0b985e4869b27f1d539317321a9cbdb9ea704da1
Binary files /dev/null and b/src/main/webapp/images/dewpider.png differ
diff --git a/src/main/webapp/images/dhelmise.png b/src/main/webapp/images/dhelmise.png
new file mode 100644
index 0000000000000000000000000000000000000000..aca6aca49362402bc4b9e263a2d3a586c25fdc4b
Binary files /dev/null and b/src/main/webapp/images/dhelmise.png differ
diff --git a/src/main/webapp/images/dialga.png b/src/main/webapp/images/dialga.png
new file mode 100644
index 0000000000000000000000000000000000000000..2e0e3963f329001f3f131f905e176407c6e0f8a4
Binary files /dev/null and b/src/main/webapp/images/dialga.png differ
diff --git a/src/main/webapp/images/diancie.png b/src/main/webapp/images/diancie.png
new file mode 100644
index 0000000000000000000000000000000000000000..7d873a0c0c6ef73e5a92bac836cf8466aa781604
Binary files /dev/null and b/src/main/webapp/images/diancie.png differ
diff --git a/src/main/webapp/images/diggersby.png b/src/main/webapp/images/diggersby.png
new file mode 100644
index 0000000000000000000000000000000000000000..510bfc1c53355f6b2bd079cfa702029606a2880e
Binary files /dev/null and b/src/main/webapp/images/diggersby.png differ
diff --git a/src/main/webapp/images/diglett.png b/src/main/webapp/images/diglett.png
new file mode 100644
index 0000000000000000000000000000000000000000..b43e94c259c1c20b036665f74e21c43865d9c386
Binary files /dev/null and b/src/main/webapp/images/diglett.png differ
diff --git a/src/main/webapp/images/ditto.png b/src/main/webapp/images/ditto.png
new file mode 100644
index 0000000000000000000000000000000000000000..6d1d1ab65913207ac8b0f86c81deaee701d4efe8
Binary files /dev/null and b/src/main/webapp/images/ditto.png differ
diff --git a/src/main/webapp/images/dodrio.png b/src/main/webapp/images/dodrio.png
new file mode 100644
index 0000000000000000000000000000000000000000..f98e1c0a8a00fccb92271f0a320e12046ebd0445
Binary files /dev/null and b/src/main/webapp/images/dodrio.png differ
diff --git a/src/main/webapp/images/doduo.png b/src/main/webapp/images/doduo.png
new file mode 100644
index 0000000000000000000000000000000000000000..f7b1ef3e2fd0d0c5526f27ad04698930475c8949
Binary files /dev/null and b/src/main/webapp/images/doduo.png differ
diff --git a/src/main/webapp/images/donphan.png b/src/main/webapp/images/donphan.png
new file mode 100644
index 0000000000000000000000000000000000000000..8f57dd26f7533ca642490d71c6a1ce62f0f41104
Binary files /dev/null and b/src/main/webapp/images/donphan.png differ
diff --git a/src/main/webapp/images/doublade.png b/src/main/webapp/images/doublade.png
new file mode 100644
index 0000000000000000000000000000000000000000..e18c9f2f19a10b71f1c3a3f502fb70a970b946ec
Binary files /dev/null and b/src/main/webapp/images/doublade.png differ
diff --git a/src/main/webapp/images/dragalge.png b/src/main/webapp/images/dragalge.png
new file mode 100644
index 0000000000000000000000000000000000000000..e999950afe3711f5de0fdd196f90d225608cfc11
Binary files /dev/null and b/src/main/webapp/images/dragalge.png differ
diff --git a/src/main/webapp/images/dragonair.png b/src/main/webapp/images/dragonair.png
new file mode 100644
index 0000000000000000000000000000000000000000..67256aae46cb7ebcf5f5ccc2b494de3de63d253b
Binary files /dev/null and b/src/main/webapp/images/dragonair.png differ
diff --git a/src/main/webapp/images/dragonite.png b/src/main/webapp/images/dragonite.png
new file mode 100644
index 0000000000000000000000000000000000000000..def8544fc6f9e462532bdaa181d3dcff2a77f791
Binary files /dev/null and b/src/main/webapp/images/dragonite.png differ
diff --git a/src/main/webapp/images/drampa.png b/src/main/webapp/images/drampa.png
new file mode 100644
index 0000000000000000000000000000000000000000..81b4e3b00441814b72e7cb0a6e5aceb032b22df9
Binary files /dev/null and b/src/main/webapp/images/drampa.png differ
diff --git a/src/main/webapp/images/drapion.png b/src/main/webapp/images/drapion.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb19f65378bc9ef3916e1b749a1ca1f0894f7b2e
Binary files /dev/null and b/src/main/webapp/images/drapion.png differ
diff --git a/src/main/webapp/images/dratini.png b/src/main/webapp/images/dratini.png
new file mode 100644
index 0000000000000000000000000000000000000000..7d7adbf6c79308ca349fdc07b750d2cb406f8c9b
Binary files /dev/null and b/src/main/webapp/images/dratini.png differ
diff --git a/src/main/webapp/images/drifblim.png b/src/main/webapp/images/drifblim.png
new file mode 100644
index 0000000000000000000000000000000000000000..f367e86c8fa3e57a7befab5b8b4e450e59dfd606
Binary files /dev/null and b/src/main/webapp/images/drifblim.png differ
diff --git a/src/main/webapp/images/drifloon.png b/src/main/webapp/images/drifloon.png
new file mode 100644
index 0000000000000000000000000000000000000000..ff767014140404ef92a3d033fa4acedc9d5b6827
Binary files /dev/null and b/src/main/webapp/images/drifloon.png differ
diff --git a/src/main/webapp/images/drilbur.png b/src/main/webapp/images/drilbur.png
new file mode 100644
index 0000000000000000000000000000000000000000..ba74fa04dff57ef844df8aed515400483dc32a09
Binary files /dev/null and b/src/main/webapp/images/drilbur.png differ
diff --git a/src/main/webapp/images/drowzee.png b/src/main/webapp/images/drowzee.png
new file mode 100644
index 0000000000000000000000000000000000000000..6fc16dc110ac1722d9cc78a25210819057348dfd
Binary files /dev/null and b/src/main/webapp/images/drowzee.png differ
diff --git a/src/main/webapp/images/druddigon.png b/src/main/webapp/images/druddigon.png
new file mode 100644
index 0000000000000000000000000000000000000000..49c6cc6de296a7d82561e79eb3f83d827a774a32
Binary files /dev/null and b/src/main/webapp/images/druddigon.png differ
diff --git a/src/main/webapp/images/ducklett.png b/src/main/webapp/images/ducklett.png
new file mode 100644
index 0000000000000000000000000000000000000000..edc50d748733987513a2a80474c310ccfe2b8d55
Binary files /dev/null and b/src/main/webapp/images/ducklett.png differ
diff --git a/src/main/webapp/images/dugtrio.png b/src/main/webapp/images/dugtrio.png
new file mode 100644
index 0000000000000000000000000000000000000000..9984fbec190fc412db80a760d637c3aaf4ca02d1
Binary files /dev/null and b/src/main/webapp/images/dugtrio.png differ
diff --git a/src/main/webapp/images/dunsparce.png b/src/main/webapp/images/dunsparce.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac0837c93ea2c6e5fb0c4291d31c881137674c9c
Binary files /dev/null and b/src/main/webapp/images/dunsparce.png differ
diff --git a/src/main/webapp/images/duosion.png b/src/main/webapp/images/duosion.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a34316d48c34bcec14802d8ef66d28b01d68c44
Binary files /dev/null and b/src/main/webapp/images/duosion.png differ
diff --git a/src/main/webapp/images/durant.png b/src/main/webapp/images/durant.png
new file mode 100644
index 0000000000000000000000000000000000000000..0a8440897c1725c2011a558fb910ff83ebd4c73f
Binary files /dev/null and b/src/main/webapp/images/durant.png differ
diff --git a/src/main/webapp/images/dusclops.png b/src/main/webapp/images/dusclops.png
new file mode 100644
index 0000000000000000000000000000000000000000..19bf8d7ec41de5f6b18d11381d524cbe3a365bee
Binary files /dev/null and b/src/main/webapp/images/dusclops.png differ
diff --git a/src/main/webapp/images/dusknoir.png b/src/main/webapp/images/dusknoir.png
new file mode 100644
index 0000000000000000000000000000000000000000..d7f246f76ee678c234e075b381c2f78fafc4a68d
Binary files /dev/null and b/src/main/webapp/images/dusknoir.png differ
diff --git a/src/main/webapp/images/duskull.png b/src/main/webapp/images/duskull.png
new file mode 100644
index 0000000000000000000000000000000000000000..d919eae29d813052d117d435729a35f0b4e64bef
Binary files /dev/null and b/src/main/webapp/images/duskull.png differ
diff --git a/src/main/webapp/images/dustox.png b/src/main/webapp/images/dustox.png
new file mode 100644
index 0000000000000000000000000000000000000000..735106e6329c0dda6febc10f5344aa0aac664732
Binary files /dev/null and b/src/main/webapp/images/dustox.png differ
diff --git a/src/main/webapp/images/dwebble.png b/src/main/webapp/images/dwebble.png
new file mode 100644
index 0000000000000000000000000000000000000000..89eb269f17c0bb9e6f69ad8b99af6bf4a621f5c6
Binary files /dev/null and b/src/main/webapp/images/dwebble.png differ
diff --git a/src/main/webapp/images/eelektrik.png b/src/main/webapp/images/eelektrik.png
new file mode 100644
index 0000000000000000000000000000000000000000..c71391afcc924f4fbfa87cf36bdc43ef322ce0a8
Binary files /dev/null and b/src/main/webapp/images/eelektrik.png differ
diff --git a/src/main/webapp/images/eelektross.png b/src/main/webapp/images/eelektross.png
new file mode 100644
index 0000000000000000000000000000000000000000..b2453af934fba8b7b4103ad887b833cdb235c265
Binary files /dev/null and b/src/main/webapp/images/eelektross.png differ
diff --git a/src/main/webapp/images/eevee.png b/src/main/webapp/images/eevee.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ac032e2ed9035551924d89ff9661ef04a8c64c8
Binary files /dev/null and b/src/main/webapp/images/eevee.png differ
diff --git a/src/main/webapp/images/ekans.png b/src/main/webapp/images/ekans.png
new file mode 100644
index 0000000000000000000000000000000000000000..5e791c15404df8fb6c90cbdd0ca51c1c29085aab
Binary files /dev/null and b/src/main/webapp/images/ekans.png differ
diff --git a/src/main/webapp/images/electabuzz.png b/src/main/webapp/images/electabuzz.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a077d5cf4ad947ef88c697f546ea3ba29a7703e
Binary files /dev/null and b/src/main/webapp/images/electabuzz.png differ
diff --git a/src/main/webapp/images/electivire.png b/src/main/webapp/images/electivire.png
new file mode 100644
index 0000000000000000000000000000000000000000..a2e59da3578fb6bfb0edafa060475810feaadec8
Binary files /dev/null and b/src/main/webapp/images/electivire.png differ
diff --git a/src/main/webapp/images/electrike.png b/src/main/webapp/images/electrike.png
new file mode 100644
index 0000000000000000000000000000000000000000..92e84a6e4f1fcb49a53c3639ec49b16513203d94
Binary files /dev/null and b/src/main/webapp/images/electrike.png differ
diff --git a/src/main/webapp/images/electrode.png b/src/main/webapp/images/electrode.png
new file mode 100644
index 0000000000000000000000000000000000000000..9a4987f627502794b1a78d4ebc2a1ec57e5440b2
Binary files /dev/null and b/src/main/webapp/images/electrode.png differ
diff --git a/src/main/webapp/images/elekid.png b/src/main/webapp/images/elekid.png
new file mode 100644
index 0000000000000000000000000000000000000000..e86a9439a21a043758de50161de362408118540e
Binary files /dev/null and b/src/main/webapp/images/elekid.png differ
diff --git a/src/main/webapp/images/elgyem.png b/src/main/webapp/images/elgyem.png
new file mode 100644
index 0000000000000000000000000000000000000000..d619f8e0bd656e63d4cb96ca8e0f77a9109d811f
Binary files /dev/null and b/src/main/webapp/images/elgyem.png differ
diff --git a/src/main/webapp/images/emboar.png b/src/main/webapp/images/emboar.png
new file mode 100644
index 0000000000000000000000000000000000000000..0fc4add19dd0fd9fe65dc53869de25b9def42cdc
Binary files /dev/null and b/src/main/webapp/images/emboar.png differ
diff --git a/src/main/webapp/images/emolga.png b/src/main/webapp/images/emolga.png
new file mode 100644
index 0000000000000000000000000000000000000000..5ef1bc58a65aa780f297d442601323eae2aa8f9d
Binary files /dev/null and b/src/main/webapp/images/emolga.png differ
diff --git a/src/main/webapp/images/empoleon.png b/src/main/webapp/images/empoleon.png
new file mode 100644
index 0000000000000000000000000000000000000000..31dc29ac7acf29092cfb84dacd2c1edbe6a88f23
Binary files /dev/null and b/src/main/webapp/images/empoleon.png differ
diff --git a/src/main/webapp/images/entei.png b/src/main/webapp/images/entei.png
new file mode 100644
index 0000000000000000000000000000000000000000..bc59c2583b5cd34dbd347f8e014ee076404228ce
Binary files /dev/null and b/src/main/webapp/images/entei.png differ
diff --git a/src/main/webapp/images/escavalier.png b/src/main/webapp/images/escavalier.png
new file mode 100644
index 0000000000000000000000000000000000000000..8f11c71b3b1b40f738b99bed2682751545e86151
Binary files /dev/null and b/src/main/webapp/images/escavalier.png differ
diff --git a/src/main/webapp/images/espeon.png b/src/main/webapp/images/espeon.png
new file mode 100644
index 0000000000000000000000000000000000000000..1e996d5c7b4b116b0e2f477b8120311875d9e665
Binary files /dev/null and b/src/main/webapp/images/espeon.png differ
diff --git a/src/main/webapp/images/espurr.png b/src/main/webapp/images/espurr.png
new file mode 100644
index 0000000000000000000000000000000000000000..3539d134e705bacd0a6abf69599f52b65f4e7adb
Binary files /dev/null and b/src/main/webapp/images/espurr.png differ
diff --git a/src/main/webapp/images/excadrill.png b/src/main/webapp/images/excadrill.png
new file mode 100644
index 0000000000000000000000000000000000000000..50f4616b505ea59bf845aec44af9065a2376ce70
Binary files /dev/null and b/src/main/webapp/images/excadrill.png differ
diff --git a/src/main/webapp/images/exeggcute.png b/src/main/webapp/images/exeggcute.png
new file mode 100644
index 0000000000000000000000000000000000000000..07997099faab3b53c8aa1206d5a59cbfa14653df
Binary files /dev/null and b/src/main/webapp/images/exeggcute.png differ
diff --git a/src/main/webapp/images/exeggutor.png b/src/main/webapp/images/exeggutor.png
new file mode 100644
index 0000000000000000000000000000000000000000..4975b7d86c85133bf38a233e400595a43e5c57ba
Binary files /dev/null and b/src/main/webapp/images/exeggutor.png differ
diff --git a/src/main/webapp/images/exploud.png b/src/main/webapp/images/exploud.png
new file mode 100644
index 0000000000000000000000000000000000000000..0f5633fd2311d11401af6bb3d9a05abb672d7cba
Binary files /dev/null and b/src/main/webapp/images/exploud.png differ
diff --git a/src/main/webapp/images/farfetchd.png b/src/main/webapp/images/farfetchd.png
new file mode 100644
index 0000000000000000000000000000000000000000..e228274638e3a753dcfc4e8d89c60286228184dd
Binary files /dev/null and b/src/main/webapp/images/farfetchd.png differ
diff --git a/src/main/webapp/images/fearow.png b/src/main/webapp/images/fearow.png
new file mode 100644
index 0000000000000000000000000000000000000000..c79f1c3a8d5061486d18c52ea4787fac1c1cf3a9
Binary files /dev/null and b/src/main/webapp/images/fearow.png differ
diff --git a/src/main/webapp/images/feebas.png b/src/main/webapp/images/feebas.png
new file mode 100644
index 0000000000000000000000000000000000000000..436416ea8250e86eede1e5dba005817d2a779a16
Binary files /dev/null and b/src/main/webapp/images/feebas.png differ
diff --git a/src/main/webapp/images/fennekin.png b/src/main/webapp/images/fennekin.png
new file mode 100644
index 0000000000000000000000000000000000000000..b927234b76b58e3f2050ac6909d8ed8683210749
Binary files /dev/null and b/src/main/webapp/images/fennekin.png differ
diff --git a/src/main/webapp/images/feraligatr.png b/src/main/webapp/images/feraligatr.png
new file mode 100644
index 0000000000000000000000000000000000000000..6a58ef7829dc948f5693444cb5aea9c9a47b0f4f
Binary files /dev/null and b/src/main/webapp/images/feraligatr.png differ
diff --git a/src/main/webapp/images/ferroseed.png b/src/main/webapp/images/ferroseed.png
new file mode 100644
index 0000000000000000000000000000000000000000..13021868f5e1f62f22dc84987d67ff2007b77ef9
Binary files /dev/null and b/src/main/webapp/images/ferroseed.png differ
diff --git a/src/main/webapp/images/ferrothorn.png b/src/main/webapp/images/ferrothorn.png
new file mode 100644
index 0000000000000000000000000000000000000000..720b648bc37b241d3b661b80e57f417f3bf3113c
Binary files /dev/null and b/src/main/webapp/images/ferrothorn.png differ
diff --git a/src/main/webapp/images/finneon.png b/src/main/webapp/images/finneon.png
new file mode 100644
index 0000000000000000000000000000000000000000..38a45622b3ebe91d3fb661f0a3be80551772a451
Binary files /dev/null and b/src/main/webapp/images/finneon.png differ
diff --git a/src/main/webapp/images/flaaffy.png b/src/main/webapp/images/flaaffy.png
new file mode 100644
index 0000000000000000000000000000000000000000..d91788e5f9583323d4013742438af3fe6980ba2b
Binary files /dev/null and b/src/main/webapp/images/flaaffy.png differ
diff --git a/src/main/webapp/images/flabebe.png b/src/main/webapp/images/flabebe.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7cc5a11460f902373fb5cce22f9b2d93b7f9fd1
Binary files /dev/null and b/src/main/webapp/images/flabebe.png differ
diff --git a/src/main/webapp/images/flareon.png b/src/main/webapp/images/flareon.png
new file mode 100644
index 0000000000000000000000000000000000000000..640c803b2a23191e5a89fce9f33c079ec317a19f
Binary files /dev/null and b/src/main/webapp/images/flareon.png differ
diff --git a/src/main/webapp/images/fletchinder.png b/src/main/webapp/images/fletchinder.png
new file mode 100644
index 0000000000000000000000000000000000000000..ed1bee025e2788ab9702b4f72940988dfb3d2128
Binary files /dev/null and b/src/main/webapp/images/fletchinder.png differ
diff --git a/src/main/webapp/images/fletchling.png b/src/main/webapp/images/fletchling.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a2922d2cf45c4acf0f9a32f876b827f1f402202
Binary files /dev/null and b/src/main/webapp/images/fletchling.png differ
diff --git a/src/main/webapp/images/floatzel.png b/src/main/webapp/images/floatzel.png
new file mode 100644
index 0000000000000000000000000000000000000000..a780c9814ae7ab904ecac7c3354d3f7aea8437e5
Binary files /dev/null and b/src/main/webapp/images/floatzel.png differ
diff --git a/src/main/webapp/images/floette.png b/src/main/webapp/images/floette.png
new file mode 100644
index 0000000000000000000000000000000000000000..a47b90f7eacd14b2e3055471e0d5ba969e6efd6f
Binary files /dev/null and b/src/main/webapp/images/floette.png differ
diff --git a/src/main/webapp/images/florges.png b/src/main/webapp/images/florges.png
new file mode 100644
index 0000000000000000000000000000000000000000..79d57a46f5d71450a94384baec753aa044577f96
Binary files /dev/null and b/src/main/webapp/images/florges.png differ
diff --git a/src/main/webapp/images/flygon.png b/src/main/webapp/images/flygon.png
new file mode 100644
index 0000000000000000000000000000000000000000..4590fcdc1b14587b7c261adbce8a17c9d0a48647
Binary files /dev/null and b/src/main/webapp/images/flygon.png differ
diff --git a/src/main/webapp/images/fomantis.png b/src/main/webapp/images/fomantis.png
new file mode 100644
index 0000000000000000000000000000000000000000..44b20d034f3d64f8e49f56439c3914c706fec6ae
Binary files /dev/null and b/src/main/webapp/images/fomantis.png differ
diff --git a/src/main/webapp/images/foongus.png b/src/main/webapp/images/foongus.png
new file mode 100644
index 0000000000000000000000000000000000000000..c6d90f10d25a0c9c0da7af187f7482622f58e1a1
Binary files /dev/null and b/src/main/webapp/images/foongus.png differ
diff --git a/src/main/webapp/images/forretress.png b/src/main/webapp/images/forretress.png
new file mode 100644
index 0000000000000000000000000000000000000000..6458efa98f20d9726194abea377fa8e977931fd7
Binary files /dev/null and b/src/main/webapp/images/forretress.png differ
diff --git a/src/main/webapp/images/fraxure.png b/src/main/webapp/images/fraxure.png
new file mode 100644
index 0000000000000000000000000000000000000000..6bd2e06d424a41f1aa53ee954469f17ff42155c6
Binary files /dev/null and b/src/main/webapp/images/fraxure.png differ
diff --git a/src/main/webapp/images/frillish.png b/src/main/webapp/images/frillish.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e4ce1ce09b5dee93fca348995830943a3ad372a
Binary files /dev/null and b/src/main/webapp/images/frillish.png differ
diff --git a/src/main/webapp/images/froakie.png b/src/main/webapp/images/froakie.png
new file mode 100644
index 0000000000000000000000000000000000000000..8baee8defbf8fedcdb9efddab1f28aa10b90546c
Binary files /dev/null and b/src/main/webapp/images/froakie.png differ
diff --git a/src/main/webapp/images/frogadier.png b/src/main/webapp/images/frogadier.png
new file mode 100644
index 0000000000000000000000000000000000000000..53f338a10fa4cd327d65ed6e6eee45d861b14a76
Binary files /dev/null and b/src/main/webapp/images/frogadier.png differ
diff --git a/src/main/webapp/images/froslass.png b/src/main/webapp/images/froslass.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a7910e3f5747db412fd7b01bdadee9e2e46a705
Binary files /dev/null and b/src/main/webapp/images/froslass.png differ
diff --git a/src/main/webapp/images/furfrou.png b/src/main/webapp/images/furfrou.png
new file mode 100644
index 0000000000000000000000000000000000000000..dda28849c16d59aa5aa00ccf1ab38f47dc4c39a1
Binary files /dev/null and b/src/main/webapp/images/furfrou.png differ
diff --git a/src/main/webapp/images/furret.png b/src/main/webapp/images/furret.png
new file mode 100644
index 0000000000000000000000000000000000000000..6876a2afacc0d796129507e4c44848ced133ec17
Binary files /dev/null and b/src/main/webapp/images/furret.png differ
diff --git a/src/main/webapp/images/gabite.png b/src/main/webapp/images/gabite.png
new file mode 100644
index 0000000000000000000000000000000000000000..651f78976bf9f2d136e72cef1def647ef5d53ebc
Binary files /dev/null and b/src/main/webapp/images/gabite.png differ
diff --git a/src/main/webapp/images/gallade.png b/src/main/webapp/images/gallade.png
new file mode 100644
index 0000000000000000000000000000000000000000..fcd65bf2a225da842e7059a7c971c8316dc4273e
Binary files /dev/null and b/src/main/webapp/images/gallade.png differ
diff --git a/src/main/webapp/images/galvantula.png b/src/main/webapp/images/galvantula.png
new file mode 100644
index 0000000000000000000000000000000000000000..f0dc42b59ffa19bff929ef9180e23c785c68b332
Binary files /dev/null and b/src/main/webapp/images/galvantula.png differ
diff --git a/src/main/webapp/images/garbodor.png b/src/main/webapp/images/garbodor.png
new file mode 100644
index 0000000000000000000000000000000000000000..4afe6ddbc1532a2e004ffdedfb4aa0e406c176d4
Binary files /dev/null and b/src/main/webapp/images/garbodor.png differ
diff --git a/src/main/webapp/images/garchomp.png b/src/main/webapp/images/garchomp.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e79e71e69cd0d5791b6c5f53afff84574a364e7
Binary files /dev/null and b/src/main/webapp/images/garchomp.png differ
diff --git a/src/main/webapp/images/gardevoir.png b/src/main/webapp/images/gardevoir.png
new file mode 100644
index 0000000000000000000000000000000000000000..9f93473cced5065dc8cd342e5a651a2fc37c7dca
Binary files /dev/null and b/src/main/webapp/images/gardevoir.png differ
diff --git a/src/main/webapp/images/gastly.png b/src/main/webapp/images/gastly.png
new file mode 100644
index 0000000000000000000000000000000000000000..798f35354789e1c6d76f243415dfd29865f049d7
Binary files /dev/null and b/src/main/webapp/images/gastly.png differ
diff --git a/src/main/webapp/images/gastrodon.png b/src/main/webapp/images/gastrodon.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e56ea01f66c1e478149ef343a0042754673c967
Binary files /dev/null and b/src/main/webapp/images/gastrodon.png differ
diff --git a/src/main/webapp/images/genesect.png b/src/main/webapp/images/genesect.png
new file mode 100644
index 0000000000000000000000000000000000000000..e41197140be9bdbb785cbb65d5b7a08f844fc200
Binary files /dev/null and b/src/main/webapp/images/genesect.png differ
diff --git a/src/main/webapp/images/gengar.png b/src/main/webapp/images/gengar.png
new file mode 100644
index 0000000000000000000000000000000000000000..99d2273675fde4bc88942ef5bbcdb9587fcceb3b
Binary files /dev/null and b/src/main/webapp/images/gengar.png differ
diff --git a/src/main/webapp/images/geodude.png b/src/main/webapp/images/geodude.png
new file mode 100644
index 0000000000000000000000000000000000000000..c6f8875c300489eb2d084b2fd15156eeb11c1ed3
Binary files /dev/null and b/src/main/webapp/images/geodude.png differ
diff --git a/src/main/webapp/images/gible.png b/src/main/webapp/images/gible.png
new file mode 100644
index 0000000000000000000000000000000000000000..8b565de6fa531d371d4497ac72d337041c339e6f
Binary files /dev/null and b/src/main/webapp/images/gible.png differ
diff --git a/src/main/webapp/images/gigalith.png b/src/main/webapp/images/gigalith.png
new file mode 100644
index 0000000000000000000000000000000000000000..25ecac8ee0bc065452f0b5a7e8baeffe192d4d43
Binary files /dev/null and b/src/main/webapp/images/gigalith.png differ
diff --git a/src/main/webapp/images/girafarig.png b/src/main/webapp/images/girafarig.png
new file mode 100644
index 0000000000000000000000000000000000000000..3f126ac01e7ee6ab850e2d4cbc39c38a38cd5f2d
Binary files /dev/null and b/src/main/webapp/images/girafarig.png differ
diff --git a/src/main/webapp/images/giratina-altered.png b/src/main/webapp/images/giratina-altered.png
new file mode 100644
index 0000000000000000000000000000000000000000..5ac983e802937866d605ad4b92d2cc473c6e423b
Binary files /dev/null and b/src/main/webapp/images/giratina-altered.png differ
diff --git a/src/main/webapp/images/glaceon.png b/src/main/webapp/images/glaceon.png
new file mode 100644
index 0000000000000000000000000000000000000000..d1d984515f1baf20c0741c6e5881c627e3491551
Binary files /dev/null and b/src/main/webapp/images/glaceon.png differ
diff --git a/src/main/webapp/images/glalie.png b/src/main/webapp/images/glalie.png
new file mode 100644
index 0000000000000000000000000000000000000000..9f8d1ec4b60dbd494d3b94b42efbd0a87b8cc607
Binary files /dev/null and b/src/main/webapp/images/glalie.png differ
diff --git a/src/main/webapp/images/glameow.png b/src/main/webapp/images/glameow.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c892ce85f38556c7fa804e5b532fec63f79e4da
Binary files /dev/null and b/src/main/webapp/images/glameow.png differ
diff --git a/src/main/webapp/images/gligar.png b/src/main/webapp/images/gligar.png
new file mode 100644
index 0000000000000000000000000000000000000000..3dfd5a79978e5c946829a4a28ad90560bfca5bc2
Binary files /dev/null and b/src/main/webapp/images/gligar.png differ
diff --git a/src/main/webapp/images/gliscor.png b/src/main/webapp/images/gliscor.png
new file mode 100644
index 0000000000000000000000000000000000000000..f0e9b23ed063dc4097c02c6d0d77a1f349c1cab9
Binary files /dev/null and b/src/main/webapp/images/gliscor.png differ
diff --git a/src/main/webapp/images/gloom.png b/src/main/webapp/images/gloom.png
new file mode 100644
index 0000000000000000000000000000000000000000..75e88991c26dc87e63b5ceb490b00a2da15a11b9
Binary files /dev/null and b/src/main/webapp/images/gloom.png differ
diff --git a/src/main/webapp/images/gogoat.png b/src/main/webapp/images/gogoat.png
new file mode 100644
index 0000000000000000000000000000000000000000..436650063845c4dea4192c83d0360de08c1317cd
Binary files /dev/null and b/src/main/webapp/images/gogoat.png differ
diff --git a/src/main/webapp/images/golbat.png b/src/main/webapp/images/golbat.png
new file mode 100644
index 0000000000000000000000000000000000000000..ec6123a390824702e6517d7a0965d4bcec6f67d1
Binary files /dev/null and b/src/main/webapp/images/golbat.png differ
diff --git a/src/main/webapp/images/goldeen.png b/src/main/webapp/images/goldeen.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd5566312036d0baf0f30d3ee84207771c310a3e
Binary files /dev/null and b/src/main/webapp/images/goldeen.png differ
diff --git a/src/main/webapp/images/golduck.png b/src/main/webapp/images/golduck.png
new file mode 100644
index 0000000000000000000000000000000000000000..b39edbc4ba9ad7e03b01de501b2156c1ade81506
Binary files /dev/null and b/src/main/webapp/images/golduck.png differ
diff --git a/src/main/webapp/images/golem.png b/src/main/webapp/images/golem.png
new file mode 100644
index 0000000000000000000000000000000000000000..4cd6a53b0ba95dce37ade44199a22d3fb91811ef
Binary files /dev/null and b/src/main/webapp/images/golem.png differ
diff --git a/src/main/webapp/images/golett.png b/src/main/webapp/images/golett.png
new file mode 100644
index 0000000000000000000000000000000000000000..a3907552fbfcb62db187b42715ceae14b1f51125
Binary files /dev/null and b/src/main/webapp/images/golett.png differ
diff --git a/src/main/webapp/images/golisopod.png b/src/main/webapp/images/golisopod.png
new file mode 100644
index 0000000000000000000000000000000000000000..71fd087354cda1f029d6966bf33abc513afe7a1e
Binary files /dev/null and b/src/main/webapp/images/golisopod.png differ
diff --git a/src/main/webapp/images/golurk.png b/src/main/webapp/images/golurk.png
new file mode 100644
index 0000000000000000000000000000000000000000..8eb94d8fb04c6bf93d8ad029d56d2538a5280e96
Binary files /dev/null and b/src/main/webapp/images/golurk.png differ
diff --git a/src/main/webapp/images/goodra.png b/src/main/webapp/images/goodra.png
new file mode 100644
index 0000000000000000000000000000000000000000..417d8491f8e8ffcca03d69b85d913b502a596b57
Binary files /dev/null and b/src/main/webapp/images/goodra.png differ
diff --git a/src/main/webapp/images/goomy.png b/src/main/webapp/images/goomy.png
new file mode 100644
index 0000000000000000000000000000000000000000..445503de53b3dffa520fcdaa3dc31bb6fb002686
Binary files /dev/null and b/src/main/webapp/images/goomy.png differ
diff --git a/src/main/webapp/images/gorebyss.png b/src/main/webapp/images/gorebyss.png
new file mode 100644
index 0000000000000000000000000000000000000000..87388632cfe84d854758e469a895600ef5f15427
Binary files /dev/null and b/src/main/webapp/images/gorebyss.png differ
diff --git a/src/main/webapp/images/gothita.png b/src/main/webapp/images/gothita.png
new file mode 100644
index 0000000000000000000000000000000000000000..207548bc63e121169efebcde65317df914a575a2
Binary files /dev/null and b/src/main/webapp/images/gothita.png differ
diff --git a/src/main/webapp/images/gothitelle.png b/src/main/webapp/images/gothitelle.png
new file mode 100644
index 0000000000000000000000000000000000000000..6cfcbbda0ad8ab0943d79c4cb62cf542f6d570a7
Binary files /dev/null and b/src/main/webapp/images/gothitelle.png differ
diff --git a/src/main/webapp/images/gothorita.png b/src/main/webapp/images/gothorita.png
new file mode 100644
index 0000000000000000000000000000000000000000..86569a3409ac793900e5dca36ad1738df657310f
Binary files /dev/null and b/src/main/webapp/images/gothorita.png differ
diff --git a/src/main/webapp/images/gourgeist-average.png b/src/main/webapp/images/gourgeist-average.png
new file mode 100644
index 0000000000000000000000000000000000000000..959b54ba79b48ffa3754a480aa1bad853bf626e3
Binary files /dev/null and b/src/main/webapp/images/gourgeist-average.png differ
diff --git a/src/main/webapp/images/granbull.png b/src/main/webapp/images/granbull.png
new file mode 100644
index 0000000000000000000000000000000000000000..7dd20b0f74d5c34830cb9373ecfe46d0a7902b0b
Binary files /dev/null and b/src/main/webapp/images/granbull.png differ
diff --git a/src/main/webapp/images/graveler.png b/src/main/webapp/images/graveler.png
new file mode 100644
index 0000000000000000000000000000000000000000..04531a109948f34bcce38495b6938a02fc460ece
Binary files /dev/null and b/src/main/webapp/images/graveler.png differ
diff --git a/src/main/webapp/images/greninja.png b/src/main/webapp/images/greninja.png
new file mode 100644
index 0000000000000000000000000000000000000000..39568ef551ecd5e360cea712d70e0bcfca6f0cf1
Binary files /dev/null and b/src/main/webapp/images/greninja.png differ
diff --git a/src/main/webapp/images/grimer.png b/src/main/webapp/images/grimer.png
new file mode 100644
index 0000000000000000000000000000000000000000..edb309cb4a0b6cf859ec4482e1f30383f7ab1341
Binary files /dev/null and b/src/main/webapp/images/grimer.png differ
diff --git a/src/main/webapp/images/grotle.png b/src/main/webapp/images/grotle.png
new file mode 100644
index 0000000000000000000000000000000000000000..3901e8ce3118d32a1544d7041f844ea83399d44a
Binary files /dev/null and b/src/main/webapp/images/grotle.png differ
diff --git a/src/main/webapp/images/groudon.png b/src/main/webapp/images/groudon.png
new file mode 100644
index 0000000000000000000000000000000000000000..ea27723e488a88f471c4cb0bad1e1ea40115a7c9
Binary files /dev/null and b/src/main/webapp/images/groudon.png differ
diff --git a/src/main/webapp/images/grovyle.png b/src/main/webapp/images/grovyle.png
new file mode 100644
index 0000000000000000000000000000000000000000..6926fa8a21371829f9b7255856ab4f644bb85f77
Binary files /dev/null and b/src/main/webapp/images/grovyle.png differ
diff --git a/src/main/webapp/images/growlithe.png b/src/main/webapp/images/growlithe.png
new file mode 100644
index 0000000000000000000000000000000000000000..5c3ea9b5583568f590fcd6741ffd17ba362facf0
Binary files /dev/null and b/src/main/webapp/images/growlithe.png differ
diff --git a/src/main/webapp/images/grubbin.png b/src/main/webapp/images/grubbin.png
new file mode 100644
index 0000000000000000000000000000000000000000..5bbc971726508653087ebabacba6dde5c775e162
Binary files /dev/null and b/src/main/webapp/images/grubbin.png differ
diff --git a/src/main/webapp/images/grumpig.png b/src/main/webapp/images/grumpig.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e339d35471dace6c3650331da8cd456df01dd1b
Binary files /dev/null and b/src/main/webapp/images/grumpig.png differ
diff --git a/src/main/webapp/images/gulpin.png b/src/main/webapp/images/gulpin.png
new file mode 100644
index 0000000000000000000000000000000000000000..724af55859a428631904dfe7e3b10b12916f468c
Binary files /dev/null and b/src/main/webapp/images/gulpin.png differ
diff --git a/src/main/webapp/images/gumshoos.png b/src/main/webapp/images/gumshoos.png
new file mode 100644
index 0000000000000000000000000000000000000000..eadd9c44631c946bba34cf9715d9738b9f73b705
Binary files /dev/null and b/src/main/webapp/images/gumshoos.png differ
diff --git a/src/main/webapp/images/gurdurr.png b/src/main/webapp/images/gurdurr.png
new file mode 100644
index 0000000000000000000000000000000000000000..5070532b992b2bd284856355eb66299cfc216d84
Binary files /dev/null and b/src/main/webapp/images/gurdurr.png differ
diff --git a/src/main/webapp/images/guzzlord.png b/src/main/webapp/images/guzzlord.png
new file mode 100644
index 0000000000000000000000000000000000000000..830470c8194c0b1af69aaed62fd03127af56c8d5
Binary files /dev/null and b/src/main/webapp/images/guzzlord.png differ
diff --git a/src/main/webapp/images/gyarados.png b/src/main/webapp/images/gyarados.png
new file mode 100644
index 0000000000000000000000000000000000000000..5fa48337eafe4083b89bf687004c096d59e4cf81
Binary files /dev/null and b/src/main/webapp/images/gyarados.png differ
diff --git a/src/main/webapp/images/hakamo-o.png b/src/main/webapp/images/hakamo-o.png
new file mode 100644
index 0000000000000000000000000000000000000000..3b9f33e8cb66058a28089009b974b9422671bac3
Binary files /dev/null and b/src/main/webapp/images/hakamo-o.png differ
diff --git a/src/main/webapp/images/happiny.png b/src/main/webapp/images/happiny.png
new file mode 100644
index 0000000000000000000000000000000000000000..dc4970eea654cf3c3ef3dedb70cf014e1c10aefb
Binary files /dev/null and b/src/main/webapp/images/happiny.png differ
diff --git a/src/main/webapp/images/hariyama.png b/src/main/webapp/images/hariyama.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c0d43d46beed4a1445f2780186efad7c12e1b35
Binary files /dev/null and b/src/main/webapp/images/hariyama.png differ
diff --git a/src/main/webapp/images/haunter.png b/src/main/webapp/images/haunter.png
new file mode 100644
index 0000000000000000000000000000000000000000..f1c7b664ce60a6f65ddaa6e9ef42cb5d0d76ab0d
Binary files /dev/null and b/src/main/webapp/images/haunter.png differ
diff --git a/src/main/webapp/images/hawlucha.png b/src/main/webapp/images/hawlucha.png
new file mode 100644
index 0000000000000000000000000000000000000000..07b79e1964c8b971095c61c01dfa37c3f7560110
Binary files /dev/null and b/src/main/webapp/images/hawlucha.png differ
diff --git a/src/main/webapp/images/haxorus.png b/src/main/webapp/images/haxorus.png
new file mode 100644
index 0000000000000000000000000000000000000000..7114574f2e933dcec0506aeb75aedc496c5f0c61
Binary files /dev/null and b/src/main/webapp/images/haxorus.png differ
diff --git a/src/main/webapp/images/heatmor.png b/src/main/webapp/images/heatmor.png
new file mode 100644
index 0000000000000000000000000000000000000000..60765f69a8981b65ff2f8c0c268b82be5c69e81d
Binary files /dev/null and b/src/main/webapp/images/heatmor.png differ
diff --git a/src/main/webapp/images/heatran.png b/src/main/webapp/images/heatran.png
new file mode 100644
index 0000000000000000000000000000000000000000..d207ad653f35bf2335870ca2789ebf72f8bd1cec
Binary files /dev/null and b/src/main/webapp/images/heatran.png differ
diff --git a/src/main/webapp/images/heliolisk.png b/src/main/webapp/images/heliolisk.png
new file mode 100644
index 0000000000000000000000000000000000000000..367fc2e1d5490021f7d1f06b926fdf019eafafd3
Binary files /dev/null and b/src/main/webapp/images/heliolisk.png differ
diff --git a/src/main/webapp/images/helioptile.png b/src/main/webapp/images/helioptile.png
new file mode 100644
index 0000000000000000000000000000000000000000..2231f8a03eaaca3510dad302a82db4535c6963f7
Binary files /dev/null and b/src/main/webapp/images/helioptile.png differ
diff --git a/src/main/webapp/images/heracross.png b/src/main/webapp/images/heracross.png
new file mode 100644
index 0000000000000000000000000000000000000000..d83cde2b42c7ecf1add2dd59f29264638c667cd6
Binary files /dev/null and b/src/main/webapp/images/heracross.png differ
diff --git a/src/main/webapp/images/herdier.png b/src/main/webapp/images/herdier.png
new file mode 100644
index 0000000000000000000000000000000000000000..cfa84ac57388a86cb0950d5c0a163d0d90ab379d
Binary files /dev/null and b/src/main/webapp/images/herdier.png differ
diff --git a/src/main/webapp/images/hippopotas.png b/src/main/webapp/images/hippopotas.png
new file mode 100644
index 0000000000000000000000000000000000000000..b41afea91ef543ac6be725564910c276c88a29f6
Binary files /dev/null and b/src/main/webapp/images/hippopotas.png differ
diff --git a/src/main/webapp/images/hippowdon.png b/src/main/webapp/images/hippowdon.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ae5db223903428df833789127aae97efa863324
Binary files /dev/null and b/src/main/webapp/images/hippowdon.png differ
diff --git a/src/main/webapp/images/hitmonchan.png b/src/main/webapp/images/hitmonchan.png
new file mode 100644
index 0000000000000000000000000000000000000000..14ce38ea93489b172240a4575ad93372c5a384bc
Binary files /dev/null and b/src/main/webapp/images/hitmonchan.png differ
diff --git a/src/main/webapp/images/hitmonlee.png b/src/main/webapp/images/hitmonlee.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ee2f8ff3ca578b2b5784349780fe888f8799fe7
Binary files /dev/null and b/src/main/webapp/images/hitmonlee.png differ
diff --git a/src/main/webapp/images/hitmontop.png b/src/main/webapp/images/hitmontop.png
new file mode 100644
index 0000000000000000000000000000000000000000..af17e3c733399d6f4c04a0f7584af1f220f1da7c
Binary files /dev/null and b/src/main/webapp/images/hitmontop.png differ
diff --git a/src/main/webapp/images/ho-oh.png b/src/main/webapp/images/ho-oh.png
new file mode 100644
index 0000000000000000000000000000000000000000..9ff0abc074f09deb3369298261b17c2fabf500be
Binary files /dev/null and b/src/main/webapp/images/ho-oh.png differ
diff --git a/src/main/webapp/images/honchkrow.png b/src/main/webapp/images/honchkrow.png
new file mode 100644
index 0000000000000000000000000000000000000000..484a7475bec18089baf518983e5fa853afb3e31f
Binary files /dev/null and b/src/main/webapp/images/honchkrow.png differ
diff --git a/src/main/webapp/images/honedge.png b/src/main/webapp/images/honedge.png
new file mode 100644
index 0000000000000000000000000000000000000000..92fbdf092d99e44803b3ec12919951b63ad37142
Binary files /dev/null and b/src/main/webapp/images/honedge.png differ
diff --git a/src/main/webapp/images/hoopa-confined.png b/src/main/webapp/images/hoopa-confined.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e2f68ff66b37cd9bdc8b10c4b40006794028560
Binary files /dev/null and b/src/main/webapp/images/hoopa-confined.png differ
diff --git a/src/main/webapp/images/hoothoot.png b/src/main/webapp/images/hoothoot.png
new file mode 100644
index 0000000000000000000000000000000000000000..e949afc11541edae3ae9074851b592f7e67a0de0
Binary files /dev/null and b/src/main/webapp/images/hoothoot.png differ
diff --git a/src/main/webapp/images/hoppip.png b/src/main/webapp/images/hoppip.png
new file mode 100644
index 0000000000000000000000000000000000000000..8303dc69766f03550bb92a9430cfcd54d76263de
Binary files /dev/null and b/src/main/webapp/images/hoppip.png differ
diff --git a/src/main/webapp/images/horsea.png b/src/main/webapp/images/horsea.png
new file mode 100644
index 0000000000000000000000000000000000000000..83e756217eb81116f9272111e69db22e6875412f
Binary files /dev/null and b/src/main/webapp/images/horsea.png differ
diff --git a/src/main/webapp/images/houndoom.png b/src/main/webapp/images/houndoom.png
new file mode 100644
index 0000000000000000000000000000000000000000..7f6379f3023e021ca3ad8e49ea2503fca2b51280
Binary files /dev/null and b/src/main/webapp/images/houndoom.png differ
diff --git a/src/main/webapp/images/houndour.png b/src/main/webapp/images/houndour.png
new file mode 100644
index 0000000000000000000000000000000000000000..26bd8bbcf8637192b15ffb16e87078652226ce56
Binary files /dev/null and b/src/main/webapp/images/houndour.png differ
diff --git a/src/main/webapp/images/huntail.png b/src/main/webapp/images/huntail.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b3da1d8ada7282de6e60b025281f242116386f6
Binary files /dev/null and b/src/main/webapp/images/huntail.png differ
diff --git a/src/main/webapp/images/hydreigon.png b/src/main/webapp/images/hydreigon.png
new file mode 100644
index 0000000000000000000000000000000000000000..07f08a41cf2f8ffe193317ec4a7b722166de4577
Binary files /dev/null and b/src/main/webapp/images/hydreigon.png differ
diff --git a/src/main/webapp/images/hypno.png b/src/main/webapp/images/hypno.png
new file mode 100644
index 0000000000000000000000000000000000000000..6a2d92cd6a4affbb37a3d5cffd07c907de3b9fef
Binary files /dev/null and b/src/main/webapp/images/hypno.png differ
diff --git a/src/main/webapp/images/igglybuff.png b/src/main/webapp/images/igglybuff.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ff8361629601180438d8e85b3861d31154ffe80
Binary files /dev/null and b/src/main/webapp/images/igglybuff.png differ
diff --git a/src/main/webapp/images/illumise.png b/src/main/webapp/images/illumise.png
new file mode 100644
index 0000000000000000000000000000000000000000..fb1c873690fa3d20775c2b9417be6ffedfb6fc53
Binary files /dev/null and b/src/main/webapp/images/illumise.png differ
diff --git a/src/main/webapp/images/incineroar.png b/src/main/webapp/images/incineroar.png
new file mode 100644
index 0000000000000000000000000000000000000000..f715d926b98136fd1e421f53a4e5fbfeedbc595a
Binary files /dev/null and b/src/main/webapp/images/incineroar.png differ
diff --git a/src/main/webapp/images/infernape.png b/src/main/webapp/images/infernape.png
new file mode 100644
index 0000000000000000000000000000000000000000..c4a5030c1a2ce4754796d2f012f1247e3bbef57b
Binary files /dev/null and b/src/main/webapp/images/infernape.png differ
diff --git a/src/main/webapp/images/inkay.png b/src/main/webapp/images/inkay.png
new file mode 100644
index 0000000000000000000000000000000000000000..6f55dff0bef3e46936e7c672a32fb7212190c05d
Binary files /dev/null and b/src/main/webapp/images/inkay.png differ
diff --git a/src/main/webapp/images/ivysaur.png b/src/main/webapp/images/ivysaur.png
new file mode 100644
index 0000000000000000000000000000000000000000..808a66935dda04006d273d8e0fe2d6eb2bc18c9a
Binary files /dev/null and b/src/main/webapp/images/ivysaur.png differ
diff --git a/src/main/webapp/images/jangmo-o.png b/src/main/webapp/images/jangmo-o.png
new file mode 100644
index 0000000000000000000000000000000000000000..e663e042072564229421a88af6800e71de9fed2a
Binary files /dev/null and b/src/main/webapp/images/jangmo-o.png differ
diff --git a/src/main/webapp/images/jellicent.png b/src/main/webapp/images/jellicent.png
new file mode 100644
index 0000000000000000000000000000000000000000..dca646cabcf95a5321bb45e274a36b666a9efe9a
Binary files /dev/null and b/src/main/webapp/images/jellicent.png differ
diff --git a/src/main/webapp/images/jigglypuff.png b/src/main/webapp/images/jigglypuff.png
new file mode 100644
index 0000000000000000000000000000000000000000..2b12f2933fad06efa34b9441c9fedb383a12e274
Binary files /dev/null and b/src/main/webapp/images/jigglypuff.png differ
diff --git a/src/main/webapp/images/jirachi.png b/src/main/webapp/images/jirachi.png
new file mode 100644
index 0000000000000000000000000000000000000000..443c0a2578dcb7bb7360b611c38b0d26473cf877
Binary files /dev/null and b/src/main/webapp/images/jirachi.png differ
diff --git a/src/main/webapp/images/jolteon.png b/src/main/webapp/images/jolteon.png
new file mode 100644
index 0000000000000000000000000000000000000000..f524c2d9d35fdb7d19b7e948a6a13d33ef5d569f
Binary files /dev/null and b/src/main/webapp/images/jolteon.png differ
diff --git a/src/main/webapp/images/joltik.png b/src/main/webapp/images/joltik.png
new file mode 100644
index 0000000000000000000000000000000000000000..24b236687214844a97394c795cd74775c422ae8b
Binary files /dev/null and b/src/main/webapp/images/joltik.png differ
diff --git a/src/main/webapp/images/jumpluff.png b/src/main/webapp/images/jumpluff.png
new file mode 100644
index 0000000000000000000000000000000000000000..a34694c4b2fad5708f29972bf8c8eb96a4e2c2b0
Binary files /dev/null and b/src/main/webapp/images/jumpluff.png differ
diff --git a/src/main/webapp/images/jynx.png b/src/main/webapp/images/jynx.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c4774e3bd5c2a2c6a2fa11a52049293f1860eab
Binary files /dev/null and b/src/main/webapp/images/jynx.png differ
diff --git a/src/main/webapp/images/kabuto.png b/src/main/webapp/images/kabuto.png
new file mode 100644
index 0000000000000000000000000000000000000000..5be24b857406b222803803299d20730c679e410a
Binary files /dev/null and b/src/main/webapp/images/kabuto.png differ
diff --git a/src/main/webapp/images/kabutops.png b/src/main/webapp/images/kabutops.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e6767484f6eb60a3818ba709bc30202c79791a6
Binary files /dev/null and b/src/main/webapp/images/kabutops.png differ
diff --git a/src/main/webapp/images/kadabra.png b/src/main/webapp/images/kadabra.png
new file mode 100644
index 0000000000000000000000000000000000000000..e1f5b5504e570d31b147588ea8ece58f00465845
Binary files /dev/null and b/src/main/webapp/images/kadabra.png differ
diff --git a/src/main/webapp/images/kakuna.png b/src/main/webapp/images/kakuna.png
new file mode 100644
index 0000000000000000000000000000000000000000..4649025b80c462449d917c213a1dfb9730eb3d3c
Binary files /dev/null and b/src/main/webapp/images/kakuna.png differ
diff --git a/src/main/webapp/images/kangaskhan.png b/src/main/webapp/images/kangaskhan.png
new file mode 100644
index 0000000000000000000000000000000000000000..88dfa35bb0d14b90a5118d00904d70575d62888d
Binary files /dev/null and b/src/main/webapp/images/kangaskhan.png differ
diff --git a/src/main/webapp/images/karrablast.png b/src/main/webapp/images/karrablast.png
new file mode 100644
index 0000000000000000000000000000000000000000..111e8823ae208e0f3493cc226c27e575799de23e
Binary files /dev/null and b/src/main/webapp/images/karrablast.png differ
diff --git a/src/main/webapp/images/kartana.png b/src/main/webapp/images/kartana.png
new file mode 100644
index 0000000000000000000000000000000000000000..6cb94eb1f02bb5be74ffc25ccc3aec17bfb518d5
Binary files /dev/null and b/src/main/webapp/images/kartana.png differ
diff --git a/src/main/webapp/images/kecleon.png b/src/main/webapp/images/kecleon.png
new file mode 100644
index 0000000000000000000000000000000000000000..c60ae9f580300e6065ff6ab00b56a3c5a907a3c0
Binary files /dev/null and b/src/main/webapp/images/kecleon.png differ
diff --git a/src/main/webapp/images/keldeo-ordinary.png b/src/main/webapp/images/keldeo-ordinary.png
new file mode 100644
index 0000000000000000000000000000000000000000..7f07bfd87242749f91511b7e07c08f0b3295bf65
Binary files /dev/null and b/src/main/webapp/images/keldeo-ordinary.png differ
diff --git a/src/main/webapp/images/kingdra.png b/src/main/webapp/images/kingdra.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8c2ed7a3cae69c47dc3d21e42cf6290d30b9d28
Binary files /dev/null and b/src/main/webapp/images/kingdra.png differ
diff --git a/src/main/webapp/images/kingler.png b/src/main/webapp/images/kingler.png
new file mode 100644
index 0000000000000000000000000000000000000000..16daa9c14e900f196c26e694928ef219f8384e86
Binary files /dev/null and b/src/main/webapp/images/kingler.png differ
diff --git a/src/main/webapp/images/kirlia.png b/src/main/webapp/images/kirlia.png
new file mode 100644
index 0000000000000000000000000000000000000000..73f103fb104a477ff66fb644e63f8067632e25a9
Binary files /dev/null and b/src/main/webapp/images/kirlia.png differ
diff --git a/src/main/webapp/images/klang.png b/src/main/webapp/images/klang.png
new file mode 100644
index 0000000000000000000000000000000000000000..35a8903407c4b0640285028cc6dd61b79c4d8744
Binary files /dev/null and b/src/main/webapp/images/klang.png differ
diff --git a/src/main/webapp/images/klefki.png b/src/main/webapp/images/klefki.png
new file mode 100644
index 0000000000000000000000000000000000000000..9d470c22a1cc4c0186708e0a851db9737f6adf14
Binary files /dev/null and b/src/main/webapp/images/klefki.png differ
diff --git a/src/main/webapp/images/klink.png b/src/main/webapp/images/klink.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e0f748eb9ecfe7e2593e45791f85eaa9fa47f23
Binary files /dev/null and b/src/main/webapp/images/klink.png differ
diff --git a/src/main/webapp/images/klinklang.png b/src/main/webapp/images/klinklang.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a61cd5475b721dd4bcff4648bfd16eb347905a7
Binary files /dev/null and b/src/main/webapp/images/klinklang.png differ
diff --git a/src/main/webapp/images/koffing.png b/src/main/webapp/images/koffing.png
new file mode 100644
index 0000000000000000000000000000000000000000..1b8ee1837a38712d223d1bb66a17fd6d600bfb97
Binary files /dev/null and b/src/main/webapp/images/koffing.png differ
diff --git a/src/main/webapp/images/komala.png b/src/main/webapp/images/komala.png
new file mode 100644
index 0000000000000000000000000000000000000000..812205553dbd2b86d2cff6d88ac414423190f081
Binary files /dev/null and b/src/main/webapp/images/komala.png differ
diff --git a/src/main/webapp/images/kommo-o.png b/src/main/webapp/images/kommo-o.png
new file mode 100644
index 0000000000000000000000000000000000000000..9e5f40620656986d24b751c1b740d3270306426e
Binary files /dev/null and b/src/main/webapp/images/kommo-o.png differ
diff --git a/src/main/webapp/images/krabby.png b/src/main/webapp/images/krabby.png
new file mode 100644
index 0000000000000000000000000000000000000000..6e3faa4cbe7b4c5106534917afae23000f8c564c
Binary files /dev/null and b/src/main/webapp/images/krabby.png differ
diff --git a/src/main/webapp/images/kricketot.png b/src/main/webapp/images/kricketot.png
new file mode 100644
index 0000000000000000000000000000000000000000..513a3bfae6db62d1dbf3598dacf9429a67bcf1e9
Binary files /dev/null and b/src/main/webapp/images/kricketot.png differ
diff --git a/src/main/webapp/images/kricketune.png b/src/main/webapp/images/kricketune.png
new file mode 100644
index 0000000000000000000000000000000000000000..9a1a593fb270e94744fd80d1f094d624b74f1363
Binary files /dev/null and b/src/main/webapp/images/kricketune.png differ
diff --git a/src/main/webapp/images/krokorok.png b/src/main/webapp/images/krokorok.png
new file mode 100644
index 0000000000000000000000000000000000000000..a9047655862e1f079ef53cad2a11ef74703675db
Binary files /dev/null and b/src/main/webapp/images/krokorok.png differ
diff --git a/src/main/webapp/images/krookodile.png b/src/main/webapp/images/krookodile.png
new file mode 100644
index 0000000000000000000000000000000000000000..ec1b684e30f59b9cf3787e92264142e39a8d3745
Binary files /dev/null and b/src/main/webapp/images/krookodile.png differ
diff --git a/src/main/webapp/images/kyogre.png b/src/main/webapp/images/kyogre.png
new file mode 100644
index 0000000000000000000000000000000000000000..157b91e067748298d053c4e0c1b6315366750405
Binary files /dev/null and b/src/main/webapp/images/kyogre.png differ
diff --git a/src/main/webapp/images/kyurem.png b/src/main/webapp/images/kyurem.png
new file mode 100644
index 0000000000000000000000000000000000000000..6867ea1f833eb8462c11e28a47ed942a33d4431f
Binary files /dev/null and b/src/main/webapp/images/kyurem.png differ
diff --git a/src/main/webapp/images/lairon.png b/src/main/webapp/images/lairon.png
new file mode 100644
index 0000000000000000000000000000000000000000..b1257cecbbaebbb0b88235b6d34f71c4a9bd35a1
Binary files /dev/null and b/src/main/webapp/images/lairon.png differ
diff --git a/src/main/webapp/images/lampent.png b/src/main/webapp/images/lampent.png
new file mode 100644
index 0000000000000000000000000000000000000000..e43cdb861c4c9808029e18ffc997c8aa7393f0a7
Binary files /dev/null and b/src/main/webapp/images/lampent.png differ
diff --git a/src/main/webapp/images/landorus-incarnate.png b/src/main/webapp/images/landorus-incarnate.png
new file mode 100644
index 0000000000000000000000000000000000000000..3db21c155efda05ec222ee0a33d033051ce7efe4
Binary files /dev/null and b/src/main/webapp/images/landorus-incarnate.png differ
diff --git a/src/main/webapp/images/lanturn.png b/src/main/webapp/images/lanturn.png
new file mode 100644
index 0000000000000000000000000000000000000000..b84a49fe699f970a28eb018ea424ba49ec29b614
Binary files /dev/null and b/src/main/webapp/images/lanturn.png differ
diff --git a/src/main/webapp/images/lapras.png b/src/main/webapp/images/lapras.png
new file mode 100644
index 0000000000000000000000000000000000000000..cad2645851fe04c489209bcc93197dbbc4a90e51
Binary files /dev/null and b/src/main/webapp/images/lapras.png differ
diff --git a/src/main/webapp/images/larvesta.png b/src/main/webapp/images/larvesta.png
new file mode 100644
index 0000000000000000000000000000000000000000..b75d08c0fc6e660eef32c69242740868adbec33f
Binary files /dev/null and b/src/main/webapp/images/larvesta.png differ
diff --git a/src/main/webapp/images/larvitar.png b/src/main/webapp/images/larvitar.png
new file mode 100644
index 0000000000000000000000000000000000000000..5bf4fbdcd488c5f0d057b4f85f65982ff7009e6e
Binary files /dev/null and b/src/main/webapp/images/larvitar.png differ
diff --git a/src/main/webapp/images/latias.png b/src/main/webapp/images/latias.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6532c059d51c47664017f920ec1052f6817097c
Binary files /dev/null and b/src/main/webapp/images/latias.png differ
diff --git a/src/main/webapp/images/latios.png b/src/main/webapp/images/latios.png
new file mode 100644
index 0000000000000000000000000000000000000000..477d7b0ef285f6514bf6e066a06ffb6f0476b468
Binary files /dev/null and b/src/main/webapp/images/latios.png differ
diff --git a/src/main/webapp/images/leafeon.png b/src/main/webapp/images/leafeon.png
new file mode 100644
index 0000000000000000000000000000000000000000..b3c11b07bb6cd455d2b5aab766d2981d57f9e2a2
Binary files /dev/null and b/src/main/webapp/images/leafeon.png differ
diff --git a/src/main/webapp/images/leavanny.png b/src/main/webapp/images/leavanny.png
new file mode 100644
index 0000000000000000000000000000000000000000..83e7bc0cda15bbe5188d66b03406df07f30d4cd7
Binary files /dev/null and b/src/main/webapp/images/leavanny.png differ
diff --git a/src/main/webapp/images/ledian.png b/src/main/webapp/images/ledian.png
new file mode 100644
index 0000000000000000000000000000000000000000..34d7d40573f564c937792258f9ccad7ac581119d
Binary files /dev/null and b/src/main/webapp/images/ledian.png differ
diff --git a/src/main/webapp/images/ledyba.png b/src/main/webapp/images/ledyba.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b6ce444751844d0657262b9ab59610200bbe728
Binary files /dev/null and b/src/main/webapp/images/ledyba.png differ
diff --git a/src/main/webapp/images/lickilicky.png b/src/main/webapp/images/lickilicky.png
new file mode 100644
index 0000000000000000000000000000000000000000..343e128566a115cdaf72094cf26146f4a088a2b4
Binary files /dev/null and b/src/main/webapp/images/lickilicky.png differ
diff --git a/src/main/webapp/images/lickitung.png b/src/main/webapp/images/lickitung.png
new file mode 100644
index 0000000000000000000000000000000000000000..61e7ced8fc3adae3e309e02f5fbd6b4c0381fdbe
Binary files /dev/null and b/src/main/webapp/images/lickitung.png differ
diff --git a/src/main/webapp/images/liepard.png b/src/main/webapp/images/liepard.png
new file mode 100644
index 0000000000000000000000000000000000000000..86131c10ad4102b8d740775e00250af4629cabe8
Binary files /dev/null and b/src/main/webapp/images/liepard.png differ
diff --git a/src/main/webapp/images/lileep.png b/src/main/webapp/images/lileep.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ef4075c5add93db47c5ce07a16d30bbc0f2719c
Binary files /dev/null and b/src/main/webapp/images/lileep.png differ
diff --git a/src/main/webapp/images/lilligant.png b/src/main/webapp/images/lilligant.png
new file mode 100644
index 0000000000000000000000000000000000000000..e01035572eae645239f3bf2cd397de8037e76569
Binary files /dev/null and b/src/main/webapp/images/lilligant.png differ
diff --git a/src/main/webapp/images/lillipup.png b/src/main/webapp/images/lillipup.png
new file mode 100644
index 0000000000000000000000000000000000000000..9af5a0607ed953234e47324ded8c960c501df5ba
Binary files /dev/null and b/src/main/webapp/images/lillipup.png differ
diff --git a/src/main/webapp/images/linoone.png b/src/main/webapp/images/linoone.png
new file mode 100644
index 0000000000000000000000000000000000000000..3ac0d1ba42841b29ab333e58bbdc3911cb88867d
Binary files /dev/null and b/src/main/webapp/images/linoone.png differ
diff --git a/src/main/webapp/images/litleo.png b/src/main/webapp/images/litleo.png
new file mode 100644
index 0000000000000000000000000000000000000000..42e9e27fb925c2ed2cd1adeedb6b9b0d680b2b82
Binary files /dev/null and b/src/main/webapp/images/litleo.png differ
diff --git a/src/main/webapp/images/litten.png b/src/main/webapp/images/litten.png
new file mode 100644
index 0000000000000000000000000000000000000000..8285ac9b62a4de961e4a3141202ea7c8f0da2b74
Binary files /dev/null and b/src/main/webapp/images/litten.png differ
diff --git a/src/main/webapp/images/litwick.png b/src/main/webapp/images/litwick.png
new file mode 100644
index 0000000000000000000000000000000000000000..95f9f8782202ba3383666d2871e197bcd26f8cad
Binary files /dev/null and b/src/main/webapp/images/litwick.png differ
diff --git a/src/main/webapp/images/lombre.png b/src/main/webapp/images/lombre.png
new file mode 100644
index 0000000000000000000000000000000000000000..4683e9f933bd742f18a33f6aa84399dea7afde3d
Binary files /dev/null and b/src/main/webapp/images/lombre.png differ
diff --git a/src/main/webapp/images/lopunny.png b/src/main/webapp/images/lopunny.png
new file mode 100644
index 0000000000000000000000000000000000000000..e407db11e44051a66e3d1fdf0dbea62d065dc864
Binary files /dev/null and b/src/main/webapp/images/lopunny.png differ
diff --git a/src/main/webapp/images/lotad.png b/src/main/webapp/images/lotad.png
new file mode 100644
index 0000000000000000000000000000000000000000..bdc00f4c6a13935621032ead182464c08a60cb8d
Binary files /dev/null and b/src/main/webapp/images/lotad.png differ
diff --git a/src/main/webapp/images/loudred.png b/src/main/webapp/images/loudred.png
new file mode 100644
index 0000000000000000000000000000000000000000..e87f90ca53033e819cb8c5f6a020ccdd1ce5372e
Binary files /dev/null and b/src/main/webapp/images/loudred.png differ
diff --git a/src/main/webapp/images/lucario.png b/src/main/webapp/images/lucario.png
new file mode 100644
index 0000000000000000000000000000000000000000..f3db23c2ee8bfb302208cd4626b757ccb3dbf3eb
Binary files /dev/null and b/src/main/webapp/images/lucario.png differ
diff --git a/src/main/webapp/images/ludicolo.png b/src/main/webapp/images/ludicolo.png
new file mode 100644
index 0000000000000000000000000000000000000000..58ab136373cd7c109ee82e025dd0a8b2771a9574
Binary files /dev/null and b/src/main/webapp/images/ludicolo.png differ
diff --git a/src/main/webapp/images/lugia.png b/src/main/webapp/images/lugia.png
new file mode 100644
index 0000000000000000000000000000000000000000..01ad2659d6b4f00414e73868d926a38d4d85dd18
Binary files /dev/null and b/src/main/webapp/images/lugia.png differ
diff --git a/src/main/webapp/images/lumineon.png b/src/main/webapp/images/lumineon.png
new file mode 100644
index 0000000000000000000000000000000000000000..a0d41198915933f93628695d2596092f7fdd6b72
Binary files /dev/null and b/src/main/webapp/images/lumineon.png differ
diff --git a/src/main/webapp/images/lunala.png b/src/main/webapp/images/lunala.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef2e5d00a3d98134dba34d2c3bfa0efd0188f8e9
Binary files /dev/null and b/src/main/webapp/images/lunala.png differ
diff --git a/src/main/webapp/images/lunatone.png b/src/main/webapp/images/lunatone.png
new file mode 100644
index 0000000000000000000000000000000000000000..95f7c35b50dc3da07fbdf9ab7e3d2bdac7981a43
Binary files /dev/null and b/src/main/webapp/images/lunatone.png differ
diff --git a/src/main/webapp/images/lurantis.png b/src/main/webapp/images/lurantis.png
new file mode 100644
index 0000000000000000000000000000000000000000..5b6c84a0de494549e3889ab2951cdb3a6a5615c2
Binary files /dev/null and b/src/main/webapp/images/lurantis.png differ
diff --git a/src/main/webapp/images/luvdisc.png b/src/main/webapp/images/luvdisc.png
new file mode 100644
index 0000000000000000000000000000000000000000..2fe666fa4ec8747aa5e67e4fd14badaae7b9d4f7
Binary files /dev/null and b/src/main/webapp/images/luvdisc.png differ
diff --git a/src/main/webapp/images/luxio.png b/src/main/webapp/images/luxio.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab262744aa5b205ce83ab432864b057d32d3f9d8
Binary files /dev/null and b/src/main/webapp/images/luxio.png differ
diff --git a/src/main/webapp/images/luxray.png b/src/main/webapp/images/luxray.png
new file mode 100644
index 0000000000000000000000000000000000000000..847d28ecc7aecd6d1c65420cd129e3b4898d743a
Binary files /dev/null and b/src/main/webapp/images/luxray.png differ
diff --git a/src/main/webapp/images/lycanroc-midday.png b/src/main/webapp/images/lycanroc-midday.png
new file mode 100644
index 0000000000000000000000000000000000000000..0b5a5277825f698df2829f018bcb5f13f561d73a
Binary files /dev/null and b/src/main/webapp/images/lycanroc-midday.png differ
diff --git a/src/main/webapp/images/machamp.png b/src/main/webapp/images/machamp.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7b1dcc82a3a839558c622e7b5661951c0d353d6
Binary files /dev/null and b/src/main/webapp/images/machamp.png differ
diff --git a/src/main/webapp/images/machoke.png b/src/main/webapp/images/machoke.png
new file mode 100644
index 0000000000000000000000000000000000000000..a1db0e70a840b5d5bddcdba6137ec1ee4e14f72b
Binary files /dev/null and b/src/main/webapp/images/machoke.png differ
diff --git a/src/main/webapp/images/machop.png b/src/main/webapp/images/machop.png
new file mode 100644
index 0000000000000000000000000000000000000000..0c73303b4c987942a003f68f502ed6f6f83a3076
Binary files /dev/null and b/src/main/webapp/images/machop.png differ
diff --git a/src/main/webapp/images/magby.png b/src/main/webapp/images/magby.png
new file mode 100644
index 0000000000000000000000000000000000000000..aea54d0dc2a69c080d17e60ddd7ad8ab1192cd3e
Binary files /dev/null and b/src/main/webapp/images/magby.png differ
diff --git a/src/main/webapp/images/magcargo.png b/src/main/webapp/images/magcargo.png
new file mode 100644
index 0000000000000000000000000000000000000000..66f5abe65313b0e8a21636641a79a88a9c66191a
Binary files /dev/null and b/src/main/webapp/images/magcargo.png differ
diff --git a/src/main/webapp/images/magearna.png b/src/main/webapp/images/magearna.png
new file mode 100644
index 0000000000000000000000000000000000000000..0d7e947abb3356d43bbe0fb384c298e1ef6b4d7a
Binary files /dev/null and b/src/main/webapp/images/magearna.png differ
diff --git a/src/main/webapp/images/magikarp.png b/src/main/webapp/images/magikarp.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a1ac7a534237413850053bbbeebd25a060d5035
Binary files /dev/null and b/src/main/webapp/images/magikarp.png differ
diff --git a/src/main/webapp/images/magmar.png b/src/main/webapp/images/magmar.png
new file mode 100644
index 0000000000000000000000000000000000000000..8f5aa2c164782aaeb3a60bed74271ea77fec527e
Binary files /dev/null and b/src/main/webapp/images/magmar.png differ
diff --git a/src/main/webapp/images/magmortar.png b/src/main/webapp/images/magmortar.png
new file mode 100644
index 0000000000000000000000000000000000000000..d045cc8d2e96bfa08762c7eeadd49cd59fb91690
Binary files /dev/null and b/src/main/webapp/images/magmortar.png differ
diff --git a/src/main/webapp/images/magnemite.png b/src/main/webapp/images/magnemite.png
new file mode 100644
index 0000000000000000000000000000000000000000..f519a81f518b7a6d9618a96ee0f4be3515fe2901
Binary files /dev/null and b/src/main/webapp/images/magnemite.png differ
diff --git a/src/main/webapp/images/magneton.png b/src/main/webapp/images/magneton.png
new file mode 100644
index 0000000000000000000000000000000000000000..b1a107a7cf70ec58ee101290de4af31746abf365
Binary files /dev/null and b/src/main/webapp/images/magneton.png differ
diff --git a/src/main/webapp/images/magnezone.png b/src/main/webapp/images/magnezone.png
new file mode 100644
index 0000000000000000000000000000000000000000..25e1d42aff34f9c4bb63a7059554a00d8ebe9880
Binary files /dev/null and b/src/main/webapp/images/magnezone.png differ
diff --git a/src/main/webapp/images/makuhita.png b/src/main/webapp/images/makuhita.png
new file mode 100644
index 0000000000000000000000000000000000000000..88f9aa138beaf1585d96260dfe6879ede40ab21c
Binary files /dev/null and b/src/main/webapp/images/makuhita.png differ
diff --git a/src/main/webapp/images/malamar.png b/src/main/webapp/images/malamar.png
new file mode 100644
index 0000000000000000000000000000000000000000..162d5c09c0876c483b83ea4d0ff039541849ced8
Binary files /dev/null and b/src/main/webapp/images/malamar.png differ
diff --git a/src/main/webapp/images/mamoswine.png b/src/main/webapp/images/mamoswine.png
new file mode 100644
index 0000000000000000000000000000000000000000..58ffcac5835cf9c24b3dcc4a067850b3e12843d2
Binary files /dev/null and b/src/main/webapp/images/mamoswine.png differ
diff --git a/src/main/webapp/images/manaphy.png b/src/main/webapp/images/manaphy.png
new file mode 100644
index 0000000000000000000000000000000000000000..cd840e9f1f7f6fdca150e1737ee764a8b970e7df
Binary files /dev/null and b/src/main/webapp/images/manaphy.png differ
diff --git a/src/main/webapp/images/mandibuzz.png b/src/main/webapp/images/mandibuzz.png
new file mode 100644
index 0000000000000000000000000000000000000000..544e047077e9daf2f2692110ae883ba38cb3cdf5
Binary files /dev/null and b/src/main/webapp/images/mandibuzz.png differ
diff --git a/src/main/webapp/images/manectric.png b/src/main/webapp/images/manectric.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b36e9e5b50615589bfd23845bf3b615a5b36a26
Binary files /dev/null and b/src/main/webapp/images/manectric.png differ
diff --git a/src/main/webapp/images/mankey.png b/src/main/webapp/images/mankey.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ccfaf104bc4147b9441e1dd32263fde23a3c6ae
Binary files /dev/null and b/src/main/webapp/images/mankey.png differ
diff --git a/src/main/webapp/images/mantine.png b/src/main/webapp/images/mantine.png
new file mode 100644
index 0000000000000000000000000000000000000000..c4535591bac3888626664731cda5ab43dede79d8
Binary files /dev/null and b/src/main/webapp/images/mantine.png differ
diff --git a/src/main/webapp/images/mantyke.png b/src/main/webapp/images/mantyke.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f5ce04e394de59099edd5ca2b48750ace01d0cc
Binary files /dev/null and b/src/main/webapp/images/mantyke.png differ
diff --git a/src/main/webapp/images/maractus.png b/src/main/webapp/images/maractus.png
new file mode 100644
index 0000000000000000000000000000000000000000..b9b06c045fb47db2c7d40c8bf3b8d7f02100b2e3
Binary files /dev/null and b/src/main/webapp/images/maractus.png differ
diff --git a/src/main/webapp/images/mareanie.png b/src/main/webapp/images/mareanie.png
new file mode 100644
index 0000000000000000000000000000000000000000..633e7000f890104361829148bd95eca91d3da3e6
Binary files /dev/null and b/src/main/webapp/images/mareanie.png differ
diff --git a/src/main/webapp/images/mareep.png b/src/main/webapp/images/mareep.png
new file mode 100644
index 0000000000000000000000000000000000000000..5769fac740b6bd158f4563a68c9337cc48b87fb9
Binary files /dev/null and b/src/main/webapp/images/mareep.png differ
diff --git a/src/main/webapp/images/marill.png b/src/main/webapp/images/marill.png
new file mode 100644
index 0000000000000000000000000000000000000000..2bafb4d69f492ab136d20759eab9417b45550bef
Binary files /dev/null and b/src/main/webapp/images/marill.png differ
diff --git a/src/main/webapp/images/marowak.png b/src/main/webapp/images/marowak.png
new file mode 100644
index 0000000000000000000000000000000000000000..9c93fa43627ca0249a32ffec2a5248d9ee723cde
Binary files /dev/null and b/src/main/webapp/images/marowak.png differ
diff --git a/src/main/webapp/images/marshadow.png b/src/main/webapp/images/marshadow.png
new file mode 100644
index 0000000000000000000000000000000000000000..4c6f39ac9763c9bee80f86fadb65b76cd7f3bbba
Binary files /dev/null and b/src/main/webapp/images/marshadow.png differ
diff --git a/src/main/webapp/images/marshtomp.png b/src/main/webapp/images/marshtomp.png
new file mode 100644
index 0000000000000000000000000000000000000000..ae2bfadf6362e6906630dacbe33ae9d1013cd8f7
Binary files /dev/null and b/src/main/webapp/images/marshtomp.png differ
diff --git a/src/main/webapp/images/masquerain.png b/src/main/webapp/images/masquerain.png
new file mode 100644
index 0000000000000000000000000000000000000000..eeb419c6b71615f91e8432a8df9f2ae4b2456ad9
Binary files /dev/null and b/src/main/webapp/images/masquerain.png differ
diff --git a/src/main/webapp/images/mawile.png b/src/main/webapp/images/mawile.png
new file mode 100644
index 0000000000000000000000000000000000000000..f5cb833efeed8cf7d4857e247aa27b1ad03dc383
Binary files /dev/null and b/src/main/webapp/images/mawile.png differ
diff --git a/src/main/webapp/images/medicham.png b/src/main/webapp/images/medicham.png
new file mode 100644
index 0000000000000000000000000000000000000000..e440f1468a7fb939c5f99c740bd8663eb5a322c3
Binary files /dev/null and b/src/main/webapp/images/medicham.png differ
diff --git a/src/main/webapp/images/meditite.png b/src/main/webapp/images/meditite.png
new file mode 100644
index 0000000000000000000000000000000000000000..c98796216fb68e901c8ef5e7c5c4748443fff658
Binary files /dev/null and b/src/main/webapp/images/meditite.png differ
diff --git a/src/main/webapp/images/meganium.png b/src/main/webapp/images/meganium.png
new file mode 100644
index 0000000000000000000000000000000000000000..af65d4a367fc08c23ae56a4449db26a7106af34c
Binary files /dev/null and b/src/main/webapp/images/meganium.png differ
diff --git a/src/main/webapp/images/melmetal.png b/src/main/webapp/images/melmetal.png
new file mode 100644
index 0000000000000000000000000000000000000000..1b107a9d7c9000b726bad16c2e9ed516b469b921
Binary files /dev/null and b/src/main/webapp/images/melmetal.png differ
diff --git a/src/main/webapp/images/meloetta-aria.png b/src/main/webapp/images/meloetta-aria.png
new file mode 100644
index 0000000000000000000000000000000000000000..a975d418452a9576b81b0837e787497ea5586c06
Binary files /dev/null and b/src/main/webapp/images/meloetta-aria.png differ
diff --git a/src/main/webapp/images/meltan.png b/src/main/webapp/images/meltan.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f570bd612ae9e9452afd20b72a9d77899214ddf
Binary files /dev/null and b/src/main/webapp/images/meltan.png differ
diff --git a/src/main/webapp/images/meowstic-male.png b/src/main/webapp/images/meowstic-male.png
new file mode 100644
index 0000000000000000000000000000000000000000..adbf379f685ef263ab3a552875de0d9a071b1fb8
Binary files /dev/null and b/src/main/webapp/images/meowstic-male.png differ
diff --git a/src/main/webapp/images/meowth.png b/src/main/webapp/images/meowth.png
new file mode 100644
index 0000000000000000000000000000000000000000..8ecfa9d08297c351fa639bf5e0c59308ee809a2f
Binary files /dev/null and b/src/main/webapp/images/meowth.png differ
diff --git a/src/main/webapp/images/mesprit.png b/src/main/webapp/images/mesprit.png
new file mode 100644
index 0000000000000000000000000000000000000000..b82bec26dfa2917245a8ddb2264cfadd74630455
Binary files /dev/null and b/src/main/webapp/images/mesprit.png differ
diff --git a/src/main/webapp/images/metagross.png b/src/main/webapp/images/metagross.png
new file mode 100644
index 0000000000000000000000000000000000000000..7f71a09857a8b232f65e94512072f399076eb4ca
Binary files /dev/null and b/src/main/webapp/images/metagross.png differ
diff --git a/src/main/webapp/images/metang.png b/src/main/webapp/images/metang.png
new file mode 100644
index 0000000000000000000000000000000000000000..ead7f302805785d364bd90740a32df9af0d8b9a7
Binary files /dev/null and b/src/main/webapp/images/metang.png differ
diff --git a/src/main/webapp/images/metapod.png b/src/main/webapp/images/metapod.png
new file mode 100644
index 0000000000000000000000000000000000000000..0a2131c05517322cf3d39ce3872e7b4f1906a528
Binary files /dev/null and b/src/main/webapp/images/metapod.png differ
diff --git a/src/main/webapp/images/mew.png b/src/main/webapp/images/mew.png
new file mode 100644
index 0000000000000000000000000000000000000000..12cfc26eaaa45db2e985697af8406bb8bd3427d2
Binary files /dev/null and b/src/main/webapp/images/mew.png differ
diff --git a/src/main/webapp/images/mewtwo.png b/src/main/webapp/images/mewtwo.png
new file mode 100644
index 0000000000000000000000000000000000000000..77d9acea3847e497cea97b96b49c19d87812d090
Binary files /dev/null and b/src/main/webapp/images/mewtwo.png differ
diff --git a/src/main/webapp/images/mienfoo.png b/src/main/webapp/images/mienfoo.png
new file mode 100644
index 0000000000000000000000000000000000000000..affdf87b2a978f25a1797dc8ec189cd49e5dcfee
Binary files /dev/null and b/src/main/webapp/images/mienfoo.png differ
diff --git a/src/main/webapp/images/mienshao.png b/src/main/webapp/images/mienshao.png
new file mode 100644
index 0000000000000000000000000000000000000000..863ee5e15a2f1f65f2808e819211185ecb5c450f
Binary files /dev/null and b/src/main/webapp/images/mienshao.png differ
diff --git a/src/main/webapp/images/mightyena.png b/src/main/webapp/images/mightyena.png
new file mode 100644
index 0000000000000000000000000000000000000000..20f4e22df7702235461d231ae86b19f88df455b4
Binary files /dev/null and b/src/main/webapp/images/mightyena.png differ
diff --git a/src/main/webapp/images/milotic.png b/src/main/webapp/images/milotic.png
new file mode 100644
index 0000000000000000000000000000000000000000..ea54e8a72aebfe65b662cdbf4f669416731eece8
Binary files /dev/null and b/src/main/webapp/images/milotic.png differ
diff --git a/src/main/webapp/images/miltank.png b/src/main/webapp/images/miltank.png
new file mode 100644
index 0000000000000000000000000000000000000000..ff51df72958411a520d738b5bc228681316db567
Binary files /dev/null and b/src/main/webapp/images/miltank.png differ
diff --git a/src/main/webapp/images/mime-jr.png b/src/main/webapp/images/mime-jr.png
new file mode 100644
index 0000000000000000000000000000000000000000..a7f8f5ef30848a31cdeb055ed19bdbc5b1ad2268
Binary files /dev/null and b/src/main/webapp/images/mime-jr.png differ
diff --git a/src/main/webapp/images/mimikyu.png b/src/main/webapp/images/mimikyu.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab77a89481b25175f55c9439bbd71cc93340c511
Binary files /dev/null and b/src/main/webapp/images/mimikyu.png differ
diff --git a/src/main/webapp/images/minccino.png b/src/main/webapp/images/minccino.png
new file mode 100644
index 0000000000000000000000000000000000000000..2cb9a3665cde05bf53ff1a917f93a369495ac5e7
Binary files /dev/null and b/src/main/webapp/images/minccino.png differ
diff --git a/src/main/webapp/images/minior-meteor.png b/src/main/webapp/images/minior-meteor.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5f23731bbe2884c552d412db024fcae282b438e
Binary files /dev/null and b/src/main/webapp/images/minior-meteor.png differ
diff --git a/src/main/webapp/images/minun.png b/src/main/webapp/images/minun.png
new file mode 100644
index 0000000000000000000000000000000000000000..6f56184bf03c30fc5d9ac967ea8a4ea0f476ceb8
Binary files /dev/null and b/src/main/webapp/images/minun.png differ
diff --git a/src/main/webapp/images/misdreavus.png b/src/main/webapp/images/misdreavus.png
new file mode 100644
index 0000000000000000000000000000000000000000..36b0115c86a623f2ee4a18e852bdf7710541b62d
Binary files /dev/null and b/src/main/webapp/images/misdreavus.png differ
diff --git a/src/main/webapp/images/mismagius.png b/src/main/webapp/images/mismagius.png
new file mode 100644
index 0000000000000000000000000000000000000000..46b50bc0823e79d975fc5472778cdee815d56400
Binary files /dev/null and b/src/main/webapp/images/mismagius.png differ
diff --git a/src/main/webapp/images/moltres.png b/src/main/webapp/images/moltres.png
new file mode 100644
index 0000000000000000000000000000000000000000..95460bd9024e0ec065f74b06afa56e38374db9e2
Binary files /dev/null and b/src/main/webapp/images/moltres.png differ
diff --git a/src/main/webapp/images/monferno.png b/src/main/webapp/images/monferno.png
new file mode 100644
index 0000000000000000000000000000000000000000..42d2fa98f1077118c1766bb378faef2e24578bbf
Binary files /dev/null and b/src/main/webapp/images/monferno.png differ
diff --git a/src/main/webapp/images/morelull.png b/src/main/webapp/images/morelull.png
new file mode 100644
index 0000000000000000000000000000000000000000..77818293251e43650efbbdf72a7861a7b52887fb
Binary files /dev/null and b/src/main/webapp/images/morelull.png differ
diff --git a/src/main/webapp/images/mothim.png b/src/main/webapp/images/mothim.png
new file mode 100644
index 0000000000000000000000000000000000000000..314e3eb1b97c206379474c48610aee2e7022cf0b
Binary files /dev/null and b/src/main/webapp/images/mothim.png differ
diff --git a/src/main/webapp/images/mr-mime.png b/src/main/webapp/images/mr-mime.png
new file mode 100644
index 0000000000000000000000000000000000000000..407a262f1e63982d1b9325b93684b4d0226ba4bc
Binary files /dev/null and b/src/main/webapp/images/mr-mime.png differ
diff --git a/src/main/webapp/images/mudbray.png b/src/main/webapp/images/mudbray.png
new file mode 100644
index 0000000000000000000000000000000000000000..ff6d7911232b2bfee99d01791c3873abf6ea0433
Binary files /dev/null and b/src/main/webapp/images/mudbray.png differ
diff --git a/src/main/webapp/images/mudkip.png b/src/main/webapp/images/mudkip.png
new file mode 100644
index 0000000000000000000000000000000000000000..501776ea874b7f1f6aa627e9b78aa3701205cf18
Binary files /dev/null and b/src/main/webapp/images/mudkip.png differ
diff --git a/src/main/webapp/images/mudsdale.png b/src/main/webapp/images/mudsdale.png
new file mode 100644
index 0000000000000000000000000000000000000000..5daf00c9db3926b84671d134f4bb9e5f8e8fadb0
Binary files /dev/null and b/src/main/webapp/images/mudsdale.png differ
diff --git a/src/main/webapp/images/muk.png b/src/main/webapp/images/muk.png
new file mode 100644
index 0000000000000000000000000000000000000000..4aa8723fe74d68f0eef7fef71deb7790150188c3
Binary files /dev/null and b/src/main/webapp/images/muk.png differ
diff --git a/src/main/webapp/images/munchlax.png b/src/main/webapp/images/munchlax.png
new file mode 100644
index 0000000000000000000000000000000000000000..8cf9968f145795f068c88a08da3e7ddc69ad8e6b
Binary files /dev/null and b/src/main/webapp/images/munchlax.png differ
diff --git a/src/main/webapp/images/munna.png b/src/main/webapp/images/munna.png
new file mode 100644
index 0000000000000000000000000000000000000000..ffaa82bc41afc35867c1c36de014f862a0db818c
Binary files /dev/null and b/src/main/webapp/images/munna.png differ
diff --git a/src/main/webapp/images/murkrow.png b/src/main/webapp/images/murkrow.png
new file mode 100644
index 0000000000000000000000000000000000000000..ae22634f947956f56cb7d2e1bed35d0aef6660ad
Binary files /dev/null and b/src/main/webapp/images/murkrow.png differ
diff --git a/src/main/webapp/images/musharna.png b/src/main/webapp/images/musharna.png
new file mode 100644
index 0000000000000000000000000000000000000000..387c9beee9298e6dd365a30318173d836e1745c8
Binary files /dev/null and b/src/main/webapp/images/musharna.png differ
diff --git a/src/main/webapp/images/naganadel.png b/src/main/webapp/images/naganadel.png
new file mode 100644
index 0000000000000000000000000000000000000000..d681f2049c5c092a3d952abf6164d4eadbc04d7c
Binary files /dev/null and b/src/main/webapp/images/naganadel.png differ
diff --git a/src/main/webapp/images/natu.png b/src/main/webapp/images/natu.png
new file mode 100644
index 0000000000000000000000000000000000000000..c26855444f80525b8f1d8df4dd668bd1c9140245
Binary files /dev/null and b/src/main/webapp/images/natu.png differ
diff --git a/src/main/webapp/images/necrozma.png b/src/main/webapp/images/necrozma.png
new file mode 100644
index 0000000000000000000000000000000000000000..672a904f7ae7ba0a4a3d81c204fd6f7d57255de5
Binary files /dev/null and b/src/main/webapp/images/necrozma.png differ
diff --git a/src/main/webapp/images/nidoking.png b/src/main/webapp/images/nidoking.png
new file mode 100644
index 0000000000000000000000000000000000000000..fee813417105765c748718e1f0f796ae0648719a
Binary files /dev/null and b/src/main/webapp/images/nidoking.png differ
diff --git a/src/main/webapp/images/nidoqueen.png b/src/main/webapp/images/nidoqueen.png
new file mode 100644
index 0000000000000000000000000000000000000000..06466bfe1d06d345eab4744528e6e754a12c71cf
Binary files /dev/null and b/src/main/webapp/images/nidoqueen.png differ
diff --git a/src/main/webapp/images/nidoran-f.png b/src/main/webapp/images/nidoran-f.png
new file mode 100644
index 0000000000000000000000000000000000000000..a95ba464882e37ccffc64cd9db3cc9c8e134f466
Binary files /dev/null and b/src/main/webapp/images/nidoran-f.png differ
diff --git a/src/main/webapp/images/nidoran-m.png b/src/main/webapp/images/nidoran-m.png
new file mode 100644
index 0000000000000000000000000000000000000000..2a7e88a09afa53cf32b5a1c478136e7d07d031a5
Binary files /dev/null and b/src/main/webapp/images/nidoran-m.png differ
diff --git a/src/main/webapp/images/nidorina.png b/src/main/webapp/images/nidorina.png
new file mode 100644
index 0000000000000000000000000000000000000000..f59b459840e6ab733cb44754881fcd2781c20adf
Binary files /dev/null and b/src/main/webapp/images/nidorina.png differ
diff --git a/src/main/webapp/images/nidorino.png b/src/main/webapp/images/nidorino.png
new file mode 100644
index 0000000000000000000000000000000000000000..e3ff0684c02d6ff3a6d29d27725df09ebcfd2614
Binary files /dev/null and b/src/main/webapp/images/nidorino.png differ
diff --git a/src/main/webapp/images/nihilego.png b/src/main/webapp/images/nihilego.png
new file mode 100644
index 0000000000000000000000000000000000000000..9473f61e7d1c05b7cfb2af9d3da36a7ec800cd68
Binary files /dev/null and b/src/main/webapp/images/nihilego.png differ
diff --git a/src/main/webapp/images/nincada.png b/src/main/webapp/images/nincada.png
new file mode 100644
index 0000000000000000000000000000000000000000..80210207abad73cefe77086b3c501d950a754d13
Binary files /dev/null and b/src/main/webapp/images/nincada.png differ
diff --git a/src/main/webapp/images/ninetales.png b/src/main/webapp/images/ninetales.png
new file mode 100644
index 0000000000000000000000000000000000000000..2bec8c97fdc474cf9257b461eeef059beb6d436e
Binary files /dev/null and b/src/main/webapp/images/ninetales.png differ
diff --git a/src/main/webapp/images/ninjask.png b/src/main/webapp/images/ninjask.png
new file mode 100644
index 0000000000000000000000000000000000000000..9bfa03adf4c3cdf1c45193f3bd0ef910bba9c5cd
Binary files /dev/null and b/src/main/webapp/images/ninjask.png differ
diff --git a/src/main/webapp/images/noctowl.png b/src/main/webapp/images/noctowl.png
new file mode 100644
index 0000000000000000000000000000000000000000..e53b063b048f84a1d9089c26023e6ac03c53bec0
Binary files /dev/null and b/src/main/webapp/images/noctowl.png differ
diff --git a/src/main/webapp/images/noibat.png b/src/main/webapp/images/noibat.png
new file mode 100644
index 0000000000000000000000000000000000000000..d3a52a467047022b96840580c3409ca0003d86df
Binary files /dev/null and b/src/main/webapp/images/noibat.png differ
diff --git a/src/main/webapp/images/noivern.png b/src/main/webapp/images/noivern.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6ecf051d7042541eca6de6600721108ae6442bf
Binary files /dev/null and b/src/main/webapp/images/noivern.png differ
diff --git a/src/main/webapp/images/nosepass.png b/src/main/webapp/images/nosepass.png
new file mode 100644
index 0000000000000000000000000000000000000000..e64e25ab4c5e411b3bb190687d7b699edea01054
Binary files /dev/null and b/src/main/webapp/images/nosepass.png differ
diff --git a/src/main/webapp/images/numel.png b/src/main/webapp/images/numel.png
new file mode 100644
index 0000000000000000000000000000000000000000..b793a90e3ae2dd90ef32499e24958a85f45db490
Binary files /dev/null and b/src/main/webapp/images/numel.png differ
diff --git a/src/main/webapp/images/nuzleaf.png b/src/main/webapp/images/nuzleaf.png
new file mode 100644
index 0000000000000000000000000000000000000000..0d76a9e99c1f471caaf8867076b5884ee5233e89
Binary files /dev/null and b/src/main/webapp/images/nuzleaf.png differ
diff --git a/src/main/webapp/images/octillery.png b/src/main/webapp/images/octillery.png
new file mode 100644
index 0000000000000000000000000000000000000000..e3cd35ea606db87e7466a623151175965171f089
Binary files /dev/null and b/src/main/webapp/images/octillery.png differ
diff --git a/src/main/webapp/images/oddish.png b/src/main/webapp/images/oddish.png
new file mode 100644
index 0000000000000000000000000000000000000000..b6491bd371719c7f1b8a78613da787c79b126bd2
Binary files /dev/null and b/src/main/webapp/images/oddish.png differ
diff --git a/src/main/webapp/images/omanyte.png b/src/main/webapp/images/omanyte.png
new file mode 100644
index 0000000000000000000000000000000000000000..a6cef5e2f2ad0e9ef7d9ab899996ac6d911d4265
Binary files /dev/null and b/src/main/webapp/images/omanyte.png differ
diff --git a/src/main/webapp/images/omastar.png b/src/main/webapp/images/omastar.png
new file mode 100644
index 0000000000000000000000000000000000000000..b50a059881f2ee95ed32f477f881541d1c3da90f
Binary files /dev/null and b/src/main/webapp/images/omastar.png differ
diff --git a/src/main/webapp/images/onix.png b/src/main/webapp/images/onix.png
new file mode 100644
index 0000000000000000000000000000000000000000..986a5645fa40cb85ca39e08ffbe8bb1e8ee1efe7
Binary files /dev/null and b/src/main/webapp/images/onix.png differ
diff --git a/src/main/webapp/images/oranguru.png b/src/main/webapp/images/oranguru.png
new file mode 100644
index 0000000000000000000000000000000000000000..8595cc83f968f135f9f4a2b98ffa8446efffa574
Binary files /dev/null and b/src/main/webapp/images/oranguru.png differ
diff --git a/src/main/webapp/images/oricorio-baile.png b/src/main/webapp/images/oricorio-baile.png
new file mode 100644
index 0000000000000000000000000000000000000000..722ddb9d13007d26ff8043049fcf1606aab311d6
Binary files /dev/null and b/src/main/webapp/images/oricorio-baile.png differ
diff --git a/src/main/webapp/images/oshawott.png b/src/main/webapp/images/oshawott.png
new file mode 100644
index 0000000000000000000000000000000000000000..f3616fd20858be0f2ceebf73cabf68ba5bff7ae3
Binary files /dev/null and b/src/main/webapp/images/oshawott.png differ
diff --git a/src/main/webapp/images/pachirisu.png b/src/main/webapp/images/pachirisu.png
new file mode 100644
index 0000000000000000000000000000000000000000..8107ca20aaa93116ff8a125166af7d721752ab32
Binary files /dev/null and b/src/main/webapp/images/pachirisu.png differ
diff --git a/src/main/webapp/images/palkia.png b/src/main/webapp/images/palkia.png
new file mode 100644
index 0000000000000000000000000000000000000000..920994a693b420b1526269db68f7f7714253ab69
Binary files /dev/null and b/src/main/webapp/images/palkia.png differ
diff --git a/src/main/webapp/images/palossand.png b/src/main/webapp/images/palossand.png
new file mode 100644
index 0000000000000000000000000000000000000000..19f8a854c60529684d2859d87ae94d2afabe7d71
Binary files /dev/null and b/src/main/webapp/images/palossand.png differ
diff --git a/src/main/webapp/images/palpitoad.png b/src/main/webapp/images/palpitoad.png
new file mode 100644
index 0000000000000000000000000000000000000000..28215e868dd445e2bbc4a612a4c8bb1b3a1fac50
Binary files /dev/null and b/src/main/webapp/images/palpitoad.png differ
diff --git a/src/main/webapp/images/pancham.png b/src/main/webapp/images/pancham.png
new file mode 100644
index 0000000000000000000000000000000000000000..d573c058be60af6682e73d7a3bc086f9048608c5
Binary files /dev/null and b/src/main/webapp/images/pancham.png differ
diff --git a/src/main/webapp/images/pangoro.png b/src/main/webapp/images/pangoro.png
new file mode 100644
index 0000000000000000000000000000000000000000..68b5c614a0db13bfa6017fd1678fd87bd33135d1
Binary files /dev/null and b/src/main/webapp/images/pangoro.png differ
diff --git a/src/main/webapp/images/panpour.png b/src/main/webapp/images/panpour.png
new file mode 100644
index 0000000000000000000000000000000000000000..c15aedc91873d1d9d8d9180ac6c00cdf50ef0830
Binary files /dev/null and b/src/main/webapp/images/panpour.png differ
diff --git a/src/main/webapp/images/pansage.png b/src/main/webapp/images/pansage.png
new file mode 100644
index 0000000000000000000000000000000000000000..c22759f532eaccec2778852d43343d52d49dffa4
Binary files /dev/null and b/src/main/webapp/images/pansage.png differ
diff --git a/src/main/webapp/images/pansear.png b/src/main/webapp/images/pansear.png
new file mode 100644
index 0000000000000000000000000000000000000000..829cf41bd6ff6939c8dc8ccb768fb57d1c9481ee
Binary files /dev/null and b/src/main/webapp/images/pansear.png differ
diff --git a/src/main/webapp/images/paras.png b/src/main/webapp/images/paras.png
new file mode 100644
index 0000000000000000000000000000000000000000..d783c5e9df913588e17371674b2f03e3e68f2d37
Binary files /dev/null and b/src/main/webapp/images/paras.png differ
diff --git a/src/main/webapp/images/parasect.png b/src/main/webapp/images/parasect.png
new file mode 100644
index 0000000000000000000000000000000000000000..690f4657c56bf8ca39df927a27d41663f6738dcc
Binary files /dev/null and b/src/main/webapp/images/parasect.png differ
diff --git a/src/main/webapp/images/passimian.png b/src/main/webapp/images/passimian.png
new file mode 100644
index 0000000000000000000000000000000000000000..715954e6cbbde417b23b05af8923294382385bc7
Binary files /dev/null and b/src/main/webapp/images/passimian.png differ
diff --git a/src/main/webapp/images/patrat.png b/src/main/webapp/images/patrat.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7a1579623f597d3fdf6bb9a9b623671d6e9d235
Binary files /dev/null and b/src/main/webapp/images/patrat.png differ
diff --git a/src/main/webapp/images/pawniard.png b/src/main/webapp/images/pawniard.png
new file mode 100644
index 0000000000000000000000000000000000000000..ce397a50037f5b32afb64eb546fe4e90db8b89ec
Binary files /dev/null and b/src/main/webapp/images/pawniard.png differ
diff --git a/src/main/webapp/images/pelipper.png b/src/main/webapp/images/pelipper.png
new file mode 100644
index 0000000000000000000000000000000000000000..717700be3a78e3601bcc5d5be162c6694069ad86
Binary files /dev/null and b/src/main/webapp/images/pelipper.png differ
diff --git a/src/main/webapp/images/persian.png b/src/main/webapp/images/persian.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf98beb1b95660eddd86ff7d78c40da74742a14e
Binary files /dev/null and b/src/main/webapp/images/persian.png differ
diff --git a/src/main/webapp/images/petilil.png b/src/main/webapp/images/petilil.png
new file mode 100644
index 0000000000000000000000000000000000000000..d9a4fcbd2692428bf0ca940b3bf538c0c0d38fbb
Binary files /dev/null and b/src/main/webapp/images/petilil.png differ
diff --git a/src/main/webapp/images/phanpy.png b/src/main/webapp/images/phanpy.png
new file mode 100644
index 0000000000000000000000000000000000000000..5c6c9502465a64157dfd31e648ef0b2cb572852a
Binary files /dev/null and b/src/main/webapp/images/phanpy.png differ
diff --git a/src/main/webapp/images/phantump.png b/src/main/webapp/images/phantump.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a50dca437d76fc92b1454bf6c1bed21821b5856
Binary files /dev/null and b/src/main/webapp/images/phantump.png differ
diff --git a/src/main/webapp/images/pheromosa.png b/src/main/webapp/images/pheromosa.png
new file mode 100644
index 0000000000000000000000000000000000000000..be8099d0be8859b4cc90796d05579badf18d4140
Binary files /dev/null and b/src/main/webapp/images/pheromosa.png differ
diff --git a/src/main/webapp/images/phione.png b/src/main/webapp/images/phione.png
new file mode 100644
index 0000000000000000000000000000000000000000..039fdbddab0f9aff64eea1dd7e8a7d4755aeaf73
Binary files /dev/null and b/src/main/webapp/images/phione.png differ
diff --git a/src/main/webapp/images/pichu.png b/src/main/webapp/images/pichu.png
new file mode 100644
index 0000000000000000000000000000000000000000..003444b6350c15dd6a951c0a95bb5b9c7ae8cdbd
Binary files /dev/null and b/src/main/webapp/images/pichu.png differ
diff --git a/src/main/webapp/images/pidgeot.png b/src/main/webapp/images/pidgeot.png
new file mode 100644
index 0000000000000000000000000000000000000000..5be74180108eb9dcc66746531f79b505f702870e
Binary files /dev/null and b/src/main/webapp/images/pidgeot.png differ
diff --git a/src/main/webapp/images/pidgeotto.png b/src/main/webapp/images/pidgeotto.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa153a3720f811471e7219ce1fb8d1fa16baa2bf
Binary files /dev/null and b/src/main/webapp/images/pidgeotto.png differ
diff --git a/src/main/webapp/images/pidgey.png b/src/main/webapp/images/pidgey.png
new file mode 100644
index 0000000000000000000000000000000000000000..1021a360ed1bd9647bdf65e6058ea26412438552
Binary files /dev/null and b/src/main/webapp/images/pidgey.png differ
diff --git a/src/main/webapp/images/pidove.png b/src/main/webapp/images/pidove.png
new file mode 100644
index 0000000000000000000000000000000000000000..8e7aaa2c9032a3f96af22de153574c09735fd4ba
Binary files /dev/null and b/src/main/webapp/images/pidove.png differ
diff --git a/src/main/webapp/images/pignite.png b/src/main/webapp/images/pignite.png
new file mode 100644
index 0000000000000000000000000000000000000000..fd81b76926f7916fbe07864b281de276140bf2f9
Binary files /dev/null and b/src/main/webapp/images/pignite.png differ
diff --git a/src/main/webapp/images/pikachu.png b/src/main/webapp/images/pikachu.png
new file mode 100644
index 0000000000000000000000000000000000000000..d4180339168b67effdef96f6bad83610767fb29f
Binary files /dev/null and b/src/main/webapp/images/pikachu.png differ
diff --git a/src/main/webapp/images/pikipek.png b/src/main/webapp/images/pikipek.png
new file mode 100644
index 0000000000000000000000000000000000000000..14a5badc4906a2d485643e111591320b6de177bd
Binary files /dev/null and b/src/main/webapp/images/pikipek.png differ
diff --git a/src/main/webapp/images/piloswine.png b/src/main/webapp/images/piloswine.png
new file mode 100644
index 0000000000000000000000000000000000000000..03a956a9a1148e88bd36adb0484a800a59dfad8a
Binary files /dev/null and b/src/main/webapp/images/piloswine.png differ
diff --git a/src/main/webapp/images/pineco.png b/src/main/webapp/images/pineco.png
new file mode 100644
index 0000000000000000000000000000000000000000..6517f66c2e74f1b2cbd8f58fdc01213145a9bcaa
Binary files /dev/null and b/src/main/webapp/images/pineco.png differ
diff --git a/src/main/webapp/images/pinsir.png b/src/main/webapp/images/pinsir.png
new file mode 100644
index 0000000000000000000000000000000000000000..120ab0c9b305fdc9e30f558da1859cb9ca7b574e
Binary files /dev/null and b/src/main/webapp/images/pinsir.png differ
diff --git a/src/main/webapp/images/piplup.png b/src/main/webapp/images/piplup.png
new file mode 100644
index 0000000000000000000000000000000000000000..e9afe57ea4c372ab9d441ca8a8551e97615fb69c
Binary files /dev/null and b/src/main/webapp/images/piplup.png differ
diff --git a/src/main/webapp/images/plusle.png b/src/main/webapp/images/plusle.png
new file mode 100644
index 0000000000000000000000000000000000000000..490bf04d6ce0015c3a915e99ea4c2e4050532483
Binary files /dev/null and b/src/main/webapp/images/plusle.png differ
diff --git a/src/main/webapp/images/poipole.png b/src/main/webapp/images/poipole.png
new file mode 100644
index 0000000000000000000000000000000000000000..5746c17fee98943b5e8fb8d46b16deb94201e9f7
Binary files /dev/null and b/src/main/webapp/images/poipole.png differ
diff --git a/src/main/webapp/images/politoed.png b/src/main/webapp/images/politoed.png
new file mode 100644
index 0000000000000000000000000000000000000000..85a63eacdab6e535976c73330d6c05ccaa5b915f
Binary files /dev/null and b/src/main/webapp/images/politoed.png differ
diff --git a/src/main/webapp/images/poliwag.png b/src/main/webapp/images/poliwag.png
new file mode 100644
index 0000000000000000000000000000000000000000..e93c3053449384fb08653131d32877312254ecac
Binary files /dev/null and b/src/main/webapp/images/poliwag.png differ
diff --git a/src/main/webapp/images/poliwhirl.png b/src/main/webapp/images/poliwhirl.png
new file mode 100644
index 0000000000000000000000000000000000000000..36a606482094ef91bb6ff7670df65334524a5a7d
Binary files /dev/null and b/src/main/webapp/images/poliwhirl.png differ
diff --git a/src/main/webapp/images/poliwrath.png b/src/main/webapp/images/poliwrath.png
new file mode 100644
index 0000000000000000000000000000000000000000..a4710c5ad5c7f6ba86858815ee9b3bf3dc7ef262
Binary files /dev/null and b/src/main/webapp/images/poliwrath.png differ
diff --git a/src/main/webapp/images/ponyta.png b/src/main/webapp/images/ponyta.png
new file mode 100644
index 0000000000000000000000000000000000000000..e454484b0407873731c5e6b12b48c7deb3ae748c
Binary files /dev/null and b/src/main/webapp/images/ponyta.png differ
diff --git a/src/main/webapp/images/poochyena.png b/src/main/webapp/images/poochyena.png
new file mode 100644
index 0000000000000000000000000000000000000000..b5f42d5501040e7aac596fba41f89da85e24fd24
Binary files /dev/null and b/src/main/webapp/images/poochyena.png differ
diff --git a/src/main/webapp/images/popplio.png b/src/main/webapp/images/popplio.png
new file mode 100644
index 0000000000000000000000000000000000000000..36bd2c0b5e7ab7784cfebdb16543cff2d9687c00
Binary files /dev/null and b/src/main/webapp/images/popplio.png differ
diff --git a/src/main/webapp/images/porygon-z.png b/src/main/webapp/images/porygon-z.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe43ceb068f0754798d911bf1bad6f9ab19d9e1c
Binary files /dev/null and b/src/main/webapp/images/porygon-z.png differ
diff --git a/src/main/webapp/images/porygon.png b/src/main/webapp/images/porygon.png
new file mode 100644
index 0000000000000000000000000000000000000000..eaaeefdb54bdffb0c54a089a1098b648cc3c4c3f
Binary files /dev/null and b/src/main/webapp/images/porygon.png differ
diff --git a/src/main/webapp/images/porygon2.png b/src/main/webapp/images/porygon2.png
new file mode 100644
index 0000000000000000000000000000000000000000..a7215f852316d56715f8663219dc163d7cf830b9
Binary files /dev/null and b/src/main/webapp/images/porygon2.png differ
diff --git a/src/main/webapp/images/primarina.png b/src/main/webapp/images/primarina.png
new file mode 100644
index 0000000000000000000000000000000000000000..2e2d76a59544c76785cc16c253c182ddb8f92d89
Binary files /dev/null and b/src/main/webapp/images/primarina.png differ
diff --git a/src/main/webapp/images/primeape.png b/src/main/webapp/images/primeape.png
new file mode 100644
index 0000000000000000000000000000000000000000..d9764e3c8f2245cc01837a17a0cd0f4343c60035
Binary files /dev/null and b/src/main/webapp/images/primeape.png differ
diff --git a/src/main/webapp/images/prinplup.png b/src/main/webapp/images/prinplup.png
new file mode 100644
index 0000000000000000000000000000000000000000..d76ab08e4b22c852b7aec99703cec5506addc626
Binary files /dev/null and b/src/main/webapp/images/prinplup.png differ
diff --git a/src/main/webapp/images/probopass.png b/src/main/webapp/images/probopass.png
new file mode 100644
index 0000000000000000000000000000000000000000..87913868c20796a50fabd16ff025745ab96cfeb5
Binary files /dev/null and b/src/main/webapp/images/probopass.png differ
diff --git a/src/main/webapp/images/psyduck.png b/src/main/webapp/images/psyduck.png
new file mode 100644
index 0000000000000000000000000000000000000000..5e8c3067c05248060fb1443d63fed5f4a0e66c40
Binary files /dev/null and b/src/main/webapp/images/psyduck.png differ
diff --git a/src/main/webapp/images/pumpkaboo-average.png b/src/main/webapp/images/pumpkaboo-average.png
new file mode 100644
index 0000000000000000000000000000000000000000..dbd577c50ad0cfd4caf648021f4161bb6ad7c356
Binary files /dev/null and b/src/main/webapp/images/pumpkaboo-average.png differ
diff --git a/src/main/webapp/images/pupitar.png b/src/main/webapp/images/pupitar.png
new file mode 100644
index 0000000000000000000000000000000000000000..399e32c9efc5bbf345ce1b5c797169c3e120787b
Binary files /dev/null and b/src/main/webapp/images/pupitar.png differ
diff --git a/src/main/webapp/images/purrloin.png b/src/main/webapp/images/purrloin.png
new file mode 100644
index 0000000000000000000000000000000000000000..15e5cc2eb8f46440ce2195b9efcc04f7def8843a
Binary files /dev/null and b/src/main/webapp/images/purrloin.png differ
diff --git a/src/main/webapp/images/purugly.png b/src/main/webapp/images/purugly.png
new file mode 100644
index 0000000000000000000000000000000000000000..1a9309065bfe5d129225b4d10807e1564342d333
Binary files /dev/null and b/src/main/webapp/images/purugly.png differ
diff --git a/src/main/webapp/images/pyroar.png b/src/main/webapp/images/pyroar.png
new file mode 100644
index 0000000000000000000000000000000000000000..d20d5dd87b560b7c7b968640ad8c2a75e13cd492
Binary files /dev/null and b/src/main/webapp/images/pyroar.png differ
diff --git a/src/main/webapp/images/pyukumuku.png b/src/main/webapp/images/pyukumuku.png
new file mode 100644
index 0000000000000000000000000000000000000000..cfebd2529ebda12521595f799e5b0d7a902ea71e
Binary files /dev/null and b/src/main/webapp/images/pyukumuku.png differ
diff --git a/src/main/webapp/images/quagsire.png b/src/main/webapp/images/quagsire.png
new file mode 100644
index 0000000000000000000000000000000000000000..bdc636f14a88eea45da548218997a7314214da29
Binary files /dev/null and b/src/main/webapp/images/quagsire.png differ
diff --git a/src/main/webapp/images/quilava.png b/src/main/webapp/images/quilava.png
new file mode 100644
index 0000000000000000000000000000000000000000..0cb17c0d5f86df1518795840170be23bcbb5eebb
Binary files /dev/null and b/src/main/webapp/images/quilava.png differ
diff --git a/src/main/webapp/images/quilladin.png b/src/main/webapp/images/quilladin.png
new file mode 100644
index 0000000000000000000000000000000000000000..f5ebd950305008b0cbeec37e9ffb5ae6b9687ae6
Binary files /dev/null and b/src/main/webapp/images/quilladin.png differ
diff --git a/src/main/webapp/images/qwilfish.png b/src/main/webapp/images/qwilfish.png
new file mode 100644
index 0000000000000000000000000000000000000000..a756ecd4b4f67f1ff745be87ab8080ea55ac156c
Binary files /dev/null and b/src/main/webapp/images/qwilfish.png differ
diff --git a/src/main/webapp/images/raichu.png b/src/main/webapp/images/raichu.png
new file mode 100644
index 0000000000000000000000000000000000000000..6fd5f0bae88502323ceb09ef878e74b7e288957f
Binary files /dev/null and b/src/main/webapp/images/raichu.png differ
diff --git a/src/main/webapp/images/raikou.png b/src/main/webapp/images/raikou.png
new file mode 100644
index 0000000000000000000000000000000000000000..f4e54a78117bf7f64446785f4b9c1c318611d5dc
Binary files /dev/null and b/src/main/webapp/images/raikou.png differ
diff --git a/src/main/webapp/images/ralts.png b/src/main/webapp/images/ralts.png
new file mode 100644
index 0000000000000000000000000000000000000000..11a22ece9a6af6c610a79ad1c4153285d0d2871c
Binary files /dev/null and b/src/main/webapp/images/ralts.png differ
diff --git a/src/main/webapp/images/rampardos.png b/src/main/webapp/images/rampardos.png
new file mode 100644
index 0000000000000000000000000000000000000000..4eb6fe51da5266fe69a4ec0826a7456c23a203d2
Binary files /dev/null and b/src/main/webapp/images/rampardos.png differ
diff --git a/src/main/webapp/images/rapidash.png b/src/main/webapp/images/rapidash.png
new file mode 100644
index 0000000000000000000000000000000000000000..295627781100bd3ed0ac8d583241e9f25b1b578f
Binary files /dev/null and b/src/main/webapp/images/rapidash.png differ
diff --git a/src/main/webapp/images/raticate.png b/src/main/webapp/images/raticate.png
new file mode 100644
index 0000000000000000000000000000000000000000..c876040bbbbe988d793f9689b8e0ee0ccf2d152a
Binary files /dev/null and b/src/main/webapp/images/raticate.png differ
diff --git a/src/main/webapp/images/rattata.png b/src/main/webapp/images/rattata.png
new file mode 100644
index 0000000000000000000000000000000000000000..330934f88967b5459216c5c06cf6a73a8c2a8648
Binary files /dev/null and b/src/main/webapp/images/rattata.png differ
diff --git a/src/main/webapp/images/rayquaza.png b/src/main/webapp/images/rayquaza.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b7fcb079833504e3ecde433c92f408e48658f7f
Binary files /dev/null and b/src/main/webapp/images/rayquaza.png differ
diff --git a/src/main/webapp/images/regice.png b/src/main/webapp/images/regice.png
new file mode 100644
index 0000000000000000000000000000000000000000..e79dea8cfb3fc253c7173fd06af83cc5b9f7646f
Binary files /dev/null and b/src/main/webapp/images/regice.png differ
diff --git a/src/main/webapp/images/regigigas.png b/src/main/webapp/images/regigigas.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac961775b81062514f25a4429a1256590b851197
Binary files /dev/null and b/src/main/webapp/images/regigigas.png differ
diff --git a/src/main/webapp/images/regirock.png b/src/main/webapp/images/regirock.png
new file mode 100644
index 0000000000000000000000000000000000000000..968fec990774be866205a88330486b00e91c636b
Binary files /dev/null and b/src/main/webapp/images/regirock.png differ
diff --git a/src/main/webapp/images/registeel.png b/src/main/webapp/images/registeel.png
new file mode 100644
index 0000000000000000000000000000000000000000..1294865061c4bb364675952a0d061d3ee7723180
Binary files /dev/null and b/src/main/webapp/images/registeel.png differ
diff --git a/src/main/webapp/images/relicanth.png b/src/main/webapp/images/relicanth.png
new file mode 100644
index 0000000000000000000000000000000000000000..cadf6309d13cbc0eb605807ebef8c22a01e03104
Binary files /dev/null and b/src/main/webapp/images/relicanth.png differ
diff --git a/src/main/webapp/images/remoraid.png b/src/main/webapp/images/remoraid.png
new file mode 100644
index 0000000000000000000000000000000000000000..7ac33cf3d31dd04474c6446f4d0fdfa480bb0b7a
Binary files /dev/null and b/src/main/webapp/images/remoraid.png differ
diff --git a/src/main/webapp/images/reshiram.png b/src/main/webapp/images/reshiram.png
new file mode 100644
index 0000000000000000000000000000000000000000..0f717ab18fd021e54de31ba0f7f0f11fb4604a8f
Binary files /dev/null and b/src/main/webapp/images/reshiram.png differ
diff --git a/src/main/webapp/images/reuniclus.png b/src/main/webapp/images/reuniclus.png
new file mode 100644
index 0000000000000000000000000000000000000000..05d7322115960ad21067a4647269ba4d6ba3a20c
Binary files /dev/null and b/src/main/webapp/images/reuniclus.png differ
diff --git a/src/main/webapp/images/rhydon.png b/src/main/webapp/images/rhydon.png
new file mode 100644
index 0000000000000000000000000000000000000000..bdf287437a9de11826ab0cc6dd5cce33eb85a31a
Binary files /dev/null and b/src/main/webapp/images/rhydon.png differ
diff --git a/src/main/webapp/images/rhyhorn.png b/src/main/webapp/images/rhyhorn.png
new file mode 100644
index 0000000000000000000000000000000000000000..f525cb06cde05d8e37efdb542e1132857fae9b2a
Binary files /dev/null and b/src/main/webapp/images/rhyhorn.png differ
diff --git a/src/main/webapp/images/rhyperior.png b/src/main/webapp/images/rhyperior.png
new file mode 100644
index 0000000000000000000000000000000000000000..f56d1bcc12dc8e473aa170dc05f26fbc5c4cefc8
Binary files /dev/null and b/src/main/webapp/images/rhyperior.png differ
diff --git a/src/main/webapp/images/ribombee.png b/src/main/webapp/images/ribombee.png
new file mode 100644
index 0000000000000000000000000000000000000000..df22140c89f8c1075a9c62af724ab0d1228946b5
Binary files /dev/null and b/src/main/webapp/images/ribombee.png differ
diff --git a/src/main/webapp/images/riolu.png b/src/main/webapp/images/riolu.png
new file mode 100644
index 0000000000000000000000000000000000000000..77dd8779b2e447339a6ebec85181757343f52ee8
Binary files /dev/null and b/src/main/webapp/images/riolu.png differ
diff --git a/src/main/webapp/images/rockruff.png b/src/main/webapp/images/rockruff.png
new file mode 100644
index 0000000000000000000000000000000000000000..58555e18165e729ea88b8842b2157f902cd12dd4
Binary files /dev/null and b/src/main/webapp/images/rockruff.png differ
diff --git a/src/main/webapp/images/roggenrola.png b/src/main/webapp/images/roggenrola.png
new file mode 100644
index 0000000000000000000000000000000000000000..05da95292499407411d55602af5937ebf8839241
Binary files /dev/null and b/src/main/webapp/images/roggenrola.png differ
diff --git a/src/main/webapp/images/roselia.png b/src/main/webapp/images/roselia.png
new file mode 100644
index 0000000000000000000000000000000000000000..875f49fa8743366c74cd32903f0b84626be9da4a
Binary files /dev/null and b/src/main/webapp/images/roselia.png differ
diff --git a/src/main/webapp/images/roserade.png b/src/main/webapp/images/roserade.png
new file mode 100644
index 0000000000000000000000000000000000000000..47014d1cd3a6e26f5dc7af0e02999f61020a235b
Binary files /dev/null and b/src/main/webapp/images/roserade.png differ
diff --git a/src/main/webapp/images/rotom.png b/src/main/webapp/images/rotom.png
new file mode 100644
index 0000000000000000000000000000000000000000..55fd3e89e1d0595ef3fa8ad57920c86eb59dc7b3
Binary files /dev/null and b/src/main/webapp/images/rotom.png differ
diff --git a/src/main/webapp/images/rowlet.png b/src/main/webapp/images/rowlet.png
new file mode 100644
index 0000000000000000000000000000000000000000..9058720db4a63e2ba3ec86cba305d76828cdb591
Binary files /dev/null and b/src/main/webapp/images/rowlet.png differ
diff --git a/src/main/webapp/images/rufflet.png b/src/main/webapp/images/rufflet.png
new file mode 100644
index 0000000000000000000000000000000000000000..ac88c9d22d25ce0490e3ebcf2457dd4fed4c6a80
Binary files /dev/null and b/src/main/webapp/images/rufflet.png differ
diff --git a/src/main/webapp/images/sableye.png b/src/main/webapp/images/sableye.png
new file mode 100644
index 0000000000000000000000000000000000000000..4995f8154545508f88bed9d9a2782dfc91d689cd
Binary files /dev/null and b/src/main/webapp/images/sableye.png differ
diff --git a/src/main/webapp/images/salamence.png b/src/main/webapp/images/salamence.png
new file mode 100644
index 0000000000000000000000000000000000000000..85337f564774f9381bbea33746a9275421fce1f8
Binary files /dev/null and b/src/main/webapp/images/salamence.png differ
diff --git a/src/main/webapp/images/salandit.png b/src/main/webapp/images/salandit.png
new file mode 100644
index 0000000000000000000000000000000000000000..9011ac75ee0a9497b6d4d3083ea116cdb5d081c4
Binary files /dev/null and b/src/main/webapp/images/salandit.png differ
diff --git a/src/main/webapp/images/salazzle.png b/src/main/webapp/images/salazzle.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad82e7e63ceafb4ac431b08002709afe5c66fdc5
Binary files /dev/null and b/src/main/webapp/images/salazzle.png differ
diff --git a/src/main/webapp/images/samurott.png b/src/main/webapp/images/samurott.png
new file mode 100644
index 0000000000000000000000000000000000000000..acd4f76ca76329242bb7e64ae9ddfd309c1c6600
Binary files /dev/null and b/src/main/webapp/images/samurott.png differ
diff --git a/src/main/webapp/images/sandile.png b/src/main/webapp/images/sandile.png
new file mode 100644
index 0000000000000000000000000000000000000000..52a15906d97233423960255d1efa75db8855d11c
Binary files /dev/null and b/src/main/webapp/images/sandile.png differ
diff --git a/src/main/webapp/images/sandshrew.png b/src/main/webapp/images/sandshrew.png
new file mode 100644
index 0000000000000000000000000000000000000000..14ff9a8a6b3e877636f909137cb956307865d6db
Binary files /dev/null and b/src/main/webapp/images/sandshrew.png differ
diff --git a/src/main/webapp/images/sandslash.png b/src/main/webapp/images/sandslash.png
new file mode 100644
index 0000000000000000000000000000000000000000..c61d0ff441c678baeef8b935835d4f76d60a8dde
Binary files /dev/null and b/src/main/webapp/images/sandslash.png differ
diff --git a/src/main/webapp/images/sandygast.png b/src/main/webapp/images/sandygast.png
new file mode 100644
index 0000000000000000000000000000000000000000..4444c27fa021f936c331e86a83c6769f99be6771
Binary files /dev/null and b/src/main/webapp/images/sandygast.png differ
diff --git a/src/main/webapp/images/sawk.png b/src/main/webapp/images/sawk.png
new file mode 100644
index 0000000000000000000000000000000000000000..aca330952729ec2058cc0ed54283b64939ea57c0
Binary files /dev/null and b/src/main/webapp/images/sawk.png differ
diff --git a/src/main/webapp/images/sawsbuck.png b/src/main/webapp/images/sawsbuck.png
new file mode 100644
index 0000000000000000000000000000000000000000..c14e157d6863414af61822614755376dd55cfec8
Binary files /dev/null and b/src/main/webapp/images/sawsbuck.png differ
diff --git a/src/main/webapp/images/scatterbug.png b/src/main/webapp/images/scatterbug.png
new file mode 100644
index 0000000000000000000000000000000000000000..2d33e39cfbd7423a108344266c0b988e002cd64f
Binary files /dev/null and b/src/main/webapp/images/scatterbug.png differ
diff --git a/src/main/webapp/images/sceptile.png b/src/main/webapp/images/sceptile.png
new file mode 100644
index 0000000000000000000000000000000000000000..95d33dfc6e02abd9b0b8a74ccf4729e424b8bb92
Binary files /dev/null and b/src/main/webapp/images/sceptile.png differ
diff --git a/src/main/webapp/images/scizor.png b/src/main/webapp/images/scizor.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d34f0eac16a09dcc7eda9c6b118a65aed64c35a
Binary files /dev/null and b/src/main/webapp/images/scizor.png differ
diff --git a/src/main/webapp/images/scolipede.png b/src/main/webapp/images/scolipede.png
new file mode 100644
index 0000000000000000000000000000000000000000..d68cdc529d03b35d03123f0844db25dad80973d0
Binary files /dev/null and b/src/main/webapp/images/scolipede.png differ
diff --git a/src/main/webapp/images/scrafty.png b/src/main/webapp/images/scrafty.png
new file mode 100644
index 0000000000000000000000000000000000000000..bd3f13a9756a4cf8152d5ecb6eeb9f5a74188fd3
Binary files /dev/null and b/src/main/webapp/images/scrafty.png differ
diff --git a/src/main/webapp/images/scraggy.png b/src/main/webapp/images/scraggy.png
new file mode 100644
index 0000000000000000000000000000000000000000..d19b0805d81e3f8502c537ac0bd643872bb87f9d
Binary files /dev/null and b/src/main/webapp/images/scraggy.png differ
diff --git a/src/main/webapp/images/scyther.png b/src/main/webapp/images/scyther.png
new file mode 100644
index 0000000000000000000000000000000000000000..e7f24f3bb05fa37d5b6c87aa1d2452cb15708c05
Binary files /dev/null and b/src/main/webapp/images/scyther.png differ
diff --git a/src/main/webapp/images/seadra.png b/src/main/webapp/images/seadra.png
new file mode 100644
index 0000000000000000000000000000000000000000..371a894f1a13b3ccea1e48ccaa02b05e60cec29e
Binary files /dev/null and b/src/main/webapp/images/seadra.png differ
diff --git a/src/main/webapp/images/seaking.png b/src/main/webapp/images/seaking.png
new file mode 100644
index 0000000000000000000000000000000000000000..dd99839aade554b1c5c8224a1533f9eb00ae12df
Binary files /dev/null and b/src/main/webapp/images/seaking.png differ
diff --git a/src/main/webapp/images/sealeo.png b/src/main/webapp/images/sealeo.png
new file mode 100644
index 0000000000000000000000000000000000000000..135f333bfe8723855697b7e6a435e9ec760755ea
Binary files /dev/null and b/src/main/webapp/images/sealeo.png differ
diff --git a/src/main/webapp/images/seedot.png b/src/main/webapp/images/seedot.png
new file mode 100644
index 0000000000000000000000000000000000000000..ec8d9ab6271982e006f2ab242eb0ca86c0d17dc3
Binary files /dev/null and b/src/main/webapp/images/seedot.png differ
diff --git a/src/main/webapp/images/seel.png b/src/main/webapp/images/seel.png
new file mode 100644
index 0000000000000000000000000000000000000000..57f1ecc6df1b375a5c5d06fbf8e7834f019ce0be
Binary files /dev/null and b/src/main/webapp/images/seel.png differ
diff --git a/src/main/webapp/images/seismitoad.png b/src/main/webapp/images/seismitoad.png
new file mode 100644
index 0000000000000000000000000000000000000000..1a1f8111971b555708860098fc6f2a32f434eb9a
Binary files /dev/null and b/src/main/webapp/images/seismitoad.png differ
diff --git a/src/main/webapp/images/sentret.png b/src/main/webapp/images/sentret.png
new file mode 100644
index 0000000000000000000000000000000000000000..ba0fd58cbea77a552dd87cfd596e8e353d065f7c
Binary files /dev/null and b/src/main/webapp/images/sentret.png differ
diff --git a/src/main/webapp/images/serperior.png b/src/main/webapp/images/serperior.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a54bbe2293da39b73c2057c92bf245e75b5f78b
Binary files /dev/null and b/src/main/webapp/images/serperior.png differ
diff --git a/src/main/webapp/images/servine.png b/src/main/webapp/images/servine.png
new file mode 100644
index 0000000000000000000000000000000000000000..5f7d5ef674015c855f80c8f4b1b4ccb09b835fff
Binary files /dev/null and b/src/main/webapp/images/servine.png differ
diff --git a/src/main/webapp/images/seviper.png b/src/main/webapp/images/seviper.png
new file mode 100644
index 0000000000000000000000000000000000000000..1e642539e30332bfe8ce7f82d6bbb464dccc8a4d
Binary files /dev/null and b/src/main/webapp/images/seviper.png differ
diff --git a/src/main/webapp/images/sewaddle.png b/src/main/webapp/images/sewaddle.png
new file mode 100644
index 0000000000000000000000000000000000000000..97a3edda944856e86d1bc4c2572d11b8229401b8
Binary files /dev/null and b/src/main/webapp/images/sewaddle.png differ
diff --git a/src/main/webapp/images/sharpedo.png b/src/main/webapp/images/sharpedo.png
new file mode 100644
index 0000000000000000000000000000000000000000..5c8423d87516d29aeca119b6415b9d185089545c
Binary files /dev/null and b/src/main/webapp/images/sharpedo.png differ
diff --git a/src/main/webapp/images/shaymin-land.png b/src/main/webapp/images/shaymin-land.png
new file mode 100644
index 0000000000000000000000000000000000000000..90f232b0411a8d546071ad1f2f89dd066385c554
Binary files /dev/null and b/src/main/webapp/images/shaymin-land.png differ
diff --git a/src/main/webapp/images/shedinja.png b/src/main/webapp/images/shedinja.png
new file mode 100644
index 0000000000000000000000000000000000000000..83869b3b769af3ee372e64a53543d7251073fed0
Binary files /dev/null and b/src/main/webapp/images/shedinja.png differ
diff --git a/src/main/webapp/images/shelgon.png b/src/main/webapp/images/shelgon.png
new file mode 100644
index 0000000000000000000000000000000000000000..2d4681fbac5ae5a20e9445974deeed1a6f1ddfe0
Binary files /dev/null and b/src/main/webapp/images/shelgon.png differ
diff --git a/src/main/webapp/images/shellder.png b/src/main/webapp/images/shellder.png
new file mode 100644
index 0000000000000000000000000000000000000000..f5e077a32e09018daf7d58d777c89e863ef7ca3c
Binary files /dev/null and b/src/main/webapp/images/shellder.png differ
diff --git a/src/main/webapp/images/shellos.png b/src/main/webapp/images/shellos.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0d42ffb6faf3acb17cd80f6ad7cdd3116b3b9fb
Binary files /dev/null and b/src/main/webapp/images/shellos.png differ
diff --git a/src/main/webapp/images/shelmet.png b/src/main/webapp/images/shelmet.png
new file mode 100644
index 0000000000000000000000000000000000000000..242a8d0c7f604f5af9fb096acec92d07fb846be0
Binary files /dev/null and b/src/main/webapp/images/shelmet.png differ
diff --git a/src/main/webapp/images/shieldon.png b/src/main/webapp/images/shieldon.png
new file mode 100644
index 0000000000000000000000000000000000000000..99eda10df950ce2a56d5c6bfa3cf235c9e8c1c69
Binary files /dev/null and b/src/main/webapp/images/shieldon.png differ
diff --git a/src/main/webapp/images/shiftry.png b/src/main/webapp/images/shiftry.png
new file mode 100644
index 0000000000000000000000000000000000000000..e93092313467c12f5a6f1a1af65b46f168a6d33d
Binary files /dev/null and b/src/main/webapp/images/shiftry.png differ
diff --git a/src/main/webapp/images/shiinotic.png b/src/main/webapp/images/shiinotic.png
new file mode 100644
index 0000000000000000000000000000000000000000..a3fcb87c120bac9288e617df94448fe524d5540f
Binary files /dev/null and b/src/main/webapp/images/shiinotic.png differ
diff --git a/src/main/webapp/images/shinx.png b/src/main/webapp/images/shinx.png
new file mode 100644
index 0000000000000000000000000000000000000000..02a8e5d21a35f74aac2452eb477647210e9ee586
Binary files /dev/null and b/src/main/webapp/images/shinx.png differ
diff --git a/src/main/webapp/images/shroomish.png b/src/main/webapp/images/shroomish.png
new file mode 100644
index 0000000000000000000000000000000000000000..b79458e5cf81e324d7b2ccb3e0495a935e323334
Binary files /dev/null and b/src/main/webapp/images/shroomish.png differ
diff --git a/src/main/webapp/images/shuckle.png b/src/main/webapp/images/shuckle.png
new file mode 100644
index 0000000000000000000000000000000000000000..a9925c1febb57a881b9fcd6ab033c238bb74d7b7
Binary files /dev/null and b/src/main/webapp/images/shuckle.png differ
diff --git a/src/main/webapp/images/shuppet.png b/src/main/webapp/images/shuppet.png
new file mode 100644
index 0000000000000000000000000000000000000000..6fa817aab582d0492e53f20b31c78cd516c8277c
Binary files /dev/null and b/src/main/webapp/images/shuppet.png differ
diff --git a/src/main/webapp/images/sigilyph.png b/src/main/webapp/images/sigilyph.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d37496bace670910afab561f54d809d3262ba02
Binary files /dev/null and b/src/main/webapp/images/sigilyph.png differ
diff --git a/src/main/webapp/images/silcoon.png b/src/main/webapp/images/silcoon.png
new file mode 100644
index 0000000000000000000000000000000000000000..f97e2d43ddb0f319be5fb8472736c18cf45cb822
Binary files /dev/null and b/src/main/webapp/images/silcoon.png differ
diff --git a/src/main/webapp/images/silvally.png b/src/main/webapp/images/silvally.png
new file mode 100644
index 0000000000000000000000000000000000000000..775ce20e38ef4ffdbe8f2aa3ca6ab35efd0a98ac
Binary files /dev/null and b/src/main/webapp/images/silvally.png differ
diff --git a/src/main/webapp/images/simipour.png b/src/main/webapp/images/simipour.png
new file mode 100644
index 0000000000000000000000000000000000000000..0d22fc8d6f6097faa07920f3144b661644e21a8b
Binary files /dev/null and b/src/main/webapp/images/simipour.png differ
diff --git a/src/main/webapp/images/simisage.png b/src/main/webapp/images/simisage.png
new file mode 100644
index 0000000000000000000000000000000000000000..fa972e0aad2a9a7260242d180f3af8e8fa2f3a1f
Binary files /dev/null and b/src/main/webapp/images/simisage.png differ
diff --git a/src/main/webapp/images/simisear.png b/src/main/webapp/images/simisear.png
new file mode 100644
index 0000000000000000000000000000000000000000..9900862e01b0fd0193bfec4bf12cdaff4591c0ef
Binary files /dev/null and b/src/main/webapp/images/simisear.png differ
diff --git a/src/main/webapp/images/skarmory.png b/src/main/webapp/images/skarmory.png
new file mode 100644
index 0000000000000000000000000000000000000000..234b0c1852c3f3a2f97ebad421808124318ed1d4
Binary files /dev/null and b/src/main/webapp/images/skarmory.png differ
diff --git a/src/main/webapp/images/skiddo.png b/src/main/webapp/images/skiddo.png
new file mode 100644
index 0000000000000000000000000000000000000000..53a3e0e1d9d81cfae97cc388f7f09b1285ac9742
Binary files /dev/null and b/src/main/webapp/images/skiddo.png differ
diff --git a/src/main/webapp/images/skiploom.png b/src/main/webapp/images/skiploom.png
new file mode 100644
index 0000000000000000000000000000000000000000..f597cda1ff21f221720818a91e7b9a07b96614a1
Binary files /dev/null and b/src/main/webapp/images/skiploom.png differ
diff --git a/src/main/webapp/images/skitty.png b/src/main/webapp/images/skitty.png
new file mode 100644
index 0000000000000000000000000000000000000000..f451c877459d3bc7340fdc2a0d416abb4cbb6225
Binary files /dev/null and b/src/main/webapp/images/skitty.png differ
diff --git a/src/main/webapp/images/skorupi.png b/src/main/webapp/images/skorupi.png
new file mode 100644
index 0000000000000000000000000000000000000000..d82a32573765f2c33c4f1f35888f489a3d67ecd3
Binary files /dev/null and b/src/main/webapp/images/skorupi.png differ
diff --git a/src/main/webapp/images/skrelp.png b/src/main/webapp/images/skrelp.png
new file mode 100644
index 0000000000000000000000000000000000000000..e0c12db9851078ca29613f089c91093d86b03024
Binary files /dev/null and b/src/main/webapp/images/skrelp.png differ
diff --git a/src/main/webapp/images/skuntank.png b/src/main/webapp/images/skuntank.png
new file mode 100644
index 0000000000000000000000000000000000000000..0f524b3d0283338f6328d3c88669dc5af291300c
Binary files /dev/null and b/src/main/webapp/images/skuntank.png differ
diff --git a/src/main/webapp/images/slaking.png b/src/main/webapp/images/slaking.png
new file mode 100644
index 0000000000000000000000000000000000000000..d0b9ff739e691d53d47d3fc4afd1102bd0db18e0
Binary files /dev/null and b/src/main/webapp/images/slaking.png differ
diff --git a/src/main/webapp/images/slakoth.png b/src/main/webapp/images/slakoth.png
new file mode 100644
index 0000000000000000000000000000000000000000..9f0e5229b7df2e60f5867a7ebe2f7b4ed2e38deb
Binary files /dev/null and b/src/main/webapp/images/slakoth.png differ
diff --git a/src/main/webapp/images/sliggoo.png b/src/main/webapp/images/sliggoo.png
new file mode 100644
index 0000000000000000000000000000000000000000..a5a04a70115a77c989730c843f4f61cef527c307
Binary files /dev/null and b/src/main/webapp/images/sliggoo.png differ
diff --git a/src/main/webapp/images/slowbro.png b/src/main/webapp/images/slowbro.png
new file mode 100644
index 0000000000000000000000000000000000000000..8928ecb232277ef452e91892d35f77b1ea8b68ea
Binary files /dev/null and b/src/main/webapp/images/slowbro.png differ
diff --git a/src/main/webapp/images/slowking.png b/src/main/webapp/images/slowking.png
new file mode 100644
index 0000000000000000000000000000000000000000..59485cec0349e2ab7aff3e6c4ecc955dc171de05
Binary files /dev/null and b/src/main/webapp/images/slowking.png differ
diff --git a/src/main/webapp/images/slowpoke.png b/src/main/webapp/images/slowpoke.png
new file mode 100644
index 0000000000000000000000000000000000000000..05f45f56bf01a312a3f1509089f8a50ecd4bcc5d
Binary files /dev/null and b/src/main/webapp/images/slowpoke.png differ
diff --git a/src/main/webapp/images/slugma.png b/src/main/webapp/images/slugma.png
new file mode 100644
index 0000000000000000000000000000000000000000..b93fa6b033f8a27650d824ce77b9f09a9c6f247b
Binary files /dev/null and b/src/main/webapp/images/slugma.png differ
diff --git a/src/main/webapp/images/slurpuff.png b/src/main/webapp/images/slurpuff.png
new file mode 100644
index 0000000000000000000000000000000000000000..35766c39e31b0403b9a3968c79788ab251d2b96b
Binary files /dev/null and b/src/main/webapp/images/slurpuff.png differ
diff --git a/src/main/webapp/images/smeargle.png b/src/main/webapp/images/smeargle.png
new file mode 100644
index 0000000000000000000000000000000000000000..1ebdea20162ab19d0717bb9c25a7c8f765a2a4f2
Binary files /dev/null and b/src/main/webapp/images/smeargle.png differ
diff --git a/src/main/webapp/images/smoochum.png b/src/main/webapp/images/smoochum.png
new file mode 100644
index 0000000000000000000000000000000000000000..2750e922e789562095b150504030dd447b01656e
Binary files /dev/null and b/src/main/webapp/images/smoochum.png differ
diff --git a/src/main/webapp/images/sneasel.png b/src/main/webapp/images/sneasel.png
new file mode 100644
index 0000000000000000000000000000000000000000..02886d7064fd6aa5d998206e574d661c6de7e7d0
Binary files /dev/null and b/src/main/webapp/images/sneasel.png differ
diff --git a/src/main/webapp/images/snivy.png b/src/main/webapp/images/snivy.png
new file mode 100644
index 0000000000000000000000000000000000000000..70917f20729448e806325fc42ff2a3051fc1dd2a
Binary files /dev/null and b/src/main/webapp/images/snivy.png differ
diff --git a/src/main/webapp/images/snorlax.png b/src/main/webapp/images/snorlax.png
new file mode 100644
index 0000000000000000000000000000000000000000..21c7264b769caf357eee977dbe965bb180d3ac6d
Binary files /dev/null and b/src/main/webapp/images/snorlax.png differ
diff --git a/src/main/webapp/images/snorunt.png b/src/main/webapp/images/snorunt.png
new file mode 100644
index 0000000000000000000000000000000000000000..ee088edaf08ed42798e9d89b7772ce5c59548ffa
Binary files /dev/null and b/src/main/webapp/images/snorunt.png differ
diff --git a/src/main/webapp/images/snover.png b/src/main/webapp/images/snover.png
new file mode 100644
index 0000000000000000000000000000000000000000..e0f610db3b44c6de28f5c823eab269b9a79e8fa2
Binary files /dev/null and b/src/main/webapp/images/snover.png differ
diff --git a/src/main/webapp/images/snubbull.png b/src/main/webapp/images/snubbull.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8cd132087d1a4f723749f60f4baf5f44e9760be
Binary files /dev/null and b/src/main/webapp/images/snubbull.png differ
diff --git a/src/main/webapp/images/solgaleo.png b/src/main/webapp/images/solgaleo.png
new file mode 100644
index 0000000000000000000000000000000000000000..05846e7e2b785fcbae1dd31586b774ec2d1cfc12
Binary files /dev/null and b/src/main/webapp/images/solgaleo.png differ
diff --git a/src/main/webapp/images/solosis.png b/src/main/webapp/images/solosis.png
new file mode 100644
index 0000000000000000000000000000000000000000..e1d8fa2a9faffc9055ae96912f24956dfba94298
Binary files /dev/null and b/src/main/webapp/images/solosis.png differ
diff --git a/src/main/webapp/images/solrock.png b/src/main/webapp/images/solrock.png
new file mode 100644
index 0000000000000000000000000000000000000000..320b1219e72070a04efd49a39b8b78b49638af4a
Binary files /dev/null and b/src/main/webapp/images/solrock.png differ
diff --git a/src/main/webapp/images/spearow.png b/src/main/webapp/images/spearow.png
new file mode 100644
index 0000000000000000000000000000000000000000..8fa69c095744ab14be3f005271006127804dd795
Binary files /dev/null and b/src/main/webapp/images/spearow.png differ
diff --git a/src/main/webapp/images/spewpa.png b/src/main/webapp/images/spewpa.png
new file mode 100644
index 0000000000000000000000000000000000000000..483ef063c601a58c1772fa609f0a0f453fd6fd56
Binary files /dev/null and b/src/main/webapp/images/spewpa.png differ
diff --git a/src/main/webapp/images/spheal.png b/src/main/webapp/images/spheal.png
new file mode 100644
index 0000000000000000000000000000000000000000..8f4e843cd34824a393446fa4ea1f75abfd7bdb4a
Binary files /dev/null and b/src/main/webapp/images/spheal.png differ
diff --git a/src/main/webapp/images/spinarak.png b/src/main/webapp/images/spinarak.png
new file mode 100644
index 0000000000000000000000000000000000000000..93566df30302cb16dccfa94e278d9db84b8622ff
Binary files /dev/null and b/src/main/webapp/images/spinarak.png differ
diff --git a/src/main/webapp/images/spinda.png b/src/main/webapp/images/spinda.png
new file mode 100644
index 0000000000000000000000000000000000000000..b5e5316ef6aeeee516e89f1295e170087597a0a3
Binary files /dev/null and b/src/main/webapp/images/spinda.png differ
diff --git a/src/main/webapp/images/spiritomb.png b/src/main/webapp/images/spiritomb.png
new file mode 100644
index 0000000000000000000000000000000000000000..d295045c133c2c602370c09e6a1223ec1a90a9dd
Binary files /dev/null and b/src/main/webapp/images/spiritomb.png differ
diff --git a/src/main/webapp/images/spoink.png b/src/main/webapp/images/spoink.png
new file mode 100644
index 0000000000000000000000000000000000000000..15c84566174e85bcd93e2abbdc9037f421f091f9
Binary files /dev/null and b/src/main/webapp/images/spoink.png differ
diff --git a/src/main/webapp/images/spritzee.png b/src/main/webapp/images/spritzee.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf08e30a16890477890cea008122890bbe3ac9d3
Binary files /dev/null and b/src/main/webapp/images/spritzee.png differ
diff --git a/src/main/webapp/images/squirtle.png b/src/main/webapp/images/squirtle.png
new file mode 100644
index 0000000000000000000000000000000000000000..59d9b4f370809e8de0bc33b3d6364460ab0d9176
Binary files /dev/null and b/src/main/webapp/images/squirtle.png differ
diff --git a/src/main/webapp/images/stakataka.png b/src/main/webapp/images/stakataka.png
new file mode 100644
index 0000000000000000000000000000000000000000..9b95b7dfa76a75cb95bd9bb9d76cf5c5b82b4c4f
Binary files /dev/null and b/src/main/webapp/images/stakataka.png differ
diff --git a/src/main/webapp/images/stantler.png b/src/main/webapp/images/stantler.png
new file mode 100644
index 0000000000000000000000000000000000000000..def23e49c46a6ff06116d09eb2f4a98adbd42224
Binary files /dev/null and b/src/main/webapp/images/stantler.png differ
diff --git a/src/main/webapp/images/staraptor.png b/src/main/webapp/images/staraptor.png
new file mode 100644
index 0000000000000000000000000000000000000000..25016baa445ef13296bad54cf0ee26e613029f5c
Binary files /dev/null and b/src/main/webapp/images/staraptor.png differ
diff --git a/src/main/webapp/images/staravia.png b/src/main/webapp/images/staravia.png
new file mode 100644
index 0000000000000000000000000000000000000000..84aa688e7a24f281fa07e3f2fd7abfd72d568e68
Binary files /dev/null and b/src/main/webapp/images/staravia.png differ
diff --git a/src/main/webapp/images/starly.png b/src/main/webapp/images/starly.png
new file mode 100644
index 0000000000000000000000000000000000000000..fd3c954d979b14bfde2e2520af4dfc70c7c8a2c8
Binary files /dev/null and b/src/main/webapp/images/starly.png differ
diff --git a/src/main/webapp/images/starmie.png b/src/main/webapp/images/starmie.png
new file mode 100644
index 0000000000000000000000000000000000000000..42ae93e7d600e59f1b449130c63e0e47f1696c1e
Binary files /dev/null and b/src/main/webapp/images/starmie.png differ
diff --git a/src/main/webapp/images/staryu.png b/src/main/webapp/images/staryu.png
new file mode 100644
index 0000000000000000000000000000000000000000..29c59788c25efdfbbc07b4b62c1479381afdbfdc
Binary files /dev/null and b/src/main/webapp/images/staryu.png differ
diff --git a/src/main/webapp/images/steelix.png b/src/main/webapp/images/steelix.png
new file mode 100644
index 0000000000000000000000000000000000000000..2acb628899f5c2eeb1e921a51c2506d599017ae6
Binary files /dev/null and b/src/main/webapp/images/steelix.png differ
diff --git a/src/main/webapp/images/steenee.png b/src/main/webapp/images/steenee.png
new file mode 100644
index 0000000000000000000000000000000000000000..c55f9db5d50778214db7da5eb9694bf2a80d6eb1
Binary files /dev/null and b/src/main/webapp/images/steenee.png differ
diff --git a/src/main/webapp/images/stoutland.png b/src/main/webapp/images/stoutland.png
new file mode 100644
index 0000000000000000000000000000000000000000..8a869df7124e60a0f16bce88e66546a592aac8a5
Binary files /dev/null and b/src/main/webapp/images/stoutland.png differ
diff --git a/src/main/webapp/images/stufful.png b/src/main/webapp/images/stufful.png
new file mode 100644
index 0000000000000000000000000000000000000000..4f78c81a0e00a44a02eba10baefd2ea563cacd0a
Binary files /dev/null and b/src/main/webapp/images/stufful.png differ
diff --git a/src/main/webapp/images/stunfisk.png b/src/main/webapp/images/stunfisk.png
new file mode 100644
index 0000000000000000000000000000000000000000..6b07aeb7675c095bde2c82ad8dfd6b1f469d1e81
Binary files /dev/null and b/src/main/webapp/images/stunfisk.png differ
diff --git a/src/main/webapp/images/stunky.png b/src/main/webapp/images/stunky.png
new file mode 100644
index 0000000000000000000000000000000000000000..c9171b9d131779243d7e43fc9dca9f2bbf42aaa6
Binary files /dev/null and b/src/main/webapp/images/stunky.png differ
diff --git a/src/main/webapp/images/sudowoodo.png b/src/main/webapp/images/sudowoodo.png
new file mode 100644
index 0000000000000000000000000000000000000000..90fe1e81289fc6df7430c45e06cc33048aba109f
Binary files /dev/null and b/src/main/webapp/images/sudowoodo.png differ
diff --git a/src/main/webapp/images/suicune.png b/src/main/webapp/images/suicune.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf63adbc944ed790840cbf055222f9a73c4f62fe
Binary files /dev/null and b/src/main/webapp/images/suicune.png differ
diff --git a/src/main/webapp/images/sunflora.png b/src/main/webapp/images/sunflora.png
new file mode 100644
index 0000000000000000000000000000000000000000..c2e02a93c66cc17ce86ad86f196ee6d8f5483b4b
Binary files /dev/null and b/src/main/webapp/images/sunflora.png differ
diff --git a/src/main/webapp/images/sunkern.png b/src/main/webapp/images/sunkern.png
new file mode 100644
index 0000000000000000000000000000000000000000..2967d1e5d464aa23616ea36a1b5528d277c7fce1
Binary files /dev/null and b/src/main/webapp/images/sunkern.png differ
diff --git a/src/main/webapp/images/surskit.png b/src/main/webapp/images/surskit.png
new file mode 100644
index 0000000000000000000000000000000000000000..a151dc069e5d1cce605389b0d883ea449eeb4de2
Binary files /dev/null and b/src/main/webapp/images/surskit.png differ
diff --git a/src/main/webapp/images/swablu.png b/src/main/webapp/images/swablu.png
new file mode 100644
index 0000000000000000000000000000000000000000..231382b155f726dca62162e1e27718217e528dd9
Binary files /dev/null and b/src/main/webapp/images/swablu.png differ
diff --git a/src/main/webapp/images/swadloon.png b/src/main/webapp/images/swadloon.png
new file mode 100644
index 0000000000000000000000000000000000000000..4525aeff4f9a7d65184e439695d37bb87460352c
Binary files /dev/null and b/src/main/webapp/images/swadloon.png differ
diff --git a/src/main/webapp/images/swalot.png b/src/main/webapp/images/swalot.png
new file mode 100644
index 0000000000000000000000000000000000000000..0595fbc2de53f3ea3408163fc59d0a6f942fd8ec
Binary files /dev/null and b/src/main/webapp/images/swalot.png differ
diff --git a/src/main/webapp/images/swampert.png b/src/main/webapp/images/swampert.png
new file mode 100644
index 0000000000000000000000000000000000000000..89c87fd105ce0b3112d40838d3be7c85e7217c14
Binary files /dev/null and b/src/main/webapp/images/swampert.png differ
diff --git a/src/main/webapp/images/swanna.png b/src/main/webapp/images/swanna.png
new file mode 100644
index 0000000000000000000000000000000000000000..5216db558a4cd3b66b37e5cb04627531fe6ad5a6
Binary files /dev/null and b/src/main/webapp/images/swanna.png differ
diff --git a/src/main/webapp/images/swellow.png b/src/main/webapp/images/swellow.png
new file mode 100644
index 0000000000000000000000000000000000000000..d734299f47d049f92362c741b686176b4ece786f
Binary files /dev/null and b/src/main/webapp/images/swellow.png differ
diff --git a/src/main/webapp/images/swinub.png b/src/main/webapp/images/swinub.png
new file mode 100644
index 0000000000000000000000000000000000000000..fce920995535cd8f33b9974f9a279db100f0f93b
Binary files /dev/null and b/src/main/webapp/images/swinub.png differ
diff --git a/src/main/webapp/images/swirlix.png b/src/main/webapp/images/swirlix.png
new file mode 100644
index 0000000000000000000000000000000000000000..c4be3e61dcea0e004cab5f499d91d85aa84c82a6
Binary files /dev/null and b/src/main/webapp/images/swirlix.png differ
diff --git a/src/main/webapp/images/swoobat.png b/src/main/webapp/images/swoobat.png
new file mode 100644
index 0000000000000000000000000000000000000000..2b44d57792a2bb4e539b96c23e4eb0e98185967a
Binary files /dev/null and b/src/main/webapp/images/swoobat.png differ
diff --git a/src/main/webapp/images/sylveon.png b/src/main/webapp/images/sylveon.png
new file mode 100644
index 0000000000000000000000000000000000000000..cf4812038f2be0e87739da03c1976a23e5a50138
Binary files /dev/null and b/src/main/webapp/images/sylveon.png differ
diff --git a/src/main/webapp/images/taillow.png b/src/main/webapp/images/taillow.png
new file mode 100644
index 0000000000000000000000000000000000000000..aff4d375027306c023a2c8df52ed4e4c969d2a98
Binary files /dev/null and b/src/main/webapp/images/taillow.png differ
diff --git a/src/main/webapp/images/talonflame.png b/src/main/webapp/images/talonflame.png
new file mode 100644
index 0000000000000000000000000000000000000000..a7d9244aafd01b8fd93825dc8851a8fb1c86267f
Binary files /dev/null and b/src/main/webapp/images/talonflame.png differ
diff --git a/src/main/webapp/images/tangela.png b/src/main/webapp/images/tangela.png
new file mode 100644
index 0000000000000000000000000000000000000000..2b0c0d73ef8e6f502f77da2d0f68b79e0086dbda
Binary files /dev/null and b/src/main/webapp/images/tangela.png differ
diff --git a/src/main/webapp/images/tangrowth.png b/src/main/webapp/images/tangrowth.png
new file mode 100644
index 0000000000000000000000000000000000000000..971b291bf5fd68f09ca64bc17ad87c2acabeb945
Binary files /dev/null and b/src/main/webapp/images/tangrowth.png differ
diff --git a/src/main/webapp/images/tapu-bulu.png b/src/main/webapp/images/tapu-bulu.png
new file mode 100644
index 0000000000000000000000000000000000000000..6d4b18e604fa61ec27a52b31bf1a04ac0b82b329
Binary files /dev/null and b/src/main/webapp/images/tapu-bulu.png differ
diff --git a/src/main/webapp/images/tapu-fini.png b/src/main/webapp/images/tapu-fini.png
new file mode 100644
index 0000000000000000000000000000000000000000..42c8fbfee5fe860ffa9e8875017086ba635373f6
Binary files /dev/null and b/src/main/webapp/images/tapu-fini.png differ
diff --git a/src/main/webapp/images/tapu-koko.png b/src/main/webapp/images/tapu-koko.png
new file mode 100644
index 0000000000000000000000000000000000000000..2ae30e3a3782baeb9b4ea13e9ae7502375e5a2a9
Binary files /dev/null and b/src/main/webapp/images/tapu-koko.png differ
diff --git a/src/main/webapp/images/tapu-lele.png b/src/main/webapp/images/tapu-lele.png
new file mode 100644
index 0000000000000000000000000000000000000000..ddc98ef84d9eade00f6db290af6c7939223060da
Binary files /dev/null and b/src/main/webapp/images/tapu-lele.png differ
diff --git a/src/main/webapp/images/tauros.png b/src/main/webapp/images/tauros.png
new file mode 100644
index 0000000000000000000000000000000000000000..adbf2c390543c1612832e50cfa493cacd883184d
Binary files /dev/null and b/src/main/webapp/images/tauros.png differ
diff --git a/src/main/webapp/images/teddiursa.png b/src/main/webapp/images/teddiursa.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0cfca95f842689064c2d9df2fdb409eda2b4621
Binary files /dev/null and b/src/main/webapp/images/teddiursa.png differ
diff --git a/src/main/webapp/images/tentacool.png b/src/main/webapp/images/tentacool.png
new file mode 100644
index 0000000000000000000000000000000000000000..93cff51679ebcae913061c881ba1e7f3a88995cb
Binary files /dev/null and b/src/main/webapp/images/tentacool.png differ
diff --git a/src/main/webapp/images/tentacruel.png b/src/main/webapp/images/tentacruel.png
new file mode 100644
index 0000000000000000000000000000000000000000..1c47422e9e0a069ecf15bf36fb9f377a7b2a4e64
Binary files /dev/null and b/src/main/webapp/images/tentacruel.png differ
diff --git a/src/main/webapp/images/tepig.png b/src/main/webapp/images/tepig.png
new file mode 100644
index 0000000000000000000000000000000000000000..bb716a82e42111d30b63b4c6bfe7308364136c6d
Binary files /dev/null and b/src/main/webapp/images/tepig.png differ
diff --git a/src/main/webapp/images/terrakion.png b/src/main/webapp/images/terrakion.png
new file mode 100644
index 0000000000000000000000000000000000000000..b7f1750f3e7710f4c887cf7c3a0ae14aea939a6e
Binary files /dev/null and b/src/main/webapp/images/terrakion.png differ
diff --git a/src/main/webapp/images/throh.png b/src/main/webapp/images/throh.png
new file mode 100644
index 0000000000000000000000000000000000000000..f7eb227f2f25b72f584771bd5f9411ee2826c648
Binary files /dev/null and b/src/main/webapp/images/throh.png differ
diff --git a/src/main/webapp/images/thundurus-incarnate.png b/src/main/webapp/images/thundurus-incarnate.png
new file mode 100644
index 0000000000000000000000000000000000000000..273c1264ad3c20c11fd637756a7f0c5ca8260ef3
Binary files /dev/null and b/src/main/webapp/images/thundurus-incarnate.png differ
diff --git a/src/main/webapp/images/timburr.png b/src/main/webapp/images/timburr.png
new file mode 100644
index 0000000000000000000000000000000000000000..e79f2b7a172bc4265229ae6a922682a0a32a2ede
Binary files /dev/null and b/src/main/webapp/images/timburr.png differ
diff --git a/src/main/webapp/images/tirtouga.png b/src/main/webapp/images/tirtouga.png
new file mode 100644
index 0000000000000000000000000000000000000000..7ed8b62c93e733488d8a5cf8807f76d9eb9db49c
Binary files /dev/null and b/src/main/webapp/images/tirtouga.png differ
diff --git a/src/main/webapp/images/togedemaru.png b/src/main/webapp/images/togedemaru.png
new file mode 100644
index 0000000000000000000000000000000000000000..3cae929cac9a5d5a9b7ea09a0ca034eba518187a
Binary files /dev/null and b/src/main/webapp/images/togedemaru.png differ
diff --git a/src/main/webapp/images/togekiss.png b/src/main/webapp/images/togekiss.png
new file mode 100644
index 0000000000000000000000000000000000000000..79940701b4a87b3b3a052099907074040146d1bf
Binary files /dev/null and b/src/main/webapp/images/togekiss.png differ
diff --git a/src/main/webapp/images/togepi.png b/src/main/webapp/images/togepi.png
new file mode 100644
index 0000000000000000000000000000000000000000..2a646648f0186581003df44611ad190939a17ed0
Binary files /dev/null and b/src/main/webapp/images/togepi.png differ
diff --git a/src/main/webapp/images/togetic.png b/src/main/webapp/images/togetic.png
new file mode 100644
index 0000000000000000000000000000000000000000..b08aa196cb1f77279a2e550103209bdec404577c
Binary files /dev/null and b/src/main/webapp/images/togetic.png differ
diff --git a/src/main/webapp/images/torchic.png b/src/main/webapp/images/torchic.png
new file mode 100644
index 0000000000000000000000000000000000000000..a6aa7fc2f004907518b097b65d7023e09c4ffb80
Binary files /dev/null and b/src/main/webapp/images/torchic.png differ
diff --git a/src/main/webapp/images/torkoal.png b/src/main/webapp/images/torkoal.png
new file mode 100644
index 0000000000000000000000000000000000000000..49f46ec9858011cb5701f4fafc50b3be0d08d93f
Binary files /dev/null and b/src/main/webapp/images/torkoal.png differ
diff --git a/src/main/webapp/images/tornadus-incarnate.png b/src/main/webapp/images/tornadus-incarnate.png
new file mode 100644
index 0000000000000000000000000000000000000000..e33fd9cfff58b37c7982afd03ff5efad05b29dea
Binary files /dev/null and b/src/main/webapp/images/tornadus-incarnate.png differ
diff --git a/src/main/webapp/images/torracat.png b/src/main/webapp/images/torracat.png
new file mode 100644
index 0000000000000000000000000000000000000000..9af7e28cc2e254c571fefcfb605fbd8f0d804a82
Binary files /dev/null and b/src/main/webapp/images/torracat.png differ
diff --git a/src/main/webapp/images/torterra.png b/src/main/webapp/images/torterra.png
new file mode 100644
index 0000000000000000000000000000000000000000..461f9c1a0594197a1c007368cc34b089af1b9358
Binary files /dev/null and b/src/main/webapp/images/torterra.png differ
diff --git a/src/main/webapp/images/totodile.png b/src/main/webapp/images/totodile.png
new file mode 100644
index 0000000000000000000000000000000000000000..982a241d4a11b560cbb0d9b102c687c8b9024934
Binary files /dev/null and b/src/main/webapp/images/totodile.png differ
diff --git a/src/main/webapp/images/toucannon.png b/src/main/webapp/images/toucannon.png
new file mode 100644
index 0000000000000000000000000000000000000000..ffcf5c461f7c72045e855084abfd31e03bbe5a7f
Binary files /dev/null and b/src/main/webapp/images/toucannon.png differ
diff --git a/src/main/webapp/images/toxapex.png b/src/main/webapp/images/toxapex.png
new file mode 100644
index 0000000000000000000000000000000000000000..392b3e74525c57edd374e716e289d1c9d96fc2d1
Binary files /dev/null and b/src/main/webapp/images/toxapex.png differ
diff --git a/src/main/webapp/images/toxicroak.png b/src/main/webapp/images/toxicroak.png
new file mode 100644
index 0000000000000000000000000000000000000000..49f13310f8966b42ecdce0c4b1a23feee44da94f
Binary files /dev/null and b/src/main/webapp/images/toxicroak.png differ
diff --git a/src/main/webapp/images/tranquill.png b/src/main/webapp/images/tranquill.png
new file mode 100644
index 0000000000000000000000000000000000000000..00def098249e005bf13b7979a9eff28b79c8736d
Binary files /dev/null and b/src/main/webapp/images/tranquill.png differ
diff --git a/src/main/webapp/images/trapinch.png b/src/main/webapp/images/trapinch.png
new file mode 100644
index 0000000000000000000000000000000000000000..bf1bed1597dc16a087648a602baab59039ad2688
Binary files /dev/null and b/src/main/webapp/images/trapinch.png differ
diff --git a/src/main/webapp/images/treecko.png b/src/main/webapp/images/treecko.png
new file mode 100644
index 0000000000000000000000000000000000000000..eabb8e3d5cea95d8697d9367356575793b7d0ff3
Binary files /dev/null and b/src/main/webapp/images/treecko.png differ
diff --git a/src/main/webapp/images/trevenant.png b/src/main/webapp/images/trevenant.png
new file mode 100644
index 0000000000000000000000000000000000000000..7ae92e81338b7fc34f8df4a74ec8a2b4dbf19c33
Binary files /dev/null and b/src/main/webapp/images/trevenant.png differ
diff --git a/src/main/webapp/images/tropius.png b/src/main/webapp/images/tropius.png
new file mode 100644
index 0000000000000000000000000000000000000000..6c25bf3d012373df379b51c9bf76be095d364b21
Binary files /dev/null and b/src/main/webapp/images/tropius.png differ
diff --git a/src/main/webapp/images/trubbish.png b/src/main/webapp/images/trubbish.png
new file mode 100644
index 0000000000000000000000000000000000000000..169222bef3bf0e9e573a7b1d548f9753fd62c7ef
Binary files /dev/null and b/src/main/webapp/images/trubbish.png differ
diff --git a/src/main/webapp/images/trumbeak.png b/src/main/webapp/images/trumbeak.png
new file mode 100644
index 0000000000000000000000000000000000000000..a28d48e60c6c8a2769cdf398b8f9255456805648
Binary files /dev/null and b/src/main/webapp/images/trumbeak.png differ
diff --git a/src/main/webapp/images/tsareena.png b/src/main/webapp/images/tsareena.png
new file mode 100644
index 0000000000000000000000000000000000000000..b32fe7de75f1cae3b6ca297249a64ad76ffa5262
Binary files /dev/null and b/src/main/webapp/images/tsareena.png differ
diff --git a/src/main/webapp/images/turtonator.png b/src/main/webapp/images/turtonator.png
new file mode 100644
index 0000000000000000000000000000000000000000..16f04a06c2c87183dd5b405e4c9f3be84a8a3849
Binary files /dev/null and b/src/main/webapp/images/turtonator.png differ
diff --git a/src/main/webapp/images/turtwig.png b/src/main/webapp/images/turtwig.png
new file mode 100644
index 0000000000000000000000000000000000000000..2dbc04d585f279cee139251a12dbc08fbcb19ec8
Binary files /dev/null and b/src/main/webapp/images/turtwig.png differ
diff --git a/src/main/webapp/images/tympole.png b/src/main/webapp/images/tympole.png
new file mode 100644
index 0000000000000000000000000000000000000000..6bdcf47dde7392af8566b88b6f5e12fadc885583
Binary files /dev/null and b/src/main/webapp/images/tympole.png differ
diff --git a/src/main/webapp/images/tynamo.png b/src/main/webapp/images/tynamo.png
new file mode 100644
index 0000000000000000000000000000000000000000..2933df2e72b14eec10674f48805d6067c813d168
Binary files /dev/null and b/src/main/webapp/images/tynamo.png differ
diff --git a/src/main/webapp/images/type-null.png b/src/main/webapp/images/type-null.png
new file mode 100644
index 0000000000000000000000000000000000000000..bda4acdbc374daa9b229a4a699b9c45d9f7f1836
Binary files /dev/null and b/src/main/webapp/images/type-null.png differ
diff --git a/src/main/webapp/images/typhlosion.png b/src/main/webapp/images/typhlosion.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe1933988e0eb4ba87a314eb009c32de606c7a86
Binary files /dev/null and b/src/main/webapp/images/typhlosion.png differ
diff --git a/src/main/webapp/images/tyranitar.png b/src/main/webapp/images/tyranitar.png
new file mode 100644
index 0000000000000000000000000000000000000000..a6b38b366fb596d3479c4048ca0674322bc54325
Binary files /dev/null and b/src/main/webapp/images/tyranitar.png differ
diff --git a/src/main/webapp/images/tyrantrum.png b/src/main/webapp/images/tyrantrum.png
new file mode 100644
index 0000000000000000000000000000000000000000..69d280b6f04aa09f0e70900290b0f79509e0d2a5
Binary files /dev/null and b/src/main/webapp/images/tyrantrum.png differ
diff --git a/src/main/webapp/images/tyrogue.png b/src/main/webapp/images/tyrogue.png
new file mode 100644
index 0000000000000000000000000000000000000000..067ec59471a0b015155c56b4faf91c13801fc264
Binary files /dev/null and b/src/main/webapp/images/tyrogue.png differ
diff --git a/src/main/webapp/images/tyrunt.png b/src/main/webapp/images/tyrunt.png
new file mode 100644
index 0000000000000000000000000000000000000000..0070cba494a6630d3bd4140358d11aaa356977f0
Binary files /dev/null and b/src/main/webapp/images/tyrunt.png differ
diff --git a/src/main/webapp/images/umbreon.png b/src/main/webapp/images/umbreon.png
new file mode 100644
index 0000000000000000000000000000000000000000..640f68aa467a343c28c676f14c83a2ee0dce15fa
Binary files /dev/null and b/src/main/webapp/images/umbreon.png differ
diff --git a/src/main/webapp/images/unfezant.png b/src/main/webapp/images/unfezant.png
new file mode 100644
index 0000000000000000000000000000000000000000..86353eaf683083fb4f6db7e01ff67ca4b5ab0b6e
Binary files /dev/null and b/src/main/webapp/images/unfezant.png differ
diff --git a/src/main/webapp/images/unown.png b/src/main/webapp/images/unown.png
new file mode 100644
index 0000000000000000000000000000000000000000..f33772eb8393913df3515a7f9d6a8161b95cc419
Binary files /dev/null and b/src/main/webapp/images/unown.png differ
diff --git a/src/main/webapp/images/ursaring.png b/src/main/webapp/images/ursaring.png
new file mode 100644
index 0000000000000000000000000000000000000000..5ca3db4dff3e9e0230cf988fef62aaa1273ea144
Binary files /dev/null and b/src/main/webapp/images/ursaring.png differ
diff --git a/src/main/webapp/images/uxie.png b/src/main/webapp/images/uxie.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d7cb271c303b1f087eb93886b8d9c87d342ab74
Binary files /dev/null and b/src/main/webapp/images/uxie.png differ
diff --git a/src/main/webapp/images/vanillish.png b/src/main/webapp/images/vanillish.png
new file mode 100644
index 0000000000000000000000000000000000000000..dee064e08d660899795839c61247bb12b5869faf
Binary files /dev/null and b/src/main/webapp/images/vanillish.png differ
diff --git a/src/main/webapp/images/vanillite.png b/src/main/webapp/images/vanillite.png
new file mode 100644
index 0000000000000000000000000000000000000000..0ecf8e8fbb4bef83379566a0686927b9145703a3
Binary files /dev/null and b/src/main/webapp/images/vanillite.png differ
diff --git a/src/main/webapp/images/vanilluxe.png b/src/main/webapp/images/vanilluxe.png
new file mode 100644
index 0000000000000000000000000000000000000000..73d63a19b6a7957679887567ec9f74a3a1d00ce7
Binary files /dev/null and b/src/main/webapp/images/vanilluxe.png differ
diff --git a/src/main/webapp/images/vaporeon.png b/src/main/webapp/images/vaporeon.png
new file mode 100644
index 0000000000000000000000000000000000000000..5c63750c8112cb522200c1006a55f0d25c195c74
Binary files /dev/null and b/src/main/webapp/images/vaporeon.png differ
diff --git a/src/main/webapp/images/venipede.png b/src/main/webapp/images/venipede.png
new file mode 100644
index 0000000000000000000000000000000000000000..634d96edc1ce62fa52db14b2f4a4313b8c569c23
Binary files /dev/null and b/src/main/webapp/images/venipede.png differ
diff --git a/src/main/webapp/images/venomoth.png b/src/main/webapp/images/venomoth.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c8f496b0f4ea4219591ca5205aabfd13f5b035c
Binary files /dev/null and b/src/main/webapp/images/venomoth.png differ
diff --git a/src/main/webapp/images/venonat.png b/src/main/webapp/images/venonat.png
new file mode 100644
index 0000000000000000000000000000000000000000..6db9e1eaae3c6efa846c005870d42fc4901e6cfb
Binary files /dev/null and b/src/main/webapp/images/venonat.png differ
diff --git a/src/main/webapp/images/venusaur.png b/src/main/webapp/images/venusaur.png
new file mode 100644
index 0000000000000000000000000000000000000000..6be1cefe837d48c1933fa93bcb2e2b5e5d171102
Binary files /dev/null and b/src/main/webapp/images/venusaur.png differ
diff --git a/src/main/webapp/images/vespiquen.png b/src/main/webapp/images/vespiquen.png
new file mode 100644
index 0000000000000000000000000000000000000000..f019e88335d676196b2a5fc6f7f2da285fb5880f
Binary files /dev/null and b/src/main/webapp/images/vespiquen.png differ
diff --git a/src/main/webapp/images/vibrava.png b/src/main/webapp/images/vibrava.png
new file mode 100644
index 0000000000000000000000000000000000000000..73303876191828c418796f38f1b87670a805e1b3
Binary files /dev/null and b/src/main/webapp/images/vibrava.png differ
diff --git a/src/main/webapp/images/victini.png b/src/main/webapp/images/victini.png
new file mode 100644
index 0000000000000000000000000000000000000000..23dcac5557715f70da9416c1282e9c1569b10dc9
Binary files /dev/null and b/src/main/webapp/images/victini.png differ
diff --git a/src/main/webapp/images/victreebel.png b/src/main/webapp/images/victreebel.png
new file mode 100644
index 0000000000000000000000000000000000000000..00ca97a63b8913f66c63f36e14051e56c9cd81a1
Binary files /dev/null and b/src/main/webapp/images/victreebel.png differ
diff --git a/src/main/webapp/images/vigoroth.png b/src/main/webapp/images/vigoroth.png
new file mode 100644
index 0000000000000000000000000000000000000000..b0d1442f8ef42ce813726bb6dcdf36ff347d1b10
Binary files /dev/null and b/src/main/webapp/images/vigoroth.png differ
diff --git a/src/main/webapp/images/vikavolt.png b/src/main/webapp/images/vikavolt.png
new file mode 100644
index 0000000000000000000000000000000000000000..d8ac5928021c1508a587bf9f5e2f6f9c4255a49c
Binary files /dev/null and b/src/main/webapp/images/vikavolt.png differ
diff --git a/src/main/webapp/images/vileplume.png b/src/main/webapp/images/vileplume.png
new file mode 100644
index 0000000000000000000000000000000000000000..af81c3c529139b562e27cf428f6d58590e848191
Binary files /dev/null and b/src/main/webapp/images/vileplume.png differ
diff --git a/src/main/webapp/images/virizion.png b/src/main/webapp/images/virizion.png
new file mode 100644
index 0000000000000000000000000000000000000000..46b98a9c4e6a6f2743e395c47688910a3d13fdf6
Binary files /dev/null and b/src/main/webapp/images/virizion.png differ
diff --git a/src/main/webapp/images/vivillon.png b/src/main/webapp/images/vivillon.png
new file mode 100644
index 0000000000000000000000000000000000000000..5cab4dc2502050c5ebb4bae5babcf9de2f2e2420
Binary files /dev/null and b/src/main/webapp/images/vivillon.png differ
diff --git a/src/main/webapp/images/volbeat.png b/src/main/webapp/images/volbeat.png
new file mode 100644
index 0000000000000000000000000000000000000000..18987216f946c57609f0bd4afe4be27ec08e647a
Binary files /dev/null and b/src/main/webapp/images/volbeat.png differ
diff --git a/src/main/webapp/images/volcanion.png b/src/main/webapp/images/volcanion.png
new file mode 100644
index 0000000000000000000000000000000000000000..e0fe0d2bf546cc34687cef3524184ab0b2d620e0
Binary files /dev/null and b/src/main/webapp/images/volcanion.png differ
diff --git a/src/main/webapp/images/volcarona.png b/src/main/webapp/images/volcarona.png
new file mode 100644
index 0000000000000000000000000000000000000000..e9e71b7d7b401289c94f4808ba0201fcf3b25ec5
Binary files /dev/null and b/src/main/webapp/images/volcarona.png differ
diff --git a/src/main/webapp/images/voltorb.png b/src/main/webapp/images/voltorb.png
new file mode 100644
index 0000000000000000000000000000000000000000..784d908af0f7306ea5099cab757ea684f6594f8c
Binary files /dev/null and b/src/main/webapp/images/voltorb.png differ
diff --git a/src/main/webapp/images/vullaby.png b/src/main/webapp/images/vullaby.png
new file mode 100644
index 0000000000000000000000000000000000000000..e06757f44e1740fd48c175e6a11559f3ae3a1107
Binary files /dev/null and b/src/main/webapp/images/vullaby.png differ
diff --git a/src/main/webapp/images/vulpix.png b/src/main/webapp/images/vulpix.png
new file mode 100644
index 0000000000000000000000000000000000000000..3341f78f7190a4a0fd63993608c46e050b0aff04
Binary files /dev/null and b/src/main/webapp/images/vulpix.png differ
diff --git a/src/main/webapp/images/wailmer.png b/src/main/webapp/images/wailmer.png
new file mode 100644
index 0000000000000000000000000000000000000000..66693ba829acdb67cc67d50dd02f24e4674aec92
Binary files /dev/null and b/src/main/webapp/images/wailmer.png differ
diff --git a/src/main/webapp/images/wailord.png b/src/main/webapp/images/wailord.png
new file mode 100644
index 0000000000000000000000000000000000000000..58af587ec29083662b2d1c2ffa0530c99a5030ad
Binary files /dev/null and b/src/main/webapp/images/wailord.png differ
diff --git a/src/main/webapp/images/walrein.png b/src/main/webapp/images/walrein.png
new file mode 100644
index 0000000000000000000000000000000000000000..0441d97d3bb6ad2b6a3415518dbc891693fe2641
Binary files /dev/null and b/src/main/webapp/images/walrein.png differ
diff --git a/src/main/webapp/images/wartortle.png b/src/main/webapp/images/wartortle.png
new file mode 100644
index 0000000000000000000000000000000000000000..d002e7476dd3ba218458eddbc1c2e781bac6e93f
Binary files /dev/null and b/src/main/webapp/images/wartortle.png differ
diff --git a/src/main/webapp/images/watchog.png b/src/main/webapp/images/watchog.png
new file mode 100644
index 0000000000000000000000000000000000000000..5fe364ee145d661f4ed6903d777c8c1729fac475
Binary files /dev/null and b/src/main/webapp/images/watchog.png differ
diff --git a/src/main/webapp/images/weavile.png b/src/main/webapp/images/weavile.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef0a4bbf3e84450eb0e4e45919ff131c11e0fd98
Binary files /dev/null and b/src/main/webapp/images/weavile.png differ
diff --git a/src/main/webapp/images/weedle.png b/src/main/webapp/images/weedle.png
new file mode 100644
index 0000000000000000000000000000000000000000..af6a86cbe5331816a8b5d2e5b6238f3da4893f67
Binary files /dev/null and b/src/main/webapp/images/weedle.png differ
diff --git a/src/main/webapp/images/weepinbell.png b/src/main/webapp/images/weepinbell.png
new file mode 100644
index 0000000000000000000000000000000000000000..a2ab7d50dab89d0e162fb23ca366782327f964b5
Binary files /dev/null and b/src/main/webapp/images/weepinbell.png differ
diff --git a/src/main/webapp/images/weezing.png b/src/main/webapp/images/weezing.png
new file mode 100644
index 0000000000000000000000000000000000000000..d9cdb9b74656ecf402197d9b12a9d556825d1963
Binary files /dev/null and b/src/main/webapp/images/weezing.png differ
diff --git a/src/main/webapp/images/whimsicott.png b/src/main/webapp/images/whimsicott.png
new file mode 100644
index 0000000000000000000000000000000000000000..7c8d6b7bed59dd2d8e50bfe46795562e6c91b50a
Binary files /dev/null and b/src/main/webapp/images/whimsicott.png differ
diff --git a/src/main/webapp/images/whirlipede.png b/src/main/webapp/images/whirlipede.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a696bfdd21a35ce7d0cae73946f2b36164a071d
Binary files /dev/null and b/src/main/webapp/images/whirlipede.png differ
diff --git a/src/main/webapp/images/whiscash.png b/src/main/webapp/images/whiscash.png
new file mode 100644
index 0000000000000000000000000000000000000000..9958f1260a96b35669e07cdaa3c8c3bb45e045db
Binary files /dev/null and b/src/main/webapp/images/whiscash.png differ
diff --git a/src/main/webapp/images/whismur.png b/src/main/webapp/images/whismur.png
new file mode 100644
index 0000000000000000000000000000000000000000..54369731492fa7dfc88aded199e7785deafe8fb4
Binary files /dev/null and b/src/main/webapp/images/whismur.png differ
diff --git a/src/main/webapp/images/wigglytuff.png b/src/main/webapp/images/wigglytuff.png
new file mode 100644
index 0000000000000000000000000000000000000000..56ab0f3308490a49698b12069f4de947ab28eea7
Binary files /dev/null and b/src/main/webapp/images/wigglytuff.png differ
diff --git a/src/main/webapp/images/wimpod.png b/src/main/webapp/images/wimpod.png
new file mode 100644
index 0000000000000000000000000000000000000000..4f2ef5fc3ece71ce772b58a8bbc1937741338e41
Binary files /dev/null and b/src/main/webapp/images/wimpod.png differ
diff --git a/src/main/webapp/images/wingull.png b/src/main/webapp/images/wingull.png
new file mode 100644
index 0000000000000000000000000000000000000000..30e585983361a1b0c6185249a20a6db6f642fffa
Binary files /dev/null and b/src/main/webapp/images/wingull.png differ
diff --git a/src/main/webapp/images/wishiwashi-solo.png b/src/main/webapp/images/wishiwashi-solo.png
new file mode 100644
index 0000000000000000000000000000000000000000..ae2510fa22e19484ca5ba865e039ef1d7bb04811
Binary files /dev/null and b/src/main/webapp/images/wishiwashi-solo.png differ
diff --git a/src/main/webapp/images/wobbuffet.png b/src/main/webapp/images/wobbuffet.png
new file mode 100644
index 0000000000000000000000000000000000000000..c3384d5d50b3366d436e587f1ffc4b4ef6f68006
Binary files /dev/null and b/src/main/webapp/images/wobbuffet.png differ
diff --git a/src/main/webapp/images/woobat.png b/src/main/webapp/images/woobat.png
new file mode 100644
index 0000000000000000000000000000000000000000..a495a5e6846429e3fa6eb46495ba7d3e70eb57c1
Binary files /dev/null and b/src/main/webapp/images/woobat.png differ
diff --git a/src/main/webapp/images/wooper.png b/src/main/webapp/images/wooper.png
new file mode 100644
index 0000000000000000000000000000000000000000..32311ecd80af1abc897112c62380b349484f57e3
Binary files /dev/null and b/src/main/webapp/images/wooper.png differ
diff --git a/src/main/webapp/images/wormadam-plant.png b/src/main/webapp/images/wormadam-plant.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c52ff06d1a9325e3194c2607d8f22705b98506f
Binary files /dev/null and b/src/main/webapp/images/wormadam-plant.png differ
diff --git a/src/main/webapp/images/wurmple.png b/src/main/webapp/images/wurmple.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e2b759408436e0cfea274308f26d73ea8e57911
Binary files /dev/null and b/src/main/webapp/images/wurmple.png differ
diff --git a/src/main/webapp/images/wynaut.png b/src/main/webapp/images/wynaut.png
new file mode 100644
index 0000000000000000000000000000000000000000..668cc31dcc6b6914563ff6b4240efd9a2c275121
Binary files /dev/null and b/src/main/webapp/images/wynaut.png differ
diff --git a/src/main/webapp/images/xatu.png b/src/main/webapp/images/xatu.png
new file mode 100644
index 0000000000000000000000000000000000000000..088c7353aed9265aa1a45b3351ae7ce890676e6d
Binary files /dev/null and b/src/main/webapp/images/xatu.png differ
diff --git a/src/main/webapp/images/xerneas.png b/src/main/webapp/images/xerneas.png
new file mode 100644
index 0000000000000000000000000000000000000000..6acc5d11a506171d4e0ec6e2c22b7e17af27488c
Binary files /dev/null and b/src/main/webapp/images/xerneas.png differ
diff --git a/src/main/webapp/images/xurkitree.png b/src/main/webapp/images/xurkitree.png
new file mode 100644
index 0000000000000000000000000000000000000000..c5542fd4f0dceb87fbdf966bf36398a0d87a4dba
Binary files /dev/null and b/src/main/webapp/images/xurkitree.png differ
diff --git a/src/main/webapp/images/yamask.png b/src/main/webapp/images/yamask.png
new file mode 100644
index 0000000000000000000000000000000000000000..c1b47b92288f42b067c84295072a814110bb6dd5
Binary files /dev/null and b/src/main/webapp/images/yamask.png differ
diff --git a/src/main/webapp/images/yanma.png b/src/main/webapp/images/yanma.png
new file mode 100644
index 0000000000000000000000000000000000000000..4b846f2ccbbc5e6e311e2eeb852db6cb0e00dc3d
Binary files /dev/null and b/src/main/webapp/images/yanma.png differ
diff --git a/src/main/webapp/images/yanmega.png b/src/main/webapp/images/yanmega.png
new file mode 100644
index 0000000000000000000000000000000000000000..034332ff51572a5f8f4f881221cf9f5aba372fda
Binary files /dev/null and b/src/main/webapp/images/yanmega.png differ
diff --git a/src/main/webapp/images/yungoos.png b/src/main/webapp/images/yungoos.png
new file mode 100644
index 0000000000000000000000000000000000000000..a41699b89450d007898d7bebe9d5b708cfda0771
Binary files /dev/null and b/src/main/webapp/images/yungoos.png differ
diff --git a/src/main/webapp/images/yveltal.png b/src/main/webapp/images/yveltal.png
new file mode 100644
index 0000000000000000000000000000000000000000..21f452d02af4853c58b3a177a4189c22456f4e4e
Binary files /dev/null and b/src/main/webapp/images/yveltal.png differ
diff --git a/src/main/webapp/images/zangoose.png b/src/main/webapp/images/zangoose.png
new file mode 100644
index 0000000000000000000000000000000000000000..3aaa4fe1a2a60bd8d6844fb252301a3848fb13d2
Binary files /dev/null and b/src/main/webapp/images/zangoose.png differ
diff --git a/src/main/webapp/images/zapdos.png b/src/main/webapp/images/zapdos.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8a59628686306c47204a4fff34a4d628fcec617
Binary files /dev/null and b/src/main/webapp/images/zapdos.png differ
diff --git a/src/main/webapp/images/zebstrika.png b/src/main/webapp/images/zebstrika.png
new file mode 100644
index 0000000000000000000000000000000000000000..c862d06f1b6c68e7f39c0893a0dc5c1464e24cc0
Binary files /dev/null and b/src/main/webapp/images/zebstrika.png differ
diff --git a/src/main/webapp/images/zekrom.png b/src/main/webapp/images/zekrom.png
new file mode 100644
index 0000000000000000000000000000000000000000..f68d5b428a9ca385cbf532f6b71aab2937d20ef4
Binary files /dev/null and b/src/main/webapp/images/zekrom.png differ
diff --git a/src/main/webapp/images/zeraora.png b/src/main/webapp/images/zeraora.png
new file mode 100644
index 0000000000000000000000000000000000000000..2f279abda38e2431bb585237b7d5f80cd74b4181
Binary files /dev/null and b/src/main/webapp/images/zeraora.png differ
diff --git a/src/main/webapp/images/zigzagoon.png b/src/main/webapp/images/zigzagoon.png
new file mode 100644
index 0000000000000000000000000000000000000000..4526b24d0f1651bf814b1a033842424e357a4f2c
Binary files /dev/null and b/src/main/webapp/images/zigzagoon.png differ
diff --git a/src/main/webapp/images/zoroark.png b/src/main/webapp/images/zoroark.png
new file mode 100644
index 0000000000000000000000000000000000000000..badeed1e5c814df01e28cdc4c14a63b32fc15eeb
Binary files /dev/null and b/src/main/webapp/images/zoroark.png differ
diff --git a/src/main/webapp/images/zorua.png b/src/main/webapp/images/zorua.png
new file mode 100644
index 0000000000000000000000000000000000000000..71097fcb6105490d5eb1710deb70a93130b8406b
Binary files /dev/null and b/src/main/webapp/images/zorua.png differ
diff --git a/src/main/webapp/images/zubat.png b/src/main/webapp/images/zubat.png
new file mode 100644
index 0000000000000000000000000000000000000000..79edda67606af24462e1c894d242016e86171031
Binary files /dev/null and b/src/main/webapp/images/zubat.png differ
diff --git a/src/main/webapp/images/zweilous.png b/src/main/webapp/images/zweilous.png
new file mode 100644
index 0000000000000000000000000000000000000000..e824b4639a505e29cd73e242bb5be4cd5d799dbd
Binary files /dev/null and b/src/main/webapp/images/zweilous.png differ
diff --git a/src/main/webapp/images/zygarde-50.png b/src/main/webapp/images/zygarde-50.png
new file mode 100644
index 0000000000000000000000000000000000000000..1916e837939e494f41f2ac26903074bec582e01f
Binary files /dev/null and b/src/main/webapp/images/zygarde-50.png differ
diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..76bb1d7ce581151061125edeb04115db779ce0ab
--- /dev/null
+++ b/src/main/webapp/index.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <title>Title</title>
+</head>
+<body>
+<p>Hello there</p>
+<img src="images/abra.png"/>
+</body>
+</html>
\ No newline at end of file
diff --git a/src/main/webapp/other.html b/src/main/webapp/other.html
new file mode 100644
index 0000000000000000000000000000000000000000..76bb1d7ce581151061125edeb04115db779ce0ab
--- /dev/null
+++ b/src/main/webapp/other.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <title>Title</title>
+</head>
+<body>
+<p>Hello there</p>
+<img src="images/abra.png"/>
+</body>
+</html>
\ No newline at end of file