diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000..f83c73ffb
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,7 @@
+node_modules
+.env
+
+backend/node_modules
+
+front-end/node_modules
+
diff --git a/README.md b/README.md
index c71cbfa0c..df2eb25eb 100644
--- a/README.md
+++ b/README.md
@@ -1,58 +1,79 @@
-# Teste de Desenvolvimento Web
+# [](https://github.com/wesleymoliveira)👨💻 Wesley Moreira Oliveira
-Olá Dev! Tudo bem?
+[](https://github.com/wesleymoliveira) [](https://www.linkedin.com/in/wesleymoliveira/) [](mailto:oliveirawesleyrj@gmail.com) [](https://api.whatsapp.com/send?phone=5522999130259&text=Ol%C3%A1!)
-A RedFox está sempre em busca de profissionais interessantes e interessados, com boa capacidade de aprendizado, adaptação e principalmente motivação!
+### Leiam por favor.
-Este teste tem como objetivo avaliar e desafiar você. Não é obrigatório realizá-lo completamente, queremos apenas conhecer você, seu esforço e potencial para aprender, se adaptar e tomar decisões.
+Os ajustes informados anteriormente foram devidamente feitos. Muito obrigado pela compreensão.
-Agora vamos ao teste!
+# - Frontend -
+## Abordagem
-## Desafio Pokémon
+Comecei criando um mock com os dados necessários e usei o mocky.io junto com o storybook para fazer o Frontend.
+Procurei desenvolver os componentes de forma mais isolada possível, permitindo a sua reutilização ampla.
-Nós temos um problema, atualmente nosso sistema é só um excel, cheio de informações sobre Pokémon. Nós usamos ele como banco de dados e ao mesmo tempo interface de gerenciamento, inserindo, editando, deletando e filtrando os dados.
+## Instruções
-A missão é criar um sistema para substituir este excel, pois queremos expandir e acrescentar funcionalidades. Queremos manter o básico, mas principalmente queremos uma forma prática e agradável de buscar os dados, com listagem, filtros, paginação e detalhes sobre cada Pokémon.
+- Instale as dependências `$ yarn`
+- Navegue até a pasta /frontend e execute - `$ yarn dev`
+- Para visualizar o protótipo isolado de cada componente e suas diferentes propriedades, utilize o comando: `$ yarn storybook`
-Fique à vontade com o layout, precisamos de uma interface que consiga entregar as funcionalidades principais e substituir o excel, só isso.
+### O que foi utilizado?
+- Typescript
+- Styled Components
+- NextJS
+- Joi
+- Plop - `$ yarn generate ComponentName` (automatizar a criação dos components)
+- Storybook - O Storybook é uma excelente ferramenta para prototipação da UI e visualização isolada da aplicação.
-## Consigo fazer tudo isso?
+
+
-Consegue sim!
+- [x] Joi - Validation
+
-O teste é flexível, você pode escolher alguma parte específica dele para fazer, em que se sinta mais confortável e confiante, por exemplo: a interface, as funcionalidades, o banco de dados, etc...O importante é tentar atingir o objetivo de alguma forma.
+- [x] Typescript
+- [x] NextJs
+- [x] Styled Components
-Aqui na RedFox queremos aproveitar ao máximo suas habilidades e aptidões, mas também desafiar você a adquirir novas, então nossa equipe tem a liberdade de trasitar entre frontend, backend, infraestrutura, etc...Sem se restringir, tudo depende do esforço e vontade de cada um.
+## Importante
+- [x] Utilizei o NextJs com recursos de criação dinâmica de páginas estáticas para as rotas /pokemon/nomedopokemon. Ou seja a aplicação tem uma página estática para cada pokemon do banco de dados.
-## Por onde começo?
+---
-Primeiramente, você pode fazer um fork desse repositório aqui, para sua conta do Github, depois disso crie uma branch nova com o seu nome, para podermos indentificá-lo.
+# - Backend -
-Após terminar o desafio, você pode solicitar um pull request para a branch master do nosso repositório. Vamos receber e fazer a avaliação de todos.
+## Instruções
+- Por favor certifique-se que tem o MongoDB Instalado.
+ - inicie o serviço do Mongo - `$ mongod`
+- Navegue até a pasta /backend e execute - `$ yarn dev`
-## E o Layout??
+- Para visualizar a documentação da API, visite a rota: `/api-docs/`. Exemplo : `http://localhost:3333/api-docs/`
-Fique a vontade quanto a isso, não vamos avaliar o design da sua interface. Se quiser desenhar algo bacana, diferente, pensar até em UI/UX, etc...é claro que vamos valorizar o seu esforço e considerar como um diferencial, mas não se preocupe.
+
+### O que foi utilizado?
-## Regras
+- Typescript
+- Nodemon
+- Cors
+- Multer
+- MongoDB
+- Mongoose
+- Express
+- Swagger
-Para o desafio ficar mais interessante, decidimos criar algumas regras:
-- No layout, deve utilizar algum framework CSS (ex: Bootstrap, MaterializeCSS, Bulma...)
-- No frontend, deve utilizar algum framework JS (ex: VueJS, ReactJS, Angular...tente não usar jQuery)
-- No backend, deve utilizar NodeJS
-- Documentar um pouco o projeto, o que você fez e de que forma devemos executar-lo
+## Rotas disponíveis
+- [x] GET - http://localhost:3333/pokemons
+- [x] GET - http://localhost:3333/pokemons/{pokemonname}
+- [x] DELETE - http://localhost:3333/pokemons/{id}
+- [x] POST - http://localhost:3333/pokemons/ (passando JSON no corpo da requisição)
+ Extra:
+- [x] GET - http://localhost:3333/api-docs
-## Só isso?
-
-Só!...mas se quiser ir além, tente preparar o projeto para ser executado de maneira simples e prática, se coloque no lugar de alguém com menos conhecimentos, que precisa ver o que você desenvolveu.
-
-ps: Se fizer deploy em algum servidor ou utilizar alguma ferramenta que facilite a execução (ex: docker), será um diferencial.
-
-
-Boa sorte! (^_^)
+### Por favor, fiquem a vontade para críticas e feedbacks de melhoria. Eu ficaria muito feliz em saber como progredir.
diff --git a/backend/app/controllers/PokemonController.ts b/backend/app/controllers/PokemonController.ts
new file mode 100644
index 000000000..630462139
--- /dev/null
+++ b/backend/app/controllers/PokemonController.ts
@@ -0,0 +1,174 @@
+import { Response, Request } from "express";
+import Pokemon, { PokemonInterface } from "../models/Pokemon";
+
+const getPokemons = async (req: Request, res: Response): Promise => {
+ try {
+ const pokemons: PokemonInterface[] = await Pokemon.find({});
+
+ const count = await Pokemon.countDocuments();
+ console.log(count);
+ res.json(pokemons);
+ } catch (err) {
+ res.status(500);
+ res.end();
+ console.error("Error message:", err);
+ }
+};
+
+const getPokemonByName = async (req: Request, res: Response): Promise => {
+ try {
+ const name = req.params.name.toString();
+
+ //const namesearch = new RegExp(name, "i");
+ //const namesearch = { $regex: name, $options: "i" };
+
+ //console.log(namesearch);
+
+ const pokemon: PokemonInterface[] = await Pokemon.find({
+ Name: name,
+ });
+
+ if (pokemon[0]) {
+ res.status(200);
+ res.json(pokemon);
+ } else {
+ res.status(404);
+ res.json({ erro: "Pokemon não encontrado" });
+ }
+ } catch (err) {
+ res.status(500);
+ res.end();
+ console.error("Error message:", err);
+ }
+};
+
+const createPokemon = async (req: Request, res: Response): Promise => {
+ try {
+ const body = req.body as Pick<
+ PokemonInterface,
+ | "Row"
+ | "Name"
+ | "Pokedex Number"
+ | "Img name"
+ | "Generation"
+ | "Evolution Stage"
+ | "Evolved"
+ | "FamilyID"
+ | "Cross Gen"
+ | "Type 1"
+ | "Type 2"
+ | "Weather 1"
+ | "Weather 2"
+ | "STAT TOTAL"
+ | "ATK"
+ | "DEF"
+ | "STA"
+ | "Legendary"
+ | "Aquireable"
+ | "Spawns"
+ | "Regional"
+ | "Raidable"
+ | "Hatchable"
+ | "Shiny"
+ | "Nest"
+ | "New"
+ | "Not-Gettable"
+ | "Future Evolve"
+ | "100% CP @ 40"
+ | "100% CP @ 39"
+ >;
+
+ const pokemon: PokemonInterface = new Pokemon({
+ Row: body.Row,
+ Name: body.Name,
+ "Pokedex Number": body["Pokedex Number"],
+ "Img name": req.file.filename,
+ Generation: body.Generation,
+ "Evolution Stage": body["Evolution Stage"],
+ Evolved: body.Evolved,
+ FamilyID: body.FamilyID,
+ "Cross Gen": body["Cross Gen"],
+ "Type 1": body["Type 1"],
+ "Type 2": body["Type 2"],
+ "Weather 1": body["Weather 1"],
+ "Weather 2": body["Weather 2"],
+ "STAT TOTAL": body["STAT TOTAL"],
+ ATK: body.ATK,
+ DEF: body.DEF,
+ STA: body.STA,
+ Legendary: body.Legendary,
+ Aquireable: body.Aquireable,
+ Spawns: body.Spawns,
+ Regional: body.Regional,
+ Raidable: body.Raidable,
+ Hatchable: body.Hatchable,
+ Shiny: body.Shiny,
+ Nest: body.Nest,
+ New: body.New,
+ "Not-Gettable": body["Not-Gettable"],
+ "Future Evolve": body["Future Evolve"],
+ "100% CP @ 40": body["100% CP @ 40"],
+ "100% CP @ 39": body["100% CP @ 39"],
+ });
+
+ await pokemon.save();
+
+ res.status(201).json({
+ Row: pokemon.Row,
+ Name: pokemon.Name,
+ "Pokedex Number": pokemon["Pokedex Number"],
+ "Img name": pokemon["Img name"],
+ Generation: pokemon.Generation,
+ "Evolution Stage": pokemon["Evolution Stage"],
+ Evolved: pokemon.Evolved,
+ FamilyID: pokemon.FamilyID,
+ "Cross Gen": pokemon["Cross Gen"],
+ "Type 1": pokemon["Type 1"],
+ "Type 2": pokemon["Type 2"],
+ "Weather 1": pokemon["Weather 1"],
+ "Weather 2": pokemon["Weather 2"],
+ "STAT TOTAL": pokemon["STAT TOTAL"],
+ ATK: pokemon.ATK,
+ DEF: pokemon.DEF,
+ STA: pokemon.STA,
+ Legendary: pokemon.Legendary,
+ Aquireable: pokemon.Aquireable,
+ Spawns: pokemon.Spawns,
+ Regional: pokemon.Regional,
+ Raidable: pokemon.Raidable,
+ Hatchable: pokemon.Hatchable,
+ Shiny: pokemon.Shiny,
+ Nest: pokemon.Nest,
+ New: pokemon.New,
+ "Not-Gettable": pokemon["Not-Gettable"],
+ "Future Evolve": pokemon["Future Evolve"],
+ "100% CP @ 40": pokemon["100% CP @ 40"],
+ "100% CP @ 39": pokemon["100% CP @ 39"],
+ });
+ } catch (err) {
+ res.status(500);
+ res.end();
+ console.error("Error message:", err);
+ }
+};
+
+const deletePokemon = async (req: Request, res: Response): Promise => {
+ try {
+ const id = req.params.id.toString();
+
+ if (Pokemon.findById(id)) {
+ await Pokemon.findByIdAndDelete(id);
+ res.status(204);
+ res.end();
+ } else {
+ res.status(404);
+ res.json({ erro: "ID não encontrada" });
+ }
+ } catch (err) {
+ res.status(500);
+ res.end();
+ console.error("Error message:", err);
+ }
+};
+
+export { getPokemons, getPokemonByName, createPokemon, deletePokemon };
diff --git a/backend/app/models/Pokemon.ts b/backend/app/models/Pokemon.ts
new file mode 100644
index 000000000..8c880f43a
--- /dev/null
+++ b/backend/app/models/Pokemon.ts
@@ -0,0 +1,73 @@
+import mongoose, { Schema, Document } from "mongoose";
+
+export interface PokemonInterface extends Document {
+ Row: Number;
+ Name: String;
+ "Pokedex Number": Number;
+ "Img name": Number;
+ Generation: Number;
+ "Evolution Stage": Number;
+ Evolved: Boolean;
+ FamilyID: Number;
+ "Cross Gen": Boolean;
+ "Type 1": String;
+ "Type 2"?: String;
+ "Weather 1": String;
+ "Weather 2"?: String;
+ "STAT TOTAL": Number;
+ ATK: Number;
+ DEF: Number;
+ STA: Number;
+ Legendary: Boolean;
+ Aquireable: Number;
+ Spawns: Boolean;
+ Regional: Boolean;
+ Raidable: Boolean;
+ Hatchable: Number;
+ Shiny: Boolean;
+ Nest: Boolean;
+ New: Boolean;
+ "Not-Gettable": Boolean;
+ "Future Evolve": Boolean;
+ "100% CP @ 40": Number;
+ "100% CP @ 39": Number;
+}
+
+const PokemonSchema: Schema = new Schema({
+ Row: { type: String },
+ Name: { type: String, required: true },
+ "Pokedex Number": { type: String, required: true },
+ "Img name": { type: String, required: true },
+ Generation: { type: String, required: true },
+ "Evolution Stage": { type: String, required: true },
+ FamilyID: { type: String, required: true },
+ "Type 1": { type: String, required: true },
+ "Type 2": { type: String },
+ "Weather 1": { type: String, required: true },
+ "Weather 2": { type: String },
+ "STAT TOTAL": { type: String, required: true },
+ ATK: { type: String, required: true },
+ DEF: { type: String, required: true },
+ STA: { type: String, required: true },
+ Hatchable: { type: String, required: true },
+ "100% CP @ 40": { type: String, required: true },
+ "100% CP @ 39": { type: String, required: true },
+ Evolved: {
+ type: String,
+ required: true,
+ enum: ["0", "1"],
+ },
+ "Cross Gen": { type: String, required: true, enum: ["0", "1"] },
+ Legendary: { type: String, required: true, enum: ["0", "1"] },
+ Aquireable: { type: String, required: true, enum: ["0", "1"] },
+ Spawns: { type: String, required: true, enum: ["0", "1"] },
+ Regional: { type: String, required: true, enum: ["0", "1"] },
+ Raidable: { type: String, required: true, enum: ["0", "1"] },
+ Shiny: { type: String, required: true, enum: ["0", "1"] },
+ Nest: { type: String, required: true, enum: ["0", "1"] },
+ New: { type: String, required: true, enum: ["0", "1"] },
+ "Not-Gettable": { type: String, required: true, enum: ["0", "1"] },
+ "Future Evolve": { type: String, required: true, enum: ["0", "1"] },
+});
+
+export default mongoose.model("Pokemon", PokemonSchema);
diff --git a/backend/config/multerConfig.ts b/backend/config/multerConfig.ts
new file mode 100644
index 000000000..457f494ed
--- /dev/null
+++ b/backend/config/multerConfig.ts
@@ -0,0 +1,18 @@
+import path from "path";
+import crypto from "crypto";
+import multer from "multer";
+
+export default {
+ dest: path.resolve(__dirname, "..", "images"),
+ storage: multer.diskStorage({
+ destination: (req, file, cb) => {
+ cb(null, path.resolve(__dirname, "..", "images"));
+ },
+ filename: (req, file, cb) => {
+ const fileHash = crypto.randomBytes(10).toString("hex");
+ const filename = `${fileHash}-${file.originalname}`;
+
+ return cb(null, filename);
+ },
+ }),
+};
diff --git a/backend/docs/swagger.json b/backend/docs/swagger.json
new file mode 100644
index 000000000..c713aa4d0
--- /dev/null
+++ b/backend/docs/swagger.json
@@ -0,0 +1,276 @@
+{
+ "openapi": "3.0.1",
+ "info": {
+ "title": "RedFox - Test Wesley",
+ "description": "Documentação da API",
+ "version": "1.0.0"
+ },
+ "servers": [
+ {
+ "url": "http://localhost:3333/"
+ }
+ ],
+ "tags": [
+ {
+ "name": "Pokemons",
+ "description": "Rotas disponíveis para pokemons"
+ }
+ ],
+ "paths": {
+ "/pokemons": {
+ "get": {
+ "tags": ["pokemons"],
+ "summary": "Esta rota retorna todos os pokemons cadastrados",
+ "operationId": "getPokemons",
+ "responses": {
+ "200": {
+ "description": "OK",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/Pokemons"
+ }
+ }
+ }
+ }
+ }
+ },
+ "post": {
+ "tags": ["pokemons"],
+ "summary": "Adicione um novo pokemon",
+ "operationId": "createPokemon",
+ "requestBody": {
+ "description": "Objeto do pokemon que deve ser adicionado",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/pokemons"
+ }
+ }
+ },
+ "required": true
+ },
+ "responses": {
+ "201": {
+ "description": "Created",
+ "content": {}
+ }
+ },
+ "x-codegen-request-body-name": "body"
+ }
+ },
+
+ "/pokemons/{id}": {
+ "delete": {
+ "tags": ["pokemons"],
+ "summary": "Apaga o pokemon referente ao ID passado",
+ "operationId": "deletePokemon",
+ "parameters": [
+ {
+ "name": "id",
+ "in": "path",
+ "description": "Id do pokemon a ser apagado",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "204": {
+ "description": "No Content",
+ "content": {}
+ }
+ }
+ }
+ },
+
+ "/pokemons/{name}": {
+ "get": {
+ "tags": ["pokemons"],
+ "summary": "Esta rota retorna o pokemons pelo nome informado",
+ "operationId": "getPokemonsByName",
+ "parameters": [
+ {
+ "name": "name",
+ "in": "path",
+ "description": "Informe o nome a ser buscado",
+ "required": true,
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "OK",
+ "content": {
+ "application/json": {
+ "schema": {
+ "$ref": "#/components/schemas/pokemons"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "components": {
+ "schemas": {
+ "pokemons": {
+ "type": "object",
+ "properties": {
+ "Name": {
+ "type": "string",
+ "description": "Nome do Pokemon",
+ "example": "Bulbasaur"
+ },
+ "Pokedex Number": {
+ "type": "number",
+ "description": "Id do Pokemon na Pokedex",
+ "example": 1
+ },
+ "Img name": {
+ "type": "number",
+ "description": "Nome do arquivo da imagem do pokemon",
+ "example": 1
+ },
+ "Generation": {
+ "type": "number",
+ "description": "Geração do Pokemon",
+ "example": 1
+ },
+ "Evolution Stage": {
+ "type": "number",
+ "description": "Estágio da evolução do pokemon",
+ "example": 1
+ },
+ "Evolved": {
+ "type": "boolean",
+ "description": "Boolean que representa se o pokemon já evoluiu",
+ "example": 0
+ },
+ "FamilyID": {
+ "type": "number",
+ "description": "Id da família do Pokemon",
+ "example": 1
+ },
+ "Cross Gen": {
+ "type": "boolean",
+ "description": "Cross Generation",
+ "example": 0
+ },
+ "Type 1": {
+ "type": "string",
+ "description": "Tipo primário do pokemon",
+ "example": "grass"
+ },
+ "Type 2": {
+ "type": "string",
+ "description": "Tipo secundário do pokemon",
+ "example": "poison"
+ },
+ "Weather 1": {
+ "type": "string",
+ "description": "Clima primário do pokemon",
+ "example": "Sunny/clear"
+ },
+ "Weather 2": {
+ "type": "string",
+ "description": "Clima secundário do pokemon",
+ "example": "Cloudy"
+ },
+ "STAT TOTAL": {
+ "type": "number",
+ "description": "Valor da soma dos atributos do pokemon",
+ "example": 326
+ },
+ "ATK": {
+ "type": "number",
+ "description": "Valor do atributos ATK do pokemon",
+ "example": 118
+ },
+ "DEF": {
+ "type": "number",
+ "description": "Valor do atributos DEF do pokemon",
+ "example": 118
+ },
+ "STA": {
+ "type": "number",
+ "description": "Valor do atributos STA do pokemon",
+ "example": 90
+ },
+ "Legendary": {
+ "type": "boolean",
+ "description": "Boolean que representa se o pokemon é lendário",
+ "example": 0
+ },
+ "Aquireable": {
+ "type": "boolean",
+ "description": "Boolean que representa se o pokemon é Aquireavel",
+ "example": 1
+ },
+ "Spaws": {
+ "type": "boolean",
+ "description": "Boolean que representa se o pokemon aparece",
+ "example": 1
+ },
+ "Regional": {
+ "type": "boolean",
+ "description": "Boolean que representa se o pokemon é da região",
+ "example": 0
+ },
+ "Raidable": {
+ "type": "boolean",
+ "description": "Boolean que representa se o pokemon tem ataque rápido",
+ "example": 0
+ },
+ "Hatchable": {
+ "type": "number",
+ "description": "Pokemon Hatchable",
+ "example": 5
+ },
+ "Shiny": {
+ "type": "boolean",
+ "description": "Boolean que representa se o pokemon é brilhante",
+ "example": 0
+ },
+ "Nest": {
+ "type": "boolean",
+ "description": "Boolean que representa pokemon nest",
+ "example": 1
+ },
+ "New": {
+ "type": "boolean",
+ "description": "Boolean que representa se o pokemon é novo",
+ "example": 0
+ },
+ "Not-Gettable": {
+ "type": "boolean",
+ "description": "Boolean que representa se o pokemon não pode ser pegável",
+ "example": 0
+ },
+ "Future Evolve": {
+ "type": "boolean",
+ "description": "Boolean que representa se o pokemon tem evolução futura",
+ "example": 0
+ },
+ "100% CP @ 40": {
+ "type": "number",
+ "description": "Combat points cp 40",
+ "example": 981
+ },
+ "100% CP @ 39": {
+ "type": "number",
+ "description": "Combat points cp 39",
+ "example": 967
+ }
+ },
+ "xml": {
+ "name": "pokemons"
+ }
+ }
+ }
+ }
+}
diff --git a/backend/package.json b/backend/package.json
new file mode 100644
index 000000000..48319377c
--- /dev/null
+++ b/backend/package.json
@@ -0,0 +1,28 @@
+{
+ "name": "backend",
+ "version": "1.0.0",
+ "main": "index.ts",
+ "license": "MIT",
+ "scripts": {
+ "dev": "npx nodemon --exec ts-node --files src/index.ts"
+ },
+ "dependencies": {
+ "cors": "^2.8.5",
+ "express": "^4.17.1",
+ "mongodb": "^3.6.4",
+ "mongoose": "^5.12.3",
+ "multer": "^1.4.2",
+ "swagger-ui-express": "^4.1.6"
+ },
+ "devDependencies": {
+ "@types/cors": "^2.8.10",
+ "@types/express": "^4.17.11",
+ "@types/mongodb": "^3.6.8",
+ "@types/mongoose": "^5.10.4",
+ "@types/multer": "^1.4.5",
+ "@types/swagger-ui-express": "^4.1.2",
+ "nodemon": "^2.0.7",
+ "ts-node": "^9.1.1",
+ "typescript": "^4.1.5"
+ }
+}
diff --git a/backend/src/api-doc.png b/backend/src/api-doc.png
new file mode 100644
index 000000000..f2506dd03
Binary files /dev/null and b/backend/src/api-doc.png differ
diff --git a/backend/src/index.ts b/backend/src/index.ts
new file mode 100644
index 000000000..a7eb8967f
--- /dev/null
+++ b/backend/src/index.ts
@@ -0,0 +1,28 @@
+import express, { Request, Response, Application } from "express";
+import routes from "./routes";
+import mongoose from "mongoose";
+import cors from "cors";
+import swaggerUI from "swagger-ui-express";
+import * as swaggerDoc from "../docs/swagger.json";
+import uploadConfig from "../config/multerConfig";
+
+const PORT = process.env.PORT || 3333;
+
+mongoose
+ .connect("mongodb://localhost:27017/test", { useNewUrlParser: true })
+ .then(() => {
+ const app: Application = express();
+
+ app.use(cors());
+ app.use(express.json({ limit: "10mb" }));
+ app.use(express.urlencoded({ extended: true, limit: "10mb" }));
+ app.use("/images", express.static(uploadConfig.dest));
+ app.use("/api-docs", swaggerUI.serve, swaggerUI.setup(swaggerDoc));
+ app.use(routes);
+
+ app.get("/", (req: Request, res: Response) =>
+ res.send("RedFox - Teste Wesley M Oliveira")
+ );
+
+ app.listen(PORT, () => console.log("O Servidor está rodando"));
+ });
diff --git a/backend/src/routes.ts b/backend/src/routes.ts
new file mode 100644
index 000000000..c27158941
--- /dev/null
+++ b/backend/src/routes.ts
@@ -0,0 +1,23 @@
+import { Router } from "express";
+import multer from "multer";
+import multerConfig from "../config/multerConfig";
+
+import {
+ getPokemons,
+ getPokemonByName,
+ createPokemon,
+ deletePokemon,
+} from "../app/controllers/PokemonController";
+
+const routes = Router();
+const upload = multer(multerConfig);
+
+routes.get("/pokemons", getPokemons);
+
+routes.get("/pokemons/:name", getPokemonByName);
+
+routes.post("/pokemons", upload.single("avatar"), createPokemon);
+
+routes.delete("/pokemons/:id", deletePokemon);
+
+export default routes;
diff --git a/backend/tsconfig.json b/backend/tsconfig.json
new file mode 100644
index 000000000..073c2f8c3
--- /dev/null
+++ b/backend/tsconfig.json
@@ -0,0 +1,71 @@
+{
+ "compilerOptions": {
+ /* Visit https://aka.ms/tsconfig.json to read more about this file */
+
+ /* Basic Options */
+ // "incremental": true, /* Enable incremental compilation */
+ "baseUrl": "src",
+ "target": "es5" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */,
+ "module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
+ "resolveJsonModule": true,
+ // "lib": [], /* Specify library files to be included in the compilation. */
+ // "allowJs": true, /* Allow javascript files to be compiled. */
+ // "checkJs": true, /* Report errors in .js files. */
+ // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
+ // "declaration": true, /* Generates corresponding '.d.ts' file. */
+ // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
+ // "sourceMap": true, /* Generates corresponding '.map' file. */
+ // "outFile": "./", /* Concatenate and emit output to single file. */
+ // "outDir": "./", /* Redirect output structure to the directory. */
+ // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
+ // "composite": true, /* Enable project compilation */
+ // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */
+ // "removeComments": true, /* Do not emit comments to output. */
+ // "noEmit": true, /* Do not emit outputs. */
+ // "importHelpers": true, /* Import emit helpers from 'tslib'. */
+ // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
+ // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
+
+ /* Strict Type-Checking Options */
+ "strict": true /* Enable all strict type-checking options. */,
+ // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
+ // "strictNullChecks": true, /* Enable strict null checks. */
+ // "strictFunctionTypes": true, /* Enable strict checking of function types. */
+ // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
+ "strictPropertyInitialization": false /* Enable strict checking of property initialization in classes. */,
+ // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
+ // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
+
+ /* Additional Checks */
+ // "noUnusedLocals": true, /* Report errors on unused locals. */
+ // "noUnusedParameters": true, /* Report errors on unused parameters. */
+ // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
+ // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
+
+ /* Module Resolution Options */
+ //"moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */,
+ // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
+ // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
+ // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
+ // "typeRoots": [], /* List of folders to include type definitions from. */
+ // "types": [], /* Type declaration files to be included in compilation. */
+ // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
+ "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
+ // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
+ // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
+
+ /* Source Map Options */
+ // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
+ // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
+ // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
+ // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
+
+ /* Experimental Options */
+ "experimentalDecorators": true /* Enables experimental support for ES7 decorators. */,
+ "emitDecoratorMetadata": true /* Enables experimental support for emitting type metadata for decorators. */,
+
+ /* Advanced Options */
+ "skipLibCheck": true /* Skip type checking of declaration files. */,
+ "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
+ }
+}
diff --git a/backend/yarn.lock b/backend/yarn.lock
new file mode 100644
index 000000000..f93129bba
--- /dev/null
+++ b/backend/yarn.lock
@@ -0,0 +1,1605 @@
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+
+"@sindresorhus/is@^0.14.0":
+ version "0.14.0"
+ resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea"
+ integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==
+
+"@szmarczak/http-timer@^1.1.2":
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421"
+ integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==
+ dependencies:
+ defer-to-connect "^1.0.1"
+
+"@types/body-parser@*":
+ version "1.19.0"
+ resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.0.tgz#0685b3c47eb3006ffed117cdd55164b61f80538f"
+ integrity sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ==
+ dependencies:
+ "@types/connect" "*"
+ "@types/node" "*"
+
+"@types/bson@*":
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/@types/bson/-/bson-4.0.3.tgz#30889d2ffde6262abbe38659364c631454999fbf"
+ integrity sha512-mVRvYnTOZJz3ccpxhr3wgxVmSeiYinW+zlzQz3SXWaJmD1DuL05Jeq7nKw3SnbKmbleW5qrLG5vdyWe/A9sXhw==
+ dependencies:
+ "@types/node" "*"
+
+"@types/connect@*":
+ version "3.4.34"
+ resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.34.tgz#170a40223a6d666006d93ca128af2beb1d9b1901"
+ integrity sha512-ePPA/JuI+X0vb+gSWlPKOY0NdNAie/rPUqX2GUPpbZwiKTkSPhjXWuee47E4MtE54QVzGCQMQkAL6JhV2E1+cQ==
+ dependencies:
+ "@types/node" "*"
+
+"@types/cors@^2.8.10":
+ version "2.8.10"
+ resolved "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.10.tgz#61cc8469849e5bcdd0c7044122265c39cec10cf4"
+ integrity sha512-C7srjHiVG3Ey1nR6d511dtDkCEjxuN9W1HWAEjGq8kpcwmNM6JJkpC0xvabM7BXTG2wDq8Eu33iH9aQKa7IvLQ==
+
+"@types/express-serve-static-core@^4.17.18":
+ version "4.17.19"
+ resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.19.tgz#00acfc1632e729acac4f1530e9e16f6dd1508a1d"
+ integrity sha512-DJOSHzX7pCiSElWaGR8kCprwibCB/3yW6vcT8VG3P0SJjnv19gnWG/AZMfM60Xj/YJIp/YCaDHyvzsFVeniARA==
+ dependencies:
+ "@types/node" "*"
+ "@types/qs" "*"
+ "@types/range-parser" "*"
+
+"@types/express@*", "@types/express@^4.17.11":
+ version "4.17.11"
+ resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.11.tgz#debe3caa6f8e5fcda96b47bd54e2f40c4ee59545"
+ integrity sha512-no+R6rW60JEc59977wIxreQVsIEOAYwgCqldrA/vkpCnbD7MqTefO97lmoBe4WE0F156bC4uLSP1XHDOySnChg==
+ dependencies:
+ "@types/body-parser" "*"
+ "@types/express-serve-static-core" "^4.17.18"
+ "@types/qs" "*"
+ "@types/serve-static" "*"
+
+"@types/mime@^1":
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a"
+ integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==
+
+"@types/mongodb@*", "@types/mongodb@^3.5.27", "@types/mongodb@^3.6.8":
+ version "3.6.11"
+ resolved "https://registry.yarnpkg.com/@types/mongodb/-/mongodb-3.6.11.tgz#918ecc4cbe6fa15d26c4fe12c00cf0d4c3cf421d"
+ integrity sha512-j0WPV+MQArOYULfCcBALomTXsDMt3iQl8dHa99jrf4U9ENgTQC3LKJbeXYL7TiClofzFOwwICkxEdlB5XhihGw==
+ dependencies:
+ "@types/bson" "*"
+ "@types/node" "*"
+
+"@types/mongoose@^5.10.4":
+ version "5.10.4"
+ resolved "https://registry.yarnpkg.com/@types/mongoose/-/mongoose-5.10.4.tgz#183918f7c6150a05c2081b29de2cf2e839b3206b"
+ integrity sha512-U7fNDcTcdaSGzQ3+mlSBeebiYr6eaacJi330LTLOEh8Sm6mXfuec70ag/UXkL+alFm7pfAjFqfc7jEaJEJvAHQ==
+ dependencies:
+ "@types/mongodb" "*"
+ "@types/node" "*"
+
+"@types/multer@^1.4.5":
+ version "1.4.5"
+ resolved "https://registry.yarnpkg.com/@types/multer/-/multer-1.4.5.tgz#db0557562307e9adb6661a9500c334cd7ddd0cd9"
+ integrity sha512-9b/0a8JyrR0r2nQhL73JR86obWL7cogfX12augvlrvcpciCo/hkvEsgu80Z4S2g2DHGVXHr8pUIi1VhqFJ8Ufw==
+ dependencies:
+ "@types/express" "*"
+
+"@types/node@*":
+ version "14.14.37"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.37.tgz#a3dd8da4eb84a996c36e331df98d82abd76b516e"
+ integrity sha512-XYmBiy+ohOR4Lh5jE379fV2IU+6Jn4g5qASinhitfyO71b/sCo6MKsMLF5tc7Zf2CE8hViVQyYSobJNke8OvUw==
+
+"@types/qs@*":
+ version "6.9.6"
+ resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.6.tgz#df9c3c8b31a247ec315e6996566be3171df4b3b1"
+ integrity sha512-0/HnwIfW4ki2D8L8c9GVcG5I72s9jP5GSLVF0VIXDW00kmIpA6O33G7a8n59Tmh7Nz0WUC3rSb7PTY/sdW2JzA==
+
+"@types/range-parser@*":
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.3.tgz#7ee330ba7caafb98090bece86a5ee44115904c2c"
+ integrity sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==
+
+"@types/serve-static@*":
+ version "1.13.9"
+ resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.9.tgz#aacf28a85a05ee29a11fb7c3ead935ac56f33e4e"
+ integrity sha512-ZFqF6qa48XsPdjXV5Gsz0Zqmux2PerNd3a/ktL45mHpa19cuMi/cL8tcxdAx497yRh+QtYPuofjT9oWw9P7nkA==
+ dependencies:
+ "@types/mime" "^1"
+ "@types/node" "*"
+
+"@types/swagger-ui-express@^4.1.2":
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/@types/swagger-ui-express/-/swagger-ui-express-4.1.2.tgz#cfc884904a104c3193f46f423d04ee0416be1ef4"
+ integrity sha512-t9teFTU8dKe69rX9EwL6OM2hbVquYdFM+sQ0REny4RalPlxAm+zyP04B12j4c7qEuDS6CnlwICywqWStPA3v4g==
+ dependencies:
+ "@types/express" "*"
+ "@types/serve-static" "*"
+
+abbrev@1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
+ integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
+
+accepts@~1.3.7:
+ version "1.3.7"
+ resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
+ integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==
+ dependencies:
+ mime-types "~2.1.24"
+ negotiator "0.6.2"
+
+ansi-align@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.0.tgz#b536b371cf687caaef236c18d3e21fe3797467cb"
+ integrity sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==
+ dependencies:
+ string-width "^3.0.0"
+
+ansi-regex@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
+ integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
+
+ansi-regex@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
+ integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
+
+ansi-styles@^4.1.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
+ integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
+ dependencies:
+ color-convert "^2.0.1"
+
+anymatch@~3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142"
+ integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
+ dependencies:
+ normalize-path "^3.0.0"
+ picomatch "^2.0.4"
+
+append-field@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/append-field/-/append-field-1.0.0.tgz#1e3440e915f0b1203d23748e78edd7b9b5b43e56"
+ integrity sha1-HjRA6RXwsSA9I3SOeO3XubW0PlY=
+
+arg@^4.1.0:
+ version "4.1.3"
+ resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089"
+ integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==
+
+array-flatten@1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
+ integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=
+
+balanced-match@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
+ integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
+
+binary-extensions@^2.0.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
+ integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
+
+bl@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/bl/-/bl-2.2.1.tgz#8c11a7b730655c5d56898cdc871224f40fd901d5"
+ integrity sha512-6Pesp1w0DEX1N550i/uGV/TqucVL4AM/pgThFSN/Qq9si1/DF9aIHs1BxD8V/QU0HoeHO6cQRTAuYnLPKq1e4g==
+ dependencies:
+ readable-stream "^2.3.5"
+ safe-buffer "^5.1.1"
+
+bluebird@3.5.1:
+ version "3.5.1"
+ resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9"
+ integrity sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA==
+
+body-parser@1.19.0:
+ version "1.19.0"
+ resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a"
+ integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==
+ dependencies:
+ bytes "3.1.0"
+ content-type "~1.0.4"
+ debug "2.6.9"
+ depd "~1.1.2"
+ http-errors "1.7.2"
+ iconv-lite "0.4.24"
+ on-finished "~2.3.0"
+ qs "6.7.0"
+ raw-body "2.4.0"
+ type-is "~1.6.17"
+
+boxen@^4.2.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/boxen/-/boxen-4.2.0.tgz#e411b62357d6d6d36587c8ac3d5d974daa070e64"
+ integrity sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==
+ dependencies:
+ ansi-align "^3.0.0"
+ camelcase "^5.3.1"
+ chalk "^3.0.0"
+ cli-boxes "^2.2.0"
+ string-width "^4.1.0"
+ term-size "^2.1.0"
+ type-fest "^0.8.1"
+ widest-line "^3.1.0"
+
+brace-expansion@^1.1.7:
+ version "1.1.11"
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
+ integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
+ dependencies:
+ balanced-match "^1.0.0"
+ concat-map "0.0.1"
+
+braces@~3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
+ integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
+ dependencies:
+ fill-range "^7.0.1"
+
+bson@^1.1.4:
+ version "1.1.6"
+ resolved "https://registry.yarnpkg.com/bson/-/bson-1.1.6.tgz#fb819be9a60cd677e0853aee4ca712a785d6618a"
+ integrity sha512-EvVNVeGo4tHxwi8L6bPj3y3itEvStdwvvlojVxxbyYfoaxJ6keLgrTuKdyfEAszFK+H3olzBuafE0yoh0D1gdg==
+
+buffer-from@^1.0.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
+ integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
+
+busboy@^0.2.11:
+ version "0.2.14"
+ resolved "https://registry.yarnpkg.com/busboy/-/busboy-0.2.14.tgz#6c2a622efcf47c57bbbe1e2a9c37ad36c7925453"
+ integrity sha1-bCpiLvz0fFe7vh4qnDetNseSVFM=
+ dependencies:
+ dicer "0.2.5"
+ readable-stream "1.1.x"
+
+bytes@3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
+ integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
+
+cacheable-request@^6.0.0:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912"
+ integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==
+ dependencies:
+ clone-response "^1.0.2"
+ get-stream "^5.1.0"
+ http-cache-semantics "^4.0.0"
+ keyv "^3.0.0"
+ lowercase-keys "^2.0.0"
+ normalize-url "^4.1.0"
+ responselike "^1.0.2"
+
+camelcase@^5.3.1:
+ version "5.3.1"
+ resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
+ integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
+
+chalk@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
+ integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
+ dependencies:
+ ansi-styles "^4.1.0"
+ supports-color "^7.1.0"
+
+chokidar@^3.2.2:
+ version "3.5.1"
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a"
+ integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==
+ dependencies:
+ anymatch "~3.1.1"
+ braces "~3.0.2"
+ glob-parent "~5.1.0"
+ is-binary-path "~2.1.0"
+ is-glob "~4.0.1"
+ normalize-path "~3.0.0"
+ readdirp "~3.5.0"
+ optionalDependencies:
+ fsevents "~2.3.1"
+
+ci-info@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
+ integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
+
+cli-boxes@^2.2.0:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f"
+ integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==
+
+clone-response@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b"
+ integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=
+ dependencies:
+ mimic-response "^1.0.0"
+
+color-convert@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
+ integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
+ dependencies:
+ color-name "~1.1.4"
+
+color-name@~1.1.4:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
+ integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
+
+concat-map@0.0.1:
+ version "0.0.1"
+ resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
+ integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
+
+concat-stream@^1.5.2:
+ version "1.6.2"
+ resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
+ integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
+ dependencies:
+ buffer-from "^1.0.0"
+ inherits "^2.0.3"
+ readable-stream "^2.2.2"
+ typedarray "^0.0.6"
+
+configstore@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96"
+ integrity sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==
+ dependencies:
+ dot-prop "^5.2.0"
+ graceful-fs "^4.1.2"
+ make-dir "^3.0.0"
+ unique-string "^2.0.0"
+ write-file-atomic "^3.0.0"
+ xdg-basedir "^4.0.0"
+
+content-disposition@0.5.3:
+ version "0.5.3"
+ resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd"
+ integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==
+ dependencies:
+ safe-buffer "5.1.2"
+
+content-type@~1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
+ integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
+
+cookie-signature@1.0.6:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
+ integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw=
+
+cookie@0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba"
+ integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==
+
+core-util-is@~1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
+ integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
+
+cors@^2.8.5:
+ version "2.8.5"
+ resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29"
+ integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==
+ dependencies:
+ object-assign "^4"
+ vary "^1"
+
+create-require@^1.1.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"
+ integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==
+
+crypto-random-string@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5"
+ integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==
+
+debug@2.6.9, debug@^2.2.0:
+ version "2.6.9"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
+ integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
+ dependencies:
+ ms "2.0.0"
+
+debug@3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
+ integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==
+ dependencies:
+ ms "2.0.0"
+
+debug@^3.2.6:
+ version "3.2.7"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
+ integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
+ dependencies:
+ ms "^2.1.1"
+
+decompress-response@^3.3.0:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3"
+ integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=
+ dependencies:
+ mimic-response "^1.0.0"
+
+deep-extend@^0.6.0:
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
+ integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
+
+defer-to-connect@^1.0.1:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591"
+ integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==
+
+denque@^1.4.1:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/denque/-/denque-1.5.0.tgz#773de0686ff2d8ec2ff92914316a47b73b1c73de"
+ integrity sha512-CYiCSgIF1p6EUByQPlGkKnP1M9g0ZV3qMIrqMqZqdwazygIA/YP2vrbcyl1h/WppKJTdl1F85cXIle+394iDAQ==
+
+depd@~1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
+ integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
+
+destroy@~1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
+ integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
+
+dicer@0.2.5:
+ version "0.2.5"
+ resolved "https://registry.yarnpkg.com/dicer/-/dicer-0.2.5.tgz#5996c086bb33218c812c090bddc09cd12facb70f"
+ integrity sha1-WZbAhrszIYyBLAkL3cCc0S+stw8=
+ dependencies:
+ readable-stream "1.1.x"
+ streamsearch "0.1.2"
+
+diff@^4.0.1:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
+ integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
+
+dot-prop@^5.2.0:
+ version "5.3.0"
+ resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88"
+ integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==
+ dependencies:
+ is-obj "^2.0.0"
+
+duplexer3@^0.1.4:
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"
+ integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=
+
+ee-first@1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
+ integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
+
+emoji-regex@^7.0.1:
+ version "7.0.3"
+ resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
+ integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
+
+emoji-regex@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
+ integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
+
+encodeurl@~1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
+ integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
+
+end-of-stream@^1.1.0:
+ version "1.4.4"
+ resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
+ integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
+ dependencies:
+ once "^1.4.0"
+
+escape-goat@^2.0.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675"
+ integrity sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==
+
+escape-html@~1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
+ integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=
+
+etag@~1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
+ integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
+
+express@^4.17.1:
+ version "4.17.1"
+ resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134"
+ integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==
+ dependencies:
+ accepts "~1.3.7"
+ array-flatten "1.1.1"
+ body-parser "1.19.0"
+ content-disposition "0.5.3"
+ content-type "~1.0.4"
+ cookie "0.4.0"
+ cookie-signature "1.0.6"
+ debug "2.6.9"
+ depd "~1.1.2"
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ etag "~1.8.1"
+ finalhandler "~1.1.2"
+ fresh "0.5.2"
+ merge-descriptors "1.0.1"
+ methods "~1.1.2"
+ on-finished "~2.3.0"
+ parseurl "~1.3.3"
+ path-to-regexp "0.1.7"
+ proxy-addr "~2.0.5"
+ qs "6.7.0"
+ range-parser "~1.2.1"
+ safe-buffer "5.1.2"
+ send "0.17.1"
+ serve-static "1.14.1"
+ setprototypeof "1.1.1"
+ statuses "~1.5.0"
+ type-is "~1.6.18"
+ utils-merge "1.0.1"
+ vary "~1.1.2"
+
+fill-range@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
+ integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
+ dependencies:
+ to-regex-range "^5.0.1"
+
+finalhandler@~1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d"
+ integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==
+ dependencies:
+ debug "2.6.9"
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ on-finished "~2.3.0"
+ parseurl "~1.3.3"
+ statuses "~1.5.0"
+ unpipe "~1.0.0"
+
+forwarded@~0.1.2:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
+ integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=
+
+fresh@0.5.2:
+ version "0.5.2"
+ resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
+ integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
+
+fsevents@~2.3.1:
+ version "2.3.2"
+ resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
+ integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
+
+get-stream@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
+ integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==
+ dependencies:
+ pump "^3.0.0"
+
+get-stream@^5.1.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3"
+ integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==
+ dependencies:
+ pump "^3.0.0"
+
+glob-parent@~5.1.0:
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
+ integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
+ dependencies:
+ is-glob "^4.0.1"
+
+global-dirs@^2.0.1:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-2.1.0.tgz#e9046a49c806ff04d6c1825e196c8f0091e8df4d"
+ integrity sha512-MG6kdOUh/xBnyo9cJFeIKkLEc1AyFq42QTU4XiX51i2NEdxLxLWXIjEjmqKeSuKR7pAZjTqUVoT2b2huxVLgYQ==
+ dependencies:
+ ini "1.3.7"
+
+got@^9.6.0:
+ version "9.6.0"
+ resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85"
+ integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==
+ dependencies:
+ "@sindresorhus/is" "^0.14.0"
+ "@szmarczak/http-timer" "^1.1.2"
+ cacheable-request "^6.0.0"
+ decompress-response "^3.3.0"
+ duplexer3 "^0.1.4"
+ get-stream "^4.1.0"
+ lowercase-keys "^1.0.1"
+ mimic-response "^1.0.1"
+ p-cancelable "^1.0.0"
+ to-readable-stream "^1.0.0"
+ url-parse-lax "^3.0.0"
+
+graceful-fs@^4.1.2:
+ version "4.2.6"
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee"
+ integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==
+
+has-flag@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
+ integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
+
+has-flag@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
+ integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
+
+has-yarn@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77"
+ integrity sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==
+
+http-cache-semantics@^4.0.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390"
+ integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==
+
+http-errors@1.7.2:
+ version "1.7.2"
+ resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f"
+ integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==
+ dependencies:
+ depd "~1.1.2"
+ inherits "2.0.3"
+ setprototypeof "1.1.1"
+ statuses ">= 1.5.0 < 2"
+ toidentifier "1.0.0"
+
+http-errors@~1.7.2:
+ version "1.7.3"
+ resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06"
+ integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==
+ dependencies:
+ depd "~1.1.2"
+ inherits "2.0.4"
+ setprototypeof "1.1.1"
+ statuses ">= 1.5.0 < 2"
+ toidentifier "1.0.0"
+
+iconv-lite@0.4.24:
+ version "0.4.24"
+ resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
+ integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
+ dependencies:
+ safer-buffer ">= 2.1.2 < 3"
+
+ignore-by-default@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09"
+ integrity sha1-SMptcvbGo68Aqa1K5odr44ieKwk=
+
+import-lazy@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43"
+ integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=
+
+imurmurhash@^0.1.4:
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
+ integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
+
+inherits@2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
+ integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
+
+inherits@2.0.4, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
+ integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
+
+ini@1.3.7:
+ version "1.3.7"
+ resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.7.tgz#a09363e1911972ea16d7a8851005d84cf09a9a84"
+ integrity sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ==
+
+ini@~1.3.0:
+ version "1.3.8"
+ resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
+ integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
+
+ipaddr.js@1.9.1:
+ version "1.9.1"
+ resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
+ integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==
+
+is-binary-path@~2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
+ integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
+ dependencies:
+ binary-extensions "^2.0.0"
+
+is-ci@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c"
+ integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==
+ dependencies:
+ ci-info "^2.0.0"
+
+is-extglob@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
+ integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
+
+is-fullwidth-code-point@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
+ integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
+
+is-fullwidth-code-point@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
+ integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
+
+is-glob@^4.0.1, is-glob@~4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
+ integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
+ dependencies:
+ is-extglob "^2.1.1"
+
+is-installed-globally@^0.3.1:
+ version "0.3.2"
+ resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.3.2.tgz#fd3efa79ee670d1187233182d5b0a1dd00313141"
+ integrity sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g==
+ dependencies:
+ global-dirs "^2.0.1"
+ is-path-inside "^3.0.1"
+
+is-npm@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-4.0.0.tgz#c90dd8380696df87a7a6d823c20d0b12bbe3c84d"
+ integrity sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig==
+
+is-number@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
+ integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
+
+is-obj@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
+ integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
+
+is-path-inside@^3.0.1:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
+ integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
+
+is-typedarray@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
+ integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
+
+is-yarn-global@^0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232"
+ integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==
+
+isarray@0.0.1:
+ version "0.0.1"
+ resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
+ integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=
+
+isarray@~1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
+ integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
+
+json-buffer@3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898"
+ integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=
+
+kareem@2.3.2:
+ version "2.3.2"
+ resolved "https://registry.yarnpkg.com/kareem/-/kareem-2.3.2.tgz#78c4508894985b8d38a0dc15e1a8e11078f2ca93"
+ integrity sha512-STHz9P7X2L4Kwn72fA4rGyqyXdmrMSdxqHx9IXon/FXluXieaFA6KJ2upcHAHxQPQ0LeM/OjLrhFxifHewOALQ==
+
+keyv@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9"
+ integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==
+ dependencies:
+ json-buffer "3.0.0"
+
+latest-version@^5.0.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face"
+ integrity sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==
+ dependencies:
+ package-json "^6.3.0"
+
+lowercase-keys@^1.0.0, lowercase-keys@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f"
+ integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==
+
+lowercase-keys@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479"
+ integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==
+
+make-dir@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
+ integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
+ dependencies:
+ semver "^6.0.0"
+
+make-error@^1.1.1:
+ version "1.3.6"
+ resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2"
+ integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==
+
+media-typer@0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
+ integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=
+
+memory-pager@^1.0.2:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/memory-pager/-/memory-pager-1.5.0.tgz#d8751655d22d384682741c972f2c3d6dfa3e66b5"
+ integrity sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==
+
+merge-descriptors@1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
+ integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=
+
+methods@~1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
+ integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=
+
+mime-db@1.46.0:
+ version "1.46.0"
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.46.0.tgz#6267748a7f799594de3cbc8cde91def349661cee"
+ integrity sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==
+
+mime-types@~2.1.24:
+ version "2.1.29"
+ resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.29.tgz#1d4ab77da64b91f5f72489df29236563754bb1b2"
+ integrity sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==
+ dependencies:
+ mime-db "1.46.0"
+
+mime@1.6.0:
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
+ integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
+
+mimic-response@^1.0.0, mimic-response@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b"
+ integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==
+
+minimatch@^3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
+ integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
+ dependencies:
+ brace-expansion "^1.1.7"
+
+minimist@^1.2.0, minimist@^1.2.5:
+ version "1.2.5"
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
+ integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
+
+mkdirp@^0.5.1:
+ version "0.5.5"
+ resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
+ integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
+ dependencies:
+ minimist "^1.2.5"
+
+mongodb@3.6.5, mongodb@^3.6.4:
+ version "3.6.5"
+ resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-3.6.5.tgz#c27d786fd4d3c83dc19302483707d12a9d2aee5f"
+ integrity sha512-mQlYKw1iGbvJJejcPuyTaytq0xxlYbIoVDm2FODR+OHxyEiMR021vc32bTvamgBjCswsD54XIRwhg3yBaWqJjg==
+ dependencies:
+ bl "^2.2.1"
+ bson "^1.1.4"
+ denque "^1.4.1"
+ require_optional "^1.0.1"
+ safe-buffer "^5.1.2"
+ optionalDependencies:
+ saslprep "^1.0.0"
+
+mongoose-legacy-pluralize@1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/mongoose-legacy-pluralize/-/mongoose-legacy-pluralize-1.0.2.tgz#3ba9f91fa507b5186d399fb40854bff18fb563e4"
+ integrity sha512-Yo/7qQU4/EyIS8YDFSeenIvXxZN+ld7YdV9LqFVQJzTLye8unujAWPZ4NWKfFA+RNjh+wvTWKY9Z3E5XM6ZZiQ==
+
+mongoose@^5.12.3:
+ version "5.12.3"
+ resolved "https://registry.yarnpkg.com/mongoose/-/mongoose-5.12.3.tgz#e48b4cfd898bd779f6a776fc0e232bf790ac4c1a"
+ integrity sha512-frsSR9yeldaRpSUeTegXCSB0Tu5UGq8sHuHBuEV31Jk3COyxlKFQPL7UsdMhxPUCmk74FpOYSmNwxhWBEqgzQg==
+ dependencies:
+ "@types/mongodb" "^3.5.27"
+ bson "^1.1.4"
+ kareem "2.3.2"
+ mongodb "3.6.5"
+ mongoose-legacy-pluralize "1.0.2"
+ mpath "0.8.3"
+ mquery "3.2.5"
+ ms "2.1.2"
+ regexp-clone "1.0.0"
+ safe-buffer "5.2.1"
+ sift "7.0.1"
+ sliced "1.0.1"
+
+mpath@0.8.3:
+ version "0.8.3"
+ resolved "https://registry.yarnpkg.com/mpath/-/mpath-0.8.3.tgz#828ac0d187f7f42674839d74921970979abbdd8f"
+ integrity sha512-eb9rRvhDltXVNL6Fxd2zM9D4vKBxjVVQNLNijlj7uoXUy19zNDsIif5zR+pWmPCWNKwAtqyo4JveQm4nfD5+eA==
+
+mquery@3.2.5:
+ version "3.2.5"
+ resolved "https://registry.yarnpkg.com/mquery/-/mquery-3.2.5.tgz#8f2305632e4bb197f68f60c0cffa21aaf4060c51"
+ integrity sha512-VjOKHHgU84wij7IUoZzFRU07IAxd5kWJaDmyUzQlbjHjyoeK5TNeeo8ZsFDtTYnSgpW6n/nMNIHvE3u8Lbrf4A==
+ dependencies:
+ bluebird "3.5.1"
+ debug "3.1.0"
+ regexp-clone "^1.0.0"
+ safe-buffer "5.1.2"
+ sliced "1.0.1"
+
+ms@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
+ integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
+
+ms@2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
+ integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
+
+ms@2.1.2:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
+ integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
+
+ms@^2.1.1:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
+ integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
+
+multer@^1.4.2:
+ version "1.4.2"
+ resolved "https://registry.yarnpkg.com/multer/-/multer-1.4.2.tgz#2f1f4d12dbaeeba74cb37e623f234bf4d3d2057a"
+ integrity sha512-xY8pX7V+ybyUpbYMxtjM9KAiD9ixtg5/JkeKUTD6xilfDv0vzzOFcCp4Ljb1UU3tSOM3VTZtKo63OmzOrGi3Cg==
+ dependencies:
+ append-field "^1.0.0"
+ busboy "^0.2.11"
+ concat-stream "^1.5.2"
+ mkdirp "^0.5.1"
+ object-assign "^4.1.1"
+ on-finished "^2.3.0"
+ type-is "^1.6.4"
+ xtend "^4.0.0"
+
+negotiator@0.6.2:
+ version "0.6.2"
+ resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
+ integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
+
+nodemon@^2.0.7:
+ version "2.0.7"
+ resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-2.0.7.tgz#6f030a0a0ebe3ea1ba2a38f71bf9bab4841ced32"
+ integrity sha512-XHzK69Awgnec9UzHr1kc8EomQh4sjTQ8oRf8TsGrSmHDx9/UmiGG9E/mM3BuTfNeFwdNBvrqQq/RHL0xIeyFOA==
+ dependencies:
+ chokidar "^3.2.2"
+ debug "^3.2.6"
+ ignore-by-default "^1.0.1"
+ minimatch "^3.0.4"
+ pstree.remy "^1.1.7"
+ semver "^5.7.1"
+ supports-color "^5.5.0"
+ touch "^3.1.0"
+ undefsafe "^2.0.3"
+ update-notifier "^4.1.0"
+
+nopt@~1.0.10:
+ version "1.0.10"
+ resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee"
+ integrity sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=
+ dependencies:
+ abbrev "1"
+
+normalize-path@^3.0.0, normalize-path@~3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
+ integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
+
+normalize-url@^4.1.0:
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129"
+ integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==
+
+object-assign@^4, object-assign@^4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
+ integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
+
+on-finished@^2.3.0, on-finished@~2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
+ integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=
+ dependencies:
+ ee-first "1.1.1"
+
+once@^1.3.1, once@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
+ integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
+ dependencies:
+ wrappy "1"
+
+p-cancelable@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc"
+ integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==
+
+package-json@^6.3.0:
+ version "6.5.0"
+ resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0"
+ integrity sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==
+ dependencies:
+ got "^9.6.0"
+ registry-auth-token "^4.0.0"
+ registry-url "^5.0.0"
+ semver "^6.2.0"
+
+parseurl@~1.3.3:
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
+ integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
+
+path-to-regexp@0.1.7:
+ version "0.1.7"
+ resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
+ integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=
+
+picomatch@^2.0.4, picomatch@^2.2.1:
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
+ integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
+
+prepend-http@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
+ integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=
+
+process-nextick-args@~2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
+ integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
+
+proxy-addr@~2.0.5:
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf"
+ integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==
+ dependencies:
+ forwarded "~0.1.2"
+ ipaddr.js "1.9.1"
+
+pstree.remy@^1.1.7:
+ version "1.1.8"
+ resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.8.tgz#c242224f4a67c21f686839bbdb4ac282b8373d3a"
+ integrity sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==
+
+pump@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
+ integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
+ dependencies:
+ end-of-stream "^1.1.0"
+ once "^1.3.1"
+
+pupa@^2.0.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/pupa/-/pupa-2.1.1.tgz#f5e8fd4afc2c5d97828faa523549ed8744a20d62"
+ integrity sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==
+ dependencies:
+ escape-goat "^2.0.0"
+
+qs@6.7.0:
+ version "6.7.0"
+ resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc"
+ integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==
+
+range-parser@~1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
+ integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
+
+raw-body@2.4.0:
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332"
+ integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==
+ dependencies:
+ bytes "3.1.0"
+ http-errors "1.7.2"
+ iconv-lite "0.4.24"
+ unpipe "1.0.0"
+
+rc@^1.2.8:
+ version "1.2.8"
+ resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
+ integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==
+ dependencies:
+ deep-extend "^0.6.0"
+ ini "~1.3.0"
+ minimist "^1.2.0"
+ strip-json-comments "~2.0.1"
+
+readable-stream@1.1.x:
+ version "1.1.14"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9"
+ integrity sha1-fPTFTvZI44EwhMY23SB54WbAgdk=
+ dependencies:
+ core-util-is "~1.0.0"
+ inherits "~2.0.1"
+ isarray "0.0.1"
+ string_decoder "~0.10.x"
+
+readable-stream@^2.2.2, readable-stream@^2.3.5:
+ version "2.3.7"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
+ integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
+ dependencies:
+ core-util-is "~1.0.0"
+ inherits "~2.0.3"
+ isarray "~1.0.0"
+ process-nextick-args "~2.0.0"
+ safe-buffer "~5.1.1"
+ string_decoder "~1.1.1"
+ util-deprecate "~1.0.1"
+
+readdirp@~3.5.0:
+ version "3.5.0"
+ resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e"
+ integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==
+ dependencies:
+ picomatch "^2.2.1"
+
+regexp-clone@1.0.0, regexp-clone@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/regexp-clone/-/regexp-clone-1.0.0.tgz#222db967623277056260b992626354a04ce9bf63"
+ integrity sha512-TuAasHQNamyyJ2hb97IuBEif4qBHGjPHBS64sZwytpLEqtBQ1gPJTnOaQ6qmpET16cK14kkjbazl6+p0RRv0yw==
+
+registry-auth-token@^4.0.0:
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.1.tgz#6d7b4006441918972ccd5fedcd41dc322c79b250"
+ integrity sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==
+ dependencies:
+ rc "^1.2.8"
+
+registry-url@^5.0.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz#e98334b50d5434b81136b44ec638d9c2009c5009"
+ integrity sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==
+ dependencies:
+ rc "^1.2.8"
+
+require_optional@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/require_optional/-/require_optional-1.0.1.tgz#4cf35a4247f64ca3df8c2ef208cc494b1ca8fc2e"
+ integrity sha512-qhM/y57enGWHAe3v/NcwML6a3/vfESLe/sGM2dII+gEO0BpKRUkWZow/tyloNqJyN6kXSl3RyyM8Ll5D/sJP8g==
+ dependencies:
+ resolve-from "^2.0.0"
+ semver "^5.1.0"
+
+resolve-from@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57"
+ integrity sha1-lICrIOlP+h2egKgEx+oUdhGWa1c=
+
+responselike@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7"
+ integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=
+ dependencies:
+ lowercase-keys "^1.0.0"
+
+safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
+ integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
+
+safe-buffer@5.2.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2:
+ version "5.2.1"
+ resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
+ integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
+
+"safer-buffer@>= 2.1.2 < 3":
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
+ integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
+
+saslprep@^1.0.0:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/saslprep/-/saslprep-1.0.3.tgz#4c02f946b56cf54297e347ba1093e7acac4cf226"
+ integrity sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==
+ dependencies:
+ sparse-bitfield "^3.0.3"
+
+semver-diff@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b"
+ integrity sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==
+ dependencies:
+ semver "^6.3.0"
+
+semver@^5.1.0, semver@^5.7.1:
+ version "5.7.1"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
+ integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
+
+semver@^6.0.0, semver@^6.2.0, semver@^6.3.0:
+ version "6.3.0"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
+ integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
+
+send@0.17.1:
+ version "0.17.1"
+ resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8"
+ integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==
+ dependencies:
+ debug "2.6.9"
+ depd "~1.1.2"
+ destroy "~1.0.4"
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ etag "~1.8.1"
+ fresh "0.5.2"
+ http-errors "~1.7.2"
+ mime "1.6.0"
+ ms "2.1.1"
+ on-finished "~2.3.0"
+ range-parser "~1.2.1"
+ statuses "~1.5.0"
+
+serve-static@1.14.1:
+ version "1.14.1"
+ resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9"
+ integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==
+ dependencies:
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ parseurl "~1.3.3"
+ send "0.17.1"
+
+setprototypeof@1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
+ integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==
+
+sift@7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/sift/-/sift-7.0.1.tgz#47d62c50b159d316f1372f8b53f9c10cd21a4b08"
+ integrity sha512-oqD7PMJ+uO6jV9EQCl0LrRw1OwsiPsiFQR5AR30heR+4Dl7jBBbDLnNvWiak20tzZlSE1H7RB30SX/1j/YYT7g==
+
+signal-exit@^3.0.2:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
+ integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
+
+sliced@1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/sliced/-/sliced-1.0.1.tgz#0b3a662b5d04c3177b1926bea82b03f837a2ef41"
+ integrity sha1-CzpmK10Ewxd7GSa+qCsD+Dei70E=
+
+source-map-support@^0.5.17:
+ version "0.5.19"
+ resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
+ integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
+ dependencies:
+ buffer-from "^1.0.0"
+ source-map "^0.6.0"
+
+source-map@^0.6.0:
+ version "0.6.1"
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
+ integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
+
+sparse-bitfield@^3.0.3:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz#ff4ae6e68656056ba4b3e792ab3334d38273ca11"
+ integrity sha1-/0rm5oZWBWuks+eSqzM004JzyhE=
+ dependencies:
+ memory-pager "^1.0.2"
+
+"statuses@>= 1.5.0 < 2", statuses@~1.5.0:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
+ integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
+
+streamsearch@0.1.2:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-0.1.2.tgz#808b9d0e56fc273d809ba57338e929919a1a9f1a"
+ integrity sha1-gIudDlb8Jz2Am6VzOOkpkZoanxo=
+
+string-width@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
+ integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
+ dependencies:
+ emoji-regex "^7.0.1"
+ is-fullwidth-code-point "^2.0.0"
+ strip-ansi "^5.1.0"
+
+string-width@^4.0.0, string-width@^4.1.0:
+ version "4.2.2"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"
+ integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==
+ dependencies:
+ emoji-regex "^8.0.0"
+ is-fullwidth-code-point "^3.0.0"
+ strip-ansi "^6.0.0"
+
+string_decoder@~0.10.x:
+ version "0.10.31"
+ resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
+ integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=
+
+string_decoder@~1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
+ integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
+ dependencies:
+ safe-buffer "~5.1.0"
+
+strip-ansi@^5.1.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
+ integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
+ dependencies:
+ ansi-regex "^4.1.0"
+
+strip-ansi@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
+ integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
+ dependencies:
+ ansi-regex "^5.0.0"
+
+strip-json-comments@~2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
+ integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
+
+supports-color@^5.5.0:
+ version "5.5.0"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
+ integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
+ dependencies:
+ has-flag "^3.0.0"
+
+supports-color@^7.1.0:
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
+ integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
+ dependencies:
+ has-flag "^4.0.0"
+
+swagger-ui-dist@^3.18.1:
+ version "3.46.0"
+ resolved "https://registry.yarnpkg.com/swagger-ui-dist/-/swagger-ui-dist-3.46.0.tgz#f08d2c9b4a2dce922ba363c598e4795b5ccf0b80"
+ integrity sha512-ueaZ45OHhHvGKmocvCkxFY8VCfbP5PgcxutoQxy9j8/VZeDoLDvg8FBf4SO6NxHhieNAdYPUd0O6G9FjJO2fqw==
+
+swagger-ui-express@^4.1.6:
+ version "4.1.6"
+ resolved "https://registry.yarnpkg.com/swagger-ui-express/-/swagger-ui-express-4.1.6.tgz#682294af3d5c70f74a1fa4d6a9b503a9ee55ea82"
+ integrity sha512-Xs2BGGudvDBtL7RXcYtNvHsFtP1DBFPMJFRxHe5ez/VG/rzVOEjazJOOSc/kSCyxreCTKfJrII6MJlL9a6t8vw==
+ dependencies:
+ swagger-ui-dist "^3.18.1"
+
+term-size@^2.1.0:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54"
+ integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==
+
+to-readable-stream@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771"
+ integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==
+
+to-regex-range@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
+ integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
+ dependencies:
+ is-number "^7.0.0"
+
+toidentifier@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
+ integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
+
+touch@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b"
+ integrity sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==
+ dependencies:
+ nopt "~1.0.10"
+
+ts-node@^9.1.1:
+ version "9.1.1"
+ resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-9.1.1.tgz#51a9a450a3e959401bda5f004a72d54b936d376d"
+ integrity sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==
+ dependencies:
+ arg "^4.1.0"
+ create-require "^1.1.0"
+ diff "^4.0.1"
+ make-error "^1.1.1"
+ source-map-support "^0.5.17"
+ yn "3.1.1"
+
+type-fest@^0.8.1:
+ version "0.8.1"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
+ integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
+
+type-is@^1.6.4, type-is@~1.6.17, type-is@~1.6.18:
+ version "1.6.18"
+ resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
+ integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
+ dependencies:
+ media-typer "0.3.0"
+ mime-types "~2.1.24"
+
+typedarray-to-buffer@^3.1.5:
+ version "3.1.5"
+ resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
+ integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
+ dependencies:
+ is-typedarray "^1.0.0"
+
+typedarray@^0.0.6:
+ version "0.0.6"
+ resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
+ integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
+
+typescript@^4.1.5:
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.2.3.tgz#39062d8019912d43726298f09493d598048c1ce3"
+ integrity sha512-qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw==
+
+undefsafe@^2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.3.tgz#6b166e7094ad46313b2202da7ecc2cd7cc6e7aae"
+ integrity sha512-nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A==
+ dependencies:
+ debug "^2.2.0"
+
+unique-string@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d"
+ integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==
+ dependencies:
+ crypto-random-string "^2.0.0"
+
+unpipe@1.0.0, unpipe@~1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
+ integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
+
+update-notifier@^4.1.0:
+ version "4.1.3"
+ resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-4.1.3.tgz#be86ee13e8ce48fb50043ff72057b5bd598e1ea3"
+ integrity sha512-Yld6Z0RyCYGB6ckIjffGOSOmHXj1gMeE7aROz4MG+XMkmixBX4jUngrGXNYz7wPKBmtoD4MnBa2Anu7RSKht/A==
+ dependencies:
+ boxen "^4.2.0"
+ chalk "^3.0.0"
+ configstore "^5.0.1"
+ has-yarn "^2.1.0"
+ import-lazy "^2.1.0"
+ is-ci "^2.0.0"
+ is-installed-globally "^0.3.1"
+ is-npm "^4.0.0"
+ is-yarn-global "^0.3.0"
+ latest-version "^5.0.0"
+ pupa "^2.0.1"
+ semver-diff "^3.1.1"
+ xdg-basedir "^4.0.0"
+
+url-parse-lax@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c"
+ integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=
+ dependencies:
+ prepend-http "^2.0.0"
+
+util-deprecate@~1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
+ integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
+
+utils-merge@1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
+ integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
+
+vary@^1, vary@~1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
+ integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
+
+widest-line@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca"
+ integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==
+ dependencies:
+ string-width "^4.0.0"
+
+wrappy@1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
+ integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
+
+write-file-atomic@^3.0.0:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8"
+ integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==
+ dependencies:
+ imurmurhash "^0.1.4"
+ is-typedarray "^1.0.0"
+ signal-exit "^3.0.2"
+ typedarray-to-buffer "^3.1.5"
+
+xdg-basedir@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13"
+ integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==
+
+xtend@^4.0.0:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
+ integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
+
+yn@3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50"
+ integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==
diff --git a/frontend/.babelrc b/frontend/.babelrc
new file mode 100644
index 000000000..41f8dfa92
--- /dev/null
+++ b/frontend/.babelrc
@@ -0,0 +1,12 @@
+{
+ "presets": ["next/babel", "@babel/preset-typescript"],
+ "plugins": [
+ [
+ "babel-plugin-styled-components",
+ {
+ "ssr": true,
+ "displayName": true
+ }
+ ]
+ ]
+}
diff --git a/frontend/.editorconfig b/frontend/.editorconfig
new file mode 100644
index 000000000..6c5424edb
--- /dev/null
+++ b/frontend/.editorconfig
@@ -0,0 +1,10 @@
+# editorconfig.org
+root = true
+
+[*]
+indent_style = space
+indent_size = 2
+end_of_line = lf
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
\ No newline at end of file
diff --git a/frontend/.eslintrc.json b/frontend/.eslintrc.json
new file mode 100644
index 000000000..2c256e450
--- /dev/null
+++ b/frontend/.eslintrc.json
@@ -0,0 +1,36 @@
+{
+ "env": {
+ "browser": true,
+ "es2020": true,
+ "jest": true,
+ "node": true
+ },
+ "settings": {
+ "react": {
+ "version": "detect"
+ }
+ },
+ "extends": [
+ "eslint:recommended",
+ "plugin:react/recommended",
+ "plugin:@typescript-eslint/eslint-recommended",
+ "plugin:@typescript-eslint/recommended",
+ "plugin:prettier/recommended"
+ ],
+ "parser": "@typescript-eslint/parser",
+ "parserOptions": {
+ "ecmaFeatures": {
+ "jsx": true
+ },
+ "ecmaVersion": 11,
+ "sourceType": "module"
+ },
+ "plugins": ["react", "react-hooks", "@typescript-eslint"],
+ "rules": {
+ "react-hooks/rules-of-hooks": "error",
+ "react-hooks/exhaustive-deps": "warn",
+ "react/prop-types": "off",
+ "react/react-in-jsx-scope": "off",
+ "@typescript-eslint/explicit-module-boundary-types": "off"
+ }
+}
diff --git a/frontend/.gitignore b/frontend/.gitignore
new file mode 100644
index 000000000..4664860e6
--- /dev/null
+++ b/frontend/.gitignore
@@ -0,0 +1,38 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# testing
+/coverage
+
+# next.js
+/.next/
+/out/
+
+# production
+/build
+
+# misc
+.DS_Store
+*.pem
+
+# debug
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# local env files
+.env.local
+.env.development.local
+.env.test.local
+.env.production.local
+
+# vercel
+.vercel
+
+# sw stuff
+public/sw.js
+public/workbox-*.js
diff --git a/frontend/.prettierrc b/frontend/.prettierrc
new file mode 100644
index 000000000..99de659d7
--- /dev/null
+++ b/frontend/.prettierrc
@@ -0,0 +1,9 @@
+{
+ "bracketSpacing": true,
+ "jsxBracketSameLine": false,
+ "semi": false,
+ "singleQuote": true,
+ "trailingComma": "all"
+}
+
+
diff --git a/frontend/.storybook/main.js b/frontend/.storybook/main.js
new file mode 100644
index 000000000..be70ed0e2
--- /dev/null
+++ b/frontend/.storybook/main.js
@@ -0,0 +1,12 @@
+module.exports = {
+ stories: ['../src/components/**/stories.tsx'],
+ addons: ['@storybook/addon-essentials'],
+ babel: async (options) => ({
+ ...options,
+ plugins: [...options.plugins, '@babel/plugin-transform-react-jsx'],
+ }),
+ webpackFinal: (config) => {
+ config.resolve.modules.push(`${process.cwd()}/src`)
+ return config
+ },
+}
diff --git a/frontend/.storybook/preview.js b/frontend/.storybook/preview.js
new file mode 100644
index 000000000..0a5c9fbd5
--- /dev/null
+++ b/frontend/.storybook/preview.js
@@ -0,0 +1,33 @@
+import { addDecorator } from '@storybook/react'
+import { withNextRouter } from 'storybook-addon-next-router'
+import { ThemeProvider } from 'styled-components'
+import theme from '../src/styles/theme'
+import GlobalStyles from '../src/styles/global'
+
+addDecorator(withNextRouter())
+
+export const parameters = {
+ backgrounds: {
+ default: 'light',
+ values: [
+ { name: 'light', value: theme.colors.white },
+ {
+ name: 'dark',
+ value: theme.colors.black,
+ },
+ ],
+ },
+}
+
+export const decorators = [
+ (Story) => (
+
+
+
+
+ ),
+]
+/* export const parameters = {
+ actions: { argTypesRegex: '^on[A-Z].*' },
+}
+ */
diff --git a/frontend/.storybook/withGlobalStyles.tsx b/frontend/.storybook/withGlobalStyles.tsx
new file mode 100644
index 000000000..086e4351f
--- /dev/null
+++ b/frontend/.storybook/withGlobalStyles.tsx
@@ -0,0 +1,11 @@
+import { StoryFn } from '@storybook/addons'
+import GlobalStyles from '../src/styles/global'
+
+const withGlobalStyles = (storyFn: StoryFn) => (
+ <>
+
+ {storyFn()}
+ >
+)
+
+export default withGlobalStyles
diff --git a/frontend/generators/plopfile.js b/frontend/generators/plopfile.js
new file mode 100644
index 000000000..40f92c9c3
--- /dev/null
+++ b/frontend/generators/plopfile.js
@@ -0,0 +1,29 @@
+module.exports = (plop) => {
+ plop.setGenerator('component', {
+ description: 'Create a component',
+ prompts: [
+ {
+ type: 'input',
+ name: 'name',
+ message: 'What is your component name?',
+ },
+ ],
+ actions: [
+ {
+ type: 'add',
+ path: '../src/components/{{pascalCase name}}/index.tsx',
+ templateFile: 'templates/Component.tsx.hbs',
+ },
+ {
+ type: 'add',
+ path: '../src/components/{{pascalCase name}}/styles.ts',
+ templateFile: 'templates/styles.ts.hbs',
+ },
+ {
+ type: 'add',
+ path: '../src/components/{{pascalCase name}}/stories.tsx',
+ templateFile: 'templates/stories.tsx.hbs',
+ },
+ ],
+ })
+}
diff --git a/frontend/generators/templates/Component.tsx.hbs b/frontend/generators/templates/Component.tsx.hbs
new file mode 100644
index 000000000..51df345dd
--- /dev/null
+++ b/frontend/generators/templates/Component.tsx.hbs
@@ -0,0 +1,9 @@
+import * as S from './styles'
+
+const {{pascalCase name}} = () => (
+
+ {{pascalCase name}}
+
+)
+
+export default {{pascalCase name}}
diff --git a/frontend/generators/templates/stories.tsx.hbs b/frontend/generators/templates/stories.tsx.hbs
new file mode 100644
index 000000000..f9afbb67d
--- /dev/null
+++ b/frontend/generators/templates/stories.tsx.hbs
@@ -0,0 +1,9 @@
+import { Story, Meta } from '@storybook/react/types-6-0'
+import {{pascalCase name}} from '.'
+
+export default {
+ title: '{{pascalCase name}}',
+ component: {{pascalCase name}}
+} as Meta
+
+export const Default: Story = () => <{{pascalCase name}} />
diff --git a/frontend/generators/templates/styles.ts.hbs b/frontend/generators/templates/styles.ts.hbs
new file mode 100644
index 000000000..0267ce1bf
--- /dev/null
+++ b/frontend/generators/templates/styles.ts.hbs
@@ -0,0 +1,3 @@
+import styled from 'styled-components'
+
+export const Wrapper = styled.main``
diff --git a/frontend/mock-pokemon.json b/frontend/mock-pokemon.json
new file mode 100644
index 000000000..0812e9546
--- /dev/null
+++ b/frontend/mock-pokemon.json
@@ -0,0 +1,825 @@
+[
+{"Row":"1","Name":"Bulbasaur","Pokedex Number":"1","Img name":"1","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"1","Cross Gen":"0","Type 1":"grass","Type 2":"poison","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"326","ATK":"118","DEF":"118","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"981","100% CP @ 39":"967"},
+{"Row":"2","Name":"Ivysaur","Pokedex Number":"2","Img name":"2","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"1","Cross Gen":"0","Type 1":"grass","Type 2":"poison","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"422","ATK":"151","DEF":"151","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1552","100% CP @ 39":"1529"},
+{"Row":"3","Name":"Venusaur","Pokedex Number":"3","Img name":"3","Generation":"1","Evolution Stage":"3","Evolved":"1","FamilyID":"1","Cross Gen":"0","Type 1":"grass","Type 2":"poison","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"556","ATK":"198","DEF":"198","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2568","100% CP @ 39":"2531"},
+{"Row":"4","Name":"Charmander","Pokedex Number":"4","Img name":"4","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"2","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"290","ATK":"116","DEF":"96","STA":"78","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"831","100% CP @ 39":"819"},
+{"Row":"5","Name":"Charmeleon","Pokedex Number":"5","Img name":"5","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"2","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"403","ATK":"158","DEF":"129","STA":"116","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1484","100% CP @ 39":"1462"},
+{"Row":"6","Name":"Charizard","Pokedex Number":"6","Img name":"6","Generation":"1","Evolution Stage":"3","Evolved":"1","FamilyID":"2","Cross Gen":"0","Type 1":"fire","Type 2":"flying","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"555","ATK":"223","DEF":"176","STA":"156","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2686","100% CP @ 39":"2648"},
+{"Row":"7","Name":"Squirtle","Pokedex Number":"7","Img name":"7","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"3","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"304","ATK":"94","DEF":"122","STA":"88","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"808","100% CP @ 39":"797"},
+{"Row":"8","Name":"Wartortle","Pokedex Number":"8","Img name":"8","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"3","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"399","ATK":"126","DEF":"155","STA":"118","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1324","100% CP @ 39":"1305"},
+{"Row":"9","Name":"Blastoise","Pokedex Number":"9","Img name":"9","Generation":"1","Evolution Stage":"3","Evolved":"1","FamilyID":"3","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"539","ATK":"171","DEF":"210","STA":"158","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2291","100% CP @ 39":"2259"},
+{"Row":"10","Name":"Caterpie","Pokedex Number":"10","Img name":"10","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"4","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"207","ATK":"55","DEF":"62","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"393","100% CP @ 39":"387"},
+{"Row":"11","Name":"Metapod","Pokedex Number":"11","Img name":"11","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"4","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"239","ATK":"45","DEF":"94","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"419","100% CP @ 39":"413"},
+{"Row":"12","Name":"Butterfree","Pokedex Number":"12","Img name":"12","Generation":"1","Evolution Stage":"3","Evolved":"0","FamilyID":"4","Cross Gen":"0","Type 1":"bug","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"438","ATK":"167","DEF":"151","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1701","100% CP @ 39":"1677"},
+{"Row":"13","Name":"Weedle","Pokedex Number":"13","Img name":"13","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"5","Cross Gen":"0","Type 1":"bug","Type 2":"poison","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"198","ATK":"63","DEF":"55","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"397","100% CP @ 39":"391"},
+{"Row":"14","Name":"Kakuna","Pokedex Number":"14","Img name":"14","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"5","Cross Gen":"0","Type 1":"bug","Type 2":"poison","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"222","ATK":"46","DEF":"86","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"392","100% CP @ 39":"386"},
+{"Row":"15","Name":"Beedrill","Pokedex Number":"15","Img name":"15","Generation":"1","Evolution Stage":"3","Evolved":"0","FamilyID":"5","Cross Gen":"0","Type 1":"bug","Type 2":"poison","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"449","ATK":"169","DEF":"150","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1777","100% CP @ 39":"1752"},
+{"Row":"16","Name":"Pidgey","Pokedex Number":"16","Img name":"16","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"6","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"241","ATK":"85","DEF":"76","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"580","100% CP @ 39":"572"},
+{"Row":"17","Name":"Pidgeotto","Pokedex Number":"17","Img name":"17","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"6","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"351","ATK":"117","DEF":"108","STA":"126","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1085","100% CP @ 39":"1070"},
+{"Row":"18","Name":"Pidgeot","Pokedex Number":"18","Img name":"18","Generation":"1","Evolution Stage":"3","Evolved":"0","FamilyID":"6","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"489","ATK":"166","DEF":"157","STA":"166","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1994","100% CP @ 39":"1966"},
+{"Row":"19","Name":"Rattata","Pokedex Number":"19","Img name":"19","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"7","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"233","ATK":"103","DEF":"70","STA":"60","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"588","100% CP @ 39":"580"},
+{"Row":"20","Name":"Raticate","Pokedex Number":"20","Img name":"20","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"7","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"415","ATK":"161","DEF":"144","STA":"110","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1549","100% CP @ 39":"1527"},
+{"Row":"21","Name":"Spearow","Pokedex Number":"21","Img name":"21","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"8","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"253","ATK":"112","DEF":"61","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"673","100% CP @ 39":"664"},
+{"Row":"22","Name":"Fearow","Pokedex Number":"22","Img name":"22","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"8","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"447","ATK":"182","DEF":"135","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1814","100% CP @ 39":"1788"},
+{"Row":"23","Name":"Ekans","Pokedex Number":"23","Img name":"23","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"9","Cross Gen":"0","Type 1":"poison","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"282","ATK":"110","DEF":"102","STA":"70","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"778","100% CP @ 39":"767"},
+{"Row":"24","Name":"Arbok","Pokedex Number":"24","Img name":"24","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"9","Cross Gen":"0","Type 1":"poison","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"445","ATK":"167","DEF":"158","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1737","100% CP @ 39":"1712"},
+{"Row":"25","Name":"Pikachu","Pokedex Number":"25","Img name":"25","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"10","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"283","ATK":"112","DEF":"101","STA":"70","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"1","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"787","100% CP @ 39":"776"},
+{"Row":"26","Name":"Raichu","Pokedex Number":"26","Img name":"26","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"10","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"478","ATK":"193","DEF":"165","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"1","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2025","100% CP @ 39":"1996"},
+{"Row":"27","Name":"Sandshrew","Pokedex Number":"27","Img name":"27","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"11","Cross Gen":"0","Type 1":"ground","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"371","ATK":"126","DEF":"145","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1194","100% CP @ 39":"1177"},
+{"Row":"28","Name":"Sandslash","Pokedex Number":"28","Img name":"28","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"11","Cross Gen":"0","Type 1":"ground","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"534","ATK":"182","DEF":"202","STA":"150","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2328","100% CP @ 39":"2294"},
+{"Row":"29","Name":"Nidoran F","Pokedex Number":"29","Img name":"29","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"12","Cross Gen":"0","Type 1":"poison","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"290","ATK":"86","DEF":"94","STA":"110","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"736","100% CP @ 39":"725"},
+{"Row":"30","Name":"Nidorina","Pokedex Number":"30","Img name":"30","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"12","Cross Gen":"0","Type 1":"poison","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"383","ATK":"117","DEF":"126","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1218","100% CP @ 39":"1201"},
+{"Row":"31","Name":"Nidoqueen","Pokedex Number":"31","Img name":"31","Generation":"1","Evolution Stage":"3","Evolved":"1","FamilyID":"12","Cross Gen":"0","Type 1":"poison","Type 2":"ground","Weather 1":"Cloudy","Weather 2":"Sunny/clear","STAT TOTAL":"534","ATK":"180","DEF":"174","STA":"180","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2338","100% CP @ 39":"2304"},
+{"Row":"32","Name":"Nidoran M","Pokedex Number":"32","Img name":"32","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"13","Cross Gen":"0","Type 1":"poison","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"273","ATK":"105","DEF":"76","STA":"92","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"739","100% CP @ 39":"729"},
+{"Row":"33","Name":"Nidorino","Pokedex Number":"33","Img name":"33","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"13","Cross Gen":"0","Type 1":"poison","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"371","ATK":"137","DEF":"112","STA":"122","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1252","100% CP @ 39":"1234"},
+{"Row":"34","Name":"Nidoking","Pokedex Number":"34","Img name":"34","Generation":"1","Evolution Stage":"3","Evolved":"1","FamilyID":"13","Cross Gen":"0","Type 1":"poison","Type 2":"ground","Weather 1":"Cloudy","Weather 2":"Sunny/clear","STAT TOTAL":"523","ATK":"204","DEF":"157","STA":"162","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2386","100% CP @ 39":"2352"},
+{"Row":"35","Name":"Clefairy","Pokedex Number":"35","Img name":"35","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"14","Cross Gen":"0","Type 1":"fairy","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"363","ATK":"107","DEF":"116","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1085","100% CP @ 39":"1070"},
+{"Row":"36","Name":"Clefable","Pokedex Number":"36","Img name":"36","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"14","Cross Gen":"0","Type 1":"fairy","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"539","ATK":"178","DEF":"171","STA":"190","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2353","100% CP @ 39":"2320"},
+{"Row":"37","Name":"Vulpix","Pokedex Number":"37","Img name":"37","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"15","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"294","ATK":"96","DEF":"122","STA":"76","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"774","100% CP @ 39":"763"},
+{"Row":"38","Name":"Ninetales","Pokedex Number":"38","Img name":"38","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"15","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"519","ATK":"169","DEF":"204","STA":"146","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2157","100% CP @ 39":"2127"},
+{"Row":"39","Name":"Jigglypuff","Pokedex Number":"39","Img name":"39","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"16","Cross Gen":"0","Type 1":"normal","Type 2":"fairy","Weather 1":"Partly cloudy","Weather 2":"Cloudy","STAT TOTAL":"354","ATK":"80","DEF":"44","STA":"230","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"713","100% CP @ 39":"703"},
+{"Row":"40","Name":"Wigglytuff","Pokedex Number":"40","Img name":"40","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"16","Cross Gen":"0","Type 1":"normal","Type 2":"fairy","Weather 1":"Partly cloudy","Weather 2":"Cloudy","STAT TOTAL":"529","ATK":"156","DEF":"93","STA":"280","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1906","100% CP @ 39":"1879"},
+{"Row":"41","Name":"Zubat","Pokedex Number":"41","Img name":"41","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"17","Cross Gen":"0","Type 1":"poison","Type 2":"flying","Weather 1":"Cloudy","Weather 2":"Windy","STAT TOTAL":"239","ATK":"83","DEF":"76","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"569","100% CP @ 39":"560"},
+{"Row":"42","Name":"Golbat","Pokedex Number":"42","Img name":"42","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"17","Cross Gen":"0","Type 1":"poison","Type 2":"flying","Weather 1":"Cloudy","Weather 2":"Windy","STAT TOTAL":"464","ATK":"161","DEF":"153","STA":"150","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1830","100% CP @ 39":"1804"},
+{"Row":"43","Name":"Oddish","Pokedex Number":"43","Img name":"43","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"18","Cross Gen":"0","Type 1":"grass","Type 2":"poison","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"337","ATK":"131","DEF":"116","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1069","100% CP @ 39":"1054"},
+{"Row":"44","Name":"Gloom","Pokedex Number":"44","Img name":"44","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"18","Cross Gen":"0","Type 1":"grass","Type 2":"poison","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"412","ATK":"153","DEF":"139","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1512","100% CP @ 39":"1491"},
+{"Row":"45","Name":"Vileplume","Pokedex Number":"45","Img name":"45","Generation":"1","Evolution Stage":"3","Evolved":"1","FamilyID":"18","Cross Gen":"0","Type 1":"grass","Type 2":"poison","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"522","ATK":"202","DEF":"170","STA":"150","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2367","100% CP @ 39":"2334"},
+{"Row":"46","Name":"Paras","Pokedex Number":"46","Img name":"46","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"19","Cross Gen":"0","Type 1":"bug","Type 2":"grass","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"290","ATK":"121","DEF":"99","STA":"70","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"836","100% CP @ 39":"824"},
+{"Row":"47","Name":"Parasect","Pokedex Number":"47","Img name":"47","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"19","Cross Gen":"0","Type 1":"bug","Type 2":"grass","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"431","ATK":"165","DEF":"146","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1657","100% CP @ 39":"1633"},
+{"Row":"48","Name":"Venonat","Pokedex Number":"48","Img name":"48","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"20","Cross Gen":"0","Type 1":"bug","Type 2":"poison","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"322","ATK":"100","DEF":"102","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"902","100% CP @ 39":"889"},
+{"Row":"49","Name":"Venomoth","Pokedex Number":"49","Img name":"49","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"20","Cross Gen":"0","Type 1":"bug","Type 2":"poison","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"469","ATK":"179","DEF":"150","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1937","100% CP @ 39":"1910"},
+{"Row":"50","Name":"Diglett","Pokedex Number":"50","Img name":"50","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"21","Cross Gen":"0","Type 1":"ground","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"217","ATK":"109","DEF":"88","STA":"20","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"465","100% CP @ 39":"458"},
+{"Row":"51","Name":"Dugtrio","Pokedex Number":"51","Img name":"51","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"21","Cross Gen":"0","Type 1":"ground","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"384","ATK":"167","DEF":"147","STA":"70","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1333","100% CP @ 39":"1314"},
+{"Row":"52","Name":"Meowth","Pokedex Number":"52","Img name":"52","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"23","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"253","ATK":"92","DEF":"81","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"638","100% CP @ 39":"629"},
+{"Row":"53","Name":"Persian","Pokedex Number":"53","Img name":"53","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"23","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"419","ATK":"150","DEF":"139","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1539","100% CP @ 39":"1517"},
+{"Row":"54","Name":"Psyduck","Pokedex Number":"54","Img name":"54","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"24","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"318","ATK":"122","DEF":"96","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"966","100% CP @ 39":"952"},
+{"Row":"55","Name":"Golduck","Pokedex Number":"55","Img name":"55","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"24","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"514","ATK":"191","DEF":"163","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2270","100% CP @ 39":"2238"},
+{"Row":"56","Name":"Mankey","Pokedex Number":"56","Img name":"56","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"25","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"315","ATK":"148","DEF":"87","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1002","100% CP @ 39":"987"},
+{"Row":"57","Name":"Primeape","Pokedex Number":"57","Img name":"57","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"25","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"481","ATK":"207","DEF":"144","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2105","100% CP @ 39":"2075"},
+{"Row":"58","Name":"Growlithe","Pokedex Number":"58","Img name":"58","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"26","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"342","ATK":"136","DEF":"96","STA":"110","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1110","100% CP @ 39":"1095"},
+{"Row":"59","Name":"Arcanine","Pokedex Number":"59","Img name":"59","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"26","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"573","ATK":"227","DEF":"166","STA":"180","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2839","100% CP @ 39":"2799"},
+{"Row":"60","Name":"Poliwag","Pokedex Number":"60","Img name":"60","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"27","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"263","ATK":"101","DEF":"82","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"695","100% CP @ 39":"685"},
+{"Row":"61","Name":"Poliwhirl","Pokedex Number":"61","Img name":"61","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"27","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"390","ATK":"130","DEF":"130","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1313","100% CP @ 39":"1294"},
+{"Row":"62","Name":"Poliwrath","Pokedex Number":"62","Img name":"62","Generation":"1","Evolution Stage":"3","Evolved":"1","FamilyID":"27","Cross Gen":"0","Type 1":"water","Type 2":"fighting","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"549","ATK":"182","DEF":"187","STA":"180","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2441","100% CP @ 39":"2407"},
+{"Row":"63","Name":"Abra","Pokedex Number":"63","Img name":"63","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"28","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"348","ATK":"195","DEF":"103","STA":"50","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1148","100% CP @ 39":"1132"},
+{"Row":"64","Name":"Kadabra","Pokedex Number":"64","Img name":"64","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"28","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"450","ATK":"232","DEF":"138","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1859","100% CP @ 39":"1833"},
+{"Row":"65","Name":"Alakazam","Pokedex Number":"65","Img name":"65","Generation":"1","Evolution Stage":"3","Evolved":"1","FamilyID":"28","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"575","ATK":"271","DEF":"194","STA":"110","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2887","100% CP @ 39":"2845"},
+{"Row":"66","Name":"Machop","Pokedex Number":"66","Img name":"66","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"29","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"365","ATK":"137","DEF":"88","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1199","100% CP @ 39":"1182"},
+{"Row":"67","Name":"Machoke","Pokedex Number":"67","Img name":"67","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"29","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"467","ATK":"177","DEF":"130","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1910","100% CP @ 39":"1882"},
+{"Row":"68","Name":"Machamp","Pokedex Number":"68","Img name":"68","Generation":"1","Evolution Stage":"3","Evolved":"1","FamilyID":"29","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"576","ATK":"234","DEF":"162","STA":"180","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"3","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2889","100% CP @ 39":"2848"},
+{"Row":"69","Name":"Bellsprout","Pokedex Number":"69","Img name":"69","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"30","Cross Gen":"0","Type 1":"grass","Type 2":"poison","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"303","ATK":"139","DEF":"64","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"916","100% CP @ 39":"903"},
+{"Row":"70","Name":"Weepinbell","Pokedex Number":"70","Img name":"70","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"30","Cross Gen":"0","Type 1":"grass","Type 2":"poison","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"397","ATK":"172","DEF":"95","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1475","100% CP @ 39":"1453"},
+{"Row":"71","Name":"Victreebel","Pokedex Number":"71","Img name":"71","Generation":"1","Evolution Stage":"3","Evolved":"1","FamilyID":"30","Cross Gen":"0","Type 1":"grass","Type 2":"poison","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"505","ATK":"207","DEF":"138","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2268","100% CP @ 39":"2236"},
+{"Row":"72","Name":"Tentacool","Pokedex Number":"72","Img name":"72","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"31","Cross Gen":"0","Type 1":"water","Type 2":"poison","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"359","ATK":"97","DEF":"182","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"956","100% CP @ 39":"943"},
+{"Row":"73","Name":"Tentacruel","Pokedex Number":"73","Img name":"73","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"31","Cross Gen":"0","Type 1":"water","Type 2":"poison","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"563","ATK":"166","DEF":"237","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2374","100% CP @ 39":"2340"},
+{"Row":"74","Name":"Geodude","Pokedex Number":"74","Img name":"74","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"32","Cross Gen":"0","Type 1":"rock","Type 2":"ground","Weather 1":"Partly cloudy","Weather 2":"Sunny/clear","STAT TOTAL":"375","ATK":"132","DEF":"163","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1193","100% CP @ 39":"1176"},
+{"Row":"75","Name":"Graveler","Pokedex Number":"75","Img name":"75","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"32","Cross Gen":"0","Type 1":"rock","Type 2":"ground","Weather 1":"Partly cloudy","Weather 2":"Sunny/clear","STAT TOTAL":"470","ATK":"164","DEF":"196","STA":"110","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1815","100% CP @ 39":"1789"},
+{"Row":"76","Name":"Golem","Pokedex Number":"76","Img name":"76","Generation":"1","Evolution Stage":"3","Evolved":"1","FamilyID":"32","Cross Gen":"0","Type 1":"rock","Type 2":"ground","Weather 1":"Partly cloudy","Weather 2":"Sunny/clear","STAT TOTAL":"600","ATK":"211","DEF":"229","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"4","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2916","100% CP @ 39":"2875"},
+{"Row":"77","Name":"Ponyta","Pokedex Number":"77","Img name":"77","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"33","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"402","ATK":"170","DEF":"132","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1502","100% CP @ 39":"1480"},
+{"Row":"78","Name":"Rapidash","Pokedex Number":"78","Img name":"78","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"33","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"504","ATK":"207","DEF":"167","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2252","100% CP @ 39":"2220"},
+{"Row":"79","Name":"Slowpoke","Pokedex Number":"79","Img name":"79","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"34","Cross Gen":"0","Type 1":"water","Type 2":"psychic","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"398","ATK":"109","DEF":"109","STA":"180","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1204","100% CP @ 39":"1187"},
+{"Row":"80","Name":"Slowbro","Pokedex Number":"80","Img name":"80","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"34","Cross Gen":"0","Type 1":"water","Type 2":"psychic","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"561","ATK":"177","DEF":"194","STA":"190","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2482","100% CP @ 39":"2446"},
+{"Row":"81","Name":"Magnemite","Pokedex Number":"81","Img name":"81","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"35","Cross Gen":"0","Type 1":"electric","Type 2":"steel","Weather 1":"Rainy","Weather 2":"Snow","STAT TOTAL":"343","ATK":"165","DEF":"128","STA":"50","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"1083","100% CP @ 39":"1068"},
+{"Row":"82","Name":"Magneton","Pokedex Number":"82","Img name":"82","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"35","Cross Gen":"0","Type 1":"electric","Type 2":"steel","Weather 1":"Rainy","Weather 2":"Snow","STAT TOTAL":"505","ATK":"223","DEF":"182","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"2237","100% CP @ 39":"2205"},
+{"Row":"83","Name":"Farfetchd","Pokedex Number":"83","Img name":"83","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"36","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"346","ATK":"124","DEF":"118","STA":"104","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"1","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1092","100% CP @ 39":"1076"},
+{"Row":"84","Name":"Doduo","Pokedex Number":"84","Img name":"84","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"37","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"316","ATK":"158","DEF":"88","STA":"70","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1011","100% CP @ 39":"996"},
+{"Row":"85","Name":"Dodrio","Pokedex Number":"85","Img name":"85","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"37","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"483","ATK":"218","DEF":"145","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2138","100% CP @ 39":"2108"},
+{"Row":"86","Name":"Seel","Pokedex Number":"86","Img name":"86","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"38","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"343","ATK":"85","DEF":"128","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"899","100% CP @ 39":"886"},
+{"Row":"87","Name":"Dewgong","Pokedex Number":"87","Img name":"87","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"38","Cross Gen":"0","Type 1":"water","Type 2":"ice","Weather 1":"Rainy","Weather 2":"Snow","STAT TOTAL":"503","ATK":"139","DEF":"184","STA":"180","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1894","100% CP @ 39":"1867"},
+{"Row":"88","Name":"Grimer","Pokedex Number":"88","Img name":"88","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"39","Cross Gen":"0","Type 1":"poison","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"385","ATK":"135","DEF":"90","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1269","100% CP @ 39":"1251"},
+{"Row":"89","Name":"Muk","Pokedex Number":"89","Img name":"89","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"39","Cross Gen":"0","Type 1":"poison","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"584","ATK":"190","DEF":"184","STA":"210","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2709","100% CP @ 39":"2670"},
+{"Row":"90","Name":"Shellder","Pokedex Number":"90","Img name":"90","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"40","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"344","ATK":"116","DEF":"168","STA":"60","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"958","100% CP @ 39":"944"},
+{"Row":"91","Name":"Cloyster","Pokedex Number":"91","Img name":"91","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"40","Cross Gen":"0","Type 1":"water","Type 2":"ice","Weather 1":"Rainy","Weather 2":"Snow","STAT TOTAL":"609","ATK":"186","DEF":"323","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2475","100% CP @ 39":"2439"},
+{"Row":"92","Name":"Gastly","Pokedex Number":"92","Img name":"92","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"41","Cross Gen":"0","Type 1":"ghost","Type 2":"poison","Weather 1":"Fog","Weather 2":"Cloudy","STAT TOTAL":"316","ATK":"186","DEF":"70","STA":"60","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1002","100% CP @ 39":"988"},
+{"Row":"93","Name":"Haunter","Pokedex Number":"93","Img name":"93","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"41","Cross Gen":"0","Type 1":"ghost","Type 2":"poison","Weather 1":"Fog","Weather 2":"Cloudy","STAT TOTAL":"425","ATK":"223","DEF":"112","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1716","100% CP @ 39":"1692"},
+{"Row":"94","Name":"Gengar","Pokedex Number":"94","Img name":"94","Generation":"1","Evolution Stage":"3","Evolved":"1","FamilyID":"41","Cross Gen":"0","Type 1":"ghost","Type 2":"poison","Weather 1":"Fog","Weather 2":"Cloudy","STAT TOTAL":"537","ATK":"261","DEF":"156","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"3","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2619","100% CP @ 39":"2581"},
+{"Row":"95","Name":"Onix","Pokedex Number":"95","Img name":"95","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"42","Cross Gen":"0","Type 1":"rock","Type 2":"ground","Weather 1":"Partly cloudy","Weather 2":"Sunny/clear","STAT TOTAL":"443","ATK":"85","DEF":"288","STA":"70","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1002","100% CP @ 39":"988"},
+{"Row":"96","Name":"Drowzee","Pokedex Number":"96","Img name":"96","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"43","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"367","ATK":"89","DEF":"158","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"992","100% CP @ 39":"978"},
+{"Row":"97","Name":"Hypno","Pokedex Number":"97","Img name":"97","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"43","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"529","ATK":"144","DEF":"215","STA":"170","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2048","100% CP @ 39":"2019"},
+{"Row":"98","Name":"Krabby","Pokedex Number":"98","Img name":"98","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"44","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"397","ATK":"181","DEF":"156","STA":"60","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1386","100% CP @ 39":"1366"},
+{"Row":"99","Name":"Kingler","Pokedex Number":"99","Img name":"99","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"44","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"564","ATK":"240","DEF":"214","STA":"110","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2694","100% CP @ 39":"2656"},
+{"Row":"100","Name":"Voltorb","Pokedex Number":"100","Img name":"100","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"45","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"303","ATK":"109","DEF":"114","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"857","100% CP @ 39":"845"},
+{"Row":"101","Name":"Electrode","Pokedex Number":"101","Img name":"101","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"45","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"472","ATK":"173","DEF":"179","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1900","100% CP @ 39":"1873"},
+{"Row":"102","Name":"Exeggcute","Pokedex Number":"102","Img name":"102","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"46","Cross Gen":"0","Type 1":"grass","Type 2":"psychic","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"367","ATK":"107","DEF":"140","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1102","100% CP @ 39":"1086"},
+{"Row":"103","Name":"Exeggutor","Pokedex Number":"103","Img name":"103","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"46","Cross Gen":"0","Type 1":"grass","Type 2":"psychic","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"581","ATK":"233","DEF":"158","STA":"190","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"2","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2916","100% CP @ 39":"2875"},
+{"Row":"104","Name":"Cubone","Pokedex Number":"104","Img name":"104","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"47","Cross Gen":"0","Type 1":"ground","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"355","ATK":"90","DEF":"165","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"943","100% CP @ 39":"930"},
+{"Row":"105","Name":"Marowak","Pokedex Number":"105","Img name":"105","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"47","Cross Gen":"0","Type 1":"ground","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"464","ATK":"144","DEF":"200","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1691","100% CP @ 39":"1667"},
+{"Row":"106","Name":"Hitmonlee","Pokedex Number":"106","Img name":"106","Generation":"1","Evolution Stage":"1","Evolved":"1","FamilyID":"48","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"535","ATK":"224","DEF":"211","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2406","100% CP @ 39":"2372"},
+{"Row":"107","Name":"Hitmonchan","Pokedex Number":"107","Img name":"107","Generation":"1","Evolution Stage":"1","Evolved":"1","FamilyID":"48","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"505","ATK":"193","DEF":"212","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2098","100% CP @ 39":"2069"},
+{"Row":"108","Name":"Lickitung","Pokedex Number":"108","Img name":"108","Generation":"1","Evolution Stage":"1","Evolved":"1","FamilyID":"49","Cross Gen":"1","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"425","ATK":"108","DEF":"137","STA":"180","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"1322","100% CP @ 39":"1303"},
+{"Row":"109","Name":"Koffing","Pokedex Number":"109","Img name":"109","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"50","Cross Gen":"0","Type 1":"poison","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"363","ATK":"119","DEF":"164","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1091","100% CP @ 39":"1075"},
+{"Row":"110","Name":"Weezing","Pokedex Number":"110","Img name":"110","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"50","Cross Gen":"0","Type 1":"poison","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"525","ATK":"174","DEF":"221","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2183","100% CP @ 39":"2152"},
+{"Row":"111","Name":"Rhyhorn","Pokedex Number":"111","Img name":"111","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"51","Cross Gen":"0","Type 1":"ground","Type 2":"rock","Weather 1":"Sunny/clear","Weather 2":"Partly cloudy","STAT TOTAL":"457","ATK":"140","DEF":"157","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"1679","100% CP @ 39":"1655"},
+{"Row":"112","Name":"Rhydon","Pokedex Number":"112","Img name":"112","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"51","Cross Gen":"0","Type 1":"ground","Type 2":"rock","Weather 1":"Sunny/clear","Weather 2":"Partly cloudy","STAT TOTAL":"638","ATK":"222","DEF":"206","STA":"210","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"3300","100% CP @ 39":"3253"},
+{"Row":"113","Name":"Chansey","Pokedex Number":"113","Img name":"113","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"52","Cross Gen":"1","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"736","ATK":"60","DEF":"176","STA":"500","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"10","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1469","100% CP @ 39":"1448"},
+{"Row":"114","Name":"Tangela","Pokedex Number":"114","Img name":"114","Generation":"1","Evolution Stage":"1","Evolved":"1","FamilyID":"53","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"518","ATK":"183","DEF":"205","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"2208","100% CP @ 39":"2177"},
+{"Row":"115","Name":"Kangaskhan","Pokedex Number":"115","Img name":"115","Generation":"1","Evolution Stage":"1","Evolved":"1","FamilyID":"54","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"556","ATK":"181","DEF":"165","STA":"210","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"1","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2463","100% CP @ 39":"2428"},
+{"Row":"116","Name":"Horsea","Pokedex Number":"116","Img name":"116","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"55","Cross Gen":"1","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"314","ATK":"129","DEF":"125","STA":"60","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"921","100% CP @ 39":"908"},
+{"Row":"117","Name":"Seadra","Pokedex Number":"117","Img name":"117","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"55","Cross Gen":"1","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"479","ATK":"187","DEF":"182","STA":"110","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1979","100% CP @ 39":"1951"},
+{"Row":"118","Name":"Goldeen","Pokedex Number":"118","Img name":"118","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"56","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"328","ATK":"123","DEF":"115","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1006","100% CP @ 39":"992"},
+{"Row":"119","Name":"Seaking","Pokedex Number":"119","Img name":"119","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"56","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"489","ATK":"175","DEF":"154","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2040","100% CP @ 39":"2011"},
+{"Row":"120","Name":"Staryu","Pokedex Number":"120","Img name":"120","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"57","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"309","ATK":"137","DEF":"112","STA":"60","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"926","100% CP @ 39":"913"},
+{"Row":"121","Name":"Starmie","Pokedex Number":"121","Img name":"121","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"57","Cross Gen":"0","Type 1":"water","Type 2":"psychic","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"514","ATK":"210","DEF":"184","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2303","100% CP @ 39":"2270"},
+{"Row":"122","Name":"Mr Mime","Pokedex Number":"122","Img name":"122","Generation":"1","Evolution Stage":"1","Evolved":"1","FamilyID":"58","Cross Gen":"0","Type 1":"psychic","Type 2":"fairy","Weather 1":"Windy","Weather 2":"Cloudy","STAT TOTAL":"505","ATK":"192","DEF":"233","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"1","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1984","100% CP @ 39":"1956"},
+{"Row":"123","Name":"Scyther","Pokedex Number":"123","Img name":"123","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"59","Cross Gen":"0","Type 1":"bug","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"528","ATK":"218","DEF":"170","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2464","100% CP @ 39":"2429"},
+{"Row":"124","Name":"Jynx","Pokedex Number":"124","Img name":"124","Generation":"1","Evolution Stage":"1","Evolved":"1","FamilyID":"60","Cross Gen":"0","Type 1":"ice","Type 2":"psychic","Weather 1":"Snow","Weather 2":"Windy","STAT TOTAL":"535","ATK":"223","DEF":"182","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"3","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2512","100% CP @ 39":"2476"},
+{"Row":"125","Name":"Electabuzz","Pokedex Number":"125","Img name":"125","Generation":"1","Evolution Stage":"1","Evolved":"1","FamilyID":"61","Cross Gen":"1","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"501","ATK":"198","DEF":"173","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"2","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"2196","100% CP @ 39":"2165"},
+{"Row":"126","Name":"Magmar","Pokedex Number":"126","Img name":"126","Generation":"1","Evolution Stage":"1","Evolved":"1","FamilyID":"62","Cross Gen":"1","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"505","ATK":"206","DEF":"169","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"2254","100% CP @ 39":"2222"},
+{"Row":"127","Name":"Pinsir","Pokedex Number":"127","Img name":"127","Generation":"1","Evolution Stage":"1","Evolved":"1","FamilyID":"63","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"565","ATK":"238","DEF":"197","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2770","100% CP @ 39":"2730"},
+{"Row":"128","Name":"Tauros","Pokedex Number":"128","Img name":"128","Generation":"1","Evolution Stage":"1","Evolved":"1","FamilyID":"64","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"545","ATK":"198","DEF":"197","STA":"150","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"1","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2488","100% CP @ 39":"2452"},
+{"Row":"129","Name":"Magikarp","Pokedex Number":"129","Img name":"129","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"65","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"171","ATK":"29","DEF":"102","STA":"40","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"1","Hatchable":"0","Shiny":"1","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"220","100% CP @ 39":"217"},
+{"Row":"130","Name":"Gyarados","Pokedex Number":"130","Img name":"130","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"65","Cross Gen":"0","Type 1":"water","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"624","ATK":"237","DEF":"197","STA":"190","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"1","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3281","100% CP @ 39":"3234"},
+{"Row":"131","Name":"Lapras","Pokedex Number":"131","Img name":"131","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"66","Cross Gen":"0","Type 1":"water","Type 2":"ice","Weather 1":"Rainy","Weather 2":"Snow","STAT TOTAL":"605","ATK":"165","DEF":"180","STA":"260","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"10","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2603","100% CP @ 39":"2566"},
+{"Row":"132","Name":"Ditto","Pokedex Number":"132","Img name":"132","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"67","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"278","ATK":"91","DEF":"91","STA":"96","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"718","100% CP @ 39":"707"},
+{"Row":"133","Name":"Eevee","Pokedex Number":"133","Img name":"133","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"68","Cross Gen":"1","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"335","ATK":"104","DEF":"121","STA":"110","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"969","100% CP @ 39":"955"},
+{"Row":"134","Name":"Vaporeon","Pokedex Number":"134","Img name":"134","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"68","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"642","ATK":"205","DEF":"177","STA":"260","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3157","100% CP @ 39":"3112"},
+{"Row":"135","Name":"Jolteon","Pokedex Number":"135","Img name":"135","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"68","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"563","ATK":"232","DEF":"201","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"3","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2730","100% CP @ 39":"2691"},
+{"Row":"136","Name":"Flareon","Pokedex Number":"136","Img name":"136","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"68","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"580","ATK":"246","DEF":"204","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2904","100% CP @ 39":"2863"},
+{"Row":"137","Name":"Porygon","Pokedex Number":"137","Img name":"137","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"69","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"422","ATK":"153","DEF":"139","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"10","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"1567","100% CP @ 39":"1545"},
+{"Row":"138","Name":"Omanyte","Pokedex Number":"138","Img name":"138","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"70","Cross Gen":"0","Type 1":"rock","Type 2":"water","Weather 1":"Partly cloudy","Weather 2":"Rainy","STAT TOTAL":"399","ATK":"155","DEF":"174","STA":"70","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1345","100% CP @ 39":"1326"},
+{"Row":"139","Name":"Omastar","Pokedex Number":"139","Img name":"139","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"70","Cross Gen":"0","Type 1":"rock","Type 2":"water","Weather 1":"Partly cloudy","Weather 2":"Rainy","STAT TOTAL":"574","ATK":"207","DEF":"227","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2685","100% CP @ 39":"2647"},
+{"Row":"140","Name":"Kabuto","Pokedex Number":"140","Img name":"140","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"71","Cross Gen":"0","Type 1":"rock","Type 2":"water","Weather 1":"Partly cloudy","Weather 2":"Rainy","STAT TOTAL":"370","ATK":"148","DEF":"162","STA":"60","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1172","100% CP @ 39":"1156"},
+{"Row":"141","Name":"Kabutops","Pokedex Number":"141","Img name":"141","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"71","Cross Gen":"0","Type 1":"rock","Type 2":"water","Weather 1":"Partly cloudy","Weather 2":"Rainy","STAT TOTAL":"543","ATK":"220","DEF":"203","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2517","100% CP @ 39":"2481"},
+{"Row":"142","Name":"Aerodactyl","Pokedex Number":"142","Img name":"142","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"72","Cross Gen":"0","Type 1":"rock","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"545","ATK":"221","DEF":"164","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"10","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2608","100% CP @ 39":"2571"},
+{"Row":"143","Name":"Snorlax","Pokedex Number":"143","Img name":"143","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"73","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"700","ATK":"190","DEF":"190","STA":"320","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"10","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3355","100% CP @ 39":"3307"},
+{"Row":"144","Name":"Articuno","Pokedex Number":"144","Img name":"144","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"74","Cross Gen":"0","Type 1":"ice","Type 2":"flying","Weather 1":"Snow","Weather 2":"Windy","STAT TOTAL":"621","ATK":"192","DEF":"249","STA":"180","Legendary":"1","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"1","Future Evolve":"0","100% CP @ 40":"2933","100% CP @ 39":"2891"},
+{"Row":"145","Name":"Zapdos","Pokedex Number":"145","Img name":"145","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"75","Cross Gen":"0","Type 1":"electric","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"621","ATK":"253","DEF":"188","STA":"180","Legendary":"1","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"1","Future Evolve":"0","100% CP @ 40":"3330","100% CP @ 39":"3282"},
+{"Row":"146","Name":"Moltres","Pokedex Number":"146","Img name":"146","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"76","Cross Gen":"0","Type 1":"fire","Type 2":"flying","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"615","ATK":"251","DEF":"184","STA":"180","Legendary":"1","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"1","Future Evolve":"0","100% CP @ 40":"3272","100% CP @ 39":"3225"},
+{"Row":"147","Name":"Dratini","Pokedex Number":"147","Img name":"147","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"77","Cross Gen":"0","Type 1":"dragon","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"295","ATK":"119","DEF":"94","STA":"82","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"10","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"860","100% CP @ 39":"848"},
+{"Row":"148","Name":"Dragonair","Pokedex Number":"148","Img name":"148","Generation":"1","Evolution Stage":"2","Evolved":"1","FamilyID":"77","Cross Gen":"0","Type 1":"dragon","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"423","ATK":"163","DEF":"138","STA":"122","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1609","100% CP @ 39":"1586"},
+{"Row":"149","Name":"Dragonite","Pokedex Number":"149","Img name":"149","Generation":"1","Evolution Stage":"3","Evolved":"1","FamilyID":"77","Cross Gen":"0","Type 1":"dragon","Type 2":"flying","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"646","ATK":"263","DEF":"201","STA":"182","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3581","100% CP @ 39":"3530"},
+{"Row":"150","Name":"Mewtwo","Pokedex Number":"150","Img name":"150","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"78","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"675","ATK":"300","DEF":"182","STA":"193","Legendary":"1","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3982","100% CP @ 39":"3925"},
+{"Row":"151","Name":"Mew","Pokedex Number":"151","Img name":"151","Generation":"1","Evolution Stage":"1","Evolved":"1","FamilyID":"79","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"620","ATK":"210","DEF":"210","STA":"200","Legendary":"2","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3090","100% CP @ 39":"3046"},
+{"Row":"152","Name":"Chikorita","Pokedex Number":"152","Img name":"152","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"80","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"304","ATK":"92","DEF":"122","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"801","100% CP @ 39":"790"},
+{"Row":"153","Name":"Bayleef","Pokedex Number":"153","Img name":"153","Generation":"2","Evolution Stage":"2","Evolved":"0","FamilyID":"80","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"397","ATK":"122","DEF":"155","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1296","100% CP @ 39":"1277"},
+{"Row":"154","Name":"Meganium","Pokedex Number":"154","Img name":"154","Generation":"2","Evolution Stage":"3","Evolved":"1","FamilyID":"80","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"530","ATK":"168","DEF":"202","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2227","100% CP @ 39":"2195"},
+{"Row":"155","Name":"Cyndaquil","Pokedex Number":"155","Img name":"155","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"81","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"290","ATK":"116","DEF":"96","STA":"78","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"831","100% CP @ 39":"819"},
+{"Row":"156","Name":"Quilava","Pokedex Number":"156","Img name":"156","Generation":"2","Evolution Stage":"2","Evolved":"0","FamilyID":"81","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"403","ATK":"158","DEF":"129","STA":"116","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1484","100% CP @ 39":"1462"},
+{"Row":"157","Name":"Typhlosion","Pokedex Number":"157","Img name":"157","Generation":"2","Evolution Stage":"3","Evolved":"1","FamilyID":"81","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"555","ATK":"223","DEF":"176","STA":"156","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2686","100% CP @ 39":"2648"},
+{"Row":"158","Name":"Totodile","Pokedex Number":"158","Img name":"158","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"82","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"333","ATK":"117","DEF":"116","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1011","100% CP @ 39":"997"},
+{"Row":"159","Name":"Croconaw","Pokedex Number":"159","Img name":"159","Generation":"2","Evolution Stage":"2","Evolved":"0","FamilyID":"82","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"431","ATK":"150","DEF":"151","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1598","100% CP @ 39":"1576"},
+{"Row":"160","Name":"Feraligatr","Pokedex Number":"160","Img name":"160","Generation":"2","Evolution Stage":"3","Evolved":"1","FamilyID":"82","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"572","ATK":"205","DEF":"197","STA":"170","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2721","100% CP @ 39":"2682"},
+{"Row":"161","Name":"Sentret","Pokedex Number":"161","Img name":"161","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"83","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"226","ATK":"79","DEF":"77","STA":"70","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"519","100% CP @ 39":"511"},
+{"Row":"162","Name":"Furret","Pokedex Number":"162","Img name":"162","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"83","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"448","ATK":"148","DEF":"130","STA":"170","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1667","100% CP @ 39":"1643"},
+{"Row":"163","Name":"Hoothoot","Pokedex Number":"163","Img name":"163","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"84","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"288","ATK":"67","DEF":"101","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"640","100% CP @ 39":"631"},
+{"Row":"164","Name":"Noctowl","Pokedex Number":"164","Img name":"164","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"84","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"524","ATK":"145","DEF":"179","STA":"200","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2040","100% CP @ 39":"2011"},
+{"Row":"165","Name":"Ledyba","Pokedex Number":"165","Img name":"165","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"85","Cross Gen":"0","Type 1":"bug","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"294","ATK":"72","DEF":"142","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"663","100% CP @ 39":"654"},
+{"Row":"166","Name":"Ledian","Pokedex Number":"166","Img name":"166","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"85","Cross Gen":"0","Type 1":"bug","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"426","ATK":"107","DEF":"209","STA":"110","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1275","100% CP @ 39":"1256"},
+{"Row":"167","Name":"Spinarak","Pokedex Number":"167","Img name":"167","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"86","Cross Gen":"0","Type 1":"bug","Type 2":"poison","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"258","ATK":"105","DEF":"73","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"685","100% CP @ 39":"675"},
+{"Row":"168","Name":"Ariados","Pokedex Number":"168","Img name":"168","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"86","Cross Gen":"0","Type 1":"bug","Type 2":"poison","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"429","ATK":"161","DEF":"128","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1636","100% CP @ 39":"1613"},
+{"Row":"169","Name":"Crobat","Pokedex Number":"169","Img name":"169","Generation":"2","Evolution Stage":"3","Evolved":"1","FamilyID":"17","Cross Gen":"0","Type 1":"poison","Type 2":"flying","Weather 1":"Cloudy","Weather 2":"Windy","STAT TOTAL":"542","ATK":"194","DEF":"178","STA":"170","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2466","100% CP @ 39":"2431"},
+{"Row":"170","Name":"Chinchou","Pokedex Number":"170","Img name":"170","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"87","Cross Gen":"0","Type 1":"water","Type 2":"electric","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"362","ATK":"106","DEF":"106","STA":"150","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1067","100% CP @ 39":"1052"},
+{"Row":"171","Name":"Lanturn","Pokedex Number":"171","Img name":"171","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"87","Cross Gen":"0","Type 1":"water","Type 2":"electric","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"542","ATK":"146","DEF":"146","STA":"250","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2077","100% CP @ 39":"2047"},
+{"Row":"172","Name":"Pichu","Pokedex Number":"172","Img name":"172","Generation":"2","Evolution Stage":"0","Evolved":"0","FamilyID":"10","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"180","ATK":"77","DEF":"63","STA":"40","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"1","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"376","100% CP @ 39":"370"},
+{"Row":"173","Name":"Cleffa","Pokedex Number":"173","Img name":"173","Generation":"2","Evolution Stage":"0","Evolved":"0","FamilyID":"14","Cross Gen":"0","Type 1":"fairy","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"266","ATK":"75","DEF":"91","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"620","100% CP @ 39":"611"},
+{"Row":"174","Name":"Igglybuff","Pokedex Number":"174","Img name":"174","Generation":"2","Evolution Stage":"0","Evolved":"0","FamilyID":"16","Cross Gen":"0","Type 1":"normal","Type 2":"fairy","Weather 1":"Partly cloudy","Weather 2":"Cloudy","STAT TOTAL":"283","ATK":"69","DEF":"34","STA":"180","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"512","100% CP @ 39":"505"},
+{"Row":"175","Name":"Togepi","Pokedex Number":"175","Img name":"175","Generation":"2","Evolution Stage":"0","Evolved":"0","FamilyID":"88","Cross Gen":"0","Type 1":"fairy","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"253","ATK":"67","DEF":"116","STA":"70","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"540","100% CP @ 39":"532"},
+{"Row":"176","Name":"Togetic","Pokedex Number":"176","Img name":"176","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"88","Cross Gen":"0","Type 1":"fairy","Type 2":"flying","Weather 1":"Cloudy","Weather 2":"Windy","STAT TOTAL":"440","ATK":"139","DEF":"191","STA":"110","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"1543","100% CP @ 39":"1521"},
+{"Row":"177","Name":"Natu","Pokedex Number":"177","Img name":"177","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"89","Cross Gen":"0","Type 1":"psychic","Type 2":"flying","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"303","ATK":"134","DEF":"89","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"925","100% CP @ 39":"911"},
+{"Row":"178","Name":"Xatu","Pokedex Number":"178","Img name":"178","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"89","Cross Gen":"0","Type 1":"psychic","Type 2":"flying","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"468","ATK":"192","DEF":"146","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1975","100% CP @ 39":"1947"},
+{"Row":"179","Name":"Mareep","Pokedex Number":"179","Img name":"179","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"90","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"306","ATK":"114","DEF":"82","STA":"110","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"10","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"887","100% CP @ 39":"874"},
+{"Row":"180","Name":"Flaaffy","Pokedex Number":"180","Img name":"180","Generation":"2","Evolution Stage":"2","Evolved":"0","FamilyID":"90","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"397","ATK":"145","DEF":"112","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1402","100% CP @ 39":"1382"},
+{"Row":"181","Name":"Ampharos","Pokedex Number":"181","Img name":"181","Generation":"2","Evolution Stage":"3","Evolved":"1","FamilyID":"90","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"563","ATK":"211","DEF":"172","STA":"180","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2695","100% CP @ 39":"2656"},
+{"Row":"182","Name":"Bellossom","Pokedex Number":"182","Img name":"182","Generation":"2","Evolution Stage":"3","Evolved":"1","FamilyID":"18","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"508","ATK":"169","DEF":"189","STA":"150","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2108","100% CP @ 39":"2078"},
+{"Row":"183","Name":"Marill","Pokedex Number":"183","Img name":"183","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"91","Cross Gen":"0","Type 1":"water","Type 2":"fairy","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"270","ATK":"37","DEF":"93","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"420","100% CP @ 39":"414"},
+{"Row":"184","Name":"Azumarill","Pokedex Number":"184","Img name":"184","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"91","Cross Gen":"0","Type 1":"water","Type 2":"fairy","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"464","ATK":"112","DEF":"152","STA":"200","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1503","100% CP @ 39":"1481"},
+{"Row":"185","Name":"Sudowoodo","Pokedex Number":"185","Img name":"185","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"92","Cross Gen":"0","Type 1":"rock","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"505","ATK":"167","DEF":"198","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"10","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2065","100% CP @ 39":"2035"},
+{"Row":"186","Name":"Politoed","Pokedex Number":"186","Img name":"186","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"27","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"546","ATK":"174","DEF":"192","STA":"180","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2371","100% CP @ 39":"2337"},
+{"Row":"187","Name":"Hoppip","Pokedex Number":"187","Img name":"187","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"93","Cross Gen":"0","Type 1":"grass","Type 2":"flying","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"238","ATK":"67","DEF":"101","STA":"70","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"508","100% CP @ 39":"501"},
+{"Row":"188","Name":"Skiploom","Pokedex Number":"188","Img name":"188","Generation":"2","Evolution Stage":"2","Evolved":"0","FamilyID":"93","Cross Gen":"0","Type 1":"grass","Type 2":"flying","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"328","ATK":"91","DEF":"127","STA":"110","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"882","100% CP @ 39":"869"},
+{"Row":"189","Name":"Jumpluff","Pokedex Number":"189","Img name":"189","Generation":"2","Evolution Stage":"3","Evolved":"1","FamilyID":"93","Cross Gen":"0","Type 1":"grass","Type 2":"flying","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"465","ATK":"118","DEF":"197","STA":"150","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1553","100% CP @ 39":"1531"},
+{"Row":"190","Name":"Aipom","Pokedex Number":"190","Img name":"190","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"94","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"358","ATK":"136","DEF":"112","STA":"110","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"1188","100% CP @ 39":"1171"},
+{"Row":"191","Name":"Sunkern","Pokedex Number":"191","Img name":"191","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"95","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"170","ATK":"55","DEF":"55","STA":"60","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"316","100% CP @ 39":"312"},
+{"Row":"192","Name":"Sunflora","Pokedex Number":"192","Img name":"192","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"95","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"483","ATK":"185","DEF":"148","STA":"150","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2048","100% CP @ 39":"2019"},
+{"Row":"193","Name":"Yanma","Pokedex Number":"193","Img name":"193","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"96","Cross Gen":"0","Type 1":"bug","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"378","ATK":"154","DEF":"94","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"1326","100% CP @ 39":"1308"},
+{"Row":"194","Name":"Wooper","Pokedex Number":"194","Img name":"194","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"97","Cross Gen":"0","Type 1":"water","Type 2":"ground","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"260","ATK":"75","DEF":"75","STA":"110","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"596","100% CP @ 39":"587"},
+{"Row":"195","Name":"Quagsire","Pokedex Number":"195","Img name":"195","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"97","Cross Gen":"0","Type 1":"water","Type 2":"ground","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"494","ATK":"152","DEF":"152","STA":"190","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1929","100% CP @ 39":"1902"},
+{"Row":"196","Name":"Espeon","Pokedex Number":"196","Img name":"196","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"68","Cross Gen":"1","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"585","ATK":"261","DEF":"194","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3000","100% CP @ 39":"2958"},
+{"Row":"197","Name":"Umbreon","Pokedex Number":"197","Img name":"197","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"68","Cross Gen":"1","Type 1":"dark","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"566","ATK":"126","DEF":"250","STA":"190","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2052","100% CP @ 39":"2023"},
+{"Row":"198","Name":"Murkrow","Pokedex Number":"198","Img name":"198","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"98","Cross Gen":"0","Type 1":"dark","Type 2":"flying","Weather 1":"Fog","Weather 2":"Windy","STAT TOTAL":"382","ATK":"175","DEF":"87","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"1392","100% CP @ 39":"1372"},
+{"Row":"199","Name":"Slowking","Pokedex Number":"199","Img name":"199","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"34","Cross Gen":"0","Type 1":"water","Type 2":"psychic","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"561","ATK":"177","DEF":"194","STA":"190","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2482","100% CP @ 39":"2446"},
+{"Row":"200","Name":"Misdreavus","Pokedex Number":"200","Img name":"200","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"99","Cross Gen":"0","Type 1":"ghost","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"454","ATK":"167","DEF":"167","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"1781","100% CP @ 39":"1756"},
+{"Row":"201","Name":"Unown","Pokedex Number":"201","Img name":"201","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"100","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"323","ATK":"136","DEF":"91","STA":"96","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1022","100% CP @ 39":"1008"},
+{"Row":"202","Name":"Wobbuffet","Pokedex Number":"202","Img name":"202","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"101","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"546","ATK":"60","DEF":"106","STA":"380","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1024","100% CP @ 39":"1009"},
+{"Row":"203","Name":"Girafarig","Pokedex Number":"203","Img name":"203","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"102","Cross Gen":"0","Type 1":"normal","Type 2":"psychic","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"455","ATK":"182","DEF":"133","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1863","100% CP @ 39":"1836"},
+{"Row":"204","Name":"Pineco","Pokedex Number":"204","Img name":"204","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"103","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"354","ATK":"108","DEF":"146","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1045","100% CP @ 39":"1030"},
+{"Row":"205","Name":"Forretress","Pokedex Number":"205","Img name":"205","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"103","Cross Gen":"0","Type 1":"bug","Type 2":"steel","Weather 1":"Rainy","Weather 2":"Snow","STAT TOTAL":"553","ATK":"161","DEF":"242","STA":"150","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2263","100% CP @ 39":"2231"},
+{"Row":"206","Name":"Dunsparce","Pokedex Number":"206","Img name":"206","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"104","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"462","ATK":"131","DEF":"131","STA":"200","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1615","100% CP @ 39":"1592"},
+{"Row":"207","Name":"Gligar","Pokedex Number":"207","Img name":"207","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"105","Cross Gen":"0","Type 1":"ground","Type 2":"flying","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"477","ATK":"143","DEF":"204","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"1758","100% CP @ 39":"1733"},
+{"Row":"208","Name":"Steelix","Pokedex Number":"208","Img name":"208","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"42","Cross Gen":"0","Type 1":"steel","Type 2":"ground","Weather 1":"Snow","Weather 2":"Sunny/clear","STAT TOTAL":"631","ATK":"148","DEF":"333","STA":"150","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2439","100% CP @ 39":"2404"},
+{"Row":"209","Name":"Snubbull","Pokedex Number":"209","Img name":"209","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"106","Cross Gen":"0","Type 1":"fairy","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"346","ATK":"137","DEF":"89","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1124","100% CP @ 39":"1108"},
+{"Row":"210","Name":"Granbull","Pokedex Number":"210","Img name":"210","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"106","Cross Gen":"0","Type 1":"fairy","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"529","ATK":"212","DEF":"137","STA":"180","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2440","100% CP @ 39":"2406"},
+{"Row":"211","Name":"Qwilfish","Pokedex Number":"211","Img name":"211","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"107","Cross Gen":"0","Type 1":"water","Type 2":"poison","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"462","ATK":"184","DEF":"148","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1910","100% CP @ 39":"1883"},
+{"Row":"212","Name":"Scizor","Pokedex Number":"212","Img name":"212","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"59","Cross Gen":"0","Type 1":"bug","Type 2":"steel","Weather 1":"Rainy","Weather 2":"Snow","STAT TOTAL":"567","ATK":"236","DEF":"191","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2801","100% CP @ 39":"2761"},
+{"Row":"213","Name":"Shuckle","Pokedex Number":"213","Img name":"213","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"108","Cross Gen":"0","Type 1":"bug","Type 2":"rock","Weather 1":"Rainy","Weather 2":"Partly cloudy","STAT TOTAL":"453","ATK":"17","DEF":"396","STA":"40","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"300","100% CP @ 39":"296"},
+{"Row":"214","Name":"Heracross","Pokedex Number":"214","Img name":"214","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"109","Cross Gen":"0","Type 1":"bug","Type 2":"fighting","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"583","ATK":"234","DEF":"189","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"1","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2938","100% CP @ 39":"2896"},
+{"Row":"215","Name":"Sneasel","Pokedex Number":"215","Img name":"215","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"110","Cross Gen":"0","Type 1":"dark","Type 2":"ice","Weather 1":"Fog","Weather 2":"Snow","STAT TOTAL":"456","ATK":"189","DEF":"157","STA":"110","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"1868","100% CP @ 39":"1841"},
+{"Row":"216","Name":"Teddiursa","Pokedex Number":"216","Img name":"216","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"111","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"355","ATK":"142","DEF":"93","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1184","100% CP @ 39":"1167"},
+{"Row":"217","Name":"Ursaring","Pokedex Number":"217","Img name":"217","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"111","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"560","ATK":"236","DEF":"144","STA":"180","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2760","100% CP @ 39":"2720"},
+{"Row":"218","Name":"Slugma","Pokedex Number":"218","Img name":"218","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"112","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"269","ATK":"118","DEF":"71","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"750","100% CP @ 39":"740"},
+{"Row":"219","Name":"Magcargo","Pokedex Number":"219","Img name":"219","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"112","Cross Gen":"0","Type 1":"fire","Type 2":"rock","Weather 1":"Sunny/clear","Weather 2":"Partly cloudy","STAT TOTAL":"448","ATK":"139","DEF":"209","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1543","100% CP @ 39":"1521"},
+{"Row":"220","Name":"Swinub","Pokedex Number":"220","Img name":"220","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"113","Cross Gen":"0","Type 1":"ice","Type 2":"ground","Weather 1":"Snow","Weather 2":"Sunny/clear","STAT TOTAL":"264","ATK":"90","DEF":"74","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"663","100% CP @ 39":"653"},
+{"Row":"221","Name":"Piloswine","Pokedex Number":"221","Img name":"221","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"113","Cross Gen":"0","Type 1":"ice","Type 2":"ground","Weather 1":"Snow","Weather 2":"Sunny/clear","STAT TOTAL":"528","ATK":"181","DEF":"147","STA":"200","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"2","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"2284","100% CP @ 39":"2252"},
+{"Row":"222","Name":"Corsola","Pokedex Number":"222","Img name":"222","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"114","Cross Gen":"0","Type 1":"water","Type 2":"rock","Weather 1":"Rainy","Weather 2":"Partly cloudy","STAT TOTAL":"384","ATK":"118","DEF":"156","STA":"110","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"1","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1214","100% CP @ 39":"1197"},
+{"Row":"223","Name":"Remoraid","Pokedex Number":"223","Img name":"223","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"115","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"266","ATK":"127","DEF":"69","STA":"70","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"749","100% CP @ 39":"738"},
+{"Row":"224","Name":"Octillery","Pokedex Number":"224","Img name":"224","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"115","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"488","ATK":"197","DEF":"141","STA":"150","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2124","100% CP @ 39":"2094"},
+{"Row":"225","Name":"Delibird","Pokedex Number":"225","Img name":"225","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"116","Cross Gen":"0","Type 1":"ice","Type 2":"flying","Weather 1":"Snow","Weather 2":"Windy","STAT TOTAL":"308","ATK":"128","DEF":"90","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"937","100% CP @ 39":"924"},
+{"Row":"226","Name":"Mantine","Pokedex Number":"226","Img name":"226","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"117","Cross Gen":"0","Type 1":"water","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"538","ATK":"148","DEF":"260","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2032","100% CP @ 39":"2003"},
+{"Row":"227","Name":"Skarmory","Pokedex Number":"227","Img name":"227","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"118","Cross Gen":"0","Type 1":"steel","Type 2":"flying","Weather 1":"Snow","Weather 2":"Windy","STAT TOTAL":"538","ATK":"148","DEF":"260","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"10","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2032","100% CP @ 39":"2003"},
+{"Row":"228","Name":"Houndour","Pokedex Number":"228","Img name":"228","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"119","Cross Gen":"0","Type 1":"dark","Type 2":"fire","Weather 1":"Fog","Weather 2":"Sunny/clear","STAT TOTAL":"335","ATK":"152","DEF":"93","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1110","100% CP @ 39":"1094"},
+{"Row":"229","Name":"Houndoom","Pokedex Number":"229","Img name":"229","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"119","Cross Gen":"0","Type 1":"dark","Type 2":"fire","Weather 1":"Fog","Weather 2":"Sunny/clear","STAT TOTAL":"533","ATK":"224","DEF":"159","STA":"150","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2529","100% CP @ 39":"2493"},
+{"Row":"230","Name":"Kingdra","Pokedex Number":"230","Img name":"230","Generation":"2","Evolution Stage":"3","Evolved":"1","FamilyID":"55","Cross Gen":"1","Type 1":"water","Type 2":"dragon","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"538","ATK":"194","DEF":"194","STA":"150","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2424","100% CP @ 39":"2389"},
+{"Row":"231","Name":"Phanpy","Pokedex Number":"231","Img name":"231","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"120","Cross Gen":"0","Type 1":"ground","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"394","ATK":"107","DEF":"107","STA":"180","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1175","100% CP @ 39":"1158"},
+{"Row":"232","Name":"Donphan","Pokedex Number":"232","Img name":"232","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"120","Cross Gen":"0","Type 1":"ground","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"608","ATK":"214","DEF":"214","STA":"180","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3022","100% CP @ 39":"2979"},
+{"Row":"233","Name":"Porygon2","Pokedex Number":"233","Img name":"233","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"69","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"551","ATK":"198","DEF":"183","STA":"170","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"2546","100% CP @ 39":"2509"},
+{"Row":"234","Name":"Stantler","Pokedex Number":"234","Img name":"234","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"121","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"470","ATK":"192","DEF":"132","STA":"146","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1988","100% CP @ 39":"1960"},
+{"Row":"235","Name":"Smeargle","Pokedex Number":"235","Img name":"235","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"122","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"238","ATK":"40","DEF":"88","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"389","100% CP @ 39":"384"},
+{"Row":"236","Name":"Tyrogue","Pokedex Number":"236","Img name":"236","Generation":"2","Evolution Stage":"0","Evolved":"0","FamilyID":"48","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"198","ATK":"64","DEF":"64","STA":"70","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"404","100% CP @ 39":"398"},
+{"Row":"237","Name":"Hitmontop","Pokedex Number":"237","Img name":"237","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"48","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"487","ATK":"173","DEF":"214","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1905","100% CP @ 39":"1878"},
+{"Row":"238","Name":"Smoochum","Pokedex Number":"238","Img name":"238","Generation":"2","Evolution Stage":"0","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ice","Type 2":"psychic","Weather 1":"Snow","Weather 2":"Windy","STAT TOTAL":"359","ATK":"153","DEF":"116","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1230","100% CP @ 39":"1213"},
+{"Row":"239","Name":"Elekid","Pokedex Number":"239","Img name":"239","Generation":"2","Evolution Stage":"0","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"335","ATK":"135","DEF":"110","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1073","100% CP @ 39":"1057"},
+{"Row":"240","Name":"Magby","Pokedex Number":"240","Img name":"240","Generation":"2","Evolution Stage":"0","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"349","ATK":"151","DEF":"108","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1178","100% CP @ 39":"1161"},
+{"Row":"241","Name":"Miltank","Pokedex Number":"241","Img name":"241","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"123","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"558","ATK":"157","DEF":"211","STA":"190","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"10","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2312","100% CP @ 39":"2279"},
+{"Row":"242","Name":"Blissey","Pokedex Number":"242","Img name":"242","Generation":"2","Evolution Stage":"2","Evolved":"1","FamilyID":"","Cross Gen":"1","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"868","ATK":"129","DEF":"229","STA":"510","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3219","100% CP @ 39":"3173"},
+{"Row":"243","Name":"Raikou","Pokedex Number":"243","Img name":"243","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"124","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"631","ATK":"241","DEF":"210","STA":"180","Legendary":"1","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"1","Future Evolve":"0","100% CP @ 40":"3349","100% CP @ 39":"3301"},
+{"Row":"244","Name":"Entei","Pokedex Number":"244","Img name":"244","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"125","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"641","ATK":"235","DEF":"176","STA":"230","Legendary":"1","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"1","Future Evolve":"0","100% CP @ 40":"3377","100% CP @ 39":"3329"},
+{"Row":"245","Name":"Suicune","Pokedex Number":"245","Img name":"245","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"126","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"615","ATK":"180","DEF":"235","STA":"200","Legendary":"1","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"1","Future Evolve":"0","100% CP @ 40":"2823","100% CP @ 39":"2783"},
+{"Row":"246","Name":"Larvitar","Pokedex Number":"246","Img name":"246","Generation":"2","Evolution Stage":"1","Evolved":"0","FamilyID":"127","Cross Gen":"0","Type 1":"rock","Type 2":"ground","Weather 1":"Partly cloudy","Weather 2":"Sunny/clear","STAT TOTAL":"308","ATK":"115","DEF":"93","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"10","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"904","100% CP @ 39":"891"},
+{"Row":"247","Name":"Pupitar","Pokedex Number":"247","Img name":"247","Generation":"2","Evolution Stage":"2","Evolved":"0","FamilyID":"127","Cross Gen":"0","Type 1":"rock","Type 2":"ground","Weather 1":"Partly cloudy","Weather 2":"Sunny/clear","STAT TOTAL":"428","ATK":"155","DEF":"133","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1608","100% CP @ 39":"1585"},
+{"Row":"248","Name":"Tyranitar","Pokedex Number":"248","Img name":"248","Generation":"2","Evolution Stage":"3","Evolved":"1","FamilyID":"127","Cross Gen":"0","Type 1":"rock","Type 2":"dark","Weather 1":"Partly cloudy","Weather 2":"Fog","STAT TOTAL":"663","ATK":"251","DEF":"212","STA":"200","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"4","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3670","100% CP @ 39":"3617"},
+{"Row":"249","Name":"Lugia","Pokedex Number":"249","Img name":"249","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"128","Cross Gen":"0","Type 1":"psychic","Type 2":"flying","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"728","ATK":"193","DEF":"323","STA":"212","Legendary":"1","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"5","Hatchable":"0","Shiny":"1","Nest":"0","New":"0","Not-Gettable":"1","Future Evolve":"0","100% CP @ 40":"3598","100% CP @ 39":"3547"},
+{"Row":"250","Name":"Ho Oh","Pokedex Number":"250","Img name":"250","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"129","Cross Gen":"0","Type 1":"fire","Type 2":"flying","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"706","ATK":"239","DEF":"274","STA":"193","Legendary":"1","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"1","Future Evolve":"0","100% CP @ 40":"3889","100% CP @ 39":"3833"},
+{"Row":"251","Name":"Celebi","Pokedex Number":"251","Img name":"251","Generation":"2","Evolution Stage":"1","Evolved":"1","FamilyID":"130","Cross Gen":"0","Type 1":"psychic","Type 2":"grass","Weather 1":"Windy","Weather 2":"Sunny/clear","STAT TOTAL":"620","ATK":"210","DEF":"210","STA":"200","Legendary":"2","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3090","100% CP @ 39":"3046"},
+{"Row":"252","Name":"Treecko","Pokedex Number":"252","Img name":"252","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"131","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"308","ATK":"124","DEF":"104","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"923","100% CP @ 39":"909"},
+{"Row":"253","Name":"Grovyle","Pokedex Number":"253","Img name":"253","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"131","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"402","ATK":"172","DEF":"130","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1508","100% CP @ 39":"1486"},
+{"Row":"254","Name":"Sceptile","Pokedex Number":"254","Img name":"254","Generation":"3","Evolution Stage":"3","Evolved":"1","FamilyID":"131","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"543","ATK":"223","DEF":"180","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2584","100% CP @ 39":"2547"},
+{"Row":"255","Name":"Torchic","Pokedex Number":"255","Img name":"255","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"132","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"312","ATK":"130","DEF":"92","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"959","100% CP @ 39":"946"},
+{"Row":"256","Name":"Combusken","Pokedex Number":"256","Img name":"256","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"132","Cross Gen":"0","Type 1":"fire","Type 2":"fighting","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"398","ATK":"163","DEF":"115","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1472","100% CP @ 39":"1451"},
+{"Row":"257","Name":"Blaziken","Pokedex Number":"257","Img name":"257","Generation":"3","Evolution Stage":"3","Evolved":"1","FamilyID":"132","Cross Gen":"0","Type 1":"fire","Type 2":"fighting","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"541","ATK":"240","DEF":"141","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2631","100% CP @ 39":"2593"},
+{"Row":"258","Name":"Mudkip","Pokedex Number":"258","Img name":"258","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"133","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"319","ATK":"126","DEF":"93","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"981","100% CP @ 39":"967"},
+{"Row":"259","Name":"Marshtomp","Pokedex Number":"259","Img name":"259","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"133","Cross Gen":"0","Type 1":"water","Type 2":"ground","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"429","ATK":"156","DEF":"133","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1617","100% CP @ 39":"1594"},
+{"Row":"260","Name":"Swampert","Pokedex Number":"260","Img name":"260","Generation":"3","Evolution Stage":"3","Evolved":"1","FamilyID":"133","Cross Gen":"0","Type 1":"water","Type 2":"ground","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"583","ATK":"208","DEF":"175","STA":"200","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2815","100% CP @ 39":"2774"},
+{"Row":"261","Name":"Poochyena","Pokedex Number":"261","Img name":"261","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"134","Cross Gen":"0","Type 1":"dark","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"229","ATK":"96","DEF":"63","STA":"70","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"1","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"564","100% CP @ 39":"556"},
+{"Row":"262","Name":"Mightyena","Pokedex Number":"262","Img name":"262","Generation":"3","Evolution Stage":"2","Evolved":"1","FamilyID":"134","Cross Gen":"0","Type 1":"dark","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"448","ATK":"171","DEF":"137","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"1","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1783","100% CP @ 39":"1757"},
+{"Row":"263","Name":"Zigzagoon","Pokedex Number":"263","Img name":"263","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"135","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"214","ATK":"58","DEF":"80","STA":"76","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"423","100% CP @ 39":"417"},
+{"Row":"264","Name":"Linoone","Pokedex Number":"264","Img name":"264","Generation":"3","Evolution Stage":"2","Evolved":"1","FamilyID":"135","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"426","ATK":"142","DEF":"128","STA":"156","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1533","100% CP @ 39":"1511"},
+{"Row":"265","Name":"Wurmple","Pokedex Number":"265","Img name":"265","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"136","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"226","ATK":"75","DEF":"61","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"502","100% CP @ 39":"494"},
+{"Row":"266","Name":"Silcoon","Pokedex Number":"266","Img name":"266","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"136","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"251","ATK":"60","DEF":"91","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"517","100% CP @ 39":"509"},
+{"Row":"267","Name":"Beautifly","Pokedex Number":"267","Img name":"267","Generation":"3","Evolution Stage":"3","Evolved":"1","FamilyID":"136","Cross Gen":"0","Type 1":"bug","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"407","ATK":"189","DEF":"98","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1573","100% CP @ 39":"1551"},
+{"Row":"268","Name":"Cascoon","Pokedex Number":"268","Img name":"268","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"137","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"251","ATK":"60","DEF":"91","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"517","100% CP @ 39":"509"},
+{"Row":"269","Name":"Dustox","Pokedex Number":"269","Img name":"269","Generation":"3","Evolution Stage":"3","Evolved":"1","FamilyID":"137","Cross Gen":"0","Type 1":"bug","Type 2":"poison","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"390","ATK":"98","DEF":"172","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1121","100% CP @ 39":"1105"},
+{"Row":"270","Name":"Lotad","Pokedex Number":"270","Img name":"270","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"138","Cross Gen":"0","Type 1":"water","Type 2":"grass","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"237","ATK":"71","DEF":"86","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"526","100% CP @ 39":"518"},
+{"Row":"271","Name":"Lombre","Pokedex Number":"271","Img name":"271","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"138","Cross Gen":"0","Type 1":"water","Type 2":"grass","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"360","ATK":"112","DEF":"128","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1102","100% CP @ 39":"1086"},
+{"Row":"272","Name":"Ludicolo","Pokedex Number":"272","Img name":"272","Generation":"3","Evolution Stage":"3","Evolved":"1","FamilyID":"138","Cross Gen":"0","Type 1":"water","Type 2":"grass","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"524","ATK":"173","DEF":"191","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2229","100% CP @ 39":"2197"},
+{"Row":"273","Name":"Seedot","Pokedex Number":"273","Img name":"273","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"139","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"237","ATK":"71","DEF":"86","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"526","100% CP @ 39":"518"},
+{"Row":"274","Name":"Nuzleaf","Pokedex Number":"274","Img name":"274","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"139","Cross Gen":"0","Type 1":"grass","Type 2":"dark","Weather 1":"Sunny/clear","Weather 2":"Fog","STAT TOTAL":"352","ATK":"134","DEF":"78","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1117","100% CP @ 39":"1101"},
+{"Row":"275","Name":"Shiftry","Pokedex Number":"275","Img name":"275","Generation":"3","Evolution Stage":"3","Evolved":"1","FamilyID":"139","Cross Gen":"0","Type 1":"grass","Type 2":"dark","Weather 1":"Sunny/clear","Weather 2":"Fog","STAT TOTAL":"501","ATK":"200","DEF":"121","STA":"180","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2186","100% CP @ 39":"2155"},
+{"Row":"276","Name":"Taillow","Pokedex Number":"276","Img name":"276","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"140","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"247","ATK":"106","DEF":"61","STA":"80","Legendary":"0","Aquireable":"3","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"642","100% CP @ 39":"632"},
+{"Row":"277","Name":"Swellow","Pokedex Number":"277","Img name":"277","Generation":"3","Evolution Stage":"2","Evolved":"1","FamilyID":"140","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"435","ATK":"185","DEF":"130","STA":"120","Legendary":"0","Aquireable":"3","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1747","100% CP @ 39":"1722"},
+{"Row":"278","Name":"Wingull","Pokedex Number":"278","Img name":"278","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"141","Cross Gen":"0","Type 1":"water","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"247","ATK":"106","DEF":"61","STA":"80","Legendary":"0","Aquireable":"3","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"642","100% CP @ 39":"632"},
+{"Row":"279","Name":"Pelipper","Pokedex Number":"279","Img name":"279","Generation":"3","Evolution Stage":"2","Evolved":"1","FamilyID":"141","Cross Gen":"0","Type 1":"water","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"484","ATK":"175","DEF":"189","STA":"120","Legendary":"0","Aquireable":"3","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1969","100% CP @ 39":"1941"},
+{"Row":"280","Name":"Ralts","Pokedex Number":"280","Img name":"280","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"142","Cross Gen":"0","Type 1":"psychic","Type 2":"fairy","Weather 1":"Windy","Weather 2":"Cloudy","STAT TOTAL":"198","ATK":"79","DEF":"63","STA":"56","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"10","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"436","100% CP @ 39":"430"},
+{"Row":"281","Name":"Kirlia","Pokedex Number":"281","Img name":"281","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"142","Cross Gen":"0","Type 1":"psychic","Type 2":"fairy","Weather 1":"Windy","Weather 2":"Cloudy","STAT TOTAL":"293","ATK":"117","DEF":"100","STA":"76","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"843","100% CP @ 39":"831"},
+{"Row":"282","Name":"Gardevoir","Pokedex Number":"282","Img name":"282","Generation":"3","Evolution Stage":"3","Evolved":"1","FamilyID":"142","Cross Gen":"0","Type 1":"psychic","Type 2":"fairy","Weather 1":"Windy","Weather 2":"Cloudy","STAT TOTAL":"593","ATK":"237","DEF":"220","STA":"136","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2964","100% CP @ 39":"2922"},
+{"Row":"283","Name":"Surskit","Pokedex Number":"283","Img name":"283","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"143","Cross Gen":"0","Type 1":"bug","Type 2":"water","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"270","ATK":"93","DEF":"97","STA":"80","Legendary":"0","Aquireable":"3","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"695","100% CP @ 39":"685"},
+{"Row":"284","Name":"Masquerain","Pokedex Number":"284","Img name":"284","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"143","Cross Gen":"0","Type 1":"bug","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"493","ATK":"192","DEF":"161","STA":"140","Legendary":"0","Aquireable":"3","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2135","100% CP @ 39":"2104"},
+{"Row":"285","Name":"Shroomish","Pokedex Number":"285","Img name":"285","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"144","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"304","ATK":"74","DEF":"110","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"722","100% CP @ 39":"711"},
+{"Row":"286","Name":"Breloom","Pokedex Number":"286","Img name":"286","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"144","Cross Gen":"0","Type 1":"grass","Type 2":"fighting","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"514","ATK":"241","DEF":"153","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2407","100% CP @ 39":"2373"},
+{"Row":"287","Name":"Slakoth","Pokedex Number":"287","Img name":"287","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"145","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"328","ATK":"104","DEF":"104","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"10","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"942","100% CP @ 39":"928"},
+{"Row":"288","Name":"Vigoroth","Pokedex Number":"288","Img name":"288","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"145","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"478","ATK":"159","DEF":"159","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1896","100% CP @ 39":"1869"},
+{"Row":"289","Name":"Slaking","Pokedex Number":"289","Img name":"289","Generation":"3","Evolution Stage":"3","Evolved":"0","FamilyID":"145","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"746","ATK":"290","DEF":"183","STA":"273","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4548","100% CP @ 39":"4484"},
+{"Row":"290","Name":"Nincada","Pokedex Number":"290","Img name":"290","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"146","Cross Gen":"0","Type 1":"bug","Type 2":"ground","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"295","ATK":"80","DEF":"153","STA":"62","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"674","100% CP @ 39":"665"},
+{"Row":"291","Name":"Ninjask","Pokedex Number":"291","Img name":"291","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"146","Cross Gen":"0","Type 1":"bug","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"437","ATK":"199","DEF":"116","STA":"122","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1790","100% CP @ 39":"1765"},
+{"Row":"292","Name":"Shedinja","Pokedex Number":"292","Img name":"292","Generation":"3","Evolution Stage":"3","Evolved":"0","FamilyID":"146","Cross Gen":"0","Type 1":"bug","Type 2":"ghost","Weather 1":"Rainy","Weather 2":"Fog","STAT TOTAL":"235","ATK":"153","DEF":"80","STA":"2","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"421","100% CP @ 39":"415"},
+{"Row":"293","Name":"Whismur","Pokedex Number":"293","Img name":"293","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"147","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"262","ATK":"92","DEF":"42","STA":"128","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"603","100% CP @ 39":"594"},
+{"Row":"294","Name":"Loudred","Pokedex Number":"294","Img name":"294","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"147","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"383","ATK":"134","DEF":"81","STA":"168","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1233","100% CP @ 39":"1215"},
+{"Row":"295","Name":"Exploud","Pokedex Number":"295","Img name":"295","Generation":"3","Evolution Stage":"3","Evolved":"0","FamilyID":"147","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"529","ATK":"179","DEF":"142","STA":"208","Legendary":"0","Aquireable":"2","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2267","100% CP @ 39":"2234"},
+{"Row":"296","Name":"Makuhita","Pokedex Number":"296","Img name":"296","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"148","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"297","ATK":"99","DEF":"54","STA":"144","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"745","100% CP @ 39":"735"},
+{"Row":"297","Name":"Hariyama","Pokedex Number":"297","Img name":"297","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"148","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"611","ATK":"209","DEF":"114","STA":"288","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2765","100% CP @ 39":"2726"},
+{"Row":"298","Name":"Azurill","Pokedex Number":"298","Img name":"298","Generation":"3","Evolution Stage":"0","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"fairy","Weather 1":"Partly cloudy","Weather 2":"Cloudy","STAT TOTAL":"207","ATK":"36","DEF":"71","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"316","100% CP @ 39":"312"},
+{"Row":"299","Name":"Nosepass","Pokedex Number":"299","Img name":"299","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"149","Cross Gen":"0","Type 1":"rock","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"378","ATK":"82","DEF":"236","STA":"60","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"831","100% CP @ 39":"819"},
+{"Row":"300","Name":"Skitty","Pokedex Number":"300","Img name":"300","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"150","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"268","ATK":"84","DEF":"84","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"659","100% CP @ 39":"650"},
+{"Row":"301","Name":"Delcatty","Pokedex Number":"301","Img name":"301","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"151","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"404","ATK":"132","DEF":"132","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1385","100% CP @ 39":"1366"},
+{"Row":"302","Name":"Sableye","Pokedex Number":"302","Img name":"302","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"152","Cross Gen":"0","Type 1":"dark","Type 2":"ghost","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"382","ATK":"141","DEF":"141","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"2","Hatchable":"0","Shiny":"1","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1305","100% CP @ 39":"1286"},
+{"Row":"303","Name":"Mawile","Pokedex Number":"303","Img name":"303","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"153","Cross Gen":"0","Type 1":"steel","Type 2":"fairy","Weather 1":"Snow","Weather 2":"Cloudy","STAT TOTAL":"410","ATK":"155","DEF":"155","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"2","Hatchable":"0","Shiny":"1","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1484","100% CP @ 39":"1463"},
+{"Row":"304","Name":"Aron","Pokedex Number":"304","Img name":"304","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"154","Cross Gen":"0","Type 1":"steel","Type 2":"rock","Weather 1":"Snow","Weather 2":"Partly cloudy","STAT TOTAL":"389","ATK":"121","DEF":"168","STA":"100","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"1","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1232","100% CP @ 39":"1214"},
+{"Row":"305","Name":"Lairon","Pokedex Number":"305","Img name":"305","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"154","Cross Gen":"0","Type 1":"steel","Type 2":"rock","Weather 1":"Snow","Weather 2":"Partly cloudy","STAT TOTAL":"518","ATK":"158","DEF":"240","STA":"120","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"1","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2004","100% CP @ 39":"1976"},
+{"Row":"306","Name":"Aggron","Pokedex Number":"306","Img name":"306","Generation":"3","Evolution Stage":"3","Evolved":"0","FamilyID":"154","Cross Gen":"0","Type 1":"steel","Type 2":"rock","Weather 1":"Snow","Weather 2":"Partly cloudy","STAT TOTAL":"652","ATK":"198","DEF":"314","STA":"140","Legendary":"0","Aquireable":"2","Spawns":"0","Regional":"0","Raidable":"4","Hatchable":"0","Shiny":"1","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3004","100% CP @ 39":"2961"},
+{"Row":"307","Name":"Meditite","Pokedex Number":"307","Img name":"307","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"155","Cross Gen":"0","Type 1":"fighting","Type 2":"psychic","Weather 1":"Cloudy","Weather 2":"Windy","STAT TOTAL":"245","ATK":"78","DEF":"107","STA":"60","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"555","100% CP @ 39":"547"},
+{"Row":"308","Name":"Medicham","Pokedex Number":"308","Img name":"308","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"155","Cross Gen":"0","Type 1":"fighting","Type 2":"psychic","Weather 1":"Cloudy","Weather 2":"Windy","STAT TOTAL":"393","ATK":"121","DEF":"152","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1275","100% CP @ 39":"1257"},
+{"Row":"309","Name":"Electrike","Pokedex Number":"309","Img name":"309","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"156","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"281","ATK":"123","DEF":"78","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"810","100% CP @ 39":"798"},
+{"Row":"310","Name":"Manectric","Pokedex Number":"310","Img name":"310","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"156","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"482","ATK":"215","DEF":"127","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"2","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2131","100% CP @ 39":"2100"},
+{"Row":"311","Name":"Plusle","Pokedex Number":"311","Img name":"311","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"157","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"434","ATK":"167","DEF":"147","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1681","100% CP @ 39":"1657"},
+{"Row":"312","Name":"Minun","Pokedex Number":"312","Img name":"312","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"158","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"434","ATK":"147","DEF":"167","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1585","100% CP @ 39":"1563"},
+{"Row":"313","Name":"Volbeat","Pokedex Number":"313","Img name":"313","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"159","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"444","ATK":"143","DEF":"171","STA":"130","Legendary":"0","Aquireable":"3","Spawns":"1","Regional":"1","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1620","100% CP @ 39":"1597"},
+{"Row":"314","Name":"Illumise","Pokedex Number":"314","Img name":"314","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"159","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"444","ATK":"143","DEF":"171","STA":"130","Legendary":"0","Aquireable":"3","Spawns":"1","Regional":"1","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1620","100% CP @ 39":"1597"},
+{"Row":"315","Name":"Roselia","Pokedex Number":"315","Img name":"315","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"160","Cross Gen":"0","Type 1":"grass","Type 2":"poison","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"434","ATK":"186","DEF":"148","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"1718","100% CP @ 39":"1694"},
+{"Row":"316","Name":"Gulpin","Pokedex Number":"316","Img name":"316","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"161","Cross Gen":"0","Type 1":"poison","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"319","ATK":"80","DEF":"99","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"788","100% CP @ 39":"777"},
+{"Row":"317","Name":"Swalot","Pokedex Number":"317","Img name":"317","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"161","Cross Gen":"0","Type 1":"poison","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"499","ATK":"140","DEF":"159","STA":"200","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1872","100% CP @ 39":"1845"},
+{"Row":"318","Name":"Carvanha","Pokedex Number":"318","Img name":"318","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"162","Cross Gen":"0","Type 1":"water","Type 2":"dark","Weather 1":"Rainy","Weather 2":"Fog","STAT TOTAL":"300","ATK":"171","DEF":"39","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"874","100% CP @ 39":"862"},
+{"Row":"319","Name":"Sharpedo","Pokedex Number":"319","Img name":"319","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"163","Cross Gen":"0","Type 1":"water","Type 2":"dark","Weather 1":"Rainy","Weather 2":"Fog","STAT TOTAL":"466","ATK":"243","DEF":"83","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1986","100% CP @ 39":"1957"},
+{"Row":"320","Name":"Wailmer","Pokedex Number":"320","Img name":"320","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"164","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"464","ATK":"136","DEF":"68","STA":"260","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"1","Hatchable":"2","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1424","100% CP @ 39":"1404"},
+{"Row":"321","Name":"Wailord","Pokedex Number":"321","Img name":"321","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"164","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"602","ATK":"175","DEF":"87","STA":"340","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2258","100% CP @ 39":"2225"},
+{"Row":"322","Name":"Numel","Pokedex Number":"322","Img name":"322","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"165","Cross Gen":"0","Type 1":"fire","Type 2":"ground","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"321","ATK":"119","DEF":"82","STA":"120","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"957","100% CP @ 39":"944"},
+{"Row":"323","Name":"Camerupt","Pokedex Number":"323","Img name":"323","Generation":"3","Evolution Stage":"2","Evolved":"1","FamilyID":"165","Cross Gen":"0","Type 1":"fire","Type 2":"ground","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"473","ATK":"194","DEF":"139","STA":"140","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2016","100% CP @ 39":"1987"},
+{"Row":"324","Name":"Torkoal","Pokedex Number":"324","Img name":"324","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"166","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"525","ATK":"151","DEF":"234","STA":"140","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"1","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2036","100% CP @ 39":"2007"},
+{"Row":"325","Name":"Spoink","Pokedex Number":"325","Img name":"325","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"167","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"390","ATK":"125","DEF":"145","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1285","100% CP @ 39":"1266"},
+{"Row":"326","Name":"Grumpig","Pokedex Number":"326","Img name":"326","Generation":"3","Evolution Stage":"2","Evolved":"1","FamilyID":"167","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"542","ATK":"171","DEF":"211","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2310","100% CP @ 39":"2277"},
+{"Row":"327","Name":"Spinda","Pokedex Number":"327","Img name":"327","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"168","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"352","ATK":"116","DEF":"116","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1088","100% CP @ 39":"1072"},
+{"Row":"328","Name":"Trapinch","Pokedex Number":"328","Img name":"328","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"169","Cross Gen":"0","Type 1":"ground","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"330","ATK":"162","DEF":"78","STA":"90","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"10","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1092","100% CP @ 39":"1076"},
+{"Row":"329","Name":"Vibrava","Pokedex Number":"329","Img name":"329","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"169","Cross Gen":"0","Type 1":"ground","Type 2":"dragon","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"333","ATK":"134","DEF":"99","STA":"100","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1065","100% CP @ 39":"1050"},
+{"Row":"330","Name":"Flygon","Pokedex Number":"330","Img name":"330","Generation":"3","Evolution Stage":"3","Evolved":"1","FamilyID":"169","Cross Gen":"0","Type 1":"ground","Type 2":"dragon","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"533","ATK":"205","DEF":"168","STA":"160","Legendary":"0","Aquireable":"2","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2458","100% CP @ 39":"2423"},
+{"Row":"331","Name":"Cacnea","Pokedex Number":"331","Img name":"331","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"170","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"330","ATK":"156","DEF":"74","STA":"100","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1080","100% CP @ 39":"1065"},
+{"Row":"332","Name":"Cacturne","Pokedex Number":"332","Img name":"332","Generation":"3","Evolution Stage":"2","Evolved":"1","FamilyID":"170","Cross Gen":"0","Type 1":"grass","Type 2":"dark","Weather 1":"Sunny/clear","Weather 2":"Fog","STAT TOTAL":"476","ATK":"221","DEF":"115","STA":"140","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2092","100% CP @ 39":"2062"},
+{"Row":"333","Name":"Swablu","Pokedex Number":"333","Img name":"333","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"171","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"305","ATK":"76","DEF":"139","STA":"90","Legendary":"0","Aquireable":"3","Spawns":"1","Regional":"0","Raidable":"1","Hatchable":"0","Shiny":"1","Nest":"1","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"722","100% CP @ 39":"712"},
+{"Row":"334","Name":"Altaria","Pokedex Number":"334","Img name":"334","Generation":"3","Evolution Stage":"2","Evolved":"1","FamilyID":"171","Cross Gen":"0","Type 1":"dragon","Type 2":"flying","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"499","ATK":"141","DEF":"208","STA":"150","Legendary":"0","Aquireable":"3","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"1","Nest":"0","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1868","100% CP @ 39":"1842"},
+{"Row":"335","Name":"Zangoose","Pokedex Number":"335","Img name":"335","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"172","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"492","ATK":"222","DEF":"124","STA":"146","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"1","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2214","100% CP @ 39":"2182"},
+{"Row":"336","Name":"Seviper","Pokedex Number":"336","Img name":"336","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"178","Cross Gen":"0","Type 1":"poison","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"460","ATK":"196","DEF":"118","STA":"146","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"1","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1928","100% CP @ 39":"1900"},
+{"Row":"337","Name":"Lunatone","Pokedex Number":"337","Img name":"337","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"179","Cross Gen":"0","Type 1":"rock","Type 2":"psychic","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"521","ATK":"178","DEF":"163","STA":"180","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2245","100% CP @ 39":"2213"},
+{"Row":"338","Name":"Solrock","Pokedex Number":"338","Img name":"338","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"180","Cross Gen":"0","Type 1":"rock","Type 2":"psychic","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"521","ATK":"178","DEF":"163","STA":"180","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2245","100% CP @ 39":"2213"},
+{"Row":"339","Name":"Barboach","Pokedex Number":"339","Img name":"339","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"181","Cross Gen":"0","Type 1":"water","Type 2":"ground","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"276","ATK":"93","DEF":"83","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"2","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"716","100% CP @ 39":"705"},
+{"Row":"340","Name":"Whiscash","Pokedex Number":"340","Img name":"340","Generation":"3","Evolution Stage":"2","Evolved":"1","FamilyID":"181","Cross Gen":"0","Type 1":"water","Type 2":"ground","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"513","ATK":"151","DEF":"142","STA":"220","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1991","100% CP @ 39":"1963"},
+{"Row":"341","Name":"Corphish","Pokedex Number":"341","Img name":"341","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"182","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"340","ATK":"141","DEF":"113","STA":"86","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1107","100% CP @ 39":"1092"},
+{"Row":"342","Name":"Crawdaunt","Pokedex Number":"342","Img name":"342","Generation":"3","Evolution Stage":"2","Evolved":"1","FamilyID":"182","Cross Gen":"0","Type 1":"water","Type 2":"dark","Weather 1":"Rainy","Weather 2":"Fog","STAT TOTAL":"506","ATK":"224","DEF":"156","STA":"126","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2317","100% CP @ 39":"2284"},
+{"Row":"343","Name":"Baltoy","Pokedex Number":"343","Img name":"343","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"183","Cross Gen":"0","Type 1":"ground","Type 2":"psychic","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"288","ATK":"77","DEF":"131","STA":"80","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"676","100% CP @ 39":"667"},
+{"Row":"344","Name":"Claydol","Pokedex Number":"344","Img name":"344","Generation":"3","Evolution Stage":"2","Evolved":"1","FamilyID":"183","Cross Gen":"0","Type 1":"ground","Type 2":"psychic","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"496","ATK":"140","DEF":"236","STA":"120","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1782","100% CP @ 39":"1756"},
+{"Row":"345","Name":"Lileep","Pokedex Number":"345","Img name":"345","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"184","Cross Gen":"0","Type 1":"rock","Type 2":"grass","Weather 1":"Partly cloudy","Weather 2":"Sunny/clear","STAT TOTAL":"391","ATK":"105","DEF":"154","STA":"132","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1181","100% CP @ 39":"1164"},
+{"Row":"346","Name":"Cradily","Pokedex Number":"346","Img name":"346","Generation":"3","Evolution Stage":"2","Evolved":"1","FamilyID":"184","Cross Gen":"0","Type 1":"rock","Type 2":"grass","Weather 1":"Partly cloudy","Weather 2":"Sunny/clear","STAT TOTAL":"522","ATK":"152","DEF":"198","STA":"172","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2081","100% CP @ 39":"2051"},
+{"Row":"347","Name":"Anorith","Pokedex Number":"347","Img name":"347","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"185","Cross Gen":"0","Type 1":"rock","Type 2":"bug","Weather 1":"Partly cloudy","Weather 2":"Rainy","STAT TOTAL":"366","ATK":"176","DEF":"100","STA":"90","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1310","100% CP @ 39":"1292"},
+{"Row":"348","Name":"Armaldo","Pokedex Number":"348","Img name":"348","Generation":"3","Evolution Stage":"2","Evolved":"1","FamilyID":"185","Cross Gen":"0","Type 1":"rock","Type 2":"bug","Weather 1":"Partly cloudy","Weather 2":"Rainy","STAT TOTAL":"555","ATK":"222","DEF":"183","STA":"150","Legendary":"0","Aquireable":"2","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2675","100% CP @ 39":"2637"},
+{"Row":"349","Name":"Feebas","Pokedex Number":"349","Img name":"349","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"186","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"171","ATK":"29","DEF":"102","STA":"40","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"10","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"220","100% CP @ 39":"217"},
+{"Row":"350","Name":"Milotic","Pokedex Number":"350","Img name":"350","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"186","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"624","ATK":"192","DEF":"242","STA":"190","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2967","100% CP @ 39":"2925"},
+{"Row":"351","Name":"Castform","Pokedex Number":"351","Img name":"351","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"187","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"418","ATK":"139","DEF":"139","STA":"140","Legendary":"0","Aquireable":"3","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1486","100% CP @ 39":"1464"},
+{"Row":"352","Name":"Kecleon","Pokedex Number":"352","Img name":"352","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"188","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"493","ATK":"161","DEF":"212","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1924","100% CP @ 39":"1896"},
+{"Row":"353","Name":"Shuppet","Pokedex Number":"353","Img name":"353","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"189","Cross Gen":"0","Type 1":"ghost","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"292","ATK":"138","DEF":"66","STA":"88","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"1","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"872","100% CP @ 39":"860"},
+{"Row":"354","Name":"Banette","Pokedex Number":"354","Img name":"354","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"189","Cross Gen":"0","Type 1":"ghost","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"473","ATK":"218","DEF":"127","STA":"128","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"1","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2073","100% CP @ 39":"2044"},
+{"Row":"355","Name":"Duskull","Pokedex Number":"355","Img name":"355","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"190","Cross Gen":"0","Type 1":"ghost","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"272","ATK":"70","DEF":"162","STA":"40","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"1","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"523","100% CP @ 39":"516"},
+{"Row":"356","Name":"Dusclops","Pokedex Number":"356","Img name":"356","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"190","Cross Gen":"0","Type 1":"ghost","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"438","ATK":"124","DEF":"234","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"1","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"1335","100% CP @ 39":"1316"},
+{"Row":"357","Name":"Tropius","Pokedex Number":"357","Img name":"357","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"191","Cross Gen":"0","Type 1":"grass","Type 2":"flying","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"499","ATK":"136","DEF":"165","STA":"198","Legendary":"0","Aquireable":"3","Spawns":"1","Regional":"1","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1846","100% CP @ 39":"1820"},
+{"Row":"358","Name":"Chimecho","Pokedex Number":"358","Img name":"358","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"192","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"499","ATK":"175","DEF":"174","STA":"150","Legendary":"0","Aquireable":"3","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2095","100% CP @ 39":"2065"},
+{"Row":"359","Name":"Absol","Pokedex Number":"359","Img name":"359","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"193","Cross Gen":"0","Type 1":"dark","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"496","ATK":"246","DEF":"120","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"4","Hatchable":"0","Shiny":"1","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2280","100% CP @ 39":"2248"},
+{"Row":"360","Name":"Wynaut","Pokedex Number":"360","Img name":"360","Generation":"3","Evolution Stage":"0","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"317","ATK":"41","DEF":"86","STA":"190","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"503","100% CP @ 39":"496"},
+{"Row":"361","Name":"Snorunt","Pokedex Number":"361","Img name":"361","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"194","Cross Gen":"0","Type 1":"ice","Type 2":"","Weather 1":"Snow","Weather 2":"","STAT TOTAL":"290","ATK":"95","DEF":"95","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"1","Hatchable":"5","Shiny":"1","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"1","100% CP @ 40":"772","100% CP @ 39":"761"},
+{"Row":"362","Name":"Glalie","Pokedex Number":"362","Img name":"362","Generation":"3","Evolution Stage":"2","Evolved":"1","FamilyID":"","Cross Gen":"0","Type 1":"ice","Type 2":"","Weather 1":"Snow","Weather 2":"","STAT TOTAL":"484","ATK":"162","DEF":"162","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"1","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1945","100% CP @ 39":"1917"},
+{"Row":"363","Name":"Spheal","Pokedex Number":"363","Img name":"363","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ice","Type 2":"water","Weather 1":"Snow","Weather 2":"Rainy","STAT TOTAL":"325","ATK":"95","DEF":"90","STA":"140","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"876","100% CP @ 39":"863"},
+{"Row":"364","Name":"Sealeo","Pokedex Number":"364","Img name":"364","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ice","Type 2":"water","Weather 1":"Snow","Weather 2":"Rainy","STAT TOTAL":"449","ATK":"137","DEF":"132","STA":"180","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1607","100% CP @ 39":"1584"},
+{"Row":"365","Name":"Walrein","Pokedex Number":"365","Img name":"365","Generation":"3","Evolution Stage":"3","Evolved":"1","FamilyID":"","Cross Gen":"0","Type 1":"ice","Type 2":"water","Weather 1":"Snow","Weather 2":"Rainy","STAT TOTAL":"578","ATK":"182","DEF":"176","STA":"220","Legendary":"0","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2606","100% CP @ 39":"2569"},
+{"Row":"366","Name":"Clamperl","Pokedex Number":"366","Img name":"366","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"352","ATK":"133","DEF":"149","STA":"70","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1091","100% CP @ 39":"1075"},
+{"Row":"367","Name":"Huntail","Pokedex Number":"367","Img name":"367","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"501","ATK":"197","DEF":"194","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2140","100% CP @ 39":"2109"},
+{"Row":"368","Name":"Gorebyss","Pokedex Number":"368","Img name":"368","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"515","ATK":"211","DEF":"194","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2281","100% CP @ 39":"2248"},
+{"Row":"369","Name":"Relicanth","Pokedex Number":"369","Img name":"369","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"rock","Weather 1":"Rainy","Weather 2":"Partly cloudy","STAT TOTAL":"596","ATK":"162","DEF":"234","STA":"200","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"1","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2557","100% CP @ 39":"2521"},
+{"Row":"370","Name":"Luvdisc","Pokedex Number":"370","Img name":"370","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"301","ATK":"81","DEF":"134","STA":"86","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"735","100% CP @ 39":"725"},
+{"Row":"371","Name":"Bagon","Pokedex Number":"371","Img name":"371","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"331","ATK":"134","DEF":"107","STA":"90","Legendary":"0","Aquireable":"3","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1053","100% CP @ 39":"1038"},
+{"Row":"372","Name":"Shelgon","Pokedex Number":"372","Img name":"372","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"481","ATK":"172","DEF":"179","STA":"130","Legendary":"0","Aquireable":"3","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1958","100% CP @ 39":"1930"},
+{"Row":"373","Name":"Salamence","Pokedex Number":"373","Img name":"373","Generation":"3","Evolution Stage":"3","Evolved":"1","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"flying","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"635","ATK":"277","DEF":"168","STA":"190","Legendary":"0","Aquireable":"3","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3532","100% CP @ 39":"3481"},
+{"Row":"374","Name":"Beldum","Pokedex Number":"374","Img name":"374","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"psychic","Weather 1":"Snow","Weather 2":"Windy","STAT TOTAL":"317","ATK":"96","DEF":"141","STA":"80","Legendary":"0","Aquireable":"3","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"843","100% CP @ 39":"831"},
+{"Row":"375","Name":"Metang","Pokedex Number":"375","Img name":"375","Generation":"3","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"psychic","Weather 1":"Snow","Weather 2":"Windy","STAT TOTAL":"443","ATK":"138","DEF":"185","STA":"120","Legendary":"0","Aquireable":"3","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1570","100% CP @ 39":"1547"},
+{"Row":"376","Name":"Metagross","Pokedex Number":"376","Img name":"376","Generation":"3","Evolution Stage":"3","Evolved":"1","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"psychic","Weather 1":"Snow","Weather 2":"Windy","STAT TOTAL":"665","ATK":"257","DEF":"248","STA":"160","Legendary":"0","Aquireable":"3","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3644","100% CP @ 39":"3592"},
+{"Row":"377","Name":"Regirock","Pokedex Number":"377","Img name":"377","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"695","ATK":"179","DEF":"356","STA":"160","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3087","100% CP @ 39":"3043"},
+{"Row":"378","Name":"Regice","Pokedex Number":"378","Img name":"378","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ice","Type 2":"","Weather 1":"Snow","Weather 2":"","STAT TOTAL":"695","ATK":"179","DEF":"356","STA":"160","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3087","100% CP @ 39":"3043"},
+{"Row":"379","Name":"Registeel","Pokedex Number":"379","Img name":"379","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"","Weather 1":"Snow","Weather 2":"","STAT TOTAL":"588","ATK":"143","DEF":"285","STA":"160","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2261","100% CP @ 39":"2228"},
+{"Row":"380","Name":"Latias","Pokedex Number":"380","Img name":"380","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"psychic","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"656","ATK":"228","DEF":"268","STA":"160","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3377","100% CP @ 39":"3329"},
+{"Row":"381","Name":"Latios","Pokedex Number":"381","Img name":"381","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"psychic","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"656","ATK":"268","DEF":"228","STA":"160","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3644","100% CP @ 39":"3592"},
+{"Row":"382","Name":"Kyogre","Pokedex Number":"382","Img name":"382","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"703","ATK":"270","DEF":"251","STA":"182","Legendary":"1","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4074","100% CP @ 39":"4016"},
+{"Row":"383","Name":"Groudon","Pokedex Number":"383","Img name":"383","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ground","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"703","ATK":"270","DEF":"251","STA":"182","Legendary":"1","Aquireable":"1","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"1","Future Evolve":"0","100% CP @ 40":"4074","100% CP @ 39":"4016"},
+{"Row":"384","Name":"Rayquaza","Pokedex Number":"384","Img name":"384","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"flying","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"645","ATK":"284","DEF":"170","STA":"191","Legendary":"1","Aquireable":"3","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"1","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3645","100% CP @ 39":"3593"},
+{"Row":"385","Name":"Jirachi","Pokedex Number":"385","Img name":"385","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"psychic","Weather 1":"Snow","Weather 2":"Windy","STAT TOTAL":"620","ATK":"210","DEF":"210","STA":"200","Legendary":"2","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3090","100% CP @ 39":"3046"},
+{"Row":"386","Name":"Deoxys Defense","Pokedex Number":"386","Img name":"386-defense","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"574","ATK":"144","DEF":"330","STA":"100","Legendary":"2","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1978","100% CP @ 39":"1949"},
+{"Row":"387","Name":"Deoxys Normal","Pokedex Number":"386","Img name":"386","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"560","ATK":"345","DEF":"115","STA":"100","Legendary":"2","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2749","100% CP @ 39":"2709"},
+{"Row":"388","Name":"Deoxys Attack","Pokedex Number":"386","Img name":"386-attack","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"560","ATK":"414","DEF":"46","STA":"100","Legendary":"2","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2244","100% CP @ 39":"2212"},
+{"Row":"389","Name":"Deoxys Speed","Pokedex Number":"386","Img name":"386-speed","Generation":"3","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"548","ATK":"230","DEF":"218","STA":"100","Legendary":"2","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2504","100% CP @ 39":"2469"},
+{"Row":"390","Name":"Turtwig","Pokedex Number":"387","Img name":"387","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"344","ATK":"119","DEF":"115","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1066","100% CP @ 39":"1051"},
+{"Row":"391","Name":"Grotle","Pokedex Number":"388","Img name":"388","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"459","ATK":"157","DEF":"152","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1783","100% CP @ 39":"1757"},
+{"Row":"392","Name":"Torterra","Pokedex Number":"389","Img name":"389","Generation":"4","Evolution Stage":"3","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"ground","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"589","ATK":"202","DEF":"197","STA":"190","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2825","100% CP @ 39":"2785"},
+{"Row":"393","Name":"Chimchar","Pokedex Number":"390","Img name":"390","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"287","ATK":"113","DEF":"86","STA":"88","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"815","100% CP @ 39":"803"},
+{"Row":"394","Name":"Monferno","Pokedex Number":"391","Img name":"391","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"fighting","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"391","ATK":"158","DEF":"105","STA":"128","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1415","100% CP @ 39":"1395"},
+{"Row":"395","Name":"Infernape","Pokedex Number":"392","Img name":"392","Generation":"4","Evolution Stage":"3","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"fighting","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"525","ATK":"222","DEF":"151","STA":"152","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2464","100% CP @ 39":"2429"},
+{"Row":"396","Name":"Piplup","Pokedex Number":"393","Img name":"393","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"321","ATK":"112","DEF":"103","STA":"106","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"947","100% CP @ 39":"934"},
+{"Row":"397","Name":"Prinplup","Pokedex Number":"394","Img name":"394","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"421","ATK":"150","DEF":"143","STA":"128","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1549","100% CP @ 39":"1526"},
+{"Row":"398","Name":"Empoleon","Pokedex Number":"395","Img name":"395","Generation":"4","Evolution Stage":"3","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"steel","Weather 1":"Rainy","Weather 2":"Snow","STAT TOTAL":"571","ATK":"210","DEF":"193","STA":"168","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2741","100% CP @ 39":"2702"},
+{"Row":"399","Name":"Starly","Pokedex Number":"396","Img name":"396","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"239","ATK":"101","DEF":"58","STA":"80","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"603","100% CP @ 39":"594"},
+{"Row":"400","Name":"Staravia","Pokedex Number":"397","Img name":"397","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"351","ATK":"142","DEF":"99","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1170","100% CP @ 39":"1153"},
+{"Row":"401","Name":"Staraptor","Pokedex Number":"398","Img name":"398","Generation":"4","Evolution Stage":"3","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"549","ATK":"234","DEF":"145","STA":"170","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2675","100% CP @ 39":"2637"},
+{"Row":"402","Name":"Bidoof","Pokedex Number":"399","Img name":"399","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"271","ATK":"80","DEF":"73","STA":"118","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"641","100% CP @ 39":"632"},
+{"Row":"403","Name":"Bibarel","Pokedex Number":"400","Img name":"400","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"water","Weather 1":"Partly cloudy","Weather 2":"Rainy","STAT TOTAL":"439","ATK":"162","DEF":"119","STA":"158","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1683","100% CP @ 39":"1659"},
+{"Row":"404","Name":"Kricketot","Pokedex Number":"401","Img name":"401","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"193","ATK":"45","DEF":"74","STA":"74","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"333","100% CP @ 39":"328"},
+{"Row":"405","Name":"Kricketune","Pokedex Number":"402","Img name":"402","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"414","ATK":"160","DEF":"100","STA":"154","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1523","100% CP @ 39":"1501"},
+{"Row":"406","Name":"Shinx","Pokedex Number":"403","Img name":"403","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"271","ATK":"117","DEF":"64","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"750","100% CP @ 39":"740"},
+{"Row":"407","Name":"Luxio","Pokedex Number":"404","Img name":"404","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"374","ATK":"159","DEF":"95","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1324","100% CP @ 39":"1305"},
+{"Row":"408","Name":"Luxray","Pokedex Number":"405","Img name":"405","Generation":"4","Evolution Stage":"3","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"548","ATK":"232","DEF":"156","STA":"160","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2668","100% CP @ 39":"2630"},
+{"Row":"409","Name":"Budew","Pokedex Number":"406","Img name":"406","Generation":"4","Evolution Stage":"0","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"poison","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"297","ATK":"91","DEF":"126","STA":"80","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"766","100% CP @ 39":"755"},
+{"Row":"410","Name":"Roserade","Pokedex Number":"407","Img name":"407","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"poison","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"569","ATK":"243","DEF":"206","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2783","100% CP @ 39":"2743"},
+{"Row":"411","Name":"Cranidos","Pokedex Number":"408","Img name":"408","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"427","ATK":"218","DEF":"75","STA":"134","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1685","100% CP @ 39":"1661"},
+{"Row":"412","Name":"Rampardos","Pokedex Number":"409","Img name":"409","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"603","ATK":"295","DEF":"114","STA":"194","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3179","100% CP @ 39":"3133"},
+{"Row":"413","Name":"Shieldon","Pokedex Number":"410","Img name":"410","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"steel","Weather 1":"Partly cloudy","Weather 2":"Snow","STAT TOTAL":"344","ATK":"76","DEF":"208","STA":"60","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"735","100% CP @ 39":"724"},
+{"Row":"414","Name":"Bastiodon","Pokedex Number":"411","Img name":"411","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"steel","Weather 1":"Partly cloudy","Weather 2":"Snow","STAT TOTAL":"513","ATK":"94","DEF":"299","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1401","100% CP @ 39":"1381"},
+{"Row":"415","Name":"Burmy (Plant Cloak)","Pokedex Number":"412","Img name":"412","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"216","ATK":"53","DEF":"83","STA":"80","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"409","100% CP @ 39":"403"},
+{"Row":"415","Name":"Burmy (Trash Cloak)","Pokedex Number":"412","Img name":"412-trash","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"216","ATK":"53","DEF":"83","STA":"80","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"409","100% CP @ 39":"403"},
+{"Row":"415","Name":"Burmy (Sandy Cloak)","Pokedex Number":"412","Img name":"412-sandy","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"216","ATK":"53","DEF":"83","STA":"80","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"409","100% CP @ 39":"403"},
+{"Row":"418","Name":"Wormadam (Plant Cloak)","Pokedex Number":"413","Img name":"413","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"grass","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"450","ATK":"141","DEF":"189","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1616","100% CP @ 39":"1593"},
+{"Row":"419","Name":"Wormadam (Trash Cloak)","Pokedex Number":"413","Img name":"413-trash","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"grass","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"450","ATK":"141","DEF":"189","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1616","100% CP @ 39":"1593"},
+{"Row":"420","Name":"Wormadam (Sandy Cloak)","Pokedex Number":"413","Img name":"413-sandy","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"grass","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"450","ATK":"141","DEF":"189","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1616","100% CP @ 39":"1593"},
+{"Row":"421","Name":"Mothim","Pokedex Number":"414","Img name":"414","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"423","ATK":"185","DEF":"98","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1653","100% CP @ 39":"1629"},
+{"Row":"422","Name":"Combee","Pokedex Number":"415","Img name":"415","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"202","ATK":"59","DEF":"83","STA":"60","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"396","100% CP @ 39":"390"},
+{"Row":"423","Name":"Vespiquen","Pokedex Number":"416","Img name":"416","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"479","ATK":"149","DEF":"190","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1825","100% CP @ 39":"1799"},
+{"Row":"424","Name":"Pachirisu","Pokedex Number":"417","Img name":"417","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"396","ATK":"94","DEF":"182","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1110","100% CP @ 39":"1094"},
+{"Row":"425","Name":"Buizel","Pokedex Number":"418","Img name":"418","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"312","ATK":"132","DEF":"70","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"946","100% CP @ 39":"932"},
+{"Row":"426","Name":"Floatzel","Pokedex Number":"419","Img name":"419","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"509","ATK":"221","DEF":"118","STA":"170","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2312","100% CP @ 39":"2279"},
+{"Row":"427","Name":"Cherubi","Pokedex Number":"420","Img name":"420","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"294","ATK":"108","DEF":"96","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"829","100% CP @ 39":"817"},
+{"Row":"428","Name":"Cherrim","Pokedex Number":"421","Img name":"421","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"467","ATK":"170","DEF":"157","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1886","100% CP @ 39":"1859"},
+{"Row":"429","Name":"Shellos","Pokedex Number":"422","Img name":"422","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"366","ATK":"103","DEF":"111","STA":"152","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1069","100% CP @ 39":"1053"},
+{"Row":"430","Name":"Gastrodon","Pokedex Number":"423","Img name":"423","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"ground","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"540","ATK":"169","DEF":"149","STA":"222","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2265","100% CP @ 39":"2233"},
+{"Row":"431","Name":"Ambipom","Pokedex Number":"424","Img name":"424","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"498","ATK":"205","DEF":"143","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2218","100% CP @ 39":"2186"},
+{"Row":"432","Name":"Drifloon","Pokedex Number":"425","Img name":"425","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"flying","Weather 1":"Fog","Weather 2":"Windy","STAT TOTAL":"382","ATK":"117","DEF":"85","STA":"180","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1151","100% CP @ 39":"1134"},
+{"Row":"433","Name":"Drifblim","Pokedex Number":"426","Img name":"426","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"flying","Weather 1":"Fog","Weather 2":"Windy","STAT TOTAL":"587","ATK":"180","DEF":"107","STA":"300","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2387","100% CP @ 39":"2353"},
+{"Row":"434","Name":"Buneary","Pokedex Number":"427","Img name":"427","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"351","ATK":"130","DEF":"111","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1136","100% CP @ 39":"1120"},
+{"Row":"435","Name":"Lopunny","Pokedex Number":"428","Img name":"428","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"486","ATK":"156","DEF":"200","STA":"130","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1885","100% CP @ 39":"1858"},
+{"Row":"436","Name":"Mismagius","Pokedex Number":"429","Img name":"429","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"542","ATK":"211","DEF":"211","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2465","100% CP @ 39":"2430"},
+{"Row":"437","Name":"Honchkrow","Pokedex Number":"430","Img name":"430","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"flying","Weather 1":"Fog","Weather 2":"Windy","STAT TOTAL":"546","ATK":"243","DEF":"103","STA":"200","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2566","100% CP @ 39":"2529"},
+{"Row":"438","Name":"Glameow","Pokedex Number":"431","Img name":"431","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"292","ATK":"109","DEF":"85","STA":"98","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"823","100% CP @ 39":"811"},
+{"Row":"439","Name":"Purugly","Pokedex Number":"432","Img name":"432","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"450","ATK":"172","DEF":"136","STA":"142","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1798","100% CP @ 39":"1772"},
+{"Row":"440","Name":"Chingling","Pokedex Number":"433","Img name":"433","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"298","ATK":"114","DEF":"94","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"861","100% CP @ 39":"849"},
+{"Row":"441","Name":"Stunky","Pokedex Number":"434","Img name":"434","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"poison","Type 2":"dark","Weather 1":"Cloudy","Weather 2":"Fog","STAT TOTAL":"340","ATK":"121","DEF":"93","STA":"126","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1048","100% CP @ 39":"1033"},
+{"Row":"442","Name":"Skuntank","Pokedex Number":"435","Img name":"435","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"poison","Type 2":"dark","Weather 1":"Cloudy","Weather 2":"Fog","STAT TOTAL":"525","ATK":"184","DEF":"135","STA":"206","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2262","100% CP @ 39":"2230"},
+{"Row":"443","Name":"Bronzor","Pokedex Number":"436","Img name":"436","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"psychic","Weather 1":"Snow","Weather 2":"Windy","STAT TOTAL":"311","ATK":"43","DEF":"154","STA":"114","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"534","100% CP @ 39":"527"},
+{"Row":"444","Name":"Bronzong","Pokedex Number":"437","Img name":"437","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"psychic","Weather 1":"Snow","Weather 2":"Windy","STAT TOTAL":"508","ATK":"161","DEF":"213","STA":"134","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2026","100% CP @ 39":"1997"},
+{"Row":"445","Name":"Bonsly","Pokedex Number":"438","Img name":"438","Generation":"4","Evolution Stage":"0","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"379","ATK":"124","DEF":"155","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1213","100% CP @ 39":"1196"},
+{"Row":"446","Name":"Mime Jr.","Pokedex Number":"439","Img name":"439","Generation":"4","Evolution Stage":"0","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"fairy","Weather 1":"Windy","Weather 2":"Cloudy","STAT TOTAL":"329","ATK":"125","DEF":"164","STA":"40","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"867","100% CP @ 39":"855"},
+{"Row":"447","Name":"Happiny","Pokedex Number":"440","Img name":"440","Generation":"4","Evolution Stage":"0","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"330","ATK":"25","DEF":"105","STA":"200","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"401","100% CP @ 39":"395"},
+{"Row":"448","Name":"Chatot","Pokedex Number":"441","Img name":"441","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"427","ATK":"183","DEF":"92","STA":"152","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1653","100% CP @ 39":"1629"},
+{"Row":"449","Name":"Spiritomb","Pokedex Number":"442","Img name":"442","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"dark","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"468","ATK":"169","DEF":"199","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1802","100% CP @ 39":"1777"},
+{"Row":"450","Name":"Gible","Pokedex Number":"443","Img name":"443","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"ground","Weather 1":"Windy","Weather 2":"Sunny/clear","STAT TOTAL":"324","ATK":"124","DEF":"84","STA":"116","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"988","100% CP @ 39":"974"},
+{"Row":"451","Name":"Gabite","Pokedex Number":"444","Img name":"444","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"ground","Weather 1":"Windy","Weather 2":"Sunny/clear","STAT TOTAL":"438","ATK":"172","DEF":"130","STA":"136","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1728","100% CP @ 39":"1703"},
+{"Row":"452","Name":"Garchomp","Pokedex Number":"445","Img name":"445","Generation":"4","Evolution Stage":"3","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"ground","Weather 1":"Windy","Weather 2":"Sunny/clear","STAT TOTAL":"675","ATK":"261","DEF":"198","STA":"216","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3823","100% CP @ 39":"3769"},
+{"Row":"453","Name":"Munchlax","Pokedex Number":"446","Img name":"446","Generation":"4","Evolution Stage":"0","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"544","ATK":"137","DEF":"137","STA":"270","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1975","100% CP @ 39":"1947"},
+{"Row":"454","Name":"Riolu","Pokedex Number":"447","Img name":"447","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"285","ATK":"127","DEF":"78","STA":"80","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"833","100% CP @ 39":"821"},
+{"Row":"455","Name":"Lucario","Pokedex Number":"448","Img name":"448","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fighting","Type 2":"steel","Weather 1":"Cloudy","Weather 2":"Snow","STAT TOTAL":"520","ATK":"236","DEF":"144","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2461","100% CP @ 39":"2425"},
+{"Row":"456","Name":"Hippopotas","Pokedex Number":"449","Img name":"449","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ground","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"394","ATK":"124","DEF":"134","STA":"136","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1302","100% CP @ 39":"1283"},
+{"Row":"457","Name":"Hippowdon","Pokedex Number":"450","Img name":"450","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ground","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"629","ATK":"201","DEF":"212","STA":"216","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3089","100% CP @ 39":"3045"},
+{"Row":"458","Name":"Skorupi","Pokedex Number":"451","Img name":"451","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"poison","Type 2":"bug","Weather 1":"Cloudy","Weather 2":"Rainy","STAT TOTAL":"341","ATK":"93","DEF":"168","STA":"80","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"889","100% CP @ 39":"876"},
+{"Row":"459","Name":"Drapion","Pokedex Number":"452","Img name":"452","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"poison","Type 2":"dark","Weather 1":"Cloudy","Weather 2":"Fog","STAT TOTAL":"539","ATK":"180","DEF":"219","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2319","100% CP @ 39":"2286"},
+{"Row":"460","Name":"Croagunk","Pokedex Number":"453","Img name":"453","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"poison","Type 2":"fighting","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"288","ATK":"116","DEF":"76","STA":"96","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"822","100% CP @ 39":"810"},
+{"Row":"461","Name":"Toxicroak","Pokedex Number":"454","Img name":"454","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"poison","Type 2":"fighting","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"510","ATK":"211","DEF":"133","STA":"166","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2310","100% CP @ 39":"2277"},
+{"Row":"462","Name":"Carnivine","Pokedex Number":"455","Img name":"455","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"471","ATK":"187","DEF":"136","STA":"148","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1979","100% CP @ 39":"1951"},
+{"Row":"463","Name":"Finneon","Pokedex Number":"456","Img name":"456","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"313","ATK":"96","DEF":"119","STA":"98","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"853","100% CP @ 39":"840"},
+{"Row":"464","Name":"Lumineon","Pokedex Number":"457","Img name":"457","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"455","ATK":"142","DEF":"175","STA":"138","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1671","100% CP @ 39":"1648"},
+{"Row":"465","Name":"Mantyke","Pokedex Number":"458","Img name":"458","Generation":"4","Evolution Stage":"0","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"407","ATK":"105","DEF":"212","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1157","100% CP @ 39":"1140"},
+{"Row":"466","Name":"Snover","Pokedex Number":"459","Img name":"459","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"ice","Weather 1":"Sunny/clear","Weather 2":"Snow","STAT TOTAL":"345","ATK":"115","DEF":"110","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1054","100% CP @ 39":"1039"},
+{"Row":"467","Name":"Abomasnow","Pokedex Number":"460","Img name":"460","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"ice","Weather 1":"Sunny/clear","Weather 2":"Snow","STAT TOTAL":"521","ATK":"178","DEF":"163","STA":"180","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2245","100% CP @ 39":"2213"},
+{"Row":"468","Name":"Weavile","Pokedex Number":"461","Img name":"461","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"ice","Weather 1":"Fog","Weather 2":"Snow","STAT TOTAL":"565","ATK":"243","DEF":"182","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2815","100% CP @ 39":"2775"},
+{"Row":"469","Name":"Magnezone","Pokedex Number":"462","Img name":"462","Generation":"4","Evolution Stage":"3","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"steel","Weather 1":"Rainy","Weather 2":"Snow","STAT TOTAL":"595","ATK":"238","DEF":"217","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2996","100% CP @ 39":"2953"},
+{"Row":"470","Name":"Lickilicky","Pokedex Number":"463","Img name":"463","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"1","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"562","ATK":"161","DEF":"181","STA":"220","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2359","100% CP @ 39":"2325"},
+{"Row":"471","Name":"Rhyperior","Pokedex Number":"464","Img name":"464","Generation":"4","Evolution Stage":"3","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ground","Type 2":"rock","Weather 1":"Sunny/clear","Weather 2":"Partly cloudy","STAT TOTAL":"695","ATK":"241","DEF":"224","STA":"230","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3869","100% CP @ 39":"3813"},
+{"Row":"472","Name":"Tangrowth","Pokedex Number":"465","Img name":"465","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"626","ATK":"207","DEF":"219","STA":"200","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3110","100% CP @ 39":"3065"},
+{"Row":"473","Name":"Electivire","Pokedex Number":"466","Img name":"466","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"1","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"572","ATK":"249","DEF":"173","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2904","100% CP @ 39":"2862"},
+{"Row":"474","Name":"Magmortar","Pokedex Number":"467","Img name":"467","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"62","Cross Gen":"1","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"583","ATK":"247","DEF":"186","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2980","100% CP @ 39":"2937"},
+{"Row":"475","Name":"Togekiss","Pokedex Number":"468","Img name":"468","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fairy","Type 2":"flying","Weather 1":"Cloudy","Weather 2":"Windy","STAT TOTAL":"622","ATK":"225","DEF":"227","STA":"170","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3171","100% CP @ 39":"3126"},
+{"Row":"476","Name":"Yanmega","Pokedex Number":"469","Img name":"469","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"575","ATK":"231","DEF":"172","STA":"172","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2873","100% CP @ 39":"2832"},
+{"Row":"477","Name":"Leafeon","Pokedex Number":"470","Img name":"470","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"1","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"600","ATK":"216","DEF":"254","STA":"130","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2849","100% CP @ 39":"2808"},
+{"Row":"478","Name":"Glaceon","Pokedex Number":"471","Img name":"471","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"1","Type 1":"ice","Type 2":"","Weather 1":"Snow","Weather 2":"","STAT TOTAL":"580","ATK":"238","DEF":"212","STA":"130","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2866","100% CP @ 39":"2825"},
+{"Row":"479","Name":"Gliscor","Pokedex Number":"472","Img name":"472","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ground","Type 2":"flying","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"583","ATK":"185","DEF":"248","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2602","100% CP @ 39":"2565"},
+{"Row":"480","Name":"Mamoswine","Pokedex Number":"473","Img name":"473","Generation":"4","Evolution Stage":"3","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ice","Type 2":"ground","Weather 1":"Snow","Weather 2":"Sunny/clear","STAT TOTAL":"624","ATK":"247","DEF":"157","STA":"220","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3289","100% CP @ 39":"3242"},
+{"Row":"481","Name":"Porygon-Z","Pokedex Number":"474","Img name":"474","Generation":"4","Evolution Stage":"3","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"587","ATK":"264","DEF":"153","STA":"170","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3072","100% CP @ 39":"3028"},
+{"Row":"482","Name":"Gallade","Pokedex Number":"475","Img name":"475","Generation":"4","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"fighting","Weather 1":"Windy","Weather 2":"Cloudy","STAT TOTAL":"593","ATK":"237","DEF":"220","STA":"136","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2964","100% CP @ 39":"2922"},
+{"Row":"483","Name":"Probopass","Pokedex Number":"476","Img name":"476","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"steel","Weather 1":"Partly cloudy","Weather 2":"Snow","STAT TOTAL":"533","ATK":"135","DEF":"278","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1863","100% CP @ 39":"1836"},
+{"Row":"484","Name":"Dusknoir","Pokedex Number":"477","Img name":"477","Generation":"4","Evolution Stage":"3","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"524","ATK":"180","DEF":"254","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2046","100% CP @ 39":"2017"},
+{"Row":"485","Name":"Froslass","Pokedex Number":"478","Img name":"478","Generation":"4","Evolution Stage":"3","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ice","Type 2":"ghost","Weather 1":"Snow","Weather 2":"Fog","STAT TOTAL":"461","ATK":"171","DEF":"150","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1857","100% CP @ 39":"1831"},
+{"Row":"486","Name":"Rotom (Heat Rotom)","Pokedex Number":"479","Img name":"479-heat","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"ghost","Weather 1":"Rainy","Weather 2":"Fog","STAT TOTAL":"444","ATK":"185","DEF":"159","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1767","100% CP @ 39":"1741"},
+{"Row":"487","Name":"Rotom (Wash Rotom)","Pokedex Number":"479","Img name":"479-wash","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"ghost","Weather 1":"Rainy","Weather 2":"Fog","STAT TOTAL":"444","ATK":"185","DEF":"159","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1767","100% CP @ 39":"1741"},
+{"Row":"488","Name":"Rotom (Frost Rotom)","Pokedex Number":"479","Img name":"479-frost","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"ghost","Weather 1":"Rainy","Weather 2":"Fog","STAT TOTAL":"444","ATK":"185","DEF":"159","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1767","100% CP @ 39":"1741"},
+{"Row":"489","Name":"Rotom (Fan Rotom)","Pokedex Number":"479","Img name":"479-spin","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"ghost","Weather 1":"Rainy","Weather 2":"Fog","STAT TOTAL":"444","ATK":"185","DEF":"159","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1767","100% CP @ 39":"1741"},
+{"Row":"490","Name":"Rotom (Mow Rotom)","Pokedex Number":"479","Img name":"479-mow","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"ghost","Weather 1":"Rainy","Weather 2":"Fog","STAT TOTAL":"444","ATK":"185","DEF":"159","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1767","100% CP @ 39":"1741"},
+{"Row":"491","Name":"Rotom (Normal Rotom)","Pokedex Number":"479","Img name":"479","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"ghost","Weather 1":"Rainy","Weather 2":"Fog","STAT TOTAL":"444","ATK":"185","DEF":"159","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1767","100% CP @ 39":"1741"},
+{"Row":"492","Name":"Uxie","Pokedex Number":"480","Img name":"480","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"576","ATK":"156","DEF":"270","STA":"150","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2316","100% CP @ 39":"2282"},
+{"Row":"493","Name":"Mesprit","Pokedex Number":"481","Img name":"481","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"584","ATK":"212","DEF":"212","STA":"160","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2825","100% CP @ 39":"2785"},
+{"Row":"494","Name":"Azelf","Pokedex Number":"482","Img name":"482","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"571","ATK":"270","DEF":"151","STA":"150","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2945","100% CP @ 39":"2903"},
+{"Row":"495","Name":"Dialga","Pokedex Number":"483","Img name":"483","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"dragon","Weather 1":"Snow","Weather 2":"Windy","STAT TOTAL":"744","ATK":"302","DEF":"242","STA":"200","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4654","100% CP @ 39":"4587"},
+{"Row":"496","Name":"Palkia","Pokedex Number":"484","Img name":"484","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"dragon","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"735","ATK":"308","DEF":"247","STA":"180","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4559","100% CP @ 39":"4494"},
+{"Row":"497","Name":"Heatran","Pokedex Number":"485","Img name":"485","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"steel","Weather 1":"Sunny/clear","Weather 2":"Snow","STAT TOTAL":"646","ATK":"251","DEF":"213","STA":"182","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3521","100% CP @ 39":"3470"},
+{"Row":"498","Name":"Regigigas","Pokedex Number":"486","Img name":"486","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"766","ATK":"315","DEF":"231","STA":"220","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4955","100% CP @ 39":"4884"},
+{"Row":"499","Name":"Giratina (Altered Forme)","Pokedex Number":"487","Img name":"487","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"dragon","Weather 1":"Fog","Weather 2":"Windy","STAT TOTAL":"753","ATK":"206","DEF":"247","STA":"300","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3965","100% CP @ 39":"3908"},
+{"Row":"500","Name":"Giratina (Origin Forme)","Pokedex Number":"487","Img name":"487-origin","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"dragon","Weather 1":"Fog","Weather 2":"Windy","STAT TOTAL":"753","ATK":"206","DEF":"247","STA":"300","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3965","100% CP @ 39":"3908"},
+{"Row":"501","Name":"Cresselia","Pokedex Number":"488","Img name":"488","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"655","ATK":"152","DEF":"263","STA":"240","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2777","100% CP @ 39":"2737"},
+{"Row":"502","Name":"Phione","Pokedex Number":"489","Img name":"489","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"484","ATK":"162","DEF":"162","STA":"160","Legendary":"2","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1945","100% CP @ 39":"1917"},
+{"Row":"503","Name":"Manaphy","Pokedex Number":"490","Img name":"490","Generation":"4","Evolution Stage":"2","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"620","ATK":"210","DEF":"210","STA":"200","Legendary":"2","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3090","100% CP @ 39":"3046"},
+{"Row":"504","Name":"Darkrai","Pokedex Number":"491","Img name":"491","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"623","ATK":"285","DEF":"198","STA":"140","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3404","100% CP @ 39":"3355"},
+{"Row":"505","Name":"Shaymin (Land Forme)","Pokedex Number":"492","Img name":"492","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"620","ATK":"210","DEF":"210","STA":"200","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3090","100% CP @ 39":"3046"},
+{"Row":"506","Name":"Shaymin (Sky Forme)","Pokedex Number":"492","Img name":"492-sky","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"620","ATK":"210","DEF":"210","STA":"200","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3090","100% CP @ 39":"3046"},
+{"Row":"507","Name":"Arceus","Pokedex Number":"493","Img name":"493","Generation":"4","Evolution Stage":"1","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"764","ATK":"262","DEF":"262","STA":"240","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4598","100% CP @ 39":"4532"},
+{"Row":"508","Name":"Victini","Pokedex Number":"494","Img name":"494","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"fire","Weather 1":"Windy","Weather 2":"Sunny/clear","STAT TOTAL":"620","ATK":"210","DEF":"210","STA":"200","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3090","100% CP @ 39":"3046"},
+{"Row":"509","Name":"Snivy","Pokedex Number":"495","Img name":"495","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"285","ATK":"88","DEF":"107","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"728","100% CP @ 39":"717"},
+{"Row":"510","Name":"Servine","Pokedex Number":"496","Img name":"496","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"394","ATK":"122","DEF":"152","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1284","100% CP @ 39":"1266"},
+{"Row":"511","Name":"Serperior","Pokedex Number":"497","Img name":"497","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"515","ATK":"161","DEF":"204","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2089","100% CP @ 39":"2059"},
+{"Row":"512","Name":"Tepig","Pokedex Number":"498","Img name":"498","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"330","ATK":"115","DEF":"85","STA":"130","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"977","100% CP @ 39":"963"},
+{"Row":"513","Name":"Pignite","Pokedex Number":"499","Img name":"499","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"fighting","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"459","ATK":"173","DEF":"106","STA":"180","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1803","100% CP @ 39":"1777"},
+{"Row":"514","Name":"Emboar","Pokedex Number":"500","Img name":"500","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"fighting","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"582","ATK":"235","DEF":"127","STA":"220","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2852","100% CP @ 39":"2811"},
+{"Row":"515","Name":"Oshawott","Pokedex Number":"501","Img name":"501","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"312","ATK":"117","DEF":"85","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"921","100% CP @ 39":"908"},
+{"Row":"516","Name":"Dewott","Pokedex Number":"502","Img name":"502","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"425","ATK":"159","DEF":"116","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1597","100% CP @ 39":"1574"},
+{"Row":"517","Name":"Samurott","Pokedex Number":"503","Img name":"503","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"566","ATK":"212","DEF":"164","STA":"190","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2715","100% CP @ 39":"2677"},
+{"Row":"518","Name":"Patrat","Pokedex Number":"504","Img name":"504","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"261","ATK":"98","DEF":"73","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"678","100% CP @ 39":"668"},
+{"Row":"519","Name":"Watchog","Pokedex Number":"505","Img name":"505","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"424","ATK":"165","DEF":"139","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1621","100% CP @ 39":"1597"},
+{"Row":"520","Name":"Lillipup","Pokedex Number":"506","Img name":"506","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"283","ATK":"107","DEF":"86","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"784","100% CP @ 39":"773"},
+{"Row":"521","Name":"Herdier","Pokedex Number":"507","Img name":"507","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"401","ATK":"145","DEF":"126","STA":"130","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1428","100% CP @ 39":"1408"},
+{"Row":"522","Name":"Stoutland","Pokedex Number":"508","Img name":"508","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"558","ATK":"206","DEF":"182","STA":"170","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2635","100% CP @ 39":"2597"},
+{"Row":"523","Name":"Purrloin","Pokedex Number":"509","Img name":"509","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"253","ATK":"98","DEF":"73","STA":"82","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"652","100% CP @ 39":"642"},
+{"Row":"524","Name":"Liepard","Pokedex Number":"510","Img name":"510","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"421","ATK":"187","DEF":"106","STA":"128","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1659","100% CP @ 39":"1635"},
+{"Row":"525","Name":"Pansage","Pokedex Number":"511","Img name":"511","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"298","ATK":"104","DEF":"94","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"832","100% CP @ 39":"820"},
+{"Row":"526","Name":"Simisage","Pokedex Number":"512","Img name":"512","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"489","ATK":"206","DEF":"133","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2156","100% CP @ 39":"2126"},
+{"Row":"527","Name":"Pansear","Pokedex Number":"513","Img name":"513","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"298","ATK":"104","DEF":"94","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"832","100% CP @ 39":"820"},
+{"Row":"528","Name":"Simisear","Pokedex Number":"514","Img name":"514","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"489","ATK":"206","DEF":"133","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2156","100% CP @ 39":"2126"},
+{"Row":"529","Name":"Panpour","Pokedex Number":"515","Img name":"515","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"298","ATK":"104","DEF":"94","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"832","100% CP @ 39":"820"},
+{"Row":"530","Name":"Simipour","Pokedex Number":"516","Img name":"516","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"489","ATK":"206","DEF":"133","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2156","100% CP @ 39":"2126"},
+{"Row":"531","Name":"Munna","Pokedex Number":"517","Img name":"517","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"360","ATK":"111","DEF":"97","STA":"152","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1076","100% CP @ 39":"1060"},
+{"Row":"532","Name":"Musharna","Pokedex Number":"518","Img name":"518","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"586","ATK":"183","DEF":"171","STA":"232","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2650","100% CP @ 39":"2612"},
+{"Row":"533","Name":"Pidove","Pokedex Number":"519","Img name":"519","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"287","ATK":"98","DEF":"89","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"771","100% CP @ 39":"760"},
+{"Row":"534","Name":"Tranquill","Pokedex Number":"520","Img name":"520","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"385","ATK":"144","DEF":"117","STA":"124","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1345","100% CP @ 39":"1325"},
+{"Row":"535","Name":"Unfezant","Pokedex Number":"521","Img name":"521","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"546","ATK":"226","DEF":"160","STA":"160","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2634","100% CP @ 39":"2596"},
+{"Row":"536","Name":"Blitzle","Pokedex Number":"522","Img name":"522","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"272","ATK":"118","DEF":"64","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"756","100% CP @ 39":"745"},
+{"Row":"537","Name":"Zebstrika","Pokedex Number":"523","Img name":"523","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"497","ATK":"211","DEF":"136","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2228","100% CP @ 39":"2196"},
+{"Row":"538","Name":"Roggenrola","Pokedex Number":"524","Img name":"524","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"367","ATK":"121","DEF":"136","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1166","100% CP @ 39":"1150"},
+{"Row":"539","Name":"Boldore","Pokedex Number":"525","Img name":"525","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"487","ATK":"174","DEF":"173","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2015","100% CP @ 39":"1986"},
+{"Row":"540","Name":"Gigalith","Pokedex Number":"526","Img name":"526","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"619","ATK":"226","DEF":"223","STA":"170","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3158","100% CP @ 39":"3113"},
+{"Row":"541","Name":"Woobat","Pokedex Number":"527","Img name":"527","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"flying","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"322","ATK":"107","DEF":"85","STA":"130","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"917","100% CP @ 39":"904"},
+{"Row":"542","Name":"Swoobat","Pokedex Number":"528","Img name":"528","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"flying","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"414","ATK":"161","DEF":"119","STA":"134","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1553","100% CP @ 39":"1531"},
+{"Row":"543","Name":"Drilbur","Pokedex Number":"529","Img name":"529","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ground","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"362","ATK":"154","DEF":"88","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1244","100% CP @ 39":"1226"},
+{"Row":"544","Name":"Excadrill","Pokedex Number":"530","Img name":"530","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ground","Type 2":"steel","Weather 1":"Sunny/clear","Weather 2":"Snow","STAT TOTAL":"607","ATK":"255","DEF":"132","STA":"220","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3134","100% CP @ 39":"3089"},
+{"Row":"545","Name":"Audino","Pokedex Number":"531","Img name":"531","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"483","ATK":"114","DEF":"163","STA":"206","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1598","100% CP @ 39":"1575"},
+{"Row":"546","Name":"Timburr","Pokedex Number":"532","Img name":"532","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"381","ATK":"134","DEF":"97","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1265","100% CP @ 39":"1247"},
+{"Row":"547","Name":"Gurdurr","Pokedex Number":"533","Img name":"533","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"500","ATK":"180","DEF":"150","STA":"170","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2127","100% CP @ 39":"2097"},
+{"Row":"548","Name":"Conkeldurr","Pokedex Number":"534","Img name":"534","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"625","ATK":"243","DEF":"172","STA":"210","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3305","100% CP @ 39":"3258"},
+{"Row":"549","Name":"Tympole","Pokedex Number":"535","Img name":"535","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"276","ATK":"98","DEF":"78","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"729","100% CP @ 39":"719"},
+{"Row":"550","Name":"Palpitoad","Pokedex Number":"536","Img name":"536","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"ground","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"387","ATK":"128","DEF":"109","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1277","100% CP @ 39":"1259"},
+{"Row":"551","Name":"Seismitoad","Pokedex Number":"537","Img name":"537","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"ground","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"548","ATK":"188","DEF":"150","STA":"210","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2442","100% CP @ 39":"2408"},
+{"Row":"552","Name":"Throh","Pokedex Number":"538","Img name":"538","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"572","ATK":"172","DEF":"160","STA":"240","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2467","100% CP @ 39":"2432"},
+{"Row":"553","Name":"Sawk","Pokedex Number":"539","Img name":"539","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"534","ATK":"231","DEF":"153","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2558","100% CP @ 39":"2521"},
+{"Row":"554","Name":"Sewaddle","Pokedex Number":"540","Img name":"540","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"grass","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"315","ATK":"96","DEF":"129","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"852","100% CP @ 39":"840"},
+{"Row":"555","Name":"Swadloon","Pokedex Number":"541","Img name":"541","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"grass","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"391","ATK":"115","DEF":"166","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1221","100% CP @ 39":"1203"},
+{"Row":"556","Name":"Leavanny","Pokedex Number":"542","Img name":"542","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"grass","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"520","ATK":"205","DEF":"165","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2368","100% CP @ 39":"2334"},
+{"Row":"557","Name":"Venipede","Pokedex Number":"543","Img name":"543","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"poison","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"252","ATK":"83","DEF":"109","STA":"60","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"590","100% CP @ 39":"581"},
+{"Row":"558","Name":"Whirlipede","Pokedex Number":"544","Img name":"544","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"poison","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"362","ATK":"100","DEF":"182","STA":"80","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"982","100% CP @ 39":"968"},
+{"Row":"559","Name":"Scolipede","Pokedex Number":"545","Img name":"545","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"poison","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"509","ATK":"203","DEF":"186","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2242","100% CP @ 39":"2210"},
+{"Row":"560","Name":"Cottonee","Pokedex Number":"546","Img name":"546","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"fairy","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"267","ATK":"71","DEF":"116","STA":"80","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"599","100% CP @ 39":"590"},
+{"Row":"561","Name":"Whimsicott","Pokedex Number":"547","Img name":"547","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"fairy","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"466","ATK":"164","DEF":"182","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1823","100% CP @ 39":"1797"},
+{"Row":"562","Name":"Petilil","Pokedex Number":"548","Img name":"548","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"300","ATK":"119","DEF":"91","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"882","100% CP @ 39":"870"},
+{"Row":"563","Name":"Lilligant","Pokedex Number":"549","Img name":"549","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"509","ATK":"214","DEF":"155","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2321","100% CP @ 39":"2288"},
+{"Row":"564","Name":"Basculin","Pokedex Number":"550","Img name":"550","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"463","ATK":"189","DEF":"134","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1936","100% CP @ 39":"1908"},
+{"Row":"565","Name":"Sandile","Pokedex Number":"551","Img name":"551","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ground","Type 2":"dark","Weather 1":"Sunny/clear","Weather 2":"Fog","STAT TOTAL":"301","ATK":"132","DEF":"69","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"902","100% CP @ 39":"889"},
+{"Row":"566","Name":"Krokorok","Pokedex Number":"552","Img name":"552","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ground","Type 2":"dark","Weather 1":"Sunny/clear","Weather 2":"Fog","STAT TOTAL":"365","ATK":"155","DEF":"90","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1264","100% CP @ 39":"1246"},
+{"Row":"567","Name":"Krookodile","Pokedex Number":"553","Img name":"553","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ground","Type 2":"dark","Weather 1":"Sunny/clear","Weather 2":"Fog","STAT TOTAL":"582","ATK":"229","DEF":"163","STA":"190","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2911","100% CP @ 39":"2869"},
+{"Row":"568","Name":"Darumaka","Pokedex Number":"554","Img name":"554","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"379","ATK":"153","DEF":"86","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1312","100% CP @ 39":"1294"},
+{"Row":"569","Name":"Darmanitan (Zen Mode)","Pokedex Number":"555","Img name":"555","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"587","ATK":"263","DEF":"114","STA":"210","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2958","100% CP @ 39":"2915"},
+{"Row":"570","Name":"Darmanitan (Standard Mode)","Pokedex Number":"555","Img name":"555","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"587","ATK":"263","DEF":"114","STA":"210","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2958","100% CP @ 39":"2915"},
+{"Row":"571","Name":"Maractus","Pokedex Number":"556","Img name":"556","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"481","ATK":"201","DEF":"130","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2086","100% CP @ 39":"2056"},
+{"Row":"572","Name":"Dwebble","Pokedex Number":"557","Img name":"557","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"rock","Weather 1":"Rainy","Weather 2":"Partly cloudy","STAT TOTAL":"370","ATK":"118","DEF":"152","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1151","100% CP @ 39":"1134"},
+{"Row":"573","Name":"Crustle","Pokedex Number":"558","Img name":"558","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"rock","Weather 1":"Rainy","Weather 2":"Partly cloudy","STAT TOTAL":"552","ATK":"188","DEF":"224","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2440","100% CP @ 39":"2405"},
+{"Row":"574","Name":"Scraggy","Pokedex Number":"559","Img name":"559","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"fighting","Weather 1":"Fog","Weather 2":"Cloudy","STAT TOTAL":"364","ATK":"132","DEF":"132","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1193","100% CP @ 39":"1176"},
+{"Row":"575","Name":"Scrafty","Pokedex Number":"560","Img name":"560","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"fighting","Weather 1":"Fog","Weather 2":"Cloudy","STAT TOTAL":"515","ATK":"163","DEF":"222","STA":"130","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2060","100% CP @ 39":"2031"},
+{"Row":"576","Name":"Sigilyph","Pokedex Number":"561","Img name":"561","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"flying","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"515","ATK":"204","DEF":"167","STA":"144","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2326","100% CP @ 39":"2293"},
+{"Row":"577","Name":"Yamask","Pokedex Number":"562","Img name":"562","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"321","ATK":"95","DEF":"150","STA":"76","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"841","100% CP @ 39":"829"},
+{"Row":"578","Name":"Cofagrigus","Pokedex Number":"563","Img name":"563","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"534","ATK":"163","DEF":"255","STA":"116","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2090","100% CP @ 39":"2060"},
+{"Row":"579","Name":"Tirtouga","Pokedex Number":"564","Img name":"564","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"rock","Weather 1":"Rainy","Weather 2":"Partly cloudy","STAT TOTAL":"414","ATK":"134","DEF":"172","STA":"108","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1411","100% CP @ 39":"1391"},
+{"Row":"580","Name":"Carracosta","Pokedex Number":"565","Img name":"565","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"rock","Weather 1":"Rainy","Weather 2":"Partly cloudy","STAT TOTAL":"568","ATK":"192","DEF":"228","STA":"148","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2573","100% CP @ 39":"2536"},
+{"Row":"581","Name":"Archen","Pokedex Number":"566","Img name":"566","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"412","ATK":"213","DEF":"89","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1623","100% CP @ 39":"1600"},
+{"Row":"582","Name":"Archeops","Pokedex Number":"567","Img name":"567","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"581","ATK":"292","DEF":"139","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3056","100% CP @ 39":"3012"},
+{"Row":"583","Name":"Trubbish","Pokedex Number":"568","Img name":"568","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"poison","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"318","ATK":"96","DEF":"122","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"870","100% CP @ 39":"857"},
+{"Row":"584","Name":"Garbodor","Pokedex Number":"569","Img name":"569","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"poison","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"505","ATK":"181","DEF":"164","STA":"160","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2166","100% CP @ 39":"2135"},
+{"Row":"585","Name":"Zorua","Pokedex Number":"570","Img name":"570","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"311","ATK":"153","DEF":"78","STA":"80","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"986","100% CP @ 39":"972"},
+{"Row":"586","Name":"Zoroark","Pokedex Number":"571","Img name":"571","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"","Weather 1":"Fog","Weather 2":"","STAT TOTAL":"497","ATK":"250","DEF":"127","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2291","100% CP @ 39":"2258"},
+{"Row":"587","Name":"Minccino","Pokedex Number":"572","Img name":"572","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"288","ATK":"98","DEF":"80","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"769","100% CP @ 39":"758"},
+{"Row":"588","Name":"Cinccino","Pokedex Number":"573","Img name":"573","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"478","ATK":"198","DEF":"130","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2057","100% CP @ 39":"2028"},
+{"Row":"589","Name":"Gothita","Pokedex Number":"574","Img name":"574","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"306","ATK":"98","DEF":"118","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"834","100% CP @ 39":"822"},
+{"Row":"590","Name":"Gothorita","Pokedex Number":"575","Img name":"575","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"416","ATK":"137","DEF":"159","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1455","100% CP @ 39":"1434"},
+{"Row":"591","Name":"Gothitelle","Pokedex Number":"576","Img name":"576","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"528","ATK":"176","DEF":"212","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2237","100% CP @ 39":"2205"},
+{"Row":"592","Name":"Solosis","Pokedex Number":"577","Img name":"577","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"347","ATK":"170","DEF":"87","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1195","100% CP @ 39":"1178"},
+{"Row":"593","Name":"Duosion","Pokedex Number":"578","Img name":"578","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"445","ATK":"208","DEF":"107","STA":"130","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1852","100% CP @ 39":"1826"},
+{"Row":"594","Name":"Reuniclus","Pokedex Number":"579","Img name":"579","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"587","ATK":"214","DEF":"153","STA":"220","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2841","100% CP @ 39":"2801"},
+{"Row":"595","Name":"Ducklett","Pokedex Number":"580","Img name":"580","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"304","ATK":"84","DEF":"96","STA":"124","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"768","100% CP @ 39":"757"},
+{"Row":"596","Name":"Swanna","Pokedex Number":"581","Img name":"581","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"464","ATK":"182","DEF":"132","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1916","100% CP @ 39":"1888"},
+{"Row":"597","Name":"Vanillite","Pokedex Number":"582","Img name":"582","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ice","Type 2":"","Weather 1":"Snow","Weather 2":"","STAT TOTAL":"301","ATK":"118","DEF":"111","STA":"72","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"869","100% CP @ 39":"857"},
+{"Row":"598","Name":"Vanillish","Pokedex Number":"583","Img name":"583","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ice","Type 2":"","Weather 1":"Snow","Weather 2":"","STAT TOTAL":"396","ATK":"151","DEF":"143","STA":"102","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1409","100% CP @ 39":"1389"},
+{"Row":"599","Name":"Vanilluxe","Pokedex Number":"584","Img name":"584","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ice","Type 2":"","Weather 1":"Snow","Weather 2":"","STAT TOTAL":"550","ATK":"218","DEF":"190","STA":"142","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2610","100% CP @ 39":"2573"},
+{"Row":"600","Name":"Deerling","Pokedex Number":"585","Img name":"585","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"grass","Weather 1":"Partly cloudy","Weather 2":"Sunny/clear","STAT TOTAL":"335","ATK":"115","DEF":"100","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1011","100% CP @ 39":"997"},
+{"Row":"601","Name":"Sawsbuck","Pokedex Number":"586","Img name":"586","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"grass","Weather 1":"Partly cloudy","Weather 2":"Sunny/clear","STAT TOTAL":"504","ATK":"198","DEF":"146","STA":"160","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2233","100% CP @ 39":"2201"},
+{"Row":"602","Name":"Emolga","Pokedex Number":"587","Img name":"587","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"395","ATK":"158","DEF":"127","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1439","100% CP @ 39":"1419"},
+{"Row":"603","Name":"Karrablast","Pokedex Number":"588","Img name":"588","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"324","ATK":"137","DEF":"87","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1028","100% CP @ 39":"1013"},
+{"Row":"604","Name":"Escavalier","Pokedex Number":"589","Img name":"589","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"steel","Weather 1":"Rainy","Weather 2":"Snow","STAT TOTAL":"550","ATK":"223","DEF":"187","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2630","100% CP @ 39":"2592"},
+{"Row":"605","Name":"Foongus","Pokedex Number":"590","Img name":"590","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"poison","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"330","ATK":"97","DEF":"95","STA":"138","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"907","100% CP @ 39":"894"},
+{"Row":"606","Name":"Amoonguss","Pokedex Number":"591","Img name":"591","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"poison","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"527","ATK":"155","DEF":"144","STA":"228","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2087","100% CP @ 39":"2057"},
+{"Row":"607","Name":"Frillish","Pokedex Number":"592","Img name":"592","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"ghost","Weather 1":"Rainy","Weather 2":"Fog","STAT TOTAL":"375","ATK":"115","DEF":"150","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1166","100% CP @ 39":"1149"},
+{"Row":"608","Name":"Jellicent","Pokedex Number":"593","Img name":"593","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"ghost","Weather 1":"Rainy","Weather 2":"Fog","STAT TOTAL":"554","ATK":"159","DEF":"195","STA":"200","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2309","100% CP @ 39":"2276"},
+{"Row":"609","Name":"Alomomola","Pokedex Number":"594","Img name":"594","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"616","ATK":"138","DEF":"148","STA":"330","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2266","100% CP @ 39":"2233"},
+{"Row":"610","Name":"Joltik","Pokedex Number":"595","Img name":"595","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"electric","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"308","ATK":"110","DEF":"98","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"889","100% CP @ 39":"877"},
+{"Row":"611","Name":"Galvantula","Pokedex Number":"596","Img name":"596","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"electric","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"469","ATK":"201","DEF":"128","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2008","100% CP @ 39":"1979"},
+{"Row":"612","Name":"Ferroseed","Pokedex Number":"597","Img name":"597","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"steel","Weather 1":"Sunny/clear","Weather 2":"Snow","STAT TOTAL":"327","ATK":"82","DEF":"157","STA":"88","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"806","100% CP @ 39":"794"},
+{"Row":"613","Name":"Ferrothorn","Pokedex Number":"598","Img name":"598","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"steel","Weather 1":"Sunny/clear","Weather 2":"Snow","STAT TOTAL":"536","ATK":"158","DEF":"230","STA":"148","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2159","100% CP @ 39":"2128"},
+{"Row":"614","Name":"Klink","Pokedex Number":"599","Img name":"599","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"","Weather 1":"Snow","Weather 2":"","STAT TOTAL":"304","ATK":"98","DEF":"126","STA":"80","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"816","100% CP @ 39":"805"},
+{"Row":"615","Name":"Klang","Pokedex Number":"600","Img name":"600","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"","Weather 1":"Snow","Weather 2":"","STAT TOTAL":"449","ATK":"150","DEF":"179","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1667","100% CP @ 39":"1643"},
+{"Row":"616","Name":"Klinklang","Pokedex Number":"601","Img name":"601","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"","Weather 1":"Snow","Weather 2":"","STAT TOTAL":"549","ATK":"199","DEF":"230","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2430","100% CP @ 39":"2396"},
+{"Row":"617","Name":"Tynamo","Pokedex Number":"602","Img name":"602","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"253","ATK":"105","DEF":"78","STA":"70","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"666","100% CP @ 39":"656"},
+{"Row":"618","Name":"Eelektrik","Pokedex Number":"603","Img name":"603","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"416","ATK":"156","DEF":"130","STA":"130","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1548","100% CP @ 39":"1526"},
+{"Row":"619","Name":"Eelektross","Pokedex Number":"604","Img name":"604","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"539","ATK":"217","DEF":"152","STA":"170","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2546","100% CP @ 39":"2510"},
+{"Row":"620","Name":"Elgyem","Pokedex Number":"605","Img name":"605","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"358","ATK":"148","DEF":"100","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1220","100% CP @ 39":"1203"},
+{"Row":"621","Name":"Beheeyem","Pokedex Number":"606","Img name":"606","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"543","ATK":"221","DEF":"172","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2589","100% CP @ 39":"2552"},
+{"Row":"622","Name":"Litwick","Pokedex Number":"607","Img name":"607","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"fire","Weather 1":"Fog","Weather 2":"Sunny/clear","STAT TOTAL":"306","ATK":"108","DEF":"98","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"875","100% CP @ 39":"863"},
+{"Row":"623","Name":"Lampent","Pokedex Number":"608","Img name":"608","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"fire","Weather 1":"Fog","Weather 2":"Sunny/clear","STAT TOTAL":"404","ATK":"169","DEF":"115","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1522","100% CP @ 39":"1500"},
+{"Row":"624","Name":"Chandelure","Pokedex Number":"609","Img name":"609","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"fire","Weather 1":"Fog","Weather 2":"Sunny/clear","STAT TOTAL":"573","ATK":"271","DEF":"182","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2913","100% CP @ 39":"2871"},
+{"Row":"625","Name":"Axew","Pokedex Number":"610","Img name":"610","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"357","ATK":"154","DEF":"111","STA":"92","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1225","100% CP @ 39":"1208"},
+{"Row":"626","Name":"Fraxure","Pokedex Number":"611","Img name":"611","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"477","ATK":"212","DEF":"133","STA":"132","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2091","100% CP @ 39":"2061"},
+{"Row":"627","Name":"Haxorus","Pokedex Number":"612","Img name":"612","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"619","ATK":"284","DEF":"183","STA":"152","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3395","100% CP @ 39":"3347"},
+{"Row":"628","Name":"Cubchoo","Pokedex Number":"613","Img name":"613","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ice","Type 2":"","Weather 1":"Snow","Weather 2":"","STAT TOTAL":"312","ATK":"128","DEF":"74","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"942","100% CP @ 39":"928"},
+{"Row":"629","Name":"Beartic","Pokedex Number":"614","Img name":"614","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ice","Type 2":"","Weather 1":"Snow","Weather 2":"","STAT TOTAL":"575","ATK":"233","DEF":"152","STA":"190","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2865","100% CP @ 39":"2825"},
+{"Row":"630","Name":"Cryogonal","Pokedex Number":"615","Img name":"615","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ice","Type 2":"","Weather 1":"Snow","Weather 2":"","STAT TOTAL":"614","ATK":"190","DEF":"264","STA":"160","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2829","100% CP @ 39":"2788"},
+{"Row":"631","Name":"Shelmet","Pokedex Number":"616","Img name":"616","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"321","ATK":"72","DEF":"149","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"746","100% CP @ 39":"735"},
+{"Row":"632","Name":"Accelgor","Pokedex Number":"617","Img name":"617","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"511","ATK":"220","DEF":"131","STA":"160","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2346","100% CP @ 39":"2312"},
+{"Row":"633","Name":"Stunfisk","Pokedex Number":"618","Img name":"618","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ground","Type 2":"electric","Weather 1":"Sunny/clear","Weather 2":"Rainy","STAT TOTAL":"539","ATK":"144","DEF":"177","STA":"218","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2100","100% CP @ 39":"2070"},
+{"Row":"634","Name":"Mienfoo","Pokedex Number":"619","Img name":"619","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"348","ATK":"160","DEF":"98","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1190","100% CP @ 39":"1173"},
+{"Row":"635","Name":"Mienshao","Pokedex Number":"620","Img name":"620","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"515","ATK":"258","DEF":"127","STA":"130","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2446","100% CP @ 39":"2411"},
+{"Row":"636","Name":"Druddigon","Pokedex Number":"621","Img name":"621","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"537","ATK":"213","DEF":"170","STA":"154","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2517","100% CP @ 39":"2481"},
+{"Row":"637","Name":"Golett","Pokedex Number":"622","Img name":"622","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ground","Type 2":"ghost","Weather 1":"Sunny/clear","Weather 2":"Fog","STAT TOTAL":"337","ATK":"127","DEF":"92","STA":"118","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1058","100% CP @ 39":"1042"},
+{"Row":"638","Name":"Golurk","Pokedex Number":"623","Img name":"623","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ground","Type 2":"ghost","Weather 1":"Sunny/clear","Weather 2":"Fog","STAT TOTAL":"554","ATK":"222","DEF":"154","STA":"178","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2673","100% CP @ 39":"2635"},
+{"Row":"639","Name":"Pawniard","Pokedex Number":"624","Img name":"624","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"steel","Weather 1":"Fog","Weather 2":"Snow","STAT TOTAL":"373","ATK":"154","DEF":"129","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1297","100% CP @ 39":"1279"},
+{"Row":"640","Name":"Bisharp","Pokedex Number":"625","Img name":"625","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"steel","Weather 1":"Fog","Weather 2":"Snow","STAT TOTAL":"553","ATK":"232","DEF":"191","STA":"130","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2666","100% CP @ 39":"2628"},
+{"Row":"641","Name":"Bouffalant","Pokedex Number":"626","Img name":"626","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"567","ATK":"195","DEF":"182","STA":"190","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2635","100% CP @ 39":"2598"},
+{"Row":"642","Name":"Rufflet","Pokedex Number":"627","Img name":"627","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"387","ATK":"150","DEF":"97","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1357","100% CP @ 39":"1338"},
+{"Row":"643","Name":"Braviary","Pokedex Number":"628","Img name":"628","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"584","ATK":"232","DEF":"152","STA":"200","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2923","100% CP @ 39":"2881"},
+{"Row":"644","Name":"Vullaby","Pokedex Number":"629","Img name":"629","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"flying","Weather 1":"Fog","Weather 2":"Windy","STAT TOTAL":"389","ATK":"105","DEF":"144","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1176","100% CP @ 39":"1159"},
+{"Row":"645","Name":"Mandibuzz","Pokedex Number":"630","Img name":"630","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"flying","Weather 1":"Fog","Weather 2":"Windy","STAT TOTAL":"559","ATK":"129","DEF":"210","STA":"220","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2068","100% CP @ 39":"2038"},
+{"Row":"646","Name":"Heatmor","Pokedex Number":"631","Img name":"631","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"503","ATK":"204","DEF":"129","STA":"170","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2232","100% CP @ 39":"2200"},
+{"Row":"647","Name":"Durant","Pokedex Number":"632","Img name":"632","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"steel","Weather 1":"Rainy","Weather 2":"Snow","STAT TOTAL":"555","ATK":"217","DEF":"222","STA":"116","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2553","100% CP @ 39":"2516"},
+{"Row":"648","Name":"Deino","Pokedex Number":"633","Img name":"633","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"dragon","Weather 1":"Fog","Weather 2":"Windy","STAT TOTAL":"313","ATK":"116","DEF":"93","STA":"104","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"927","100% CP @ 39":"914"},
+{"Row":"649","Name":"Zweilous","Pokedex Number":"634","Img name":"634","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"dragon","Weather 1":"Fog","Weather 2":"Windy","STAT TOTAL":"438","ATK":"159","DEF":"135","STA":"144","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1678","100% CP @ 39":"1654"},
+{"Row":"650","Name":"Hydreigon","Pokedex Number":"635","Img name":"635","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"dragon","Weather 1":"Fog","Weather 2":"Windy","STAT TOTAL":"628","ATK":"256","DEF":"188","STA":"184","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3401","100% CP @ 39":"3353"},
+{"Row":"651","Name":"Larvesta","Pokedex Number":"636","Img name":"636","Generation":"5","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"fire","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"373","ATK":"156","DEF":"107","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1318","100% CP @ 39":"1300"},
+{"Row":"652","Name":"Volcarona","Pokedex Number":"637","Img name":"637","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"fire","Weather 1":"Rainy","Weather 2":"Sunny/clear","STAT TOTAL":"644","ATK":"264","DEF":"210","STA":"170","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3555","100% CP @ 39":"3504"},
+{"Row":"653","Name":"Cobalion","Pokedex Number":"638","Img name":"638","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"fighting","Weather 1":"Snow","Weather 2":"Cloudy","STAT TOTAL":"634","ATK":"192","DEF":"260","STA":"182","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3009","100% CP @ 39":"2966"},
+{"Row":"654","Name":"Terrakion","Pokedex Number":"639","Img name":"639","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"fighting","Weather 1":"Partly cloudy","Weather 2":"Cloudy","STAT TOTAL":"634","ATK":"260","DEF":"192","STA":"182","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3468","100% CP @ 39":"3418"},
+{"Row":"655","Name":"Virizion","Pokedex Number":"640","Img name":"640","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"fighting","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"634","ATK":"192","DEF":"260","STA":"182","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3009","100% CP @ 39":"2966"},
+{"Row":"656","Name":"Tornadus (Therian Forme)","Pokedex Number":"641","Img name":"641","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"flying","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"593","ATK":"266","DEF":"169","STA":"158","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3131","100% CP @ 39":"3086"},
+{"Row":"657","Name":"Tornadus (Incarnate Forme)","Pokedex Number":"641","Img name":"641","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"flying","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"593","ATK":"266","DEF":"169","STA":"158","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3131","100% CP @ 39":"3086"},
+{"Row":"658","Name":"Thundurus (Incarnate Forme)","Pokedex Number":"642","Img name":"642","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"593","ATK":"266","DEF":"169","STA":"158","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3131","100% CP @ 39":"3086"},
+{"Row":"659","Name":"Thundurus (Therian Forme)","Pokedex Number":"642","Img name":"642","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"593","ATK":"266","DEF":"169","STA":"158","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3131","100% CP @ 39":"3086"},
+{"Row":"660","Name":"Reshiram","Pokedex Number":"643","Img name":"643","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"fire","Weather 1":"Windy","Weather 2":"Sunny/clear","STAT TOTAL":"744","ATK":"302","DEF":"242","STA":"200","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4654","100% CP @ 39":"4587"},
+{"Row":"661","Name":"Zekrom","Pokedex Number":"644","Img name":"644","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"electric","Weather 1":"Windy","Weather 2":"Rainy","STAT TOTAL":"744","ATK":"302","DEF":"242","STA":"200","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4654","100% CP @ 39":"4587"},
+{"Row":"662","Name":"Landorus (Incarnate Forme)","Pokedex Number":"645","Img name":"645","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ground","Type 2":"flying","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"626","ATK":"261","DEF":"187","STA":"178","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3403","100% CP @ 39":"3355"},
+{"Row":"663","Name":"Landorus (Therian Forme)","Pokedex Number":"645","Img name":"645","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ground","Type 2":"flying","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"626","ATK":"261","DEF":"187","STA":"178","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3403","100% CP @ 39":"3355"},
+{"Row":"664","Name":"Kyurem (Black Kyurem)","Pokedex Number":"646","Img name":"646","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"ice","Weather 1":"Windy","Weather 2":"Snow","STAT TOTAL":"707","ATK":"270","DEF":"187","STA":"250","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4118","100% CP @ 39":"4059"},
+{"Row":"665","Name":"Kyurem (Normal Kyurem)","Pokedex Number":"646","Img name":"646","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"ice","Weather 1":"Windy","Weather 2":"Snow","STAT TOTAL":"707","ATK":"270","DEF":"187","STA":"250","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4118","100% CP @ 39":"4059"},
+{"Row":"666","Name":"Kyurem (White Kyurem)","Pokedex Number":"646","Img name":"646","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"ice","Weather 1":"Windy","Weather 2":"Snow","STAT TOTAL":"707","ATK":"270","DEF":"187","STA":"250","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4118","100% CP @ 39":"4059"},
+{"Row":"667","Name":"Keldeo","Pokedex Number":"647","Img name":"647","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"fighting","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"634","ATK":"260","DEF":"192","STA":"182","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3468","100% CP @ 39":"3418"},
+{"Row":"668","Name":"Meloetta (Pirouette Forme)","Pokedex Number":"648","Img name":"648","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"psychic","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"700","ATK":"250","DEF":"250","STA":"200","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3950","100% CP @ 39":"3894"},
+{"Row":"669","Name":"Meloetta (Aria Forme)","Pokedex Number":"648","Img name":"648","Generation":"5","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"psychic","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"700","ATK":"250","DEF":"250","STA":"200","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3950","100% CP @ 39":"3894"},
+{"Row":"670","Name":"Genesect","Pokedex Number":"649","Img name":"649","Generation":"5","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"steel","Weather 1":"Rainy","Weather 2":"Snow","STAT TOTAL":"593","ATK":"252","DEF":"199","STA":"142","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3056","100% CP @ 39":"3013"},
+{"Row":"671","Name":"Chespin","Pokedex Number":"650","Img name":"650","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"338","ATK":"110","DEF":"116","STA":"112","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1007","100% CP @ 39":"992"},
+{"Row":"672","Name":"Quilladin","Pokedex Number":"651","Img name":"651","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"442","ATK":"146","DEF":"174","STA":"122","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1618","100% CP @ 39":"1594"},
+{"Row":"673","Name":"Chesnaught","Pokedex Number":"652","Img name":"652","Generation":"6","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"fighting","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"604","ATK":"201","DEF":"227","STA":"176","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2900","100% CP @ 39":"2859"},
+{"Row":"674","Name":"Fennekin","Pokedex Number":"653","Img name":"653","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"308","ATK":"116","DEF":"112","STA":"80","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"898","100% CP @ 39":"885"},
+{"Row":"675","Name":"Braixen","Pokedex Number":"654","Img name":"654","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"425","ATK":"171","DEF":"136","STA":"118","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1646","100% CP @ 39":"1622"},
+{"Row":"676","Name":"Delphox","Pokedex Number":"655","Img name":"655","Generation":"6","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"psychic","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"584","ATK":"230","DEF":"204","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2908","100% CP @ 39":"2867"},
+{"Row":"677","Name":"Froakie","Pokedex Number":"656","Img name":"656","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"290","ATK":"122","DEF":"86","STA":"82","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"846","100% CP @ 39":"834"},
+{"Row":"678","Name":"Frogadier","Pokedex Number":"657","Img name":"657","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"392","ATK":"168","DEF":"116","STA":"108","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1450","100% CP @ 39":"1430"},
+{"Row":"679","Name":"Greninja","Pokedex Number":"658","Img name":"658","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"dark","Weather 1":"Rainy","Weather 2":"Fog","STAT TOTAL":"521","ATK":"223","DEF":"154","STA":"144","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2436","100% CP @ 39":"2401"},
+{"Row":"680","Name":"Bunnelby","Pokedex Number":"659","Img name":"659","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"217","ATK":"68","DEF":"73","STA":"76","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"463","100% CP @ 39":"457"},
+{"Row":"681","Name":"Diggersby","Pokedex Number":"660","Img name":"660","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"ground","Weather 1":"Partly cloudy","Weather 2":"Sunny/clear","STAT TOTAL":"437","ATK":"112","DEF":"155","STA":"170","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1406","100% CP @ 39":"1386"},
+{"Row":"682","Name":"Fletchling","Pokedex Number":"661","Img name":"661","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"268","ATK":"95","DEF":"83","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"696","100% CP @ 39":"686"},
+{"Row":"683","Name":"Fletchinder","Pokedex Number":"662","Img name":"662","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"flying","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"380","ATK":"145","DEF":"111","STA":"124","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1322","100% CP @ 39":"1303"},
+{"Row":"684","Name":"Talonflame","Pokedex Number":"663","Img name":"663","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"flying","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"488","ATK":"176","DEF":"156","STA":"156","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2039","100% CP @ 39":"2010"},
+{"Row":"685","Name":"Scatterbug","Pokedex Number":"664","Img name":"664","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"209","ATK":"63","DEF":"70","STA":"76","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"428","100% CP @ 39":"422"},
+{"Row":"686","Name":"Spewpa","Pokedex Number":"665","Img name":"665","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"241","ATK":"48","DEF":"103","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"437","100% CP @ 39":"431"},
+{"Row":"687","Name":"Vivillon","Pokedex Number":"666","Img name":"666","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"439","ATK":"176","DEF":"103","STA":"160","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1714","100% CP @ 39":"1689"},
+{"Row":"688","Name":"Litleo","Pokedex Number":"667","Img name":"667","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"normal","Weather 1":"Sunny/clear","Weather 2":"Partly cloudy","STAT TOTAL":"377","ATK":"139","DEF":"114","STA":"124","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1287","100% CP @ 39":"1269"},
+{"Row":"689","Name":"Pyroar","Pokedex Number":"668","Img name":"668","Generation":"6","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"normal","Weather 1":"Sunny/clear","Weather 2":"Partly cloudy","STAT TOTAL":"545","ATK":"221","DEF":"152","STA":"172","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2604","100% CP @ 39":"2567"},
+{"Row":"690","Name":"Flab��B��","Pokedex Number":"669","Img name":"669","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fairy","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"334","ATK":"108","DEF":"138","STA":"88","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"964","100% CP @ 39":"950"}
+,
+{"Row":"691","Name":"Floette","Pokedex Number":"670","Img name":"670","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fairy","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"419","ATK":"136","DEF":"175","STA":"108","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1441","100% CP @ 39":"1421"},
+{"Row":"692","Name":"Florges","Pokedex Number":"671","Img name":"671","Generation":"6","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fairy","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"655","ATK":"212","DEF":"287","STA":"156","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3221","100% CP @ 39":"3175"},
+{"Row":"693","Name":"Skiddo","Pokedex Number":"672","Img name":"672","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"362","ATK":"123","DEF":"107","STA":"132","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1154","100% CP @ 39":"1137"},
+{"Row":"694","Name":"Gogoat","Pokedex Number":"673","Img name":"673","Generation":"6","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"597","ATK":"196","DEF":"155","STA":"246","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2775","100% CP @ 39":"2736"},
+{"Row":"695","Name":"Pancham","Pokedex Number":"674","Img name":"674","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"392","ATK":"145","DEF":"113","STA":"134","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1380","100% CP @ 39":"1360"},
+{"Row":"696","Name":"Pangoro","Pokedex Number":"675","Img name":"675","Generation":"6","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fighting","Type 2":"dark","Weather 1":"Cloudy","Weather 2":"Fog","STAT TOTAL":"565","ATK":"226","DEF":"149","STA":"190","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2759","100% CP @ 39":"2720"},
+{"Row":"697","Name":"Furfrou","Pokedex Number":"676","Img name":"676","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"496","ATK":"164","DEF":"182","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2015","100% CP @ 39":"1986"},
+{"Row":"698","Name":"Espurr","Pokedex Number":"677","Img name":"677","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"361","ATK":"120","DEF":"117","STA":"124","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1142","100% CP @ 39":"1125"},
+{"Row":"699","Name":"Meowstic","Pokedex Number":"678","Img name":"678","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"484","ATK":"166","DEF":"170","STA":"148","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1963","100% CP @ 39":"1935"},
+{"Row":"700","Name":"Honedge","Pokedex Number":"679","Img name":"679","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"ghost","Weather 1":"Snow","Weather 2":"Fog","STAT TOTAL":"392","ATK":"135","DEF":"167","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1295","100% CP @ 39":"1276"},
+{"Row":"701","Name":"Doublade","Pokedex Number":"680","Img name":"680","Generation":"6","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"ghost","Weather 1":"Snow","Weather 2":"Fog","STAT TOTAL":"559","ATK":"188","DEF":"253","STA":"118","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2393","100% CP @ 39":"2359"},
+{"Row":"702","Name":"Aegislash","Pokedex Number":"681","Img name":"681","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"ghost","Weather 1":"Snow","Weather 2":"Fog","STAT TOTAL":"508","ATK":"97","DEF":"291","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1421","100% CP @ 39":"1401"},
+{"Row":"703","Name":"Spritzee","Pokedex Number":"682","Img name":"682","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fairy","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"382","ATK":"110","DEF":"116","STA":"156","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1168","100% CP @ 39":"1151"},
+{"Row":"704","Name":"Aromatisse","Pokedex Number":"683","Img name":"683","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fairy","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"533","ATK":"173","DEF":"158","STA":"202","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2275","100% CP @ 39":"2242"},
+{"Row":"705","Name":"Swirlix","Pokedex Number":"684","Img name":"684","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fairy","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"356","ATK":"109","DEF":"123","STA":"124","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1072","100% CP @ 39":"1057"},
+{"Row":"706","Name":"Slurpuff","Pokedex Number":"685","Img name":"685","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fairy","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"500","ATK":"168","DEF":"168","STA":"164","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2068","100% CP @ 39":"2039"},
+{"Row":"707","Name":"Inkay","Pokedex Number":"686","Img name":"686","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"psychic","Weather 1":"Fog","Weather 2":"Windy","STAT TOTAL":"302","ATK":"98","DEF":"98","STA":"106","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"825","100% CP @ 39":"813"},
+{"Row":"708","Name":"Malamar","Pokedex Number":"687","Img name":"687","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"psychic","Weather 1":"Fog","Weather 2":"Windy","STAT TOTAL":"521","ATK":"177","DEF":"172","STA":"172","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2242","100% CP @ 39":"2210"},
+{"Row":"709","Name":"Binacle","Pokedex Number":"688","Img name":"688","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"water","Weather 1":"Partly cloudy","Weather 2":"Rainy","STAT TOTAL":"304","ATK":"96","DEF":"124","STA":"84","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"813","100% CP @ 39":"801"},
+{"Row":"710","Name":"Barbaracle","Pokedex Number":"689","Img name":"689","Generation":"6","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"water","Weather 1":"Partly cloudy","Weather 2":"Rainy","STAT TOTAL":"558","ATK":"194","DEF":"220","STA":"144","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2523","100% CP @ 39":"2487"},
+{"Row":"711","Name":"Skrelp","Pokedex Number":"690","Img name":"690","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"poison","Type 2":"water","Weather 1":"Cloudy","Weather 2":"Rainy","STAT TOTAL":"318","ATK":"109","DEF":"109","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"924","100% CP @ 39":"911"},
+{"Row":"712","Name":"Dragalge","Pokedex Number":"691","Img name":"691","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"poison","Type 2":"dragon","Weather 1":"Cloudy","Weather 2":"Windy","STAT TOTAL":"530","ATK":"177","DEF":"223","STA":"130","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2227","100% CP @ 39":"2195"},
+{"Row":"713","Name":"Clauncher","Pokedex Number":"692","Img name":"692","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"326","ATK":"108","DEF":"118","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"950","100% CP @ 39":"936"},
+{"Row":"714","Name":"Clawitzer","Pokedex Number":"693","Img name":"693","Generation":"6","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"535","ATK":"221","DEF":"172","STA":"142","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2525","100% CP @ 39":"2489"},
+{"Row":"715","Name":"Helioptile","Pokedex Number":"694","Img name":"694","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"normal","Weather 1":"Rainy","Weather 2":"Partly cloudy","STAT TOTAL":"286","ATK":"115","DEF":"83","STA":"88","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"815","100% CP @ 39":"804"},
+{"Row":"716","Name":"Heliolisk","Pokedex Number":"695","Img name":"695","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"normal","Weather 1":"Rainy","Weather 2":"Partly cloudy","STAT TOTAL":"533","ATK":"219","DEF":"190","STA":"124","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2467","100% CP @ 39":"2431"},
+{"Row":"717","Name":"Tyrunt","Pokedex Number":"696","Img name":"696","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"dragon","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"412","ATK":"158","DEF":"138","STA":"116","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1529","100% CP @ 39":"1507"},
+{"Row":"718","Name":"Tyrantrum","Pokedex Number":"697","Img name":"697","Generation":"6","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"dragon","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"612","ATK":"227","DEF":"221","STA":"164","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3106","100% CP @ 39":"3062"},
+{"Row":"719","Name":"Amaura","Pokedex Number":"698","Img name":"698","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"ice","Weather 1":"Partly cloudy","Weather 2":"Snow","STAT TOTAL":"394","ATK":"124","DEF":"116","STA":"154","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1291","100% CP @ 39":"1273"},
+{"Row":"720","Name":"Aurorus","Pokedex Number":"699","Img name":"699","Generation":"6","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"ice","Weather 1":"Partly cloudy","Weather 2":"Snow","STAT TOTAL":"605","ATK":"186","DEF":"173","STA":"246","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2780","100% CP @ 39":"2741"},
+{"Row":"721","Name":"Sylveon","Pokedex Number":"700","Img name":"700","Generation":"6","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"1","Type 1":"fairy","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"630","ATK":"203","DEF":"237","STA":"190","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3094","100% CP @ 39":"3050"},
+{"Row":"722","Name":"Hawlucha","Pokedex Number":"701","Img name":"701","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fighting","Type 2":"flying","Weather 1":"Cloudy","Weather 2":"Windy","STAT TOTAL":"511","ATK":"195","DEF":"160","STA":"156","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2268","100% CP @ 39":"2236"},
+{"Row":"723","Name":"Dedenne","Pokedex Number":"702","Img name":"702","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"fairy","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"437","ATK":"164","DEF":"139","STA":"134","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1693","100% CP @ 39":"1669"},
+{"Row":"724","Name":"Carbink","Pokedex Number":"703","Img name":"703","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"fairy","Weather 1":"Partly cloudy","Weather 2":"Cloudy","STAT TOTAL":"480","ATK":"95","DEF":"285","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1276","100% CP @ 39":"1257"},
+{"Row":"725","Name":"Goomy","Pokedex Number":"704","Img name":"704","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"321","ATK":"101","DEF":"130","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"893","100% CP @ 39":"881"},
+{"Row":"726","Name":"Sliggoo","Pokedex Number":"705","Img name":"705","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"500","ATK":"159","DEF":"205","STA":"136","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1980","100% CP @ 39":"1952"},
+{"Row":"727","Name":"Goodra","Pokedex Number":"706","Img name":"706","Generation":"6","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"683","ATK":"220","DEF":"283","STA":"180","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3538","100% CP @ 39":"3487"},
+{"Row":"728","Name":"Klefki","Pokedex Number":"707","Img name":"707","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"fairy","Weather 1":"Snow","Weather 2":"Cloudy","STAT TOTAL":"455","ATK":"160","DEF":"181","STA":"114","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1737","100% CP @ 39":"1713"},
+{"Row":"729","Name":"Phantump","Pokedex Number":"708","Img name":"708","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"grass","Weather 1":"Fog","Weather 2":"Sunny/clear","STAT TOTAL":"319","ATK":"125","DEF":"108","STA":"86","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"974","100% CP @ 39":"960"},
+{"Row":"730","Name":"Trevenant","Pokedex Number":"709","Img name":"709","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"grass","Weather 1":"Fog","Weather 2":"Sunny/clear","STAT TOTAL":"528","ATK":"201","DEF":"157","STA":"170","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2406","100% CP @ 39":"2372"},
+{"Row":"731","Name":"Pumpkaboo","Pokedex Number":"710","Img name":"710","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"grass","Weather 1":"Fog","Weather 2":"Sunny/clear","STAT TOTAL":"348","ATK":"121","DEF":"129","STA":"98","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1083","100% CP @ 39":"1068"},
+{"Row":"732","Name":"Gourgeist","Pokedex Number":"711","Img name":"711","Generation":"6","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"grass","Weather 1":"Fog","Weather 2":"Sunny/clear","STAT TOTAL":"541","ATK":"175","DEF":"236","STA":"130","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2263","100% CP @ 39":"2231"},
+{"Row":"733","Name":"Bergmite","Pokedex Number":"712","Img name":"712","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ice","Type 2":"","Weather 1":"Snow","Weather 2":"","STAT TOTAL":"370","ATK":"117","DEF":"143","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1158","100% CP @ 39":"1142"},
+{"Row":"734","Name":"Avalugg","Pokedex Number":"713","Img name":"713","Generation":"6","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ice","Type 2":"","Weather 1":"Snow","Weather 2":"","STAT TOTAL":"689","ATK":"196","DEF":"303","STA":"190","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3364","100% CP @ 39":"3316"},
+{"Row":"735","Name":"Noibat","Pokedex Number":"714","Img name":"714","Generation":"6","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"flying","Type 2":"dragon","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"239","ATK":"83","DEF":"76","STA":"80","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"569","100% CP @ 39":"560"},
+{"Row":"736","Name":"Noivern","Pokedex Number":"715","Img name":"715","Generation":"6","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"flying","Type 2":"dragon","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"550","ATK":"205","DEF":"175","STA":"170","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2576","100% CP @ 39":"2539"},
+{"Row":"737","Name":"Xerneas","Pokedex Number":"716","Img name":"716","Generation":"6","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fairy","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"731","ATK":"275","DEF":"204","STA":"252","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4379","100% CP @ 39":"4317"},
+{"Row":"738","Name":"Yveltal","Pokedex Number":"717","Img name":"717","Generation":"6","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"flying","Weather 1":"Fog","Weather 2":"Windy","STAT TOTAL":"731","ATK":"275","DEF":"204","STA":"252","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4379","100% CP @ 39":"4317"},
+{"Row":"739","Name":"Zygarde","Pokedex Number":"718","Img name":"718","Generation":"6","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"ground","Weather 1":"Windy","Weather 2":"Sunny/clear","STAT TOTAL":"664","ATK":"203","DEF":"245","STA":"216","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3336","100% CP @ 39":"3289"},
+{"Row":"740","Name":"Diancie","Pokedex Number":"719","Img name":"719","Generation":"6","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"fairy","Weather 1":"Partly cloudy","Weather 2":"Cloudy","STAT TOTAL":"575","ATK":"190","DEF":"285","STA":"100","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2378","100% CP @ 39":"2344"},
+{"Row":"741","Name":"Hoopa","Pokedex Number":"720","Img name":"720","Generation":"6","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"ghost","Weather 1":"Windy","Weather 2":"Fog","STAT TOTAL":"688","ATK":"287","DEF":"241","STA":"160","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3992","100% CP @ 39":"3935"},
+{"Row":"742","Name":"Volcanion","Pokedex Number":"721","Img name":"721","Generation":"6","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"water","Weather 1":"Sunny/clear","Weather 2":"Rainy","STAT TOTAL":"643","ATK":"252","DEF":"231","STA":"160","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3460","100% CP @ 39":"3410"},
+{"Row":"743","Name":"Rowlet","Pokedex Number":"722","Img name":"722","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"flying","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"340","ATK":"102","DEF":"102","STA":"136","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"971","100% CP @ 39":"957"},
+{"Row":"744","Name":"Dartrix","Pokedex Number":"723","Img name":"723","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"flying","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"440","ATK":"142","DEF":"142","STA":"156","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1606","100% CP @ 39":"1583"},
+{"Row":"745","Name":"Decidueye","Pokedex Number":"724","Img name":"724","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"ghost","Weather 1":"Sunny/clear","Weather 2":"Fog","STAT TOTAL":"558","ATK":"210","DEF":"192","STA":"156","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2643","100% CP @ 39":"2606"},
+{"Row":"746","Name":"Litten","Pokedex Number":"725","Img name":"725","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"297","ATK":"128","DEF":"79","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"887","100% CP @ 39":"874"},
+{"Row":"747","Name":"Torracat","Pokedex Number":"726","Img name":"726","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"407","ATK":"174","DEF":"103","STA":"130","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1544","100% CP @ 39":"1522"},
+{"Row":"748","Name":"Incineroar","Pokedex Number":"727","Img name":"727","Generation":"7","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"dark","Weather 1":"Sunny/clear","Weather 2":"Fog","STAT TOTAL":"579","ATK":"214","DEF":"175","STA":"190","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2822","100% CP @ 39":"2782"},
+{"Row":"749","Name":"Popplio","Pokedex Number":"728","Img name":"728","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"324","ATK":"120","DEF":"104","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"986","100% CP @ 39":"972"},
+{"Row":"750","Name":"Brionne","Pokedex Number":"729","Img name":"729","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"439","ATK":"168","DEF":"151","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1711","100% CP @ 39":"1686"},
+{"Row":"751","Name":"Primarina","Pokedex Number":"730","Img name":"730","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"fairy","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"607","ATK":"232","DEF":"215","STA":"160","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3095","100% CP @ 39":"3050"},
+{"Row":"752","Name":"Pikipek","Pokedex Number":"731","Img name":"731","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"265","ATK":"136","DEF":"59","STA":"70","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"747","100% CP @ 39":"737"},
+{"Row":"753","Name":"Trumbeak","Pokedex Number":"732","Img name":"732","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"369","ATK":"159","DEF":"100","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1302","100% CP @ 39":"1284"},
+{"Row":"754","Name":"Toucannon","Pokedex Number":"733","Img name":"733","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"528","ATK":"222","DEF":"146","STA":"160","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2484","100% CP @ 39":"2449"},
+{"Row":"755","Name":"Yungoos","Pokedex Number":"734","Img name":"734","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"274","ATK":"122","DEF":"56","STA":"96","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"759","100% CP @ 39":"748"},
+{"Row":"756","Name":"Gumshoos","Pokedex Number":"735","Img name":"735","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"483","ATK":"194","DEF":"113","STA":"176","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2041","100% CP @ 39":"2011"},
+{"Row":"757","Name":"Grubbin","Pokedex Number":"736","Img name":"736","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"294","ATK":"115","DEF":"85","STA":"94","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"847","100% CP @ 39":"835"},
+{"Row":"758","Name":"Charjabug","Pokedex Number":"737","Img name":"737","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"electric","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"430","ATK":"145","DEF":"171","STA":"114","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1547","100% CP @ 39":"1525"},
+{"Row":"759","Name":"Vikavolt","Pokedex Number":"738","Img name":"738","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"electric","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"573","ATK":"254","DEF":"165","STA":"154","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2930","100% CP @ 39":"2888"},
+{"Row":"760","Name":"Crabrawler","Pokedex Number":"739","Img name":"739","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"353","ATK":"150","DEF":"109","STA":"94","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1198","100% CP @ 39":"1180"},
+{"Row":"761","Name":"Crabominable","Pokedex Number":"740","Img name":"740","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fighting","Type 2":"ice","Weather 1":"Cloudy","Weather 2":"Snow","STAT TOTAL":"567","ATK":"231","DEF":"142","STA":"194","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2783","100% CP @ 39":"2743"},
+{"Row":"762","Name":"Oricorio","Pokedex Number":"741","Img name":"741","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"flying","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"491","ATK":"196","DEF":"145","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2141","100% CP @ 39":"2110"},
+{"Row":"763","Name":"Cutiefly","Pokedex Number":"742","Img name":"742","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"fairy","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"271","ATK":"110","DEF":"81","STA":"80","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"745","100% CP @ 39":"734"},
+{"Row":"764","Name":"Ribombee","Pokedex Number":"743","Img name":"743","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"fairy","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"470","ATK":"198","DEF":"152","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1997","100% CP @ 39":"1968"},
+{"Row":"765","Name":"Rockruff","Pokedex Number":"744","Img name":"744","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"285","ATK":"117","DEF":"78","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"814","100% CP @ 39":"803"},
+{"Row":"766","Name":"Lycanroc","Pokedex Number":"745","Img name":"745","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"521","ATK":"231","DEF":"140","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2457","100% CP @ 39":"2422"},
+{"Row":"767","Name":"Wishiwashi","Pokedex Number":"746","Img name":"746","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"182","ATK":"46","DEF":"46","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"304","100% CP @ 39":"300"},
+{"Row":"768","Name":"Mareanie","Pokedex Number":"747","Img name":"747","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"poison","Type 2":"water","Weather 1":"Cloudy","Weather 2":"Rainy","STAT TOTAL":"313","ATK":"98","DEF":"115","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"862","100% CP @ 39":"850"},
+{"Row":"769","Name":"Toxapex","Pokedex Number":"748","Img name":"748","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"poison","Type 2":"water","Weather 1":"Cloudy","Weather 2":"Rainy","STAT TOTAL":"492","ATK":"114","DEF":"278","STA":"100","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1478","100% CP @ 39":"1457"},
+{"Row":"770","Name":"Mudbray","Pokedex Number":"749","Img name":"749","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ground","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"443","ATK":"175","DEF":"128","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1766","100% CP @ 39":"1741"},
+{"Row":"771","Name":"Mudsdale","Pokedex Number":"750","Img name":"750","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ground","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"594","ATK":"214","DEF":"180","STA":"200","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2928","100% CP @ 39":"2886"},
+{"Row":"772","Name":"Dewpider","Pokedex Number":"751","Img name":"751","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"bug","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"274","ATK":"72","DEF":"126","STA":"76","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"615","100% CP @ 39":"606"},
+{"Row":"773","Name":"Araquanid","Pokedex Number":"752","Img name":"752","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"bug","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"499","ATK":"126","DEF":"237","STA":"136","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1717","100% CP @ 39":"1693"},
+{"Row":"774","Name":"Fomantis","Pokedex Number":"753","Img name":"753","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"244","ATK":"100","DEF":"64","STA":"80","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"622","100% CP @ 39":"613"},
+{"Row":"775","Name":"Lurantis","Pokedex Number":"754","Img name":"754","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"501","ATK":"192","DEF":"169","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2183","100% CP @ 39":"2152"},
+{"Row":"776","Name":"Morelull","Pokedex Number":"755","Img name":"755","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"fairy","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"316","ATK":"108","DEF":"128","STA":"80","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"895","100% CP @ 39":"882"},
+{"Row":"777","Name":"Shiinotic","Pokedex Number":"756","Img name":"756","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"fairy","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"451","ATK":"154","DEF":"177","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1699","100% CP @ 39":"1675"},
+{"Row":"778","Name":"Salandit","Pokedex Number":"757","Img name":"757","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"poison","Type 2":"fire","Weather 1":"Cloudy","Weather 2":"Sunny/clear","STAT TOTAL":"312","ATK":"136","DEF":"80","STA":"96","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"968","100% CP @ 39":"954"},
+{"Row":"779","Name":"Salazzle","Pokedex Number":"758","Img name":"758","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"poison","Type 2":"fire","Weather 1":"Cloudy","Weather 2":"Sunny/clear","STAT TOTAL":"494","ATK":"228","DEF":"130","STA":"136","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2245","100% CP @ 39":"2213"},
+{"Row":"780","Name":"Stufful","Pokedex Number":"759","Img name":"759","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"fighting","Weather 1":"Partly cloudy","Weather 2":"Cloudy","STAT TOTAL":"371","ATK":"136","DEF":"95","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1231","100% CP @ 39":"1213"},
+{"Row":"781","Name":"Bewear","Pokedex Number":"760","Img name":"760","Generation":"7","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"fighting","Weather 1":"Partly cloudy","Weather 2":"Cloudy","STAT TOTAL":"616","ATK":"226","DEF":"150","STA":"240","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3087","100% CP @ 39":"3043"},
+{"Row":"782","Name":"Bounsweet","Pokedex Number":"761","Img name":"761","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"208","ATK":"55","DEF":"69","STA":"84","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"398","100% CP @ 39":"393"},
+{"Row":"783","Name":"Steenee","Pokedex Number":"762","Img name":"762","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"276","ATK":"78","DEF":"94","STA":"104","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"661","100% CP @ 39":"652"},
+{"Row":"784","Name":"Tsareena","Pokedex Number":"763","Img name":"763","Generation":"7","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"561","ATK":"222","DEF":"195","STA":"144","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2704","100% CP @ 39":"2666"},
+{"Row":"785","Name":"Comfey","Pokedex Number":"764","Img name":"764","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fairy","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"493","ATK":"165","DEF":"226","STA":"102","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1887","100% CP @ 39":"1860"},
+{"Row":"786","Name":"Oranguru","Pokedex Number":"765","Img name":"765","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"psychic","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"555","ATK":"168","DEF":"207","STA":"180","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2378","100% CP @ 39":"2344"},
+{"Row":"787","Name":"Passimian","Pokedex Number":"766","Img name":"766","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fighting","Type 2":"","Weather 1":"Cloudy","Weather 2":"","STAT TOTAL":"597","ATK":"222","DEF":"175","STA":"200","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2991","100% CP @ 39":"2949"},
+{"Row":"788","Name":"Wimpod","Pokedex Number":"767","Img name":"767","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"water","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"196","ATK":"67","DEF":"79","STA":"50","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"400","100% CP @ 39":"394"},
+{"Row":"789","Name":"Golisopod","Pokedex Number":"768","Img name":"768","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"water","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"617","ATK":"218","DEF":"249","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3037","100% CP @ 39":"2993"},
+{"Row":"790","Name":"Sandygast","Pokedex Number":"769","Img name":"769","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"ground","Weather 1":"Fog","Weather 2":"Sunny/clear","STAT TOTAL":"363","ATK":"120","DEF":"133","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1146","100% CP @ 39":"1130"},
+{"Row":"791","Name":"Palossand","Pokedex Number":"770","Img name":"770","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"ground","Weather 1":"Fog","Weather 2":"Sunny/clear","STAT TOTAL":"542","ATK":"178","DEF":"194","STA":"170","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2370","100% CP @ 39":"2336"},
+{"Row":"792","Name":"Pyukumuku","Pokedex Number":"771","Img name":"771","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"431","ATK":"97","DEF":"224","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1209","100% CP @ 39":"1191"},
+{"Row":"793","Name":"Type: Null","Pokedex Number":"772","Img name":"772","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"558","ATK":"184","DEF":"184","STA":"190","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2510","100% CP @ 39":"2474"},
+{"Row":"794","Name":"Silvally","Pokedex Number":"773","Img name":"773","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"586","ATK":"198","DEF":"198","STA":"190","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2779","100% CP @ 39":"2740"},
+{"Row":"795","Name":"Minior","Pokedex Number":"774","Img name":"774","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"flying","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"430","ATK":"116","DEF":"194","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1374","100% CP @ 39":"1354"},
+{"Row":"796","Name":"Komala","Pokedex Number":"775","Img name":"775","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"","Weather 1":"Partly cloudy","Weather 2":"","STAT TOTAL":"525","ATK":"216","DEF":"179","STA":"130","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2419","100% CP @ 39":"2385"},
+{"Row":"797","Name":"Turtonator","Pokedex Number":"776","Img name":"776","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"fire","Type 2":"dragon","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"523","ATK":"165","DEF":"238","STA":"120","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2077","100% CP @ 39":"2048"},
+{"Row":"798","Name":"Togedemaru","Pokedex Number":"777","Img name":"777","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"steel","Weather 1":"Rainy","Weather 2":"Snow","STAT TOTAL":"470","ATK":"190","DEF":"150","STA":"130","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1980","100% CP @ 39":"1952"},
+{"Row":"799","Name":"Mimikyu","Pokedex Number":"778","Img name":"778","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"fairy","Weather 1":"Fog","Weather 2":"Cloudy","STAT TOTAL":"500","ATK":"177","DEF":"213","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2024","100% CP @ 39":"1995"},
+{"Row":"800","Name":"Bruxish","Pokedex Number":"779","Img name":"779","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"psychic","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"489","ATK":"208","DEF":"145","STA":"136","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2164","100% CP @ 39":"2133"},
+{"Row":"801","Name":"Drampa","Pokedex Number":"780","Img name":"780","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"normal","Type 2":"dragon","Weather 1":"Partly cloudy","Weather 2":"Windy","STAT TOTAL":"554","ATK":"231","DEF":"167","STA":"156","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2710","100% CP @ 39":"2671"},
+{"Row":"802","Name":"Dhelmise","Pokedex Number":"781","Img name":"781","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"ghost","Type 2":"grass","Weather 1":"Fog","Weather 2":"Sunny/clear","STAT TOTAL":"557","ATK":"233","DEF":"184","STA":"140","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2720","100% CP @ 39":"2681"},
+{"Row":"803","Name":"Jangmo-O","Pokedex Number":"782","Img name":"782","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"310","ATK":"102","DEF":"118","STA":"90","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"863","100% CP @ 39":"851"},
+{"Row":"804","Name":"Hakamo-O","Pokedex Number":"783","Img name":"783","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"fighting","Weather 1":"Windy","Weather 2":"Cloudy","STAT TOTAL":"427","ATK":"145","DEF":"172","STA":"110","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1527","100% CP @ 39":"1506"},
+{"Row":"805","Name":"Kommo-O","Pokedex Number":"784","Img name":"784","Generation":"7","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dragon","Type 2":"fighting","Weather 1":"Windy","Weather 2":"Cloudy","STAT TOTAL":"622","ATK":"222","DEF":"250","STA":"150","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3095","100% CP @ 39":"3051"},
+{"Row":"806","Name":"Tapu Koko","Pokedex Number":"785","Img name":"785","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"fairy","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"576","ATK":"250","DEF":"186","STA":"140","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2921","100% CP @ 39":"2879"},
+{"Row":"807","Name":"Tapu Lele","Pokedex Number":"786","Img name":"786","Generation":"7","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"fairy","Weather 1":"Windy","Weather 2":"Cloudy","STAT TOTAL":"628","ATK":"259","DEF":"229","STA":"140","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3328","100% CP @ 39":"3280"},
+{"Row":"808","Name":"Tapu Bulu","Pokedex Number":"787","Img name":"787","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"fairy","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"614","ATK":"249","DEF":"225","STA":"140","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3180","100% CP @ 39":"3134"},
+{"Row":"809","Name":"Tapu Fini","Pokedex Number":"788","Img name":"788","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"water","Type 2":"fairy","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"590","ATK":"189","DEF":"261","STA":"140","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2635","100% CP @ 39":"2597"},
+{"Row":"810","Name":"Cosmog","Pokedex Number":"789","Img name":"789","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"197","ATK":"54","DEF":"57","STA":"86","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"367","100% CP @ 39":"362"},
+{"Row":"811","Name":"Cosmoem","Pokedex Number":"790","Img name":"790","Generation":"7","Evolution Stage":"","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"382","ATK":"54","DEF":"242","STA":"86","Legendary":"0","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"694","100% CP @ 39":"684"},
+{"Row":"812","Name":"Solgaleo","Pokedex Number":"791","Img name":"791","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"steel","Weather 1":"Windy","Weather 2":"Snow","STAT TOTAL":"773","ATK":"280","DEF":"219","STA":"274","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4791","100% CP @ 39":"4722"},
+{"Row":"813","Name":"Lunala","Pokedex Number":"792","Img name":"792","Generation":"7","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"ghost","Weather 1":"Windy","Weather 2":"Fog","STAT TOTAL":"773","ATK":"280","DEF":"219","STA":"274","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4791","100% CP @ 39":"4722"},
+{"Row":"814","Name":"Nihilego","Pokedex Number":"793","Img name":"793","Generation":"7","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"rock","Type 2":"poison","Weather 1":"Partly cloudy","Weather 2":"Cloudy","STAT TOTAL":"721","ATK":"249","DEF":"254","STA":"218","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4128","100% CP @ 39":"4069"},
+{"Row":"815","Name":"Buzzwole","Pokedex Number":"794","Img name":"794","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"fighting","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"732","ATK":"259","DEF":"259","STA":"214","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4286","100% CP @ 39":"4225"},
+{"Row":"816","Name":"Pheromosa","Pokedex Number":"795","Img name":"795","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"bug","Type 2":"fighting","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"543","ATK":"316","DEF":"85","STA":"142","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2590","100% CP @ 39":"2553"},
+{"Row":"817","Name":"Xurkitree","Pokedex Number":"796","Img name":"796","Generation":"7","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"electric","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"640","ATK":"330","DEF":"144","STA":"166","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3655","100% CP @ 39":"3603"},
+{"Row":"818","Name":"Celesteela","Pokedex Number":"797","Img name":"797","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"flying","Weather 1":"Snow","Weather 2":"Windy","STAT TOTAL":"601","ATK":"207","DEF":"200","STA":"194","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2939","100% CP @ 39":"2897"},
+{"Row":"819","Name":"Kartana","Pokedex Number":"798","Img name":"798","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"grass","Type 2":"steel","Weather 1":"Sunny/clear","Weather 2":"Snow","STAT TOTAL":"726","ATK":"355","DEF":"253","STA":"118","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"4362","100% CP @ 39":"4300"},
+{"Row":"820","Name":"Guzzlord","Pokedex Number":"799","Img name":"799","Generation":"7","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"dark","Type 2":"dragon","Weather 1":"Fog","Weather 2":"Windy","STAT TOTAL":"733","ATK":"188","DEF":"99","STA":"446","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2906","100% CP @ 39":"2865"},
+{"Row":"821","Name":"Necrozma","Pokedex Number":"800","Img name":"800","Generation":"7","Evolution Stage":"Lower","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"psychic","Type 2":"","Weather 1":"Windy","Weather 2":"","STAT TOTAL":"646","ATK":"251","DEF":"201","STA":"194","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3529","100% CP @ 39":"3479"},
+{"Row":"822","Name":"Magearna","Pokedex Number":"801","Img name":"801","Generation":"7","Evolution Stage":"Evolved","Evolved":"0","FamilyID":"","Cross Gen":"0","Type 1":"steel","Type 2":"fairy","Weather 1":"Snow","Weather 2":"Cloudy","STAT TOTAL":"631","ATK":"246","DEF":"225","STA":"160","Legendary":"1","Aquireable":"0","Spawns":"0","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"3340","100% CP @ 39":"3293"}
+]
diff --git a/frontend/next-env.d.ts b/frontend/next-env.d.ts
new file mode 100644
index 000000000..7b7aa2c77
--- /dev/null
+++ b/frontend/next-env.d.ts
@@ -0,0 +1,2 @@
+///
+///
diff --git a/frontend/next.config.js b/frontend/next.config.js
new file mode 100644
index 000000000..19359abcb
--- /dev/null
+++ b/frontend/next.config.js
@@ -0,0 +1,10 @@
+// eslint-disable-next-line @typescript-eslint/no-var-requires
+const withPWA = require('next-pwa')
+const isProd = process.env.NODE_ENV === 'production'
+
+module.exports = withPWA({
+ pwa: {
+ dest: 'public',
+ disable: !isProd,
+ },
+})
diff --git a/frontend/package.json b/frontend/package.json
new file mode 100644
index 000000000..917450dec
--- /dev/null
+++ b/frontend/package.json
@@ -0,0 +1,51 @@
+{
+ "name": "redfox-teste-frontend-wesleyoliveira",
+ "version": "0.1.0",
+ "private": true,
+ "scripts": {
+ "dev": "next dev",
+ "build": "next build",
+ "start": "next start",
+ "storybook": "start-storybook -s ./public -p 6006",
+ "build-storybook": "build-storybook -s ./public",
+ "generate": "yarn plop --plopfile ./generators/plopfile.js"
+ },
+ "dependencies": {
+ "@types/testing-library__dom": "^7.5.0",
+ "axios": "^0.21.1",
+ "joi": "^17.4.0",
+ "json-server": "^0.16.3",
+ "next": "10.0.8",
+ "next-pwa": "^5.0.5",
+ "polished": "^4.1.1",
+ "react": "17.0.1",
+ "react-dom": "17.0.1",
+ "react-tabs": "^3.2.1",
+ "styled-components": "^5.2.1"
+ },
+ "devDependencies": {
+ "@babel/core": "^7.13.14",
+ "@babel/plugin-transform-react-jsx": "^7.12.16",
+ "@babel/preset-typescript": "^7.12.7",
+ "@storybook/addon-essentials": "^6.1.11",
+ "@storybook/react": "^6.1.11",
+ "@types/babel__core": "^7.1.14",
+ "@types/node": "^14.14.26",
+ "@types/react": "^17.0.0",
+ "@types/react-icons": "^3.0.0",
+ "@types/react-tabs": "^2.3.2",
+ "@types/styled-components": "^5.1.7",
+ "@typescript-eslint/eslint-plugin": "^4.15.0",
+ "@typescript-eslint/parser": "^4.11.0",
+ "babel-loader": "^8.2.2",
+ "babel-plugin-styled-components": "^1.12.0",
+ "eslint": "^7.20.0",
+ "eslint-config-prettier": "^7.1.0",
+ "eslint-plugin-prettier": "^3.3.1",
+ "eslint-plugin-react": "^7.22.0",
+ "eslint-plugin-react-hooks": "^4.2.0",
+ "plop": "^2.7.4",
+ "storybook-addon-next-router": "^2.0.3",
+ "typescript": "^4.1.3"
+ }
+}
diff --git a/frontend/public/favicon.ico b/frontend/public/favicon.ico
new file mode 100644
index 000000000..4965832f2
Binary files /dev/null and b/frontend/public/favicon.ico differ
diff --git a/frontend/public/fonts/roboto-v20-latin-100.woff2 b/frontend/public/fonts/roboto-v20-latin-100.woff2
new file mode 100644
index 000000000..a5cc28390
Binary files /dev/null and b/frontend/public/fonts/roboto-v20-latin-100.woff2 differ
diff --git a/frontend/public/fonts/roboto-v20-latin-300.woff2 b/frontend/public/fonts/roboto-v20-latin-300.woff2
new file mode 100644
index 000000000..ef8c8836b
Binary files /dev/null and b/frontend/public/fonts/roboto-v20-latin-300.woff2 differ
diff --git a/frontend/public/fonts/roboto-v20-latin-500.woff2 b/frontend/public/fonts/roboto-v20-latin-500.woff2
new file mode 100644
index 000000000..6362d7f64
Binary files /dev/null and b/frontend/public/fonts/roboto-v20-latin-500.woff2 differ
diff --git a/frontend/public/fonts/roboto-v20-latin-700.woff2 b/frontend/public/fonts/roboto-v20-latin-700.woff2
new file mode 100644
index 000000000..32b25eee7
Binary files /dev/null and b/frontend/public/fonts/roboto-v20-latin-700.woff2 differ
diff --git a/frontend/public/fonts/roboto-v20-latin-regular.woff2 b/frontend/public/fonts/roboto-v20-latin-regular.woff2
new file mode 100644
index 000000000..1a5370151
Binary files /dev/null and b/frontend/public/fonts/roboto-v20-latin-regular.woff2 differ
diff --git a/frontend/public/img/Frontend.gif b/frontend/public/img/Frontend.gif
new file mode 100644
index 000000000..62c4da233
Binary files /dev/null and b/frontend/public/img/Frontend.gif differ
diff --git a/frontend/public/img/add-remove-flow.gif b/frontend/public/img/add-remove-flow.gif
new file mode 100644
index 000000000..293b3919d
Binary files /dev/null and b/frontend/public/img/add-remove-flow.gif differ
diff --git a/frontend/public/img/add.gif b/frontend/public/img/add.gif
new file mode 100644
index 000000000..9dfef4011
Binary files /dev/null and b/frontend/public/img/add.gif differ
diff --git a/frontend/public/img/fields-validation.gif b/frontend/public/img/fields-validation.gif
new file mode 100644
index 000000000..9ee374007
Binary files /dev/null and b/frontend/public/img/fields-validation.gif differ
diff --git a/frontend/public/img/icon-192.png b/frontend/public/img/icon-192.png
new file mode 100644
index 000000000..216691a8a
Binary files /dev/null and b/frontend/public/img/icon-192.png differ
diff --git a/frontend/public/img/icon-512.png b/frontend/public/img/icon-512.png
new file mode 100644
index 000000000..18d9a375e
Binary files /dev/null and b/frontend/public/img/icon-512.png differ
diff --git a/frontend/public/img/notfound.png b/frontend/public/img/notfound.png
new file mode 100644
index 000000000..bf3cf6357
Binary files /dev/null and b/frontend/public/img/notfound.png differ
diff --git a/frontend/public/img/redfox.svg b/frontend/public/img/redfox.svg
new file mode 100644
index 000000000..4b53e7fb8
--- /dev/null
+++ b/frontend/public/img/redfox.svg
@@ -0,0 +1,353 @@
+
+
+
diff --git a/frontend/public/img/redfox.svg:Zone.Identifier b/frontend/public/img/redfox.svg:Zone.Identifier
new file mode 100644
index 000000000..88589523e
--- /dev/null
+++ b/frontend/public/img/redfox.svg:Zone.Identifier
@@ -0,0 +1,3 @@
+[ZoneTransfer]
+ZoneId=3
+HostUrl=https://s2.aconvert.com/convert/p3r68-cdx67/a7izr-eyotb.svg
diff --git a/frontend/public/img/storybook.gif b/frontend/public/img/storybook.gif
new file mode 100644
index 000000000..29fc28527
Binary files /dev/null and b/frontend/public/img/storybook.gif differ
diff --git a/frontend/public/manifest.json b/frontend/public/manifest.json
new file mode 100644
index 000000000..597ec98ad
--- /dev/null
+++ b/frontend/public/manifest.json
@@ -0,0 +1,21 @@
+{
+ "name": "RedFox - Boilerplate",
+ "short_name": "RedFox",
+ "icons": [
+ {
+ "src": "/img/icon-192.png",
+ "type": "image/png",
+ "sizes": "192x192"
+ },
+ {
+ "src": "/img/icon-512.png",
+ "type": "image/png",
+ "sizes": "512x512"
+ }
+ ],
+ "background_color": "#06092B",
+ "description": "Boilerlate utilizando Typescript, React, NextJS e Styled Components!",
+ "display": "fullscreen",
+ "start_url": "/",
+ "theme_color": "#06092B"
+}
diff --git a/frontend/public/uploads/.gitkeep b/frontend/public/uploads/.gitkeep
new file mode 100644
index 000000000..e69de29bb
diff --git a/frontend/public/vercel.svg b/frontend/public/vercel.svg
new file mode 100644
index 000000000..fbf0e25a6
--- /dev/null
+++ b/frontend/public/vercel.svg
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/frontend/src/components/Button/index.tsx b/frontend/src/components/Button/index.tsx
new file mode 100644
index 000000000..cc84e393a
--- /dev/null
+++ b/frontend/src/components/Button/index.tsx
@@ -0,0 +1,21 @@
+import { ButtonHTMLAttributes } from 'react'
+import * as S from './styles'
+
+export type ButtonProps = {
+ children?: React.ReactNode
+ onlyText?: boolean
+ icon?: React.ReactNode
+} & ButtonHTMLAttributes
+const Button = ({
+ icon,
+ children,
+ onlyText = false,
+ ...props
+}: ButtonProps) => (
+
+ {!!icon && {icon}}
+ {!!children && {children}}
+
+)
+
+export default Button
diff --git a/frontend/src/components/Button/stories.tsx b/frontend/src/components/Button/stories.tsx
new file mode 100644
index 000000000..9e180e9a9
--- /dev/null
+++ b/frontend/src/components/Button/stories.tsx
@@ -0,0 +1,30 @@
+import { Story, Meta } from '@storybook/react/types-6-0'
+//import { Plus } from '@styled-icons/boxicons-regular/Plus'
+import Button from '.'
+
+export default {
+ title: 'Button',
+ component: Button,
+ argTypes: {
+ children: {
+ type: 'string',
+ },
+ icon: {
+ type: '',
+ },
+ },
+} as Meta
+
+export const withIcon: Story = (args) =>
+
+withIcon.args = {
+ children: 'Adicionar',
+ //icon: ,
+}
+
+export const onlyText: Story = (args) =>
+
+onlyText.args = {
+ onlyText: true,
+ children: 'remover',
+}
diff --git a/frontend/src/components/Button/styles.ts b/frontend/src/components/Button/styles.ts
new file mode 100644
index 000000000..c0a31995b
--- /dev/null
+++ b/frontend/src/components/Button/styles.ts
@@ -0,0 +1,58 @@
+import styled, { css, DefaultTheme } from 'styled-components'
+
+import { ButtonProps } from '.'
+
+export type WrapperProps = {
+ hasIcon: boolean
+} & Pick
+
+const wrapperModifiers = {
+ withIcon: (theme: DefaultTheme) => css`
+ svg {
+ width: 1.5rem;
+
+ & + span {
+ margin-left: ${theme.spacings.xxsmall};
+ }
+ }
+ `,
+ onlyText: () => css`
+ background: none;
+ text-decoration: underline;
+ color: #000;
+ `,
+}
+
+export const Icon = styled.div`
+ color: ${({ theme }) => theme.colors.white};
+ display: flex;
+`
+
+export const Wrapper = styled.button`
+ ${({ theme, hasIcon, onlyText }) => css`
+ height: 5.3rem;
+ padding: ${theme.spacings.small};
+ font-weight: ${theme.font.light};
+ font-size: ${theme.font.sizes.xsmall};
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ background: ${theme.colors.primary};
+ color: ${theme.colors.white};
+ border: 0;
+ outline: none;
+ border-radius: ${theme.border.radius};
+ padding: ${theme.spacings.xxsmall};
+ cursor: pointer;
+ text-decoration: none;
+
+ span {
+ font-size: ${theme.font.sizes.medium};
+ }
+
+ }
+
+ ${!!hasIcon && wrapperModifiers.withIcon(theme)}
+ ${!!onlyText && wrapperModifiers.onlyText()}
+ `}
+`
diff --git a/frontend/src/components/CheckBox/index.tsx b/frontend/src/components/CheckBox/index.tsx
new file mode 100644
index 000000000..e0778d2e3
--- /dev/null
+++ b/frontend/src/components/CheckBox/index.tsx
@@ -0,0 +1,51 @@
+import { InputHTMLAttributes, useState } from 'react'
+import * as S from './styles'
+
+export type CheckboxProps = {
+ onCheck?: (status: boolean) => void
+ isChecked?: boolean
+ label?: string
+ labelFor?: string
+ labelColor: 'white' | 'black'
+ value?: string | ReadonlyArray | number | boolean
+} & InputHTMLAttributes
+
+const Checkbox = ({
+ onCheck,
+ isChecked = false,
+ label,
+ labelFor = '',
+ labelColor = 'white',
+ value,
+ ...props
+}: CheckboxProps) => {
+ // controlled component (state)
+ const [checked, setChecked] = useState(isChecked)
+
+ const onChange = () => {
+ const status = !checked // true => false => true
+ setChecked(status)
+
+ !!onCheck && onCheck(status)
+ }
+
+ return (
+
+
+ {!!label && (
+
+ {label}
+
+ )}
+
+ )
+}
+
+export default Checkbox
diff --git a/frontend/src/components/CheckBox/stories.tsx b/frontend/src/components/CheckBox/stories.tsx
new file mode 100644
index 000000000..54e1443c0
--- /dev/null
+++ b/frontend/src/components/CheckBox/stories.tsx
@@ -0,0 +1,21 @@
+import { Story, Meta } from '@storybook/react/types-6-0'
+import Checkbox, { CheckboxProps } from '.'
+
+export default {
+ title: 'Checkbox',
+ component: Checkbox,
+ parameters: {
+ layout: 'fullscreen',
+ },
+ argTypes: {
+ onCheck: { action: 'checked' },
+ },
+} as Meta
+
+export const Default: Story = (args) => (
+ <>
+
+
+
+ >
+)
diff --git a/frontend/src/components/CheckBox/styles.ts b/frontend/src/components/CheckBox/styles.ts
new file mode 100644
index 000000000..b28c6ce54
--- /dev/null
+++ b/frontend/src/components/CheckBox/styles.ts
@@ -0,0 +1,61 @@
+import styled, { css } from 'styled-components'
+import { CheckboxProps } from '.'
+
+export const Wrapper = styled.div`
+ display: flex;
+ align-items: center;
+`
+
+export const Input = styled.input`
+ ${({ theme }) => css`
+ cursor: pointer;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ appearance: none;
+ width: 1.8rem;
+ height: 1.8rem;
+ border: 0.2rem solid ${theme.colors.darkGray};
+ border-radius: 0.2rem;
+ transition: background border ${theme.transition.fast};
+ position: relative;
+ outline: none;
+ &:before {
+ content: '';
+ width: 0.6rem;
+ height: 0.9rem;
+ border: 0.2rem solid ${theme.colors.white};
+ border-top: 0;
+ border-left: 0;
+ transform: rotate(45deg);
+ position: absolute;
+ top: 0.1rem;
+ opacity: 0;
+ transition: ${theme.transition.fast};
+ }
+ &:focus {
+ box-shadow: 0 0 0.5rem ${theme.colors.primary};
+ }
+ &:hover {
+ border-color: ${theme.colors.gray};
+ transition: ${theme.transition.fast};
+ }
+ &:checked {
+ border-color: ${theme.colors.primary};
+ background: ${theme.colors.primary};
+ &:before {
+ opacity: 1;
+ }
+ }
+ `}
+`
+
+export const Label = styled.label>`
+ ${({ theme, labelColor }) => css`
+ cursor: pointer;
+ padding-left: ${theme.spacings.xxsmall};
+
+ color: ${theme.colors[labelColor]};
+ line-height: 1.8rem;
+ `}
+`
diff --git a/frontend/src/components/Form/index.tsx b/frontend/src/components/Form/index.tsx
new file mode 100644
index 000000000..e671235ec
--- /dev/null
+++ b/frontend/src/components/Form/index.tsx
@@ -0,0 +1,34 @@
+import styled, { css } from 'styled-components'
+
+import * as TextInputFieldStyles from 'components/TextInputField/styles'
+import * as ButtonStyles from 'components/Button/styles'
+import * as SelectStyles from 'components/Select/styles'
+
+export const FormWrapper = styled.div`
+ ${({ theme }) => css`
+ ${TextInputFieldStyles.Wrapper} {
+ margin: ${theme.spacings.xxsmall} 0;
+ }
+ ${SelectStyles.Wrapper} {
+ margin: ${theme.spacings.xxsmall} 0;
+ }
+ ${ButtonStyles.Wrapper} {
+ width: 144px;
+ }
+ width: 100%;
+ padding: ${theme.spacings.small} ${theme.spacings.xxlarge}
+ ${theme.spacings.small} ${theme.spacings.xxlarge};
+ `}
+`
+export const FormError = styled.div`
+ ${({ theme }) => css`
+ text-align: center;
+ line-height: ${theme.font.sizes.huge};
+ color: red;
+ font-size: ${theme.font.sizes.small};
+
+ svg {
+ width: 1.6rem;
+ }
+ `}
+`
diff --git a/frontend/src/components/FormAddPokemon/index.tsx b/frontend/src/components/FormAddPokemon/index.tsx
new file mode 100644
index 000000000..7a0750200
--- /dev/null
+++ b/frontend/src/components/FormAddPokemon/index.tsx
@@ -0,0 +1,473 @@
+import React, { FormEvent, useState } from 'react'
+import { useModal } from '../../context/ModalContext'
+import { useRouter } from 'next/router'
+import { Tab, Tabs, TabList, TabPanel } from 'react-tabs'
+import 'react-tabs/style/react-tabs.css'
+
+import api from '../../services/api'
+import TextInputField from 'components/TextInputField'
+import { FormError, FormWrapper } from '../Form'
+import * as S from './styles'
+
+import Button from 'components/Button'
+import Checkbox from 'components/CheckBox'
+import Select from 'components/Select'
+
+import { FiPlus, FiXCircle } from 'react-icons/fi'
+
+import {
+ FieldErrors,
+ addPokemonValidate,
+ FieldsToValidate,
+} from '../../utils/validations'
+
+const FormAddPokemon = () => {
+ const router = useRouter()
+ const [formError, setFormError] = useState('')
+ const [fieldError, setFieldError] = useState({})
+ const { changeModalView } = useModal()
+ const [formValues, setFormValues] = useState({
+ name: '',
+ pokedexNumber: 0,
+ generation: 0,
+ evolutionStage: 0,
+ familyID: 0,
+ pokemonType: '',
+ pokemonType2: '',
+ weather: '',
+ weather2: '',
+ atk: 0,
+ def: 0,
+ sta: 0,
+ hatchable: 0,
+ cp39: 0,
+ cp40: 0,
+ })
+
+ const [image, setImage] = useState()
+ const [previewImage, setPreviewImage] = useState('')
+
+ const [checkBoxesValues, setCheckBoxesValues] = useState({
+ evolved: '0',
+ crossGen: '0',
+ legendary: '0',
+ aquireable: '0',
+ spaws: '0',
+ regional: '0',
+ raidable: '0',
+ shiny: '0',
+ nest: '0',
+ notGettable: '0',
+ isNew: '0',
+ futureEvolve: '0',
+ })
+
+ function resetFields() {
+ setCheckBoxesValues({
+ evolved: '0',
+ crossGen: '0',
+ legendary: '0',
+ aquireable: '0',
+ spaws: '0',
+ regional: '0',
+ raidable: '0',
+ shiny: '0',
+ nest: '0',
+ notGettable: '0',
+ isNew: '0',
+ futureEvolve: '0',
+ }),
+ setImage(undefined),
+ setFormValues({
+ name: '',
+ pokedexNumber: 0,
+ generation: 0,
+ evolutionStage: 0,
+ familyID: 0,
+ pokemonType: '',
+ pokemonType2: '',
+ weather: '',
+ weather2: '',
+ atk: 0,
+ def: 0,
+ sta: 0,
+ hatchable: 0,
+ cp39: 0,
+ cp40: 0,
+ })
+ }
+
+ async function handleSubmit(event: FormEvent) {
+ event.preventDefault()
+
+ setFormError('')
+ const errors = addPokemonValidate(formValues)
+
+ if (Object.keys(errors).length) {
+ setFieldError(errors)
+ console.log(errors)
+ return
+ }
+
+ setFieldError({})
+
+ const data = new FormData()
+ const calcStat =
+ Number(formValues.atk) + Number(formValues.def) + Number(formValues.sta)
+
+ data.append('avatar', image)
+ data.append('Name', formValues.name)
+ data.append('Pokedex Number', formValues.pokedexNumber.toString())
+ data.append('Type 1', formValues.pokemonType)
+ if (formValues.pokemonType2) {
+ data.append('Type 2', formValues.pokemonType2)
+ }
+ data.append('Weather 1', formValues.weather)
+ if (formValues.weather2) {
+ data.append('Weather 2', formValues.weather2)
+ }
+ data.append('Generation', formValues.generation.toString())
+ data.append('Evolution Stage', formValues.evolutionStage.toString())
+ if (formValues.familyID) {
+ data.append('FamilyID', formValues.familyID.toString())
+ }
+ data.append('STAT TOTAL', calcStat.toString())
+ data.append('ATK', formValues.atk.toString())
+ data.append('DEF', formValues.def.toString())
+ data.append('STA', formValues.sta.toString())
+ data.append('Hatchable', formValues.hatchable.toString())
+ data.append('100% CP @ 40', formValues.cp40.toString())
+ data.append('100% CP @ 39', formValues.cp39.toString())
+ data.append('Cross Gen', checkBoxesValues.crossGen)
+ data.append('Evolved', checkBoxesValues.evolved)
+ data.append('New', checkBoxesValues.isNew)
+ data.append('Legendary', checkBoxesValues.legendary)
+ data.append('Aquireable', checkBoxesValues.aquireable)
+ data.append('Spawns', checkBoxesValues.spaws)
+ data.append('Regional', checkBoxesValues.regional)
+ data.append('Raidable', checkBoxesValues.raidable)
+ data.append('Shiny', checkBoxesValues.shiny)
+ data.append('Nest', checkBoxesValues.nest)
+ data.append('Not-Gettable', checkBoxesValues.notGettable)
+ data.append('Future Evolve', checkBoxesValues.futureEvolve)
+
+ const config = {
+ headers: {
+ 'content-type': 'multipart/form-data',
+ },
+ }
+ await api.post('pokemons', data, config)
+
+ resetFields()
+ alert('Pokemon cadastrado com sucesso.')
+
+ router.push('/pokemons')
+ changeModalView()
+ }
+
+ const checkboxFields = [
+ {
+ label: 'Evolved',
+ name: 'evolved',
+ value: `${checkBoxesValues.evolved}`,
+ },
+ {
+ label: 'Cross Gen',
+ name: 'crossGen',
+ value: `${checkBoxesValues.crossGen}`,
+ },
+ {
+ label: 'Legendary',
+ name: 'legendary',
+ value: `${checkBoxesValues.legendary}`,
+ },
+ {
+ label: 'Aquireable',
+ name: 'aquireable',
+ value: `${checkBoxesValues.aquireable}`,
+ },
+ {
+ label: 'Spaws',
+ name: 'spaws',
+ value: `${checkBoxesValues.spaws}`,
+ },
+ {
+ label: 'Regional',
+ name: 'regional',
+ value: `${checkBoxesValues.regional}`,
+ },
+ {
+ label: 'Raidable',
+ name: 'raidable',
+ value: `${checkBoxesValues.raidable}`,
+ },
+ {
+ label: 'Shiny',
+ name: 'shiny',
+ value: `${checkBoxesValues.shiny}`,
+ },
+ {
+ label: 'Not-Gettable',
+ name: 'notGettable',
+ value: `${checkBoxesValues.notGettable}`,
+ },
+ {
+ label: 'Nest',
+ name: 'nest',
+ value: `${checkBoxesValues.nest}`,
+ },
+ {
+ label: 'Future Evolve',
+ name: 'futureEvolve',
+ value: `${checkBoxesValues.futureEvolve}`,
+ },
+ ]
+
+ const options = [
+ { type: 'bug' },
+ { type: 'dark' },
+ { type: 'dragon' },
+ { type: 'electric' },
+ { type: 'fairy' },
+ { type: 'fighting' },
+ { type: 'fire' },
+ { type: 'flying' },
+ { type: 'ghost' },
+ { type: 'grass' },
+ { type: 'ground' },
+ { type: 'ice' },
+ { type: 'normal' },
+ { type: 'poison' },
+ { type: 'psychic' },
+ { type: 'rock' },
+ { type: 'steel' },
+ { type: 'water' },
+ ]
+
+ const handleCheckbox = (name: string, value: string) => {
+ if (value === '0') {
+ const newValue = '1'
+ setCheckBoxesValues((s) => ({ ...s, [name]: newValue }))
+ } else {
+ const newValue = '0'
+ setCheckBoxesValues((s) => ({ ...s, [name]: newValue }))
+ }
+ }
+
+ const handleInput = (field: string, value: string) => {
+ setFormValues((s) => ({ ...s, [field]: value }))
+ }
+
+ const handleSelectedImage = (e: React.ChangeEvent) => {
+ if (!e.target.files) {
+ return
+ }
+ setImage(e.target.files[0])
+ console.log(image)
+ setPreviewImage(URL.createObjectURL(e.target.files[0]))
+ }
+
+ return (
+
+
+
+
+ Basic fields
+
+
+ Aditional Info
+
+
+ Stats
+
+
+
+ {!!formError && (
+
+ {formError}
+
+ )}
+
+
+
+
+ handleInput('weather', v)}
+ value={formValues.weather}
+ label="Weather 1"
+ type="text"
+ />
+ handleInput('weather2', v)}
+ value={formValues.weather2}
+ label="Weather 2"
+ type="text"
+ />
+ handleInput('hatchable', v)}
+ value={formValues.hatchable}
+ label="Hatchable"
+ type="number"
+ />
+ handleInput('familyID', v)}
+ value={formValues.familyID}
+ label="Family ID"
+ type="number"
+ />
+
+ {checkboxFields.map((field) => (
+ handleCheckbox(field.name, field.value)}
+ name={field.name}
+ label={field.label}
+ value={field.value}
+ />
+ ))}
+
+
+ handleInput('generation', v)}
+ value={formValues.generation}
+ label="Generation"
+ type="number"
+ />
+ handleInput('evolutionStage', v)}
+ value={formValues.evolutionStage}
+ label="Evolution Stage"
+ type="number"
+ />
+ handleInput('cp39', v)}
+ value={formValues.cp39}
+ label="100% CP @ 39"
+ type="number"
+ />
+ handleInput('cp40', v)}
+ value={formValues.cp40}
+ label="100% CP @ 40"
+ type="number"
+ />
+ handleInput('atk', v)}
+ value={formValues.atk}
+ label="ATK"
+ type="number"
+ />
+ handleInput('def', v)}
+ value={formValues.def}
+ label="DEF"
+ type="number"
+ />
+ handleInput('sta', v)}
+ value={formValues.sta}
+ label="STA"
+ type="number"
+ />
+
+
+
+ )
+}
+
+export default FormAddPokemon
diff --git a/frontend/src/components/FormAddPokemon/mock.ts b/frontend/src/components/FormAddPokemon/mock.ts
new file mode 100644
index 000000000..5a8afd5b9
--- /dev/null
+++ b/frontend/src/components/FormAddPokemon/mock.ts
@@ -0,0 +1,48 @@
+export default {
+ fields: [
+ {
+ label: 'Evolved',
+ name: 'Evolved',
+ },
+ {
+ label: 'Cross Gen',
+ name: 'CrossGen',
+ },
+ {
+ label: 'Legendary',
+ name: 'Legendary',
+ },
+ {
+ label: 'Aquireable',
+ name: 'Aquireable',
+ },
+ {
+ label: 'Spaws',
+ name: 'Spaws',
+ },
+ {
+ label: 'Regional',
+ name: 'Regional',
+ },
+ {
+ label: 'Raidable',
+ name: 'Raidable',
+ },
+ {
+ label: 'Shiny',
+ name: 'Shiny',
+ },
+ {
+ label: 'Not-Gettable',
+ name: 'Not-Gettable',
+ },
+ {
+ label: 'Nest',
+ name: 'Nest',
+ },
+ {
+ label: 'Future Evolve',
+ name: 'Future Evolve',
+ },
+ ],
+}
diff --git a/frontend/src/components/FormAddPokemon/stories.tsx b/frontend/src/components/FormAddPokemon/stories.tsx
new file mode 100644
index 000000000..3a6118aa2
--- /dev/null
+++ b/frontend/src/components/FormAddPokemon/stories.tsx
@@ -0,0 +1,13 @@
+import { Story, Meta } from '@storybook/react/types-6-0'
+import FormAddPokemon from '.'
+
+export default {
+ title: 'FormAddPokemon',
+ component: FormAddPokemon,
+} as Meta
+
+export const Default: Story = () => (
+
+
+
+)
diff --git a/frontend/src/components/FormAddPokemon/styles.ts b/frontend/src/components/FormAddPokemon/styles.ts
new file mode 100644
index 000000000..015544b05
--- /dev/null
+++ b/frontend/src/components/FormAddPokemon/styles.ts
@@ -0,0 +1,42 @@
+import styled, { css } from 'styled-components'
+
+export const ButtonsWrapper = styled.label`
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+`
+
+export const ImagesContainer = styled.div`
+ width: 150px;
+ height: 150px;
+`
+
+export const Image = styled.img`
+ width: 150px;
+ height: 150px;
+ object-fit: cover;
+ border-radius: 20px;
+`
+
+export const NewImage = styled.label`
+ height: 150px;
+ background: #f5f8fa;
+ border: 1px dashed #96d2f0;
+ border-radius: 20px;
+ cursor: pointer;
+
+ display: flex;
+ justify-content: center;
+ align-items: center;
+`
+export const Input = styled.input`
+ display: none;
+`
+
+export const Label = styled.label`
+ ${({ theme }) => css`
+ font-size: ${theme.font.sizes.medium};
+ color: ${theme.colors.black};
+ cursor: pointer;
+ `}
+`
diff --git a/frontend/src/components/Main/index.tsx b/frontend/src/components/Main/index.tsx
new file mode 100644
index 000000000..d98f8f1d1
--- /dev/null
+++ b/frontend/src/components/Main/index.tsx
@@ -0,0 +1,22 @@
+import * as S from './styles'
+import Link from 'next/link'
+
+const Main = ({
+ title = 'RedFox - Desafio Frontend',
+ description = ' Wesley M. Oliveira',
+}) => (
+
+
+ {title}
+ {description}
+
+
+ Clique aqui e navegue para rota /pokemons
+
+
+)
+
+export default Main
diff --git a/frontend/src/components/Main/stories.tsx b/frontend/src/components/Main/stories.tsx
new file mode 100644
index 000000000..452ce1ad4
--- /dev/null
+++ b/frontend/src/components/Main/stories.tsx
@@ -0,0 +1,12 @@
+import { Story, Meta } from '@storybook/react/types-6-0'
+import Main from '.'
+
+export default {
+ title: 'Main',
+ component: Main,
+} as Meta
+
+export const Default: Story = (args) =>
+Default.args = {
+ title: 'RedFox',
+}
diff --git a/frontend/src/components/Main/styles.ts b/frontend/src/components/Main/styles.ts
new file mode 100644
index 000000000..b8a2080e0
--- /dev/null
+++ b/frontend/src/components/Main/styles.ts
@@ -0,0 +1,34 @@
+import styled, { css } from 'styled-components'
+
+export const Wrapper = styled.main`
+ ${({ theme }) => css`
+ background-color: #fff;
+ color: #06092b;
+ width: 100%;
+ height: 100%;
+ padding: 3rem;
+ display: flex;
+ flex-direction: column;
+ text-align: center;
+ align-items: center;
+ justify-content: center;
+ > a {
+ color: ${theme.colors.primary};
+ font-size: ${theme.font.sizes.medium};
+ }
+ `}
+`
+
+export const Logo = styled.img`
+ width: 25rem;
+ margin-bottom: 2rem;
+`
+
+export const Title = styled.h1`
+ font-size: 2.5rem;
+`
+
+export const Description = styled.h2`
+ font-size: 2rem;
+ font-weight: 400;
+`
diff --git a/frontend/src/components/ModalAddPokemon/index.tsx b/frontend/src/components/ModalAddPokemon/index.tsx
new file mode 100644
index 000000000..ef2bc8715
--- /dev/null
+++ b/frontend/src/components/ModalAddPokemon/index.tsx
@@ -0,0 +1,25 @@
+import React from 'react'
+
+import { useModal } from '../../context/ModalContext'
+import * as S from './styles'
+import FormAddPokemon from 'components/FormAddPokemon'
+import { FiPlus } from 'react-icons/fi'
+
+const ModalAddPokemon = () => {
+ const { modalVisible } = useModal()
+ return (
+ <>
+
+
+
+
+ Adicionar novo pokemon
+
+
+
+
+ >
+ )
+}
+
+export default ModalAddPokemon
diff --git a/frontend/src/components/ModalAddPokemon/styles.ts b/frontend/src/components/ModalAddPokemon/styles.ts
new file mode 100644
index 000000000..6f4506049
--- /dev/null
+++ b/frontend/src/components/ModalAddPokemon/styles.ts
@@ -0,0 +1,54 @@
+import styled, { css } from 'styled-components'
+
+type OpenedlProps = {
+ isOpen: boolean
+}
+
+export const Wrapper = styled.main`
+ ${({ theme, isOpen }) => css`
+ display: flex;
+ z-index: ${theme.layers.modal};
+ justify-content: center;
+ align-items: center;
+ opacity: ${isOpen ? 1 : 0};
+ pointer-events: ${isOpen ? 'all' : 'none'};
+ background: rgba(0, 0, 0, 0.49);
+ position: fixed;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ overflow: hidden;
+ transition: opacity ${theme.transition.default};
+ `}
+`
+
+export const ModalWrapper = styled.div`
+ ${({ theme }) => css`
+ border-radius: ${theme.border.radius};
+ z-index: ${theme.layers.modal};
+ position: relative;
+ width: 695px;
+ background: ${theme.colors.white};
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ `}
+`
+
+export const TitleWrapper = styled.div`
+ ${({ theme }) => css`
+ display: flex;
+ align-self: flex-start;
+ align-items: center;
+ margin-left: ${theme.spacings.small};
+ margin-top: ${theme.spacings.small};
+ h1 {
+ color: ${theme.colors.primary};
+ }
+ > svg {
+ margin-right: ${theme.spacings.xxsmall};
+ color: ${theme.colors.primary};
+ }
+ `}
+`
diff --git a/frontend/src/components/ModalConfirmation/index.tsx b/frontend/src/components/ModalConfirmation/index.tsx
new file mode 100644
index 000000000..bbd0ae43a
--- /dev/null
+++ b/frontend/src/components/ModalConfirmation/index.tsx
@@ -0,0 +1,38 @@
+import React from 'react'
+
+import * as S from './styles'
+import Button from 'components/Button'
+
+export type ModalDeleteProps = {
+ visible: boolean
+ hideModal: () => void
+ pokemonId: string
+ handleDelete: (id: string) => void
+}
+
+const ModalConfirmation = ({
+ handleDelete,
+ hideModal,
+ pokemonId,
+ visible,
+}: ModalDeleteProps) => {
+ return (
+ <>
+
+
+ Deseja realmente remover o pokemon?
+
+
+
+
+
+
+ >
+ )
+}
+
+export default ModalConfirmation
diff --git a/frontend/src/components/ModalConfirmation/styles.ts b/frontend/src/components/ModalConfirmation/styles.ts
new file mode 100644
index 000000000..8d63f2d55
--- /dev/null
+++ b/frontend/src/components/ModalConfirmation/styles.ts
@@ -0,0 +1,50 @@
+import styled, { css } from 'styled-components'
+
+import * as ButtonStyles from 'components/Button/styles'
+
+type OpenedlProps = {
+ isOpen: boolean
+}
+
+export const Wrapper = styled.main`
+ ${({ theme, isOpen }) => css`
+ display: flex;
+ z-index: ${theme.layers.modal};
+ justify-content: center;
+ align-items: center;
+ opacity: ${isOpen ? 1 : 0};
+ pointer-events: ${isOpen ? 'all' : 'none'};
+ background: rgba(0, 0, 0, 0.49);
+ position: fixed;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ overflow: hidden;
+ transition: opacity ${theme.transition.default};
+ `}
+`
+
+export const ModalWrapper = styled.div`
+ ${({ theme }) => css`
+ border-radius: ${theme.border.radius};
+ z-index: ${theme.layers.modal};
+ position: relative;
+ width: 516px;
+ height: 244px;
+ background: ${theme.colors.white};
+ color: ${theme.colors.primary};
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: space-evenly;
+ `}
+`
+
+export const ButtonsWrapper = styled.label`
+ ${ButtonStyles.Wrapper} {
+ width: 116px;
+ height: 42px;
+ margin: 0px 10px 0px 10px;
+ }
+`
diff --git a/frontend/src/components/PokemonCard/index.tsx b/frontend/src/components/PokemonCard/index.tsx
new file mode 100644
index 000000000..9089d9cbb
--- /dev/null
+++ b/frontend/src/components/PokemonCard/index.tsx
@@ -0,0 +1,114 @@
+import { useRouter } from 'next/router'
+
+import Button from 'components/Button'
+import ModalConfirmation from 'components/ModalConfirmation'
+
+//import { toast } from 'react-toastify'
+//import 'react-toastify/dist/ReactToastify.css'
+
+import Link from 'next/link'
+import { useState } from 'react'
+import * as S from './styles'
+
+type PokemonTypes =
+ | ''
+ | 'bug'
+ | 'dark'
+ | 'dragon'
+ | 'electric'
+ | 'fairy'
+ | 'fighting'
+ | 'fire'
+ | 'flying'
+ | 'ghost'
+ | 'grass'
+ | 'ground'
+ | 'ice'
+ | 'normal'
+ | 'poison'
+ | 'psychic'
+ | 'rock'
+ | 'steel'
+ | 'water'
+
+export type PokemonCardProps = {
+ id: string
+ pokedexNumber: number
+ name: string
+ image: string
+ pokemonType: PokemonTypes
+ pokemonType2?: PokemonTypes | '' | null
+ onStats: boolean
+}
+
+const PokemonCard = ({
+ id,
+ pokedexNumber,
+ name,
+ image,
+ pokemonType = 'normal',
+ pokemonType2 = '',
+ onStats = false,
+}: PokemonCardProps) => {
+ const [displayConfirmationModal, setDisplayConfirmationModal] = useState(
+ false,
+ )
+ const router = useRouter()
+ async function handleDeletePokemon(id: string) {
+ await fetch(`http://localhost:3333/pokemons/${id}`, {
+ method: 'DELETE',
+ })
+
+ alert('Pokemon removido')
+
+ setDisplayConfirmationModal(false)
+ router.push('/pokemons')
+ }
+
+ const showConfirmationModal = () => {
+ setDisplayConfirmationModal(true)
+ }
+
+ const hideConfirmationModal = () => {
+ setDisplayConfirmationModal(false)
+ }
+
+ return (
+ <>
+ handleDeletePokemon(id)}
+ />
+
+
+
+
+ {name}
+
+ #{pokedexNumber}
+
+
+
+ {pokemonType}
+
+ {pokemonType2 && (
+
+ {pokemonType2}
+
+ )}
+
+
+
+
+
+
+
+ >
+ )
+}
+
+export default PokemonCard
diff --git a/frontend/src/components/PokemonCard/stories.tsx b/frontend/src/components/PokemonCard/stories.tsx
new file mode 100644
index 000000000..a05d55e4f
--- /dev/null
+++ b/frontend/src/components/PokemonCard/stories.tsx
@@ -0,0 +1,20 @@
+import { Story, Meta } from '@storybook/react/types-6-0'
+import PokemonCard, { PokemonCardProps } from '.'
+
+export default {
+ title: 'PokemonCard',
+ component: PokemonCard,
+} as Meta
+
+export const Default: Story = (args) => (
+
+)
+
+Default.args = {
+ pokedexNumber: 123,
+ name: 'Picachu',
+
+ pokemonType: 'electric',
+ image:
+ 'https://www.pinclipart.com/picdir/big/355-3552131_pikachu-sticker-transparent-background-pikachu-emoji-clipart.png',
+}
diff --git a/frontend/src/components/PokemonCard/styles.ts b/frontend/src/components/PokemonCard/styles.ts
new file mode 100644
index 000000000..ca6a7dfd7
--- /dev/null
+++ b/frontend/src/components/PokemonCard/styles.ts
@@ -0,0 +1,348 @@
+import styled, { css, DefaultTheme } from 'styled-components'
+import { darken, lighten } from 'polished'
+
+import { PokemonCardProps } from '.'
+
+const wrapperModifiers = {
+ bug: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.bug)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.bug)};
+ }
+ background: ${theme.colors.bug};
+ `,
+ dark: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.dark)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.dark)};
+ }
+ background: ${theme.colors.dark};
+ `,
+ dragon: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.dragon)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.dragon)};
+ }
+ background: ${theme.colors.dragon};
+ `,
+ electric: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.eletric)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.eletric)};
+ }
+ background: ${theme.colors.eletric};
+ `,
+ fairy: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.fairy)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.fairy)};
+ }
+ background: ${theme.colors.fairy};
+ `,
+ fighting: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.fighting)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.fighting)};
+ }
+ background: ${theme.colors.fighting};
+ `,
+ fire: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.fire)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.fire)};
+ }
+ background: ${theme.colors.fire};
+ `,
+ flying: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.flying)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.flying)};
+ }
+ background: ${theme.colors.flying};
+ `,
+ ghost: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.ghost)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.ghost)};
+ }
+ background: ${theme.colors.ghost};
+ `,
+ grass: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.grass)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.grass)};
+ }
+ background: ${theme.colors.grass};
+ `,
+ ground: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.ground)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.ground)};
+ }
+ background: ${theme.colors.ground};
+ `,
+ ice: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.ice)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.ice)};
+ }
+ background: ${theme.colors.ice};
+ `,
+ normal: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.normal)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.normal)};
+ }
+ background: ${theme.colors.normal};
+ `,
+ poison: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.poison)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.poison)};
+ }
+ background: ${theme.colors.poison};
+ `,
+ psychic: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.psychic)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.psychic)};
+ }
+ background: ${theme.colors.psychic};
+ `,
+ rock: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.rock)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.rock)};
+ }
+ background: ${theme.colors.rock};
+ `,
+ steel: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.steel)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.steel)};
+ }
+ background: ${theme.colors.steel};
+ `,
+ water: (theme: DefaultTheme) => css`
+ ${PokemonID},
+ ${PokemonName},
+ ${PokemonType},
+ ${PokemonType2} {
+ color: ${darken(0.2, theme.colors.water)};
+ }
+ ${WrapperType} {
+ background-color: ${lighten(0.1, theme.colors.water)};
+ }
+ background: ${theme.colors.water};
+ `,
+
+ onStats: () => css`
+ ${({ theme }) => css`
+ width: 500px;
+ height: 400px;
+
+ /* top-left | top-right | bottom-right | bottom-left */
+ border-radius: ${theme.border.radius} 0 0 ${theme.border.radius};
+ ${Image} {
+ top: 65px;
+ left: 60px;
+ width: 250px;
+ height: 250px;
+ }
+ ${TypesContainer} {
+ flex-direction: row;
+ }
+ ${PokemonName} {
+ pointer-events: none;
+ }
+ ${RemoveWrapper} {
+ visibility: visible;
+ }
+ `}
+ `,
+}
+
+export const TypesContainer = styled.div`
+ ${({ theme }) => css`
+ flex-direction: column;
+ margin: ${theme.spacings.small};
+ display: flex;
+ `}
+`
+
+type BackgroundColorProps = Pick
+
+export const CardWrapper = styled.div`
+ ${({ theme, pokemonType, onStats }) => css`
+ box-shadow: 0 0.5rem 0.5rem 0 rgba(0, 0, 0, 0.2);
+ z-index: ${theme.layers.base};
+ background: ${theme.colors.normal};
+ position: relative;
+ padding: ${theme.spacings.xsmall};
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+ height: 201px;
+ width: 350px;
+ border-radius: ${theme.border.radius};
+ overflow: hidden;
+
+ ${!!pokemonType &&
+ wrapperModifiers[pokemonType] &&
+ wrapperModifiers[pokemonType](theme)}
+
+ ${onStats && wrapperModifiers.onStats()}
+ `}
+`
+
+export const Image = styled.img`
+ position: absolute;
+ bottom: 30px;
+ right: 80px;
+ width: 110px;
+ height: 110px;
+`
+
+export const WrapperTop = styled.div`
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+ align-items: center;
+`
+
+export const PokemonName = styled.h2`
+ ${({ theme }) => css`
+ cursor: pointer;
+ color: ${theme.colors.white};
+ font-weight: ${theme.font.bold};
+ font-size: ${theme.font.sizes.xxlarge};
+ text-transform: capitalize;
+ `}
+`
+
+export const PokemonID = styled.h4`
+ ${({ theme }) => css`
+ font-weight: ${theme.font.bold};
+ font-size: ${theme.font.sizes.xlarge};
+ font-style: italic;
+ `}
+`
+
+export const WrapperType = styled.div`
+ ${({ theme }) => css`
+ display: inline-block;
+ max-width: fit-content;
+ display: flex;
+ padding: ${theme.spacings.xxsmall};
+ border-radius: ${theme.border.radius};
+ `}
+`
+
+export const PokemonType = styled.h2`
+ ${({ theme }) => css`
+ color: ${theme.colors.white};
+ font-weight: ${theme.font.normal};
+ font-size: ${theme.font.sizes.large};
+ text-transform: capitalize;
+ `}
+`
+
+export const PokemonType2 = styled.h2`
+ ${({ theme }) => css`
+ color: ${theme.colors.white};
+ font-weight: ${theme.font.normal};
+ font-size: ${theme.font.sizes.large};
+ text-transform: capitalize;
+ `}
+`
+export const RemoveWrapper = styled.div`
+ visibility: hidden;
+ position: absolute;
+ bottom: 0px;
+ right: 0px;
+`
diff --git a/frontend/src/components/PokemonStats/index.tsx b/frontend/src/components/PokemonStats/index.tsx
new file mode 100644
index 000000000..576709e93
--- /dev/null
+++ b/frontend/src/components/PokemonStats/index.tsx
@@ -0,0 +1,199 @@
+import * as S from './styles'
+import StatsBar from 'components/StatsBar'
+import { Tab, Tabs, TabList, TabPanel } from 'react-tabs'
+import 'react-tabs/style/react-tabs.css'
+import Checkbox from 'components/CheckBox'
+
+export type PokemonStatsProps = {
+ atk: number
+ def: number
+ sta: number
+ statTotal: number
+ weather: string
+ weather2?: string | ''
+ evolutionStage: number
+ evolved: string
+ generation: number
+ familyID?: number
+ crossGen: string
+ legendary: string
+ aquireable: number
+ spawns: string
+ regional: string
+ raidable: string
+ hatchable: number
+ shiny: string
+ nest: string
+ notGettable: string
+ futureEvolve: string
+ cp40: number
+ cp39: number
+ isNew: string
+}
+
+const PokemonStats = ({
+ atk,
+ def,
+ sta,
+ statTotal,
+ weather,
+ weather2,
+ evolutionStage,
+ evolved,
+ generation,
+ aquireable,
+ crossGen,
+ cp39,
+ cp40,
+ familyID,
+ futureEvolve,
+ hatchable,
+ legendary,
+ nest,
+ notGettable,
+ raidable,
+ regional,
+ shiny,
+ spawns,
+ isNew,
+}: PokemonStatsProps) => {
+ return (
+
+
+
+
+ Stats
+
+
+ More Info
+
+
+
+
+
+
+ Weather:
+ {weather}
+
+ {!!weather2 && (
+
+ Weather2:
+ {weather2}
+
+ )}
+
+
+
+ ATK
+
+ DEF
+
+ STA
+
+
+ STAT TOTAL
+
+
+
+
+ FamilyID
+ {familyID ? familyID : ''}
+
+
+
+ Hatchable
+ {hatchable}
+
+
+ EvolutionStage
+ {evolutionStage}
+
+
+ Generation
+ {generation}
+
+
+ Aquireable
+ {aquireable}
+
+
+
+
+
+
+ 100% CP @ 40
+ {cp40}
+
+
+ 100% CP @ 39
+ {cp39}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ )
+}
+
+export default PokemonStats
diff --git a/frontend/src/components/PokemonStats/stories.tsx b/frontend/src/components/PokemonStats/stories.tsx
new file mode 100644
index 000000000..dd0d70667
--- /dev/null
+++ b/frontend/src/components/PokemonStats/stories.tsx
@@ -0,0 +1,39 @@
+import { Story, Meta } from '@storybook/react/types-6-0'
+import PokemonStats, { PokemonStatsProps } from '.'
+
+export default {
+ title: 'PokemonStats',
+ component: PokemonStats,
+} as Meta
+
+export const Default: Story = (args) => (
+
+)
+
+Default.args = {
+ atk: 10,
+ def: 30,
+ sta: 25,
+ statTotal: 65,
+ evolutionStage: 1,
+ generation: 1,
+ weather2: 'Warm',
+ weather: 'Cold',
+
+ familyID: 21,
+ hatchable: 4,
+
+ evolved: true,
+ crossGen: false,
+ legendary: true,
+ aquireable: 3,
+ spawns: false,
+ regional: true,
+ raidable: false,
+ shiny: false,
+ nest: true,
+ notGettable: false,
+ futureEvolve: true,
+ cp39: 1345,
+ cp40: 596,
+}
diff --git a/frontend/src/components/PokemonStats/styles.ts b/frontend/src/components/PokemonStats/styles.ts
new file mode 100644
index 000000000..3267f14fe
--- /dev/null
+++ b/frontend/src/components/PokemonStats/styles.ts
@@ -0,0 +1,63 @@
+import styled, { css } from 'styled-components'
+
+export const Wrapper = styled.main`
+ ${({ theme }) => css`
+ padding: 30px;
+ height: 400px;
+ width: 450px;
+ background-color: ${theme.colors.lightGray};
+ /* top-left | top-right | bottom-right | bottom-left */
+ border-radius: 0 ${theme.border.radius} ${theme.border.radius} 0;
+ box-shadow: 0 0.5rem 0.5rem 0 rgba(0, 0, 0, 0.2);
+ `}
+`
+
+export const WeatherWrapper = styled.div`
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+`
+export const WeatherColumn = styled.div`
+ display: flex;
+ flex-direction: column;
+ margin: 15px;
+ align-items: center;
+`
+
+export const WrapperStatsBar = styled.div`
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+ margin: 5px;
+`
+
+export const CheckboxWrapper = styled.div`
+ display: grid;
+ grid-template-columns: 2fr 1fr;
+`
+export const CPWrapper = styled.div`
+ display: flex;
+ flex-direction: row;
+ justify-content: flex-start;
+`
+export const CPColumn = styled.div`
+ display: flex;
+ flex-direction: column;
+ margin: 15px;
+ align-items: center;
+`
+
+export const AditionalInfo = styled.div`
+ ${({ theme }) => css`
+ display: flex;
+ margin-top: ${theme.spacings.xsmall};
+ flex-direction: row;
+ justify-content: flex-start;
+ `}
+`
+export const AditionalInfoColumn = styled.div`
+ display: flex;
+ flex-direction: column;
+ margin: 15px;
+ align-items: center;
+`
diff --git a/frontend/src/components/Select/index.tsx b/frontend/src/components/Select/index.tsx
new file mode 100644
index 000000000..b44c365bb
--- /dev/null
+++ b/frontend/src/components/Select/index.tsx
@@ -0,0 +1,52 @@
+import { useState, InputHTMLAttributes } from 'react'
+
+import * as S from './styles'
+
+export type SelectProps = {
+ onInputChange?: (value: string) => void
+ label?: string
+ initialValue?: string
+ icon?: React.ReactNode
+ error?: string
+ fullWidth?: boolean
+} & InputHTMLAttributes
+
+const Select = ({
+ label = '',
+ initialValue = '',
+ icon,
+ error,
+ name,
+ fullWidth = true,
+ onInputChange,
+ ...props
+}: SelectProps) => {
+ const [value, setValue] = useState(initialValue)
+
+ const onChange = (e: React.ChangeEvent) => {
+ const newValue = e.currentTarget.value
+ setValue(newValue)
+
+ !!onInputChange && onInputChange(newValue)
+ }
+
+ return (
+
+ {!!label && {label}}
+
+ {!!icon && {icon}}
+
+
+ {!!error && {error}}
+
+ )
+}
+
+export default Select
diff --git a/frontend/src/components/Select/stories.tsx b/frontend/src/components/Select/stories.tsx
new file mode 100644
index 000000000..abf896ba1
--- /dev/null
+++ b/frontend/src/components/Select/stories.tsx
@@ -0,0 +1,38 @@
+import { Story, Meta } from '@storybook/react/types-6-0'
+import Select, { SelectProps } from '.'
+
+import { FiSearch } from 'react-icons/fi'
+
+export default {
+ title: 'Select',
+ component: Select,
+ args: {
+ name: 'Buscar',
+ icon: ,
+ initialValue: '',
+ },
+ argTypes: {
+ onInput: { action: 'changed' },
+ icon: { type: '' },
+ },
+} as Meta
+
+export const Default: Story = (args) => (
+
+
+
+)
+
+Default.args = {
+ placeholder: 'Procure o Pokemon, tipo, movimento, habilidade ...',
+}
+
+export const WithLabel: Story = (args) => (
+
+
+
+)
+
+WithLabel.args = {
+ label: 'Alguma Label Qualquer',
+}
diff --git a/frontend/src/components/Select/styles.ts b/frontend/src/components/Select/styles.ts
new file mode 100644
index 000000000..970aa9f67
--- /dev/null
+++ b/frontend/src/components/Select/styles.ts
@@ -0,0 +1,85 @@
+import styled, { css, DefaultTheme } from 'styled-components'
+
+import { SelectProps } from '.'
+
+export const wrapperModifiers = {
+ WithLabel: (theme: DefaultTheme) => css`
+ border: 0.1rem solid ${theme.colors.primary};
+ `,
+
+ fullWidth: () => css`
+ ${Wrapper} {
+ width: 100%;
+ }
+ `,
+}
+
+export const InputWrapper = styled.div`
+ ${({ theme, label, fullWidth }) => css`
+ display: flex;
+ background: ${theme.colors.white};
+ border-radius: ${theme.border.radius};
+ padding: 0 ${theme.spacings.xsmall};
+ border-left: 0.1rem solid;
+ border-right: 0.1rem solid;
+ border-bottom: 0.3rem solid;
+ border-color: ${theme.colors.lightGray};
+ height: 5rem;
+
+ ${!!label && wrapperModifiers.WithLabel(theme)};
+
+ ${fullWidth && wrapperModifiers.fullWidth()};
+ `}
+`
+
+export const Error = styled.label`
+ ${({ theme }) => css`
+ font-size: ${theme.font.sizes.xsmall};
+ color: ${theme.colors.primary};
+ `}
+`
+
+export const Input = styled.select`
+ ${({ theme }) => css`
+ color: ${theme.colors.primary};
+ font-family: ${theme.font.family};
+ font-size: ${theme.font.sizes.small};
+ padding: ${theme.spacings.xxsmall};
+ padding-right: ${theme.spacings.xsmall};
+ background: transparent;
+ border: 0;
+ outline: none;
+ width: 100%;
+ &::placeholder {
+ color: ${theme.colors.primary};
+ }
+ `}
+`
+
+export const Icon = styled.div`
+ ${({ theme }) => css`
+ display: flex;
+ width: 2.2rem;
+ color: ${theme.colors.primary};
+
+ & > svg {
+ width: 100%;
+ }
+ `}
+`
+
+export const Label = styled.label`
+ ${({ theme }) => css`
+ font-size: ${theme.font.sizes.medium};
+ color: ${theme.colors.black};
+ cursor: pointer;
+ `}
+`
+
+export const Wrapper = styled.div`
+ ${({ theme }) => css`
+ width: 100%;
+ margin: ${theme.spacings.medium} ${theme.spacings.medium}
+ ${theme.spacings.medium} 0;
+ `}
+`
diff --git a/frontend/src/components/StatsBar/index.tsx b/frontend/src/components/StatsBar/index.tsx
new file mode 100644
index 000000000..c758ba8ae
--- /dev/null
+++ b/frontend/src/components/StatsBar/index.tsx
@@ -0,0 +1,25 @@
+import * as S from './styles'
+
+type StatsColors = 'red' | 'green' | 'blue' | 'navy'
+
+export type StatsBarProps = {
+ bgColor: StatsColors
+ completed: number
+ statTotal: number
+}
+
+const StatsBar = ({ bgColor, completed = 1, statTotal = 1 }: StatsBarProps) => {
+ return (
+
+
+ {completed}
+
+
+ )
+}
+
+export default StatsBar
diff --git a/frontend/src/components/StatsBar/stories.tsx b/frontend/src/components/StatsBar/stories.tsx
new file mode 100644
index 000000000..2a1aa3c3d
--- /dev/null
+++ b/frontend/src/components/StatsBar/stories.tsx
@@ -0,0 +1,15 @@
+import { Story, Meta } from '@storybook/react/types-6-0'
+import StatsBar, { StatsBarProps } from '.'
+
+export default {
+ title: 'StatsBar',
+ component: StatsBar,
+} as Meta
+
+export const Default: Story = (args) =>
+
+Default.args = {
+ completed: 21,
+ bgColor: 'red',
+ statTotal: 100,
+}
diff --git a/frontend/src/components/StatsBar/styles.ts b/frontend/src/components/StatsBar/styles.ts
new file mode 100644
index 000000000..365e10d92
--- /dev/null
+++ b/frontend/src/components/StatsBar/styles.ts
@@ -0,0 +1,29 @@
+import styled, { css } from 'styled-components'
+import { math } from 'polished'
+
+import { StatsBarProps } from '.'
+
+export const WrapperBar = styled.div`
+ height: 15px;
+ width: 100%;
+ background-color: #e0e0de;
+ border-radius: 50px;
+`
+
+export const WrapperSpanBar = styled.div`
+ ${({ completed, bgColor, statTotal }) => css`
+ height: 100%;
+ width: ${math(`${completed}*100/${statTotal}`)}%;
+ max-width: 380px;
+ background-color: ${bgColor};
+ border-radius: inherit;
+ text-align: right;
+ transition: width 2s;
+ align-items: center;
+ `}
+`
+export const Progress = styled.span`
+ padding: 5px;
+ color: white;
+ font-weight: bold;
+`
diff --git a/frontend/src/components/TextInputField/index.tsx b/frontend/src/components/TextInputField/index.tsx
new file mode 100644
index 000000000..f7dfe2884
--- /dev/null
+++ b/frontend/src/components/TextInputField/index.tsx
@@ -0,0 +1,52 @@
+import { useState, InputHTMLAttributes } from 'react'
+
+import * as S from './styles'
+
+export type TextInputFieldProps = {
+ onInputChange?: (value: string) => void
+ label?: string
+ initialValue?: string
+ icon?: React.ReactNode
+ fullWidth?: boolean
+ error?: string
+} & InputHTMLAttributes
+
+const TextInputField = ({
+ label = '',
+ initialValue = '',
+ icon,
+ name,
+ error,
+ fullWidth = true,
+ onInputChange,
+ ...props
+}: TextInputFieldProps) => {
+ const [value, setValue] = useState(initialValue)
+
+ const onChange = (e: React.ChangeEvent) => {
+ const newValue = e.currentTarget.value
+ setValue(newValue)
+
+ !!onInputChange && onInputChange(newValue)
+ }
+
+ return (
+
+ {!!label && {label}}
+
+ {!!icon && {icon}}
+
+
+ {!!error && {error}}
+
+ )
+}
+
+export default TextInputField
diff --git a/frontend/src/components/TextInputField/stories.tsx b/frontend/src/components/TextInputField/stories.tsx
new file mode 100644
index 000000000..fee50bbc1
--- /dev/null
+++ b/frontend/src/components/TextInputField/stories.tsx
@@ -0,0 +1,38 @@
+import { Story, Meta } from '@storybook/react/types-6-0'
+import TextInputField, { TextInputFieldProps } from '.'
+
+import { FiSearch } from 'react-icons/fi'
+
+export default {
+ title: 'TextInputField',
+ component: TextInputField,
+ args: {
+ name: 'Buscar',
+ icon: ,
+ initialValue: '',
+ },
+ argTypes: {
+ onInput: { action: 'changed' },
+ icon: { type: '' },
+ },
+} as Meta
+
+export const Default: Story = (args) => (
+
+
+
+)
+
+Default.args = {
+ placeholder: 'Procure o Pokemon, tipo, movimento, habilidade ...',
+}
+
+export const WithLabel: Story = (args) => (
+
+
+
+)
+
+WithLabel.args = {
+ label: 'Alguma Label Qualquer',
+}
diff --git a/frontend/src/components/TextInputField/styles.ts b/frontend/src/components/TextInputField/styles.ts
new file mode 100644
index 000000000..e3c4f31ba
--- /dev/null
+++ b/frontend/src/components/TextInputField/styles.ts
@@ -0,0 +1,83 @@
+import styled, { css, DefaultTheme } from 'styled-components'
+
+import { TextInputFieldProps } from '.'
+
+export const WrapperModifiers = {
+ WithLabel: (theme: DefaultTheme) => css`
+ border: 0.1rem solid ${theme.colors.primary};
+ `,
+
+ fullWidth: () => css`
+ ${Wrapper} {
+ width: 100%;
+ }
+ `,
+}
+
+export const InputWrapper = styled.div`
+ ${({ theme, label, fullWidth }) => css`
+ display: flex;
+ background: ${theme.colors.white};
+ border-radius: ${theme.border.radius};
+ padding: 0 ${theme.spacings.xsmall};
+ border-left: 0.1rem solid;
+ border-right: 0.1rem solid;
+ border-bottom: 0.3rem solid;
+ border-color: ${theme.colors.lightGray};
+ height: 5rem;
+
+ ${!!label && WrapperModifiers.WithLabel(theme)};
+ ${fullWidth && WrapperModifiers.fullWidth()};
+ `}
+`
+export const Error = styled.label`
+ ${({ theme }) => css`
+ font-size: ${theme.font.sizes.xsmall};
+ color: ${theme.colors.primary};
+ `}
+`
+
+export const Input = styled.input`
+ ${({ theme }) => css`
+ color: ${theme.colors.primary};
+ font-family: ${theme.font.family};
+ font-size: ${theme.font.sizes.small};
+ padding: ${theme.spacings.xxsmall};
+ padding-right: ${theme.spacings.xsmall};
+ background: transparent;
+ border: 0;
+ outline: none;
+ width: 100%;
+ &::placeholder {
+ color: ${theme.colors.primary};
+ }
+ `}
+`
+
+export const Icon = styled.div`
+ ${({ theme }) => css`
+ display: flex;
+ width: 2.2rem;
+ color: ${theme.colors.primary};
+
+ & > svg {
+ width: 100%;
+ }
+ `}
+`
+
+export const Label = styled.label`
+ ${({ theme }) => css`
+ font-size: ${theme.font.sizes.medium};
+ color: ${theme.colors.black};
+ cursor: pointer;
+ `}
+`
+
+export const Wrapper = styled.div`
+ ${({ theme }) => css`
+ width: 100%;
+ margin: ${theme.spacings.medium} ${theme.spacings.medium}
+ ${theme.spacings.medium} 0;
+ `}
+`
diff --git a/frontend/src/context/ModalContext.tsx b/frontend/src/context/ModalContext.tsx
new file mode 100644
index 000000000..534528855
--- /dev/null
+++ b/frontend/src/context/ModalContext.tsx
@@ -0,0 +1,37 @@
+import React, { createContext, useState } from 'react'
+
+// context
+
+interface ModalContextProps {
+ modalVisible: boolean
+ changeModalView: () => void
+}
+
+const ModalContext = createContext({
+ modalVisible: false,
+} as ModalContextProps)
+
+// Provider
+const ModalProvider: React.FC = ({ children }) => {
+ //modal addpokemon
+ const [modalVisible, setModalVisible] = useState(false)
+ const changeModalView = () => setModalVisible(!modalVisible)
+
+ return (
+
+ {children}
+
+ )
+}
+
+const useModal = () => {
+ const context = React.useContext(ModalContext)
+ return context
+}
+
+export { useModal, ModalProvider }
diff --git a/frontend/src/pages/_app.tsx b/frontend/src/pages/_app.tsx
new file mode 100644
index 000000000..ad070e1f3
--- /dev/null
+++ b/frontend/src/pages/_app.tsx
@@ -0,0 +1,26 @@
+import { ModalProvider } from '../context/ModalContext'
+import { ThemeProvider } from 'styled-components'
+import GlobalStyles from 'styles/global'
+//import { ToastContainer } from 'react-toastify'
+
+import { AppProps } from 'next/app'
+import Head from 'next/head'
+import theme from 'styles/theme'
+
+function App({ Component, pageProps }: AppProps) {
+ return (
+
+
+
+
+ RedFox - Test
+
+
+
+
+
+
+ )
+}
+
+export default App
diff --git a/frontend/src/pages/_document.tsx b/frontend/src/pages/_document.tsx
new file mode 100644
index 000000000..26b67104b
--- /dev/null
+++ b/frontend/src/pages/_document.tsx
@@ -0,0 +1,48 @@
+import Document, {
+ Html,
+ Head,
+ Main,
+ NextScript,
+ DocumentContext,
+} from 'next/document'
+import { ServerStyleSheet } from 'styled-components'
+
+export default class MyDocument extends Document {
+ static async getInitialProps(ctx: DocumentContext) {
+ const sheet = new ServerStyleSheet()
+ const originalRenderPage = ctx.renderPage
+
+ try {
+ ctx.renderPage = () =>
+ originalRenderPage({
+ enhanceApp: (App) => (props) =>
+ sheet.collectStyles(),
+ })
+
+ const initialProps = await Document.getInitialProps(ctx)
+ return {
+ ...initialProps,
+ styles: (
+ <>
+ {initialProps.styles}
+ {sheet.getStyleElement()}
+ >
+ ),
+ }
+ } finally {
+ sheet.seal()
+ }
+ }
+
+ render() {
+ return (
+
+
+
+
+
+
+
+ )
+ }
+}
diff --git a/frontend/src/pages/index.tsx b/frontend/src/pages/index.tsx
new file mode 100644
index 000000000..108a588e1
--- /dev/null
+++ b/frontend/src/pages/index.tsx
@@ -0,0 +1,5 @@
+import Main from 'components/Main'
+
+export default function Home() {
+ return
+}
diff --git a/frontend/src/pages/pokemon/[name].tsx b/frontend/src/pages/pokemon/[name].tsx
new file mode 100644
index 000000000..b1bf4e134
--- /dev/null
+++ b/frontend/src/pages/pokemon/[name].tsx
@@ -0,0 +1,72 @@
+import { useRouter } from 'next/router'
+
+import Pokemon, { PokemonTemplateProps } from 'templates/Pokemon'
+
+export default function Index(props: PokemonTemplateProps) {
+ //enquanto a rota nao tiver sido gerada.. o ideal é mostrar loading
+ const router = useRouter()
+ if (router.isFallback) return null
+
+ return
+}
+
+export async function getStaticPaths() {
+ const response = await fetch('http://localhost:3333/pokemons')
+
+ const data = await response.json()
+
+ const paths = data.map((pokemon: any) => ({
+ params: { name: pokemon['Name'] },
+ }))
+
+ return { paths, fallback: true }
+}
+
+export async function getStaticProps({ params }: any) {
+ const response = await fetch(`http://localhost:3333/pokemons/${params.name} `)
+
+ const data = await response.json()
+
+ if (!data.length) {
+ return { notFound: false }
+ }
+
+ const pokemon = data[0]
+ console.log(pokemon)
+ return {
+ revalidate: 60,
+ props: {
+ pokemonInfo: {
+ name: pokemon['Name'],
+ id: pokemon._id,
+ pokedexNumber: pokemon['Pokedex Number'],
+ image: `http://localhost:3333/images/${pokemon['Img name']}`,
+ generation: pokemon['Generation'],
+ evolutionStage: pokemon['Evolution Stage'],
+ evolved: pokemon['Evolved'],
+ familyID: pokemon['FamilyID'],
+ crossGen: pokemon['Cross Gen'],
+ pokemonType: pokemon['Type 1'],
+ pokemonType2: pokemon['Type 2'],
+ weather: pokemon['Weather 1'],
+ weather2: pokemon['Weather 2'],
+ statTotal: pokemon['STAT TOTAL'],
+ atk: pokemon['ATK'],
+ def: pokemon['DEF'],
+ sta: pokemon['STA'],
+ legendary: pokemon['Legendary'],
+ aquireable: pokemon['Aquireable'],
+ spawns: pokemon['Spawns'],
+ regional: pokemon['Regional'],
+ raidable: pokemon['Raidable'],
+ hatchable: pokemon['Hatchable'],
+ shiny: pokemon['Shiny'],
+ nest: pokemon['Nest'],
+ notGettable: pokemon['Not-Gettable'],
+ futureEvolve: pokemon['Future Evolve'],
+ cp40: pokemon['100% CP @ 40'],
+ cp39: pokemon['100% CP @ 39'],
+ },
+ },
+ }
+}
diff --git a/frontend/src/pages/pokemons.tsx b/frontend/src/pages/pokemons.tsx
new file mode 100644
index 000000000..cc61b7e99
--- /dev/null
+++ b/frontend/src/pages/pokemons.tsx
@@ -0,0 +1,26 @@
+import Pokemons, { PokemonsTemplateProps } from 'templates/Pokemons'
+import { pokemonsMapper } from 'utils/mappers'
+
+export default function Index(props: PokemonsTemplateProps) {
+ return
+}
+
+export async function getServerSideProps() {
+ const response = await fetch('http://localhost:3333/pokemons/')
+
+ const data = await response.json()
+
+ if (!data) {
+ return {
+ redirect: {
+ destination: '/pokemons',
+ permanent: false,
+ },
+ }
+ }
+ return {
+ props: {
+ pokemons: pokemonsMapper(data),
+ },
+ }
+}
diff --git a/frontend/src/services/api.js b/frontend/src/services/api.js
new file mode 100644
index 000000000..b5a9377f9
--- /dev/null
+++ b/frontend/src/services/api.js
@@ -0,0 +1,7 @@
+import axios from 'axios'
+
+const api = axios.create({
+ baseURL: 'http://localhost:3333/',
+})
+
+export default api
diff --git a/frontend/src/styles/global.ts b/frontend/src/styles/global.ts
new file mode 100644
index 000000000..eca7a2e3e
--- /dev/null
+++ b/frontend/src/styles/global.ts
@@ -0,0 +1,70 @@
+import { createGlobalStyle } from 'styled-components'
+
+const GlobalStyles = createGlobalStyle`
+/* roboto-100 - latin */
+@font-face {
+ font-family: 'Roboto';
+ font-style: normal;
+ font-weight: 100;
+ src: local(''),
+ url('/fonts/roboto-v20-latin-100.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
+ url('/fonts/roboto-v20-latin-100.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
+}
+/* roboto-300 - latin */
+@font-face {
+ font-family: 'Roboto';
+ font-style: normal;
+ font-weight: 300;
+ src: local(''),
+ url('/fonts/roboto-v20-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
+ url('/fonts/roboto-v20-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
+}
+/* roboto-regular - latin */
+@font-face {
+ font-family: 'Roboto';
+ font-style: normal;
+ font-weight: 400;
+ src: local(''),
+ url('/fonts/roboto-v20-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
+ url('/fonts/roboto-v20-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
+}
+/* roboto-500 - latin */
+@font-face {
+ font-family: 'Roboto';
+ font-style: normal;
+ font-weight: 500;
+ src: local(''),
+ url('/fonts/roboto-v20-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
+ url('/fonts/roboto-v20-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
+}
+/* roboto-700 - latin */
+@font-face {
+ font-family: 'Roboto';
+ font-style: normal;
+ font-weight: 700;
+ src: local(''),
+ url('/fonts/roboto-v20-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
+ url('/fonts/roboto-v20-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
+}
+ * {
+ margin: 0;
+ padding:0;
+ box-sizing: border-box;
+ }
+ html {
+ font-size: 62.5%;
+ }
+ html, body, #__next {
+ height: fit-content;
+ -ms-overflow-style: none;
+::-webkit-scrollbar {
+ display: none;
+}
+ }
+
+ body {
+ font-family: Roboto;
+ }
+`
+
+export default GlobalStyles
diff --git a/frontend/src/styles/theme.ts b/frontend/src/styles/theme.ts
new file mode 100644
index 000000000..c7409de83
--- /dev/null
+++ b/frontend/src/styles/theme.ts
@@ -0,0 +1,73 @@
+export default {
+ grid: {
+ container: '70rem',
+ gap: '2rem',
+ },
+ border: {
+ radius: '1.5rem',
+ },
+ font: {
+ family: 'Roboto',
+ light: 300,
+ normal: 'normal',
+ bold: 700,
+ semibold: 500,
+ sizes: {
+ xsmall: '1.2rem',
+ small: '1.4rem',
+ medium: '1.6rem',
+ large: '1.8rem',
+ xlarge: '2.4rem',
+ xxlarge: '4.0rem',
+ huge: '6.0rem',
+ },
+ },
+ colors: {
+ primary: '#e42021',
+ mainBg: '#FEFEFE',
+ white: '#FFFFFF',
+ black: '#707070',
+ darkGray: '#A8A8B3',
+ gray: '#BFBFBF',
+ lightGray: '#EAEAEA',
+
+ bug: '#76D7C4',
+ dark: '#2E4053',
+ dragon: '#C0392B',
+ eletric: '#F7DC6F',
+ fairy: '#ff69b4',
+ fighting: '#641E16',
+ fire: '#e42021',
+ flying: '#AED6F1',
+ ghost: '#CACFD2',
+ grass: '#2ECC71',
+ ground: '#654321',
+ ice: '#5DADE2',
+ normal: '#fff',
+ poison: '#5B2C6F',
+ psychic: '#154360',
+ rock: '#85929E',
+ steel: '#7F8C8D',
+ water: '#2980B9',
+ },
+ spacings: {
+ xxsmall: '0.7rem',
+ xsmall: '1.6rem',
+ small: '2.0rem',
+ medium: '3.2rem',
+ large: '4.0rem',
+ xlarge: '5.0rem',
+ xxlarge: '10.0rem',
+ },
+ layers: {
+ base: 10,
+ menu: 20,
+ overlay: 30,
+ modal: 40,
+ alwaysOnTop: 50,
+ },
+ transition: {
+ default: '0.3s ease-in-out',
+ fast: '0.1s ease-in-out',
+ },
+} as const
diff --git a/frontend/src/templates/Pokemon/index.tsx b/frontend/src/templates/Pokemon/index.tsx
new file mode 100644
index 000000000..be0955549
--- /dev/null
+++ b/frontend/src/templates/Pokemon/index.tsx
@@ -0,0 +1,18 @@
+import PokemonCard, { PokemonCardProps } from 'components/PokemonCard'
+import PokemonStats, { PokemonStatsProps } from 'components/PokemonStats'
+import * as S from './styles'
+
+export type PokemonTemplateProps = {
+ pokemonInfo: PokemonStatsProps & PokemonCardProps
+}
+
+const Pokemon = ({ pokemonInfo }: PokemonTemplateProps) => {
+ return (
+
+
+
+
+ )
+}
+
+export default Pokemon
diff --git a/frontend/src/templates/Pokemon/styles.ts b/frontend/src/templates/Pokemon/styles.ts
new file mode 100644
index 000000000..6645e5628
--- /dev/null
+++ b/frontend/src/templates/Pokemon/styles.ts
@@ -0,0 +1,27 @@
+import styled, { css } from 'styled-components'
+
+type CoverProps = {
+ src: string
+}
+
+export const PageWrapper = styled.main`
+ margin-top: 5rem;
+ justify-content: center;
+ align-items: center;
+ display: flex;
+ flex-direction: row;
+`
+
+export const Cover = styled.div`
+ ${({ src }) => css`
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ height: 39.5rem;
+ background-image: url(${src});
+ background-size: cover;
+ background-position: top;
+ opacity: 0.4;
+ `}
+`
diff --git a/frontend/src/templates/Pokemons/index.tsx b/frontend/src/templates/Pokemons/index.tsx
new file mode 100644
index 000000000..6043dd235
--- /dev/null
+++ b/frontend/src/templates/Pokemons/index.tsx
@@ -0,0 +1,94 @@
+import React, { useEffect, useState } from 'react'
+
+import TextInputField from 'components/TextInputField'
+
+import { FiPlus, FiSearch } from 'react-icons/fi'
+
+import * as S from './styles'
+
+import PokemonCard, { PokemonCardProps } from 'components/PokemonCard'
+import Button from 'components/Button'
+import { useModal } from 'context/ModalContext'
+import ModalAddPokemon from 'components/ModalAddPokemon'
+
+export type PokemonsTemplateProps = { pokemons: PokemonCardProps[] }
+
+const Pokemons = ({ pokemons }: PokemonsTemplateProps) => {
+ const { modalVisible, changeModalView } = useModal()
+ const [searchValue, setSearchValue] = useState('')
+
+ //quit with ESC and prevent scroll on modal
+ useEffect(() => {
+ const onKeyDown = (event: KeyboardEvent) => {
+ if (event.code === 'ESC' || (event.code === 'Escape' && modalVisible)) {
+ changeModalView()
+ }
+ }
+ modalVisible
+ ? (document.body.style.overflow = 'hidden')
+ : (document.body.style.overflow = 'unset')
+ document.addEventListener('keydown', onKeyDown, false)
+ return () => {
+ document.removeEventListener('keydown', onKeyDown, false)
+ }
+ }, [modalVisible, changeModalView])
+
+ const handleSearchInputChanges = (
+ e: React.FormEvent,
+ ): void => {
+ e.preventDefault()
+ setSearchValue(e.currentTarget.value)
+ }
+
+ if (searchValue.length > 0) {
+ pokemons = pokemons.filter((pokemonsfiltered) => {
+ return (
+ pokemonsfiltered.name.toLowerCase().match(searchValue.toLowerCase()) ||
+ pokemonsfiltered.pokemonType
+ .toLowerCase()
+ .match(searchValue.toLowerCase()) ||
+ pokemonsfiltered.id.toString() === searchValue.toString()
+ )
+ })
+ }
+
+ return (
+ <>
+
+
+
+
+
+ }
+ value={searchValue}
+ onChange={handleSearchInputChanges}
+ />
+ } onClick={changeModalView}>
+ Adicionar
+
+
+
+
+ {pokemons.map((pokemon) => (
+
+ ))}
+
+
+
+ >
+ )
+}
+
+export default Pokemons
diff --git a/frontend/src/templates/Pokemons/styles.ts b/frontend/src/templates/Pokemons/styles.ts
new file mode 100644
index 000000000..975876e9c
--- /dev/null
+++ b/frontend/src/templates/Pokemons/styles.ts
@@ -0,0 +1,50 @@
+import styled, { css } from 'styled-components'
+
+export const Wrapper = styled.main`
+ background-color: #06092b;
+ color: #fff;
+ width: 100%;
+ height: 100%;
+ padding: 1rem;
+ display: flex;
+ flex-direction: column;
+ //text-align: center;
+ align-items: center;
+ //justify-content: center;
+`
+export const WrapperSearch = styled.div`
+ width: 720px;
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ justify-content: center;
+`
+
+export const Logo = styled.img`
+ width: 25rem;
+ margin-bottom: 2rem;
+`
+
+export const WrapperCards = styled.main`
+ ${({ theme }) => css`
+ z-index: ${theme.layers.base};
+ margin-top: ${theme.spacings.medium};
+ display: grid;
+ grid-gap: ${theme.grid.gap};
+ grid-template-columns: 2fr 2fr;
+ align-items: flex-end;
+ `}
+`
+
+export const WrapperHeading = styled.main`
+ ${({ theme }) => css`
+ display: flex;
+ flex-direction: column;
+ //justify-items: center;
+ align-items: center;
+ width: 100%;
+ background-color: ${theme.colors.white};
+ border-bottom-left-radius: ${theme.border.radius};
+ border-bottom-right-radius: ${theme.border.radius};
+ `}
+`
diff --git a/frontend/src/utils/mappers/index.ts b/frontend/src/utils/mappers/index.ts
new file mode 100644
index 000000000..ddf7897d5
--- /dev/null
+++ b/frontend/src/utils/mappers/index.ts
@@ -0,0 +1,38 @@
+import { PokemonCardProps } from 'components/PokemonCard'
+
+export const pokemonsMapper = (pokemons: PokemonCardProps[] | undefined) => {
+ return pokemons
+ ? pokemons.map((pokemon: any) => ({
+ name: pokemon['Name'],
+ id: pokemon._id,
+ pokedexNumber: pokemon['Pokedex Number'],
+ image: `http://localhost:3333/images/${pokemon['Img name']}`,
+ generation: pokemon['Generation'],
+ evolutionStage: pokemon['Evolution Stage'],
+ evolved: pokemon['Evolved'],
+ familyID: pokemon['FamilyID'],
+ crossGen: pokemon['Cross Gen'],
+ pokemonType: pokemon['Type 1'],
+ pokemonType2: pokemon['Type 2'],
+ weather: pokemon['Weather 1'],
+ weather2: pokemon['Weather 2'],
+ statTotal: pokemon['STAT TOTAL'],
+ atk: pokemon['ATK'],
+ def: pokemon['DEF'],
+ sta: pokemon['STA'],
+ legendary: pokemon['Legendary'],
+ aquireable: pokemon['Aquireable'],
+ spawns: pokemon['Spawns'],
+ regional: pokemon['Regional'],
+ raidable: pokemon['Raidable'],
+ hatchable: pokemon['Hatchable'],
+ shiny: pokemon['Shiny'],
+ nest: pokemon['Nest'],
+ new: pokemon['New'],
+ notGettable: pokemon['Not-Gettable'],
+ futureEvolve: pokemon['Future Evolve'],
+ cp40: pokemon['100% CP @ 40'],
+ cp39: pokemon['100% CP @ 39'],
+ }))
+ : []
+}
diff --git a/frontend/src/utils/validations.ts b/frontend/src/utils/validations.ts
new file mode 100644
index 000000000..14037a2d3
--- /dev/null
+++ b/frontend/src/utils/validations.ts
@@ -0,0 +1,62 @@
+import { PokemonCardProps } from 'components/PokemonCard'
+import { PokemonStatsProps } from 'components/PokemonStats'
+import Joi from 'joi'
+
+export type FieldsToValidate = Pick<
+ PokemonCardProps,
+ 'name' | 'pokedexNumber' | 'pokemonType' | 'pokemonType2'
+> &
+ Pick<
+ PokemonStatsProps,
+ | 'atk'
+ | 'cp39'
+ | 'cp40'
+ | 'generation'
+ | 'evolutionStage'
+ | 'weather'
+ | 'weather2'
+ | 'hatchable'
+ | 'familyID'
+ | 'def'
+ | 'sta'
+ >
+
+const fieldsValidations = {
+ name: Joi.string().required(),
+ pokedexNumber: Joi.number().required(),
+ pokemonType: Joi.string().required(),
+ pokemonType2: Joi.string(),
+ weather: Joi.string().required(),
+ weather2: Joi.string(),
+ generation: Joi.number().required(),
+ evolutionStage: Joi.number().required(),
+ familyID: Joi.number().required(),
+ atk: Joi.number().required(),
+ def: Joi.number().required(),
+ sta: Joi.number().required(),
+ hatchable: Joi.number().required(),
+ cp40: Joi.number().required(),
+ cp39: Joi.number().required(),
+}
+
+export type FieldErrors = {
+ [key: string]: string
+}
+
+function getFieldErrors(objError: Joi.ValidationResult) {
+ const errors: FieldErrors = {}
+
+ if (objError.error) {
+ objError.error.details.forEach((err) => {
+ errors[err.path.join('.')] = err.message
+ })
+ }
+
+ return errors
+}
+
+export function addPokemonValidate(values: FieldsToValidate) {
+ const schema = Joi.object(fieldsValidations)
+
+ return getFieldErrors(schema.validate(values, { abortEarly: false }))
+}
diff --git a/frontend/styled-components.d.ts b/frontend/styled-components.d.ts
new file mode 100644
index 000000000..63da62412
--- /dev/null
+++ b/frontend/styled-components.d.ts
@@ -0,0 +1,9 @@
+import theme from 'styles/theme'
+
+//inferência de tipos
+type Theme = typeof theme
+
+declare module 'styled-components' {
+ // eslint-disable-next-line @typescript-eslint/no-empty-interface
+ export interface DefaultTheme extends Theme {}
+}
diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json
new file mode 100644
index 000000000..51dfbbb6c
--- /dev/null
+++ b/frontend/tsconfig.json
@@ -0,0 +1,20 @@
+{
+ "compilerOptions": {
+ "baseUrl": "src",
+ "target": "es5",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "preserve"
+ },
+ "exclude": ["node_modules"],
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
+}
diff --git a/frontend/yarn.lock b/frontend/yarn.lock
new file mode 100644
index 000000000..74190cbd1
--- /dev/null
+++ b/frontend/yarn.lock
@@ -0,0 +1,12062 @@
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+
+"@babel/code-frame@7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
+ integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
+ dependencies:
+ "@babel/highlight" "^7.10.4"
+
+"@babel/code-frame@7.12.11":
+ version "7.12.11"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"
+ integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==
+ dependencies:
+ "@babel/highlight" "^7.10.4"
+
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.5.5", "@babel/code-frame@^7.8.3":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658"
+ integrity sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==
+ dependencies:
+ "@babel/highlight" "^7.12.13"
+
+"@babel/compat-data@^7.13.0", "@babel/compat-data@^7.13.12", "@babel/compat-data@^7.13.8":
+ version "7.13.12"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.13.12.tgz#a8a5ccac19c200f9dd49624cac6e19d7be1236a1"
+ integrity sha512-3eJJ841uKxeV8dcN/2yGEUy+RfgQspPEgQat85umsE1rotuquQ2AbIub4S6j7c50a2d+4myc+zSlnXeIHrOnhQ==
+
+"@babel/core@7.12.9":
+ version "7.12.9"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8"
+ integrity sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==
+ dependencies:
+ "@babel/code-frame" "^7.10.4"
+ "@babel/generator" "^7.12.5"
+ "@babel/helper-module-transforms" "^7.12.1"
+ "@babel/helpers" "^7.12.5"
+ "@babel/parser" "^7.12.7"
+ "@babel/template" "^7.12.7"
+ "@babel/traverse" "^7.12.9"
+ "@babel/types" "^7.12.7"
+ convert-source-map "^1.7.0"
+ debug "^4.1.0"
+ gensync "^1.0.0-beta.1"
+ json5 "^2.1.2"
+ lodash "^4.17.19"
+ resolve "^1.3.2"
+ semver "^5.4.1"
+ source-map "^0.5.0"
+
+"@babel/core@^7.1.0", "@babel/core@^7.11.1", "@babel/core@^7.12.10", "@babel/core@^7.13.14", "@babel/core@^7.7.5":
+ version "7.13.14"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.13.14.tgz#8e46ebbaca460a63497c797e574038ab04ae6d06"
+ integrity sha512-wZso/vyF4ki0l0znlgM4inxbdrUvCb+cVz8grxDq+6C9k6qbqoIJteQOKicaKjCipU3ISV+XedCqpL2RJJVehA==
+ dependencies:
+ "@babel/code-frame" "^7.12.13"
+ "@babel/generator" "^7.13.9"
+ "@babel/helper-compilation-targets" "^7.13.13"
+ "@babel/helper-module-transforms" "^7.13.14"
+ "@babel/helpers" "^7.13.10"
+ "@babel/parser" "^7.13.13"
+ "@babel/template" "^7.12.13"
+ "@babel/traverse" "^7.13.13"
+ "@babel/types" "^7.13.14"
+ convert-source-map "^1.7.0"
+ debug "^4.1.0"
+ gensync "^1.0.0-beta.2"
+ json5 "^2.1.2"
+ semver "^6.3.0"
+ source-map "^0.5.0"
+
+"@babel/generator@^7.12.11", "@babel/generator@^7.12.5", "@babel/generator@^7.13.9":
+ version "7.13.9"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.13.9.tgz#3a7aa96f9efb8e2be42d38d80e2ceb4c64d8de39"
+ integrity sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw==
+ dependencies:
+ "@babel/types" "^7.13.0"
+ jsesc "^2.5.1"
+ source-map "^0.5.0"
+
+"@babel/helper-annotate-as-pure@^7.0.0", "@babel/helper-annotate-as-pure@^7.10.4", "@babel/helper-annotate-as-pure@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz#0f58e86dfc4bb3b1fcd7db806570e177d439b6ab"
+ integrity sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==
+ dependencies:
+ "@babel/types" "^7.12.13"
+
+"@babel/helper-builder-binary-assignment-operator-visitor@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz#6bc20361c88b0a74d05137a65cac8d3cbf6f61fc"
+ integrity sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==
+ dependencies:
+ "@babel/helper-explode-assignable-expression" "^7.12.13"
+ "@babel/types" "^7.12.13"
+
+"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.10", "@babel/helper-compilation-targets@^7.13.13", "@babel/helper-compilation-targets@^7.13.8":
+ version "7.13.13"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.13.tgz#2b2972a0926474853f41e4adbc69338f520600e5"
+ integrity sha512-q1kcdHNZehBwD9jYPh3WyXcsFERi39X4I59I3NadciWtNDyZ6x+GboOxncFK0kXlKIv6BJm5acncehXWUjWQMQ==
+ dependencies:
+ "@babel/compat-data" "^7.13.12"
+ "@babel/helper-validator-option" "^7.12.17"
+ browserslist "^4.14.5"
+ semver "^6.3.0"
+
+"@babel/helper-create-class-features-plugin@^7.13.0":
+ version "7.13.11"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.11.tgz#30d30a005bca2c953f5653fc25091a492177f4f6"
+ integrity sha512-ays0I7XYq9xbjCSvT+EvysLgfc3tOkwCULHjrnscGT3A9qD4sk3wXnJ3of0MAWsWGjdinFvajHU2smYuqXKMrw==
+ dependencies:
+ "@babel/helper-function-name" "^7.12.13"
+ "@babel/helper-member-expression-to-functions" "^7.13.0"
+ "@babel/helper-optimise-call-expression" "^7.12.13"
+ "@babel/helper-replace-supers" "^7.13.0"
+ "@babel/helper-split-export-declaration" "^7.12.13"
+
+"@babel/helper-create-regexp-features-plugin@^7.12.13":
+ version "7.12.17"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz#a2ac87e9e319269ac655b8d4415e94d38d663cb7"
+ integrity sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.12.13"
+ regexpu-core "^4.7.1"
+
+"@babel/helper-define-polyfill-provider@^0.1.5":
+ version "0.1.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz#3c2f91b7971b9fc11fe779c945c014065dea340e"
+ integrity sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==
+ dependencies:
+ "@babel/helper-compilation-targets" "^7.13.0"
+ "@babel/helper-module-imports" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/traverse" "^7.13.0"
+ debug "^4.1.1"
+ lodash.debounce "^4.0.8"
+ resolve "^1.14.2"
+ semver "^6.1.2"
+
+"@babel/helper-explode-assignable-expression@^7.12.13":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz#17b5c59ff473d9f956f40ef570cf3a76ca12657f"
+ integrity sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA==
+ dependencies:
+ "@babel/types" "^7.13.0"
+
+"@babel/helper-function-name@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz#93ad656db3c3c2232559fd7b2c3dbdcbe0eb377a"
+ integrity sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==
+ dependencies:
+ "@babel/helper-get-function-arity" "^7.12.13"
+ "@babel/template" "^7.12.13"
+ "@babel/types" "^7.12.13"
+
+"@babel/helper-get-function-arity@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz#bc63451d403a3b3082b97e1d8b3fe5bd4091e583"
+ integrity sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==
+ dependencies:
+ "@babel/types" "^7.12.13"
+
+"@babel/helper-hoist-variables@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.0.tgz#5d5882e855b5c5eda91e0cadc26c6e7a2c8593d8"
+ integrity sha512-0kBzvXiIKfsCA0y6cFEIJf4OdzfpRuNk4+YTeHZpGGc666SATFKTz6sRncwFnQk7/ugJ4dSrCj6iJuvW4Qwr2g==
+ dependencies:
+ "@babel/traverse" "^7.13.0"
+ "@babel/types" "^7.13.0"
+
+"@babel/helper-member-expression-to-functions@^7.13.0", "@babel/helper-member-expression-to-functions@^7.13.12":
+ version "7.13.12"
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz#dfe368f26d426a07299d8d6513821768216e6d72"
+ integrity sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw==
+ dependencies:
+ "@babel/types" "^7.13.12"
+
+"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.13.12":
+ version "7.13.12"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz#c6a369a6f3621cb25da014078684da9196b61977"
+ integrity sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==
+ dependencies:
+ "@babel/types" "^7.13.12"
+
+"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.13.0", "@babel/helper-module-transforms@^7.13.14":
+ version "7.13.14"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.13.14.tgz#e600652ba48ccb1641775413cb32cfa4e8b495ef"
+ integrity sha512-QuU/OJ0iAOSIatyVZmfqB0lbkVP0kDRiKj34xy+QNsnVZi/PA6BoSoreeqnxxa9EHFAIL0R9XOaAR/G9WlIy5g==
+ dependencies:
+ "@babel/helper-module-imports" "^7.13.12"
+ "@babel/helper-replace-supers" "^7.13.12"
+ "@babel/helper-simple-access" "^7.13.12"
+ "@babel/helper-split-export-declaration" "^7.12.13"
+ "@babel/helper-validator-identifier" "^7.12.11"
+ "@babel/template" "^7.12.13"
+ "@babel/traverse" "^7.13.13"
+ "@babel/types" "^7.13.14"
+
+"@babel/helper-optimise-call-expression@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz#5c02d171b4c8615b1e7163f888c1c81c30a2aaea"
+ integrity sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==
+ dependencies:
+ "@babel/types" "^7.12.13"
+
+"@babel/helper-plugin-utils@7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375"
+ integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
+
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz#806526ce125aed03373bc416a828321e3a6a33af"
+ integrity sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==
+
+"@babel/helper-remap-async-to-generator@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz#376a760d9f7b4b2077a9dd05aa9c3927cadb2209"
+ integrity sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.12.13"
+ "@babel/helper-wrap-function" "^7.13.0"
+ "@babel/types" "^7.13.0"
+
+"@babel/helper-replace-supers@^7.12.13", "@babel/helper-replace-supers@^7.13.0", "@babel/helper-replace-supers@^7.13.12":
+ version "7.13.12"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz#6442f4c1ad912502481a564a7386de0c77ff3804"
+ integrity sha512-Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw==
+ dependencies:
+ "@babel/helper-member-expression-to-functions" "^7.13.12"
+ "@babel/helper-optimise-call-expression" "^7.12.13"
+ "@babel/traverse" "^7.13.0"
+ "@babel/types" "^7.13.12"
+
+"@babel/helper-simple-access@^7.12.13", "@babel/helper-simple-access@^7.13.12":
+ version "7.13.12"
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz#dd6c538afb61819d205a012c31792a39c7a5eaf6"
+ integrity sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA==
+ dependencies:
+ "@babel/types" "^7.13.12"
+
+"@babel/helper-skip-transparent-expression-wrappers@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz#462dc63a7e435ade8468385c63d2b84cce4b3cbf"
+ integrity sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==
+ dependencies:
+ "@babel/types" "^7.12.1"
+
+"@babel/helper-split-export-declaration@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz#e9430be00baf3e88b0e13e6f9d4eaf2136372b05"
+ integrity sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==
+ dependencies:
+ "@babel/types" "^7.12.13"
+
+"@babel/helper-validator-identifier@^7.12.11":
+ version "7.12.11"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed"
+ integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==
+
+"@babel/helper-validator-option@^7.12.17":
+ version "7.12.17"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831"
+ integrity sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==
+
+"@babel/helper-wrap-function@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz#bdb5c66fda8526ec235ab894ad53a1235c79fcc4"
+ integrity sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA==
+ dependencies:
+ "@babel/helper-function-name" "^7.12.13"
+ "@babel/template" "^7.12.13"
+ "@babel/traverse" "^7.13.0"
+ "@babel/types" "^7.13.0"
+
+"@babel/helpers@^7.12.5", "@babel/helpers@^7.13.10":
+ version "7.13.10"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.13.10.tgz#fd8e2ba7488533cdeac45cc158e9ebca5e3c7df8"
+ integrity sha512-4VO883+MWPDUVRF3PhiLBUFHoX/bsLTGFpFK/HqvvfBZz2D57u9XzPVNFVBTc0PW/CWR9BXTOKt8NF4DInUHcQ==
+ dependencies:
+ "@babel/template" "^7.12.13"
+ "@babel/traverse" "^7.13.0"
+ "@babel/types" "^7.13.0"
+
+"@babel/highlight@^7.10.4", "@babel/highlight@^7.12.13":
+ version "7.13.10"
+ resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.13.10.tgz#a8b2a66148f5b27d666b15d81774347a731d52d1"
+ integrity sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.12.11"
+ chalk "^2.0.0"
+ js-tokens "^4.0.0"
+
+"@babel/parser@^7.1.0", "@babel/parser@^7.12.11", "@babel/parser@^7.12.13", "@babel/parser@^7.12.7", "@babel/parser@^7.13.13":
+ version "7.13.13"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.13.tgz#42f03862f4aed50461e543270916b47dd501f0df"
+ integrity sha512-OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw==
+
+"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.13.12":
+ version "7.13.12"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12.tgz#a3484d84d0b549f3fc916b99ee4783f26fabad2a"
+ integrity sha512-d0u3zWKcoZf379fOeJdr1a5WPDny4aOFZ6hlfKivgK0LY7ZxNfoaHL2fWwdGtHyVvra38FC+HVYkO+byfSA8AQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
+ "@babel/plugin-proposal-optional-chaining" "^7.13.12"
+
+"@babel/plugin-proposal-async-generator-functions@^7.13.8":
+ version "7.13.8"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.8.tgz#87aacb574b3bc4b5603f6fe41458d72a5a2ec4b1"
+ integrity sha512-rPBnhj+WgoSmgq+4gQUtXx/vOcU+UYtjy1AA/aeD61Hwj410fwYyqfUcRP3lR8ucgliVJL/G7sXcNUecC75IXA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-remap-async-to-generator" "^7.13.0"
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
+
+"@babel/plugin-proposal-class-properties@^7.12.1", "@babel/plugin-proposal-class-properties@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz#146376000b94efd001e57a40a88a525afaab9f37"
+ integrity sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.13.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-proposal-decorators@^7.12.12":
+ version "7.13.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.13.5.tgz#d28071457a5ba8ee1394b23e38d5dcf32ea20ef7"
+ integrity sha512-i0GDfVNuoapwiheevUOuSW67mInqJ8qw7uWfpjNVeHMn143kXblEy/bmL9AdZ/0yf/4BMQeWXezK0tQIvNPqag==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.13.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-decorators" "^7.12.13"
+
+"@babel/plugin-proposal-dynamic-import@^7.13.8":
+ version "7.13.8"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz#876a1f6966e1dec332e8c9451afda3bebcdf2e1d"
+ integrity sha512-ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-dynamic-import" "^7.8.3"
+
+"@babel/plugin-proposal-export-default-from@^7.12.1":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.12.13.tgz#f110284108a9b2b96f01b15b3be9e54c2610a989"
+ integrity sha512-idIsBT+DGXdOHL82U+8bwX4goHm/z10g8sGGrQroh+HCRcm7mDv/luaGdWJQMTuCX2FsdXS7X0Nyyzp4znAPJA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+ "@babel/plugin-syntax-export-default-from" "^7.12.13"
+
+"@babel/plugin-proposal-export-namespace-from@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz#393be47a4acd03fa2af6e3cde9b06e33de1b446d"
+ integrity sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+ "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
+
+"@babel/plugin-proposal-json-strings@^7.13.8":
+ version "7.13.8"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz#bf1fb362547075afda3634ed31571c5901afef7b"
+ integrity sha512-w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
+
+"@babel/plugin-proposal-logical-assignment-operators@^7.13.8":
+ version "7.13.8"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz#93fa78d63857c40ce3c8c3315220fd00bfbb4e1a"
+ integrity sha512-aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+
+"@babel/plugin-proposal-nullish-coalescing-operator@^7.12.1", "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8":
+ version "7.13.8"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz#3730a31dafd3c10d8ccd10648ed80a2ac5472ef3"
+ integrity sha512-iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
+
+"@babel/plugin-proposal-numeric-separator@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz#bd9da3188e787b5120b4f9d465a8261ce67ed1db"
+ integrity sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+ "@babel/plugin-syntax-numeric-separator" "^7.10.4"
+
+"@babel/plugin-proposal-object-rest-spread@7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz#def9bd03cea0f9b72283dac0ec22d289c7691069"
+ integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
+ "@babel/plugin-transform-parameters" "^7.12.1"
+
+"@babel/plugin-proposal-object-rest-spread@^7.12.1", "@babel/plugin-proposal-object-rest-spread@^7.13.8":
+ version "7.13.8"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz#5d210a4d727d6ce3b18f9de82cc99a3964eed60a"
+ integrity sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g==
+ dependencies:
+ "@babel/compat-data" "^7.13.8"
+ "@babel/helper-compilation-targets" "^7.13.8"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+ "@babel/plugin-transform-parameters" "^7.13.0"
+
+"@babel/plugin-proposal-optional-catch-binding@^7.13.8":
+ version "7.13.8"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz#3ad6bd5901506ea996fc31bdcf3ccfa2bed71107"
+ integrity sha512-0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
+
+"@babel/plugin-proposal-optional-chaining@^7.12.7", "@babel/plugin-proposal-optional-chaining@^7.13.12":
+ version "7.13.12"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.12.tgz#ba9feb601d422e0adea6760c2bd6bbb7bfec4866"
+ integrity sha512-fcEdKOkIB7Tf4IxrgEVeFC4zeJSTr78no9wTdBuZZbqF64kzllU0ybo2zrzm7gUQfxGhBgq4E39oRs8Zx/RMYQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
+
+"@babel/plugin-proposal-private-methods@^7.12.1", "@babel/plugin-proposal-private-methods@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz#04bd4c6d40f6e6bbfa2f57e2d8094bad900ef787"
+ integrity sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.13.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-proposal-unicode-property-regex@^7.12.13", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz#bebde51339be829c17aaaaced18641deb62b39ba"
+ integrity sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-async-generators@^7.8.4":
+ version "7.8.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
+ integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-class-properties@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
+ integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-decorators@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.13.tgz#fac829bf3c7ef4a1bc916257b403e58c6bdaf648"
+ integrity sha512-Rw6aIXGuqDLr6/LoBBYE57nKOzQpz/aDkKlMqEwH+Vp0MXbG6H/TfRjaY343LKxzAKAMXIHsQ8JzaZKuDZ9MwA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-dynamic-import@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
+ integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-export-default-from@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.12.13.tgz#3c807d37efaf0a806f1deb556ccb3b2f562ae9c2"
+ integrity sha512-gVry0zqoums0hA+EniCYK3gABhjYSLX1dVuwYpPw9DrLNA4/GovXySHVg4FGRsZht09ON/5C2NVx3keq+qqVGQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-export-namespace-from@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
+ integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.3"
+
+"@babel/plugin-syntax-flow@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.13.tgz#5df9962503c0a9c918381c929d51d4d6949e7e86"
+ integrity sha512-J/RYxnlSLXZLVR7wTRsozxKT8qbsx1mNKJzXEEjQ0Kjx1ZACcyHgbanNWNCFtc36IzuWhYWPpvJFFoexoOWFmA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-json-strings@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
+ integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-jsx@7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz#9d9d357cc818aa7ae7935917c1257f67677a0926"
+ integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-jsx@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz#044fb81ebad6698fe62c478875575bcbb9b70f15"
+ integrity sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
+ integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
+ integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-numeric-separator@^7.10.4":
+ version "7.10.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
+ integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-syntax-object-rest-spread@7.8.3", "@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
+ integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
+ integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-optional-chaining@^7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
+ integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.8.0"
+
+"@babel/plugin-syntax-top-level-await@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz#c5f0fa6e249f5b739727f923540cf7a806130178"
+ integrity sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-syntax-typescript@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz#9dff111ca64154cef0f4dc52cf843d9f12ce4474"
+ integrity sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-arrow-functions@^7.12.1", "@babel/plugin-transform-arrow-functions@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz#10a59bebad52d637a027afa692e8d5ceff5e3dae"
+ integrity sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-async-to-generator@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz#8e112bf6771b82bf1e974e5e26806c5c99aa516f"
+ integrity sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg==
+ dependencies:
+ "@babel/helper-module-imports" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-remap-async-to-generator" "^7.13.0"
+
+"@babel/plugin-transform-block-scoped-functions@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz#a9bf1836f2a39b4eb6cf09967739de29ea4bf4c4"
+ integrity sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-block-scoping@^7.12.12", "@babel/plugin-transform-block-scoping@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz#f36e55076d06f41dfd78557ea039c1b581642e61"
+ integrity sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-classes@^7.12.1", "@babel/plugin-transform-classes@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz#0265155075c42918bf4d3a4053134176ad9b533b"
+ integrity sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.12.13"
+ "@babel/helper-function-name" "^7.12.13"
+ "@babel/helper-optimise-call-expression" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-replace-supers" "^7.13.0"
+ "@babel/helper-split-export-declaration" "^7.12.13"
+ globals "^11.1.0"
+
+"@babel/plugin-transform-computed-properties@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz#845c6e8b9bb55376b1fa0b92ef0bdc8ea06644ed"
+ integrity sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-destructuring@^7.12.1", "@babel/plugin-transform-destructuring@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.0.tgz#c5dce270014d4e1ebb1d806116694c12b7028963"
+ integrity sha512-zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-dotall-regex@^7.12.13", "@babel/plugin-transform-dotall-regex@^7.4.4":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz#3f1601cc29905bfcb67f53910f197aeafebb25ad"
+ integrity sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-duplicate-keys@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz#6f06b87a8b803fd928e54b81c258f0a0033904de"
+ integrity sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-exponentiation-operator@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz#4d52390b9a273e651e4aba6aee49ef40e80cd0a1"
+ integrity sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==
+ dependencies:
+ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-flow-strip-types@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.13.0.tgz#58177a48c209971e8234e99906cb6bd1122addd3"
+ integrity sha512-EXAGFMJgSX8gxWD7PZtW/P6M+z74jpx3wm/+9pn+c2dOawPpBkUX7BrfyPvo6ZpXbgRIEuwgwDb/MGlKvu2pOg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-flow" "^7.12.13"
+
+"@babel/plugin-transform-for-of@^7.12.1", "@babel/plugin-transform-for-of@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz#c799f881a8091ac26b54867a845c3e97d2696062"
+ integrity sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-function-name@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz#bb024452f9aaed861d374c8e7a24252ce3a50051"
+ integrity sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==
+ dependencies:
+ "@babel/helper-function-name" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-literals@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz#2ca45bafe4a820197cf315794a4d26560fe4bdb9"
+ integrity sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-member-expression-literals@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz#5ffa66cd59b9e191314c9f1f803b938e8c081e40"
+ integrity sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-modules-amd@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.13.0.tgz#19f511d60e3d8753cc5a6d4e775d3a5184866cc3"
+ integrity sha512-EKy/E2NHhY/6Vw5d1k3rgoobftcNUmp9fGjb9XZwQLtTctsRBOTRO7RHHxfIky1ogMN5BxN7p9uMA3SzPfotMQ==
+ dependencies:
+ "@babel/helper-module-transforms" "^7.13.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ babel-plugin-dynamic-import-node "^2.3.3"
+
+"@babel/plugin-transform-modules-commonjs@^7.13.8":
+ version "7.13.8"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz#7b01ad7c2dcf2275b06fa1781e00d13d420b3e1b"
+ integrity sha512-9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw==
+ dependencies:
+ "@babel/helper-module-transforms" "^7.13.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-simple-access" "^7.12.13"
+ babel-plugin-dynamic-import-node "^2.3.3"
+
+"@babel/plugin-transform-modules-systemjs@^7.13.8":
+ version "7.13.8"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz#6d066ee2bff3c7b3d60bf28dec169ad993831ae3"
+ integrity sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A==
+ dependencies:
+ "@babel/helper-hoist-variables" "^7.13.0"
+ "@babel/helper-module-transforms" "^7.13.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-validator-identifier" "^7.12.11"
+ babel-plugin-dynamic-import-node "^2.3.3"
+
+"@babel/plugin-transform-modules-umd@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.13.0.tgz#8a3d96a97d199705b9fd021580082af81c06e70b"
+ integrity sha512-D/ILzAh6uyvkWjKKyFE/W0FzWwasv6vPTSqPcjxFqn6QpX3u8DjRVliq4F2BamO2Wee/om06Vyy+vPkNrd4wxw==
+ dependencies:
+ "@babel/helper-module-transforms" "^7.13.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-named-capturing-groups-regex@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz#2213725a5f5bbbe364b50c3ba5998c9599c5c9d9"
+ integrity sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.12.13"
+
+"@babel/plugin-transform-new-target@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz#e22d8c3af24b150dd528cbd6e685e799bf1c351c"
+ integrity sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-object-super@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz#b4416a2d63b8f7be314f3d349bd55a9c1b5171f7"
+ integrity sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+ "@babel/helper-replace-supers" "^7.12.13"
+
+"@babel/plugin-transform-parameters@^7.12.1", "@babel/plugin-transform-parameters@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz#8fa7603e3097f9c0b7ca1a4821bc2fb52e9e5007"
+ integrity sha512-Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-property-literals@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz#4e6a9e37864d8f1b3bc0e2dce7bf8857db8b1a81"
+ integrity sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-react-display-name@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz#c28effd771b276f4647411c9733dbb2d2da954bd"
+ integrity sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-react-jsx-development@^7.12.17":
+ version "7.12.17"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz#f510c0fa7cd7234153539f9a362ced41a5ca1447"
+ integrity sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ==
+ dependencies:
+ "@babel/plugin-transform-react-jsx" "^7.12.17"
+
+"@babel/plugin-transform-react-jsx@^7.12.12", "@babel/plugin-transform-react-jsx@^7.12.16", "@babel/plugin-transform-react-jsx@^7.12.17", "@babel/plugin-transform-react-jsx@^7.13.12":
+ version "7.13.12"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.13.12.tgz#1df5dfaf0f4b784b43e96da6f28d630e775f68b3"
+ integrity sha512-jcEI2UqIcpCqB5U5DRxIl0tQEProI2gcu+g8VTIqxLO5Iidojb4d77q+fwGseCvd8af/lJ9masp4QWzBXFE2xA==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.12.13"
+ "@babel/helper-module-imports" "^7.13.12"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-jsx" "^7.12.13"
+ "@babel/types" "^7.13.12"
+
+"@babel/plugin-transform-react-pure-annotations@^7.12.1":
+ version "7.12.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz#05d46f0ab4d1339ac59adf20a1462c91b37a1a42"
+ integrity sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.10.4"
+ "@babel/helper-plugin-utils" "^7.10.4"
+
+"@babel/plugin-transform-regenerator@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz#b628bcc9c85260ac1aeb05b45bde25210194a2f5"
+ integrity sha512-lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA==
+ dependencies:
+ regenerator-transform "^0.14.2"
+
+"@babel/plugin-transform-reserved-words@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz#7d9988d4f06e0fe697ea1d9803188aa18b472695"
+ integrity sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-shorthand-properties@^7.12.1", "@babel/plugin-transform-shorthand-properties@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz#db755732b70c539d504c6390d9ce90fe64aff7ad"
+ integrity sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-spread@^7.12.1", "@babel/plugin-transform-spread@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz#84887710e273c1815ace7ae459f6f42a5d31d5fd"
+ integrity sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
+
+"@babel/plugin-transform-sticky-regex@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz#760ffd936face73f860ae646fb86ee82f3d06d1f"
+ integrity sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-template-literals@^7.12.1", "@babel/plugin-transform-template-literals@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz#a36049127977ad94438dee7443598d1cefdf409d"
+ integrity sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+
+"@babel/plugin-transform-typeof-symbol@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz#785dd67a1f2ea579d9c2be722de8c84cb85f5a7f"
+ integrity sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-typescript@^7.13.0":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.13.0.tgz#4a498e1f3600342d2a9e61f60131018f55774853"
+ integrity sha512-elQEwluzaU8R8dbVuW2Q2Y8Nznf7hnjM7+DSCd14Lo5fF63C9qNLbwZYbmZrtV9/ySpSUpkRpQXvJb6xyu4hCQ==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.13.0"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/plugin-syntax-typescript" "^7.12.13"
+
+"@babel/plugin-transform-unicode-escapes@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz#840ced3b816d3b5127dd1d12dcedc5dead1a5e74"
+ integrity sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/plugin-transform-unicode-regex@^7.12.13":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz#b52521685804e155b1202e83fc188d34bb70f5ac"
+ integrity sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.12.13"
+ "@babel/helper-plugin-utils" "^7.12.13"
+
+"@babel/preset-env@^7.11.0", "@babel/preset-env@^7.12.11":
+ version "7.13.12"
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.13.12.tgz#6dff470478290582ac282fb77780eadf32480237"
+ integrity sha512-JzElc6jk3Ko6zuZgBtjOd01pf9yYDEIH8BcqVuYIuOkzOwDesoa/Nz4gIo4lBG6K861KTV9TvIgmFuT6ytOaAA==
+ dependencies:
+ "@babel/compat-data" "^7.13.12"
+ "@babel/helper-compilation-targets" "^7.13.10"
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-validator-option" "^7.12.17"
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.13.12"
+ "@babel/plugin-proposal-async-generator-functions" "^7.13.8"
+ "@babel/plugin-proposal-class-properties" "^7.13.0"
+ "@babel/plugin-proposal-dynamic-import" "^7.13.8"
+ "@babel/plugin-proposal-export-namespace-from" "^7.12.13"
+ "@babel/plugin-proposal-json-strings" "^7.13.8"
+ "@babel/plugin-proposal-logical-assignment-operators" "^7.13.8"
+ "@babel/plugin-proposal-nullish-coalescing-operator" "^7.13.8"
+ "@babel/plugin-proposal-numeric-separator" "^7.12.13"
+ "@babel/plugin-proposal-object-rest-spread" "^7.13.8"
+ "@babel/plugin-proposal-optional-catch-binding" "^7.13.8"
+ "@babel/plugin-proposal-optional-chaining" "^7.13.12"
+ "@babel/plugin-proposal-private-methods" "^7.13.0"
+ "@babel/plugin-proposal-unicode-property-regex" "^7.12.13"
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
+ "@babel/plugin-syntax-class-properties" "^7.12.13"
+ "@babel/plugin-syntax-dynamic-import" "^7.8.3"
+ "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
+ "@babel/plugin-syntax-numeric-separator" "^7.10.4"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
+ "@babel/plugin-syntax-top-level-await" "^7.12.13"
+ "@babel/plugin-transform-arrow-functions" "^7.13.0"
+ "@babel/plugin-transform-async-to-generator" "^7.13.0"
+ "@babel/plugin-transform-block-scoped-functions" "^7.12.13"
+ "@babel/plugin-transform-block-scoping" "^7.12.13"
+ "@babel/plugin-transform-classes" "^7.13.0"
+ "@babel/plugin-transform-computed-properties" "^7.13.0"
+ "@babel/plugin-transform-destructuring" "^7.13.0"
+ "@babel/plugin-transform-dotall-regex" "^7.12.13"
+ "@babel/plugin-transform-duplicate-keys" "^7.12.13"
+ "@babel/plugin-transform-exponentiation-operator" "^7.12.13"
+ "@babel/plugin-transform-for-of" "^7.13.0"
+ "@babel/plugin-transform-function-name" "^7.12.13"
+ "@babel/plugin-transform-literals" "^7.12.13"
+ "@babel/plugin-transform-member-expression-literals" "^7.12.13"
+ "@babel/plugin-transform-modules-amd" "^7.13.0"
+ "@babel/plugin-transform-modules-commonjs" "^7.13.8"
+ "@babel/plugin-transform-modules-systemjs" "^7.13.8"
+ "@babel/plugin-transform-modules-umd" "^7.13.0"
+ "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.13"
+ "@babel/plugin-transform-new-target" "^7.12.13"
+ "@babel/plugin-transform-object-super" "^7.12.13"
+ "@babel/plugin-transform-parameters" "^7.13.0"
+ "@babel/plugin-transform-property-literals" "^7.12.13"
+ "@babel/plugin-transform-regenerator" "^7.12.13"
+ "@babel/plugin-transform-reserved-words" "^7.12.13"
+ "@babel/plugin-transform-shorthand-properties" "^7.12.13"
+ "@babel/plugin-transform-spread" "^7.13.0"
+ "@babel/plugin-transform-sticky-regex" "^7.12.13"
+ "@babel/plugin-transform-template-literals" "^7.13.0"
+ "@babel/plugin-transform-typeof-symbol" "^7.12.13"
+ "@babel/plugin-transform-unicode-escapes" "^7.12.13"
+ "@babel/plugin-transform-unicode-regex" "^7.12.13"
+ "@babel/preset-modules" "^0.1.4"
+ "@babel/types" "^7.13.12"
+ babel-plugin-polyfill-corejs2 "^0.1.4"
+ babel-plugin-polyfill-corejs3 "^0.1.3"
+ babel-plugin-polyfill-regenerator "^0.1.2"
+ core-js-compat "^3.9.0"
+ semver "^6.3.0"
+
+"@babel/preset-flow@^7.12.1":
+ version "7.13.13"
+ resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.13.13.tgz#a61a1c149b3f77589d795287744393444d5cdd9e"
+ integrity sha512-MDtwtamMifqq3R2mC7l3A3uFalUb3NH5TIBQWjN/epEPlZktcLq4se3J+ivckKrLMGsR7H9LW8+pYuIUN9tsKg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-validator-option" "^7.12.17"
+ "@babel/plugin-transform-flow-strip-types" "^7.13.0"
+
+"@babel/preset-modules@^0.1.4":
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e"
+ integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
+ "@babel/plugin-transform-dotall-regex" "^7.4.4"
+ "@babel/types" "^7.4.4"
+ esutils "^2.0.2"
+
+"@babel/preset-react@^7.12.10":
+ version "7.13.13"
+ resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.13.13.tgz#fa6895a96c50763fe693f9148568458d5a839761"
+ integrity sha512-gx+tDLIE06sRjKJkVtpZ/t3mzCDOnPG+ggHZG9lffUbX8+wC739x20YQc9V35Do6ZAxaUc/HhVHIiOzz5MvDmA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-validator-option" "^7.12.17"
+ "@babel/plugin-transform-react-display-name" "^7.12.13"
+ "@babel/plugin-transform-react-jsx" "^7.13.12"
+ "@babel/plugin-transform-react-jsx-development" "^7.12.17"
+ "@babel/plugin-transform-react-pure-annotations" "^7.12.1"
+
+"@babel/preset-typescript@^7.12.7":
+ version "7.13.0"
+ resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.13.0.tgz#ab107e5f050609d806fbb039bec553b33462c60a"
+ integrity sha512-LXJwxrHy0N3f6gIJlYbLta1D9BDtHpQeqwzM0LIfjDlr6UE/D5Mc7W4iDiQzaE+ks0sTjT26ArcHWnJVt0QiHw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.13.0"
+ "@babel/helper-validator-option" "^7.12.17"
+ "@babel/plugin-transform-typescript" "^7.13.0"
+
+"@babel/register@^7.12.1":
+ version "7.13.14"
+ resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.13.14.tgz#bbfa8f4f027c2ebc432e8e69e078b632605f2d9b"
+ integrity sha512-iyw0hUwjh/fzN8qklVqZodbyWjEBOG0KdDnBOpv3zzIgK3NmuRXBmIXH39ZBdspkn8LTHvSboN+oYb4MT43+9Q==
+ dependencies:
+ find-cache-dir "^2.0.0"
+ lodash "^4.17.19"
+ make-dir "^2.1.0"
+ pirates "^4.0.0"
+ source-map-support "^0.5.16"
+
+"@babel/runtime-corejs3@^7.10.2", "@babel/runtime-corejs3@^7.9.2":
+ version "7.13.10"
+ resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.13.10.tgz#14c3f4c85de22ba88e8e86685d13e8861a82fe86"
+ integrity sha512-x/XYVQ1h684pp1mJwOV4CyvqZXqbc8CMsMGUnAbuc82ZCdv1U63w5RSUzgDSXQHG5Rps/kiksH6g2D5BuaKyXg==
+ dependencies:
+ core-js-pure "^3.0.0"
+ regenerator-runtime "^0.13.4"
+
+"@babel/runtime@7.12.5":
+ version "7.12.5"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e"
+ integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==
+ dependencies:
+ regenerator-runtime "^0.13.4"
+
+"@babel/runtime@^7.0.0", "@babel/runtime@^7.10.2", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.3.1", "@babel/runtime@^7.5.0", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4":
+ version "7.13.10"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.13.10.tgz#47d42a57b6095f4468da440388fdbad8bebf0d7d"
+ integrity sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw==
+ dependencies:
+ regenerator-runtime "^0.13.4"
+
+"@babel/template@^7.12.13", "@babel/template@^7.12.7":
+ version "7.12.13"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327"
+ integrity sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==
+ dependencies:
+ "@babel/code-frame" "^7.12.13"
+ "@babel/parser" "^7.12.13"
+ "@babel/types" "^7.12.13"
+
+"@babel/traverse@^7.12.9", "@babel/traverse@^7.13.0", "@babel/traverse@^7.13.13", "@babel/traverse@^7.4.5":
+ version "7.13.13"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.13.13.tgz#39aa9c21aab69f74d948a486dd28a2dbdbf5114d"
+ integrity sha512-CblEcwmXKR6eP43oQGG++0QMTtCjAsa3frUuzHoiIJWpaIIi8dwMyEFUJoXRLxagGqCK+jALRwIO+o3R9p/uUg==
+ dependencies:
+ "@babel/code-frame" "^7.12.13"
+ "@babel/generator" "^7.13.9"
+ "@babel/helper-function-name" "^7.12.13"
+ "@babel/helper-split-export-declaration" "^7.12.13"
+ "@babel/parser" "^7.13.13"
+ "@babel/types" "^7.13.13"
+ debug "^4.1.0"
+ globals "^11.1.0"
+
+"@babel/types@7.8.3":
+ version "7.8.3"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.3.tgz#5a383dffa5416db1b73dedffd311ffd0788fb31c"
+ integrity sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==
+ dependencies:
+ esutils "^2.0.2"
+ lodash "^4.17.13"
+ to-fast-properties "^2.0.0"
+
+"@babel/types@^7.0.0", "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.12.7", "@babel/types@^7.13.0", "@babel/types@^7.13.12", "@babel/types@^7.13.13", "@babel/types@^7.13.14", "@babel/types@^7.3.0", "@babel/types@^7.4.4":
+ version "7.13.14"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.13.14.tgz#c35a4abb15c7cd45a2746d78ab328e362cbace0d"
+ integrity sha512-A2aa3QTkWoyqsZZFl56MLUsfmh7O0gN41IPvXAE/++8ojpbz12SszD7JEGYVdn4f9Kt4amIei07swF1h4AqmmQ==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.12.11"
+ lodash "^4.17.19"
+ to-fast-properties "^2.0.0"
+
+"@base2/pretty-print-object@1.0.0":
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/@base2/pretty-print-object/-/pretty-print-object-1.0.0.tgz#860ce718b0b73f4009e153541faff2cb6b85d047"
+ integrity sha512-4Th98KlMHr5+JkxfcoDT//6vY8vM+iSPrLNpHhRyLx2CFYi8e2RfqPLdpbnpo0Q5lQC5hNB79yes07zb02fvCw==
+
+"@cnakazawa/watch@^1.0.3":
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a"
+ integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==
+ dependencies:
+ exec-sh "^0.3.2"
+ minimist "^1.2.0"
+
+"@emotion/cache@^10.0.27":
+ version "10.0.29"
+ resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-10.0.29.tgz#87e7e64f412c060102d589fe7c6dc042e6f9d1e0"
+ integrity sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==
+ dependencies:
+ "@emotion/sheet" "0.9.4"
+ "@emotion/stylis" "0.8.5"
+ "@emotion/utils" "0.11.3"
+ "@emotion/weak-memoize" "0.2.5"
+
+"@emotion/core@^10.1.1":
+ version "10.1.1"
+ resolved "https://registry.yarnpkg.com/@emotion/core/-/core-10.1.1.tgz#c956c1365f2f2481960064bcb8c4732e5fb612c3"
+ integrity sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==
+ dependencies:
+ "@babel/runtime" "^7.5.5"
+ "@emotion/cache" "^10.0.27"
+ "@emotion/css" "^10.0.27"
+ "@emotion/serialize" "^0.11.15"
+ "@emotion/sheet" "0.9.4"
+ "@emotion/utils" "0.11.3"
+
+"@emotion/css@^10.0.27":
+ version "10.0.27"
+ resolved "https://registry.yarnpkg.com/@emotion/css/-/css-10.0.27.tgz#3a7458198fbbebb53b01b2b87f64e5e21241e14c"
+ integrity sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==
+ dependencies:
+ "@emotion/serialize" "^0.11.15"
+ "@emotion/utils" "0.11.3"
+ babel-plugin-emotion "^10.0.27"
+
+"@emotion/hash@0.8.0":
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413"
+ integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==
+
+"@emotion/is-prop-valid@0.8.8", "@emotion/is-prop-valid@^0.8.6", "@emotion/is-prop-valid@^0.8.8":
+ version "0.8.8"
+ resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a"
+ integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==
+ dependencies:
+ "@emotion/memoize" "0.7.4"
+
+"@emotion/memoize@0.7.4":
+ version "0.7.4"
+ resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb"
+ integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==
+
+"@emotion/serialize@^0.11.15", "@emotion/serialize@^0.11.16":
+ version "0.11.16"
+ resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.11.16.tgz#dee05f9e96ad2fb25a5206b6d759b2d1ed3379ad"
+ integrity sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==
+ dependencies:
+ "@emotion/hash" "0.8.0"
+ "@emotion/memoize" "0.7.4"
+ "@emotion/unitless" "0.7.5"
+ "@emotion/utils" "0.11.3"
+ csstype "^2.5.7"
+
+"@emotion/sheet@0.9.4":
+ version "0.9.4"
+ resolved "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-0.9.4.tgz#894374bea39ec30f489bbfc3438192b9774d32e5"
+ integrity sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==
+
+"@emotion/styled-base@^10.0.27":
+ version "10.0.31"
+ resolved "https://registry.yarnpkg.com/@emotion/styled-base/-/styled-base-10.0.31.tgz#940957ee0aa15c6974adc7d494ff19765a2f742a"
+ integrity sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ==
+ dependencies:
+ "@babel/runtime" "^7.5.5"
+ "@emotion/is-prop-valid" "0.8.8"
+ "@emotion/serialize" "^0.11.15"
+ "@emotion/utils" "0.11.3"
+
+"@emotion/styled@^10.0.27":
+ version "10.0.27"
+ resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-10.0.27.tgz#12cb67e91f7ad7431e1875b1d83a94b814133eaf"
+ integrity sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q==
+ dependencies:
+ "@emotion/styled-base" "^10.0.27"
+ babel-plugin-emotion "^10.0.27"
+
+"@emotion/stylis@0.8.5", "@emotion/stylis@^0.8.4":
+ version "0.8.5"
+ resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04"
+ integrity sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==
+
+"@emotion/unitless@0.7.5", "@emotion/unitless@^0.7.4":
+ version "0.7.5"
+ resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed"
+ integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==
+
+"@emotion/utils@0.11.3":
+ version "0.11.3"
+ resolved "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.11.3.tgz#a759863867befa7e583400d322652a3f44820924"
+ integrity sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==
+
+"@emotion/weak-memoize@0.2.5":
+ version "0.2.5"
+ resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46"
+ integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==
+
+"@eslint/eslintrc@^0.4.0":
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.0.tgz#99cc0a0584d72f1df38b900fb062ba995f395547"
+ integrity sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog==
+ dependencies:
+ ajv "^6.12.4"
+ debug "^4.1.1"
+ espree "^7.3.0"
+ globals "^12.1.0"
+ ignore "^4.0.6"
+ import-fresh "^3.2.1"
+ js-yaml "^3.13.1"
+ minimatch "^3.0.4"
+ strip-json-comments "^3.1.1"
+
+"@hapi/accept@5.0.1":
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/@hapi/accept/-/accept-5.0.1.tgz#068553e867f0f63225a506ed74e899441af53e10"
+ integrity sha512-fMr4d7zLzsAXo28PRRQPXR1o2Wmu+6z+VY1UzDp0iFo13Twj8WePakwXBiqn3E1aAlTpSNzCXdnnQXFhst8h8Q==
+ dependencies:
+ "@hapi/boom" "9.x.x"
+ "@hapi/hoek" "9.x.x"
+
+"@hapi/address@^2.1.2":
+ version "2.1.4"
+ resolved "https://registry.yarnpkg.com/@hapi/address/-/address-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5"
+ integrity sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==
+
+"@hapi/boom@9.x.x":
+ version "9.1.2"
+ resolved "https://registry.yarnpkg.com/@hapi/boom/-/boom-9.1.2.tgz#48bd41d67437164a2d636e3b5bc954f8c8dc5e38"
+ integrity sha512-uJEJtiNHzKw80JpngDGBCGAmWjBtzxDCz17A9NO2zCi8LLBlb5Frpq4pXwyN+2JQMod4pKz5BALwyneCgDg89Q==
+ dependencies:
+ "@hapi/hoek" "9.x.x"
+
+"@hapi/formula@^1.2.0":
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/@hapi/formula/-/formula-1.2.0.tgz#994649c7fea1a90b91a0a1e6d983523f680e10cd"
+ integrity sha512-UFbtbGPjstz0eWHb+ga/GM3Z9EzqKXFWIbSOFURU0A/Gku0Bky4bCk9/h//K2Xr3IrCfjFNhMm4jyZ5dbCewGA==
+
+"@hapi/hoek@9.x.x", "@hapi/hoek@^9.0.0":
+ version "9.1.1"
+ resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.1.1.tgz#9daf5745156fd84b8e9889a2dc721f0c58e894aa"
+ integrity sha512-CAEbWH7OIur6jEOzaai83jq3FmKmv4PmX1JYfs9IrYcGEVI/lyL1EXJGCj7eFVJ0bg5QR8LMxBlEtA+xKiLpFw==
+
+"@hapi/hoek@^8.2.4", "@hapi/hoek@^8.3.0":
+ version "8.5.1"
+ resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-8.5.1.tgz#fde96064ca446dec8c55a8c2f130957b070c6e06"
+ integrity sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==
+
+"@hapi/joi@^16.1.8":
+ version "16.1.8"
+ resolved "https://registry.yarnpkg.com/@hapi/joi/-/joi-16.1.8.tgz#84c1f126269489871ad4e2decc786e0adef06839"
+ integrity sha512-wAsVvTPe+FwSrsAurNt5vkg3zo+TblvC5Bb1zMVK6SJzZqw9UrJnexxR+76cpePmtUZKHAPxcQ2Bf7oVHyahhg==
+ dependencies:
+ "@hapi/address" "^2.1.2"
+ "@hapi/formula" "^1.2.0"
+ "@hapi/hoek" "^8.2.4"
+ "@hapi/pinpoint" "^1.0.2"
+ "@hapi/topo" "^3.1.3"
+
+"@hapi/pinpoint@^1.0.2":
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/@hapi/pinpoint/-/pinpoint-1.0.2.tgz#025b7a36dbbf4d35bf1acd071c26b20ef41e0d13"
+ integrity sha512-dtXC/WkZBfC5vxscazuiJ6iq4j9oNx1SHknmIr8hofarpKUZKmlUVYVIhNVzIEgK5Wrc4GMHL5lZtt1uS2flmQ==
+
+"@hapi/topo@^3.1.3":
+ version "3.1.6"
+ resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-3.1.6.tgz#68d935fa3eae7fdd5ab0d7f953f3205d8b2bfc29"
+ integrity sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==
+ dependencies:
+ "@hapi/hoek" "^8.3.0"
+
+"@hapi/topo@^5.0.0":
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-5.0.0.tgz#c19af8577fa393a06e9c77b60995af959be721e7"
+ integrity sha512-tFJlT47db0kMqVm3H4nQYgn6Pwg10GTZHb1pwmSiv1K4ks6drQOtfEF5ZnPjkvC+y4/bUPHK+bc87QvLcL+WMw==
+ dependencies:
+ "@hapi/hoek" "^9.0.0"
+
+"@istanbuljs/load-nyc-config@^1.0.0":
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced"
+ integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==
+ dependencies:
+ camelcase "^5.3.1"
+ find-up "^4.1.0"
+ get-package-type "^0.1.0"
+ js-yaml "^3.13.1"
+ resolve-from "^5.0.0"
+
+"@istanbuljs/schema@^0.1.2":
+ version "0.1.3"
+ resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98"
+ integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==
+
+"@jest/transform@^26.6.2":
+ version "26.6.2"
+ resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-26.6.2.tgz#5ac57c5fa1ad17b2aae83e73e45813894dcf2e4b"
+ integrity sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==
+ dependencies:
+ "@babel/core" "^7.1.0"
+ "@jest/types" "^26.6.2"
+ babel-plugin-istanbul "^6.0.0"
+ chalk "^4.0.0"
+ convert-source-map "^1.4.0"
+ fast-json-stable-stringify "^2.0.0"
+ graceful-fs "^4.2.4"
+ jest-haste-map "^26.6.2"
+ jest-regex-util "^26.0.0"
+ jest-util "^26.6.2"
+ micromatch "^4.0.2"
+ pirates "^4.0.1"
+ slash "^3.0.0"
+ source-map "^0.6.1"
+ write-file-atomic "^3.0.0"
+
+"@jest/types@^26.6.2":
+ version "26.6.2"
+ resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e"
+ integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==
+ dependencies:
+ "@types/istanbul-lib-coverage" "^2.0.0"
+ "@types/istanbul-reports" "^3.0.0"
+ "@types/node" "*"
+ "@types/yargs" "^15.0.0"
+ chalk "^4.0.0"
+
+"@mdx-js/loader@^1.6.22":
+ version "1.6.22"
+ resolved "https://registry.yarnpkg.com/@mdx-js/loader/-/loader-1.6.22.tgz#d9e8fe7f8185ff13c9c8639c048b123e30d322c4"
+ integrity sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==
+ dependencies:
+ "@mdx-js/mdx" "1.6.22"
+ "@mdx-js/react" "1.6.22"
+ loader-utils "2.0.0"
+
+"@mdx-js/mdx@1.6.22", "@mdx-js/mdx@^1.6.22":
+ version "1.6.22"
+ resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-1.6.22.tgz#8a723157bf90e78f17dc0f27995398e6c731f1ba"
+ integrity sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==
+ dependencies:
+ "@babel/core" "7.12.9"
+ "@babel/plugin-syntax-jsx" "7.12.1"
+ "@babel/plugin-syntax-object-rest-spread" "7.8.3"
+ "@mdx-js/util" "1.6.22"
+ babel-plugin-apply-mdx-type-prop "1.6.22"
+ babel-plugin-extract-import-names "1.6.22"
+ camelcase-css "2.0.1"
+ detab "2.0.4"
+ hast-util-raw "6.0.1"
+ lodash.uniq "4.5.0"
+ mdast-util-to-hast "10.0.1"
+ remark-footnotes "2.0.0"
+ remark-mdx "1.6.22"
+ remark-parse "8.0.3"
+ remark-squeeze-paragraphs "4.0.0"
+ style-to-object "0.3.0"
+ unified "9.2.0"
+ unist-builder "2.0.3"
+ unist-util-visit "2.0.3"
+
+"@mdx-js/react@1.6.22", "@mdx-js/react@^1.6.22":
+ version "1.6.22"
+ resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-1.6.22.tgz#ae09b4744fddc74714ee9f9d6f17a66e77c43573"
+ integrity sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==
+
+"@mdx-js/util@1.6.22":
+ version "1.6.22"
+ resolved "https://registry.yarnpkg.com/@mdx-js/util/-/util-1.6.22.tgz#219dfd89ae5b97a8801f015323ffa4b62f45718b"
+ integrity sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==
+
+"@mrmlnc/readdir-enhanced@^2.2.1":
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde"
+ integrity sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==
+ dependencies:
+ call-me-maybe "^1.0.1"
+ glob-to-regexp "^0.3.0"
+
+"@next/env@10.0.8":
+ version "10.0.8"
+ resolved "https://registry.yarnpkg.com/@next/env/-/env-10.0.8.tgz#3306c9de20ef187438affbafce0ef966c9e43c3b"
+ integrity sha512-vWdxAHD6gJn52tN5bxj1VoRgu5lNtRPc/HyYf7V014k2GZ9eKhqoFQGSSMNGHB7WgdUxLVw75+o9Ek9ClOOAjw==
+
+"@next/polyfill-module@10.0.8":
+ version "10.0.8"
+ resolved "https://registry.yarnpkg.com/@next/polyfill-module/-/polyfill-module-10.0.8.tgz#1d033f390389591f227499e286911e3db14c484b"
+ integrity sha512-JCUGB4/SKQ4LXniv7LKGrpW+W2DGH/CLkrgXgSo/Ze+EJdMDLxC/VFhiuW+TgAaAWLE4gryoswlZBNyHtkPGQA==
+
+"@next/react-dev-overlay@10.0.8":
+ version "10.0.8"
+ resolved "https://registry.yarnpkg.com/@next/react-dev-overlay/-/react-dev-overlay-10.0.8.tgz#a8e841647b74f9720cc60d3e3bd3da225ad12533"
+ integrity sha512-ygVsvkzYTYIuME+dUUSjCxbNjrJ+Up9Y+CrWEmSSk6HuxajUvrB9vN6RT+PeAzEOQ5er1sWxmVHVdPknQPVWyQ==
+ dependencies:
+ "@babel/code-frame" "7.12.11"
+ anser "1.4.9"
+ chalk "4.0.0"
+ classnames "2.2.6"
+ css.escape "1.5.1"
+ data-uri-to-buffer "3.0.1"
+ platform "1.3.6"
+ shell-quote "1.7.2"
+ source-map "0.8.0-beta.0"
+ stacktrace-parser "0.1.10"
+ strip-ansi "6.0.0"
+
+"@next/react-refresh-utils@10.0.8":
+ version "10.0.8"
+ resolved "https://registry.yarnpkg.com/@next/react-refresh-utils/-/react-refresh-utils-10.0.8.tgz#6129d633e2c0a9b5760de002e998932f08c8baae"
+ integrity sha512-ZMO77Xs2ioGV/nZB4GRDHgsNT2jhOp+cZIh6c7wf0xw9o/1KoTWN8nxWzwU/laAtkoSS+E6YdhuR4Mw3Ar3CSg==
+
+"@nodelib/fs.scandir@2.1.4":
+ version "2.1.4"
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz#d4b3549a5db5de2683e0c1071ab4f140904bbf69"
+ integrity sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==
+ dependencies:
+ "@nodelib/fs.stat" "2.0.4"
+ run-parallel "^1.1.9"
+
+"@nodelib/fs.stat@2.0.4", "@nodelib/fs.stat@^2.0.2":
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz#a3f2dd61bab43b8db8fa108a121cfffe4c676655"
+ integrity sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==
+
+"@nodelib/fs.stat@^1.1.2":
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b"
+ integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==
+
+"@nodelib/fs.walk@^1.2.3":
+ version "1.2.6"
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz#cce9396b30aa5afe9e3756608f5831adcb53d063"
+ integrity sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==
+ dependencies:
+ "@nodelib/fs.scandir" "2.1.4"
+ fastq "^1.6.0"
+
+"@npmcli/move-file@^1.0.1":
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674"
+ integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==
+ dependencies:
+ mkdirp "^1.0.4"
+ rimraf "^3.0.2"
+
+"@opentelemetry/api@0.14.0":
+ version "0.14.0"
+ resolved "https://registry.yarnpkg.com/@opentelemetry/api/-/api-0.14.0.tgz#4e17d8d2f1da72b19374efa7b6526aa001267cae"
+ integrity sha512-L7RMuZr5LzMmZiQSQDy9O1jo0q+DaLy6XpYJfIGfYSfoJA5qzYwUP3sP1uMIQ549DvxAgM3ng85EaPTM/hUHwQ==
+ dependencies:
+ "@opentelemetry/context-base" "^0.14.0"
+
+"@opentelemetry/context-base@^0.14.0":
+ version "0.14.0"
+ resolved "https://registry.yarnpkg.com/@opentelemetry/context-base/-/context-base-0.14.0.tgz#c67fc20a4d891447ca1a855d7d70fa79a3533001"
+ integrity sha512-sDOAZcYwynHFTbLo6n8kIbLiVF3a3BLkrmehJUyEbT9F+Smbi47kLGS2gG2g0fjBLR/Lr1InPD7kXL7FaTqEkw==
+
+"@pmmmwh/react-refresh-webpack-plugin@^0.4.3":
+ version "0.4.3"
+ resolved "https://registry.yarnpkg.com/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.4.3.tgz#1eec460596d200c0236bf195b078a5d1df89b766"
+ integrity sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==
+ dependencies:
+ ansi-html "^0.0.7"
+ error-stack-parser "^2.0.6"
+ html-entities "^1.2.1"
+ native-url "^0.2.6"
+ schema-utils "^2.6.5"
+ source-map "^0.7.3"
+
+"@popperjs/core@^2.5.4", "@popperjs/core@^2.6.0":
+ version "2.9.2"
+ resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.9.2.tgz#adea7b6953cbb34651766b0548468e743c6a2353"
+ integrity sha512-VZMYa7+fXHdwIq1TDhSXoVmSPEGM/aa+6Aiq3nVVJ9bXr24zScr+NlKFKC3iPljA7ho/GAZr+d2jOf5GIRC30Q==
+
+"@reach/router@^1.3.4":
+ version "1.3.4"
+ resolved "https://registry.yarnpkg.com/@reach/router/-/router-1.3.4.tgz#d2574b19370a70c80480ed91f3da840136d10f8c"
+ integrity sha512-+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA==
+ dependencies:
+ create-react-context "0.3.0"
+ invariant "^2.2.3"
+ prop-types "^15.6.1"
+ react-lifecycles-compat "^3.0.4"
+
+"@rollup/plugin-babel@^5.2.0":
+ version "5.3.0"
+ resolved "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.3.0.tgz#9cb1c5146ddd6a4968ad96f209c50c62f92f9879"
+ integrity sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw==
+ dependencies:
+ "@babel/helper-module-imports" "^7.10.4"
+ "@rollup/pluginutils" "^3.1.0"
+
+"@rollup/plugin-node-resolve@^9.0.0":
+ version "9.0.0"
+ resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-9.0.0.tgz#39bd0034ce9126b39c1699695f440b4b7d2b62e6"
+ integrity sha512-gPz+utFHLRrd41WMP13Jq5mqqzHL3OXrfj3/MkSyB6UBIcuNt9j60GCbarzMzdf1VHFpOxfQh/ez7wyadLMqkg==
+ dependencies:
+ "@rollup/pluginutils" "^3.1.0"
+ "@types/resolve" "1.17.1"
+ builtin-modules "^3.1.0"
+ deepmerge "^4.2.2"
+ is-module "^1.0.0"
+ resolve "^1.17.0"
+
+"@rollup/plugin-replace@^2.4.1":
+ version "2.4.2"
+ resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz#a2d539314fbc77c244858faa523012825068510a"
+ integrity sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==
+ dependencies:
+ "@rollup/pluginutils" "^3.1.0"
+ magic-string "^0.25.7"
+
+"@rollup/pluginutils@^3.1.0":
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b"
+ integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==
+ dependencies:
+ "@types/estree" "0.0.39"
+ estree-walker "^1.0.1"
+ picomatch "^2.2.2"
+
+"@sideway/address@^4.1.0":
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/@sideway/address/-/address-4.1.1.tgz#9e321e74310963fdf8eebfbee09c7bd69972de4d"
+ integrity sha512-+I5aaQr3m0OAmMr7RQ3fR9zx55sejEYR2BFJaxL+zT3VM2611X0SHvPWIbAUBZVTn/YzYKbV8gJ2oT/QELknfQ==
+ dependencies:
+ "@hapi/hoek" "^9.0.0"
+
+"@sideway/formula@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.0.tgz#fe158aee32e6bd5de85044be615bc08478a0a13c"
+ integrity sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==
+
+"@sideway/pinpoint@^2.0.0":
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df"
+ integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==
+
+"@sindresorhus/is@^0.14.0":
+ version "0.14.0"
+ resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea"
+ integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==
+
+"@storybook/addon-actions@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-6.2.1.tgz#af5924969c691a4fe6ec9266ffefe02b95245063"
+ integrity sha512-pRzyJIcso+7FJ4Xv4lJZ/mppFgkdnJ3B/R6QPYl1Enwlxjk2CH2iDD+Hq85WFHGfg5cjtFm3fd9EbPXC09ReeA==
+ dependencies:
+ "@storybook/addons" "6.2.1"
+ "@storybook/api" "6.2.1"
+ "@storybook/client-api" "6.2.1"
+ "@storybook/components" "6.2.1"
+ "@storybook/core-events" "6.2.1"
+ "@storybook/theming" "6.2.1"
+ core-js "^3.8.2"
+ fast-deep-equal "^3.1.3"
+ global "^4.4.0"
+ lodash "^4.17.20"
+ polished "^4.0.5"
+ prop-types "^15.7.2"
+ react-inspector "^5.1.0"
+ regenerator-runtime "^0.13.7"
+ ts-dedent "^2.0.0"
+ util-deprecate "^1.0.2"
+ uuid-browser "^3.1.0"
+
+"@storybook/addon-backgrounds@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-backgrounds/-/addon-backgrounds-6.2.1.tgz#3e04dcba3a202f42e2831a2e017bc90ddd2406b7"
+ integrity sha512-ZR9zPHpw0uR3u9Qfx4HG7YBTucTL+l3KZ1uEEIsyDIPrwNTPpzsryzvwS6/Syfo/ndZZP3CTdkYGTBtnt0ALXA==
+ dependencies:
+ "@storybook/addons" "6.2.1"
+ "@storybook/api" "6.2.1"
+ "@storybook/client-logger" "6.2.1"
+ "@storybook/components" "6.2.1"
+ "@storybook/core-events" "6.2.1"
+ "@storybook/theming" "6.2.1"
+ core-js "^3.8.2"
+ global "^4.4.0"
+ memoizerific "^1.11.3"
+ regenerator-runtime "^0.13.7"
+ ts-dedent "^2.0.0"
+ util-deprecate "^1.0.2"
+
+"@storybook/addon-controls@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-controls/-/addon-controls-6.2.1.tgz#1010c15e6df6b4d003ecf945e6e3b95fd03f56db"
+ integrity sha512-OX2t6R1azMpIZFBcXvxUa2R1TNLrCQMNE8l0BbSzXBI0iJbkh8b4giaPwHE/+DrkCmOv3LeEnEDlVFdUSV7cRQ==
+ dependencies:
+ "@storybook/addons" "6.2.1"
+ "@storybook/api" "6.2.1"
+ "@storybook/client-api" "6.2.1"
+ "@storybook/components" "6.2.1"
+ "@storybook/node-logger" "6.2.1"
+ "@storybook/theming" "6.2.1"
+ core-js "^3.8.2"
+ ts-dedent "^2.0.0"
+
+"@storybook/addon-docs@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-docs/-/addon-docs-6.2.1.tgz#fcfdfd56256f01d8d54710a09d1130292a3f8385"
+ integrity sha512-UIeUDEUDKRmAZW0ZlLMzp9f4iVP76QQOccDGHo7CoZEkj69nuR2g2kdoo0myOSzswq6f4yMgu6Hj4f+v+QCUEg==
+ dependencies:
+ "@babel/core" "^7.12.10"
+ "@babel/generator" "^7.12.11"
+ "@babel/parser" "^7.12.11"
+ "@babel/plugin-transform-react-jsx" "^7.12.12"
+ "@babel/preset-env" "^7.12.11"
+ "@jest/transform" "^26.6.2"
+ "@mdx-js/loader" "^1.6.22"
+ "@mdx-js/mdx" "^1.6.22"
+ "@mdx-js/react" "^1.6.22"
+ "@storybook/addons" "6.2.1"
+ "@storybook/api" "6.2.1"
+ "@storybook/builder-webpack4" "6.2.1"
+ "@storybook/client-api" "6.2.1"
+ "@storybook/client-logger" "6.2.1"
+ "@storybook/components" "6.2.1"
+ "@storybook/core" "6.2.1"
+ "@storybook/core-events" "6.2.1"
+ "@storybook/csf" "0.0.1"
+ "@storybook/node-logger" "6.2.1"
+ "@storybook/postinstall" "6.2.1"
+ "@storybook/source-loader" "6.2.1"
+ "@storybook/theming" "6.2.1"
+ acorn "^7.4.1"
+ acorn-jsx "^5.3.1"
+ acorn-walk "^7.2.0"
+ core-js "^3.8.2"
+ doctrine "^3.0.0"
+ escodegen "^2.0.0"
+ fast-deep-equal "^3.1.3"
+ global "^4.4.0"
+ html-tags "^3.1.0"
+ js-string-escape "^1.0.1"
+ loader-utils "^2.0.0"
+ lodash "^4.17.20"
+ prettier "~2.2.1"
+ prop-types "^15.7.2"
+ react-element-to-jsx-string "^14.3.2"
+ regenerator-runtime "^0.13.7"
+ remark-external-links "^8.0.0"
+ remark-slug "^6.0.0"
+ ts-dedent "^2.0.0"
+ util-deprecate "^1.0.2"
+
+"@storybook/addon-essentials@^6.1.11":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-essentials/-/addon-essentials-6.2.1.tgz#6b8f5e7f10da431ef287e64df9e47ce6eb2fff78"
+ integrity sha512-jgz37V+FCIk3GKsVdvBf5Toz+yz/FPB1B85wFrkxNpJljdHC1XN5xd41AVFlkEsqzeaTLiHPpthHaPtjaQpbOw==
+ dependencies:
+ "@storybook/addon-actions" "6.2.1"
+ "@storybook/addon-backgrounds" "6.2.1"
+ "@storybook/addon-controls" "6.2.1"
+ "@storybook/addon-docs" "6.2.1"
+ "@storybook/addon-toolbars" "6.2.1"
+ "@storybook/addon-viewport" "6.2.1"
+ "@storybook/addons" "6.2.1"
+ "@storybook/api" "6.2.1"
+ "@storybook/node-logger" "6.2.1"
+ core-js "^3.8.2"
+ regenerator-runtime "^0.13.7"
+ ts-dedent "^2.0.0"
+
+"@storybook/addon-toolbars@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-toolbars/-/addon-toolbars-6.2.1.tgz#c13121947ba87c53c1e5be91b41543e4b29bce83"
+ integrity sha512-OoHahYl/WcVPhYk8xULlvL34pKWOSZQWTt7kVAdbZqKCNB/T7yy6FkZ7jy56u25oz6bL12DVUeUN4kJn6XxFFA==
+ dependencies:
+ "@storybook/addons" "6.2.1"
+ "@storybook/api" "6.2.1"
+ "@storybook/client-api" "6.2.1"
+ "@storybook/components" "6.2.1"
+ core-js "^3.8.2"
+
+"@storybook/addon-viewport@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/addon-viewport/-/addon-viewport-6.2.1.tgz#89a5fa43316e5a17341866b84556d321f15d0b1f"
+ integrity sha512-mdwMRBraYMCdamkBwzyReaOWD9CwHjQNJ4T3h3kLOMgK8BiKHJxNkXbVCuW7A1GemHK5Mfdu7Uf19quXKHf7+g==
+ dependencies:
+ "@storybook/addons" "6.2.1"
+ "@storybook/api" "6.2.1"
+ "@storybook/client-logger" "6.2.1"
+ "@storybook/components" "6.2.1"
+ "@storybook/core-events" "6.2.1"
+ "@storybook/theming" "6.2.1"
+ core-js "^3.8.2"
+ global "^4.4.0"
+ memoizerific "^1.11.3"
+ prop-types "^15.7.2"
+ regenerator-runtime "^0.13.7"
+
+"@storybook/addons@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/addons/-/addons-6.2.1.tgz#7f1c7042912b82023e4dfc08f31c4149d90800bd"
+ integrity sha512-HqrpqF+XMnqAJHhN6Te7YYR3Gjcj7Js9bO59jd5AQQ96PBoQ6k5I/tCmripvWVxdak4UfI2p4zn6x7Kkw5bHxA==
+ dependencies:
+ "@storybook/api" "6.2.1"
+ "@storybook/channels" "6.2.1"
+ "@storybook/client-logger" "6.2.1"
+ "@storybook/core-events" "6.2.1"
+ "@storybook/router" "6.2.1"
+ "@storybook/theming" "6.2.1"
+ core-js "^3.8.2"
+ global "^4.4.0"
+ regenerator-runtime "^0.13.7"
+
+"@storybook/api@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/api/-/api-6.2.1.tgz#e76b6c31578089f0df06fd67486d9bc7d2eca4c1"
+ integrity sha512-W5H5FExLExCbj67OAQYRopeTdADuHOUgQiMoeoYSckdyWQl5DJb2l85yDlr0auZNYbjFHzJqEOs0Loch/NNlYA==
+ dependencies:
+ "@reach/router" "^1.3.4"
+ "@storybook/channels" "6.2.1"
+ "@storybook/client-logger" "6.2.1"
+ "@storybook/core-events" "6.2.1"
+ "@storybook/csf" "0.0.1"
+ "@storybook/router" "6.2.1"
+ "@storybook/semver" "^7.3.2"
+ "@storybook/theming" "6.2.1"
+ "@types/reach__router" "^1.3.7"
+ core-js "^3.8.2"
+ fast-deep-equal "^3.1.3"
+ global "^4.4.0"
+ lodash "^4.17.20"
+ memoizerific "^1.11.3"
+ qs "^6.10.0"
+ regenerator-runtime "^0.13.7"
+ store2 "^2.12.0"
+ telejson "^5.1.0"
+ ts-dedent "^2.0.0"
+ util-deprecate "^1.0.2"
+
+"@storybook/builder-webpack4@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/builder-webpack4/-/builder-webpack4-6.2.1.tgz#4401186f5ca9f922256b804609936870555c3b9b"
+ integrity sha512-cnGBqDwkSmjKP7hd7HuJHaUVm/ILxjQ1LpXNXzPkd0My+GaG+EPxlhs3TacB9tFHWgpxlHpowAbBsb7RsRei6A==
+ dependencies:
+ "@babel/core" "^7.12.10"
+ "@babel/plugin-proposal-class-properties" "^7.12.1"
+ "@babel/plugin-proposal-decorators" "^7.12.12"
+ "@babel/plugin-proposal-export-default-from" "^7.12.1"
+ "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1"
+ "@babel/plugin-proposal-object-rest-spread" "^7.12.1"
+ "@babel/plugin-proposal-optional-chaining" "^7.12.7"
+ "@babel/plugin-proposal-private-methods" "^7.12.1"
+ "@babel/plugin-syntax-dynamic-import" "^7.8.3"
+ "@babel/plugin-transform-arrow-functions" "^7.12.1"
+ "@babel/plugin-transform-block-scoping" "^7.12.12"
+ "@babel/plugin-transform-classes" "^7.12.1"
+ "@babel/plugin-transform-destructuring" "^7.12.1"
+ "@babel/plugin-transform-for-of" "^7.12.1"
+ "@babel/plugin-transform-parameters" "^7.12.1"
+ "@babel/plugin-transform-shorthand-properties" "^7.12.1"
+ "@babel/plugin-transform-spread" "^7.12.1"
+ "@babel/plugin-transform-template-literals" "^7.12.1"
+ "@babel/preset-env" "^7.12.11"
+ "@babel/preset-react" "^7.12.10"
+ "@babel/preset-typescript" "^7.12.7"
+ "@storybook/addons" "6.2.1"
+ "@storybook/api" "6.2.1"
+ "@storybook/channel-postmessage" "6.2.1"
+ "@storybook/channels" "6.2.1"
+ "@storybook/client-api" "6.2.1"
+ "@storybook/client-logger" "6.2.1"
+ "@storybook/components" "6.2.1"
+ "@storybook/core-common" "6.2.1"
+ "@storybook/core-events" "6.2.1"
+ "@storybook/node-logger" "6.2.1"
+ "@storybook/router" "6.2.1"
+ "@storybook/semver" "^7.3.2"
+ "@storybook/theming" "6.2.1"
+ "@storybook/ui" "6.2.1"
+ "@types/node" "^14.0.10"
+ "@types/webpack" "^4.41.26"
+ autoprefixer "^9.8.6"
+ babel-loader "^8.2.2"
+ babel-plugin-macros "^2.8.0"
+ babel-plugin-polyfill-corejs3 "^0.1.0"
+ case-sensitive-paths-webpack-plugin "^2.3.0"
+ core-js "^3.8.2"
+ css-loader "^3.6.0"
+ dotenv-webpack "^1.8.0"
+ file-loader "^6.2.0"
+ find-up "^5.0.0"
+ fork-ts-checker-webpack-plugin "^4.1.6"
+ fs-extra "^9.0.1"
+ glob "^7.1.6"
+ glob-promise "^3.4.0"
+ global "^4.4.0"
+ html-webpack-plugin "^4.0.0"
+ pnp-webpack-plugin "1.6.4"
+ postcss "^7.0.35"
+ postcss-flexbugs-fixes "^4.2.1"
+ postcss-loader "^4.2.0"
+ raw-loader "^4.0.2"
+ react-dev-utils "^11.0.3"
+ stable "^0.1.8"
+ style-loader "^1.3.0"
+ terser-webpack-plugin "^3.1.0"
+ ts-dedent "^2.0.0"
+ url-loader "^4.1.1"
+ util-deprecate "^1.0.2"
+ webpack "4"
+ webpack-dev-middleware "^3.7.3"
+ webpack-filter-warnings-plugin "^1.2.1"
+ webpack-hot-middleware "^2.25.0"
+ webpack-virtual-modules "^0.2.2"
+
+"@storybook/channel-postmessage@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/channel-postmessage/-/channel-postmessage-6.2.1.tgz#9bb22ef776c315ad09caf1a149fbe16496593821"
+ integrity sha512-6AXxq8QvUzO7OI4qENux2zFiK+n9pVDDRdazZPesWYaD11jrnh7IGMYwa9a3mbVWJchVwc6b74uWUOmvMhG0cQ==
+ dependencies:
+ "@storybook/channels" "6.2.1"
+ "@storybook/client-logger" "6.2.1"
+ "@storybook/core-events" "6.2.1"
+ core-js "^3.8.2"
+ global "^4.4.0"
+ qs "^6.10.0"
+ telejson "^5.1.0"
+
+"@storybook/channels@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/channels/-/channels-6.2.1.tgz#3b9f4164dddbb5a2b1628adfaeb0e7c1321d2a1b"
+ integrity sha512-p0QopD9JFIAYkDuVqqmpObcE4apnIZUG9bccRX2yNYCaNrRl3zalV4zDY/2TiwgoFOV2ydKPKdK2ZJcDY5JItg==
+ dependencies:
+ core-js "^3.8.2"
+ ts-dedent "^2.0.0"
+ util-deprecate "^1.0.2"
+
+"@storybook/client-api@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/client-api/-/client-api-6.2.1.tgz#21433c9b9baa019bd0bcdcf7f9f96e7e7058bfdf"
+ integrity sha512-ABl83n8F1F5fsjlxcpqWMYP9HDT7stkLKCIkN4zIC0uHWMHtWOYyJzJl166nv+nLjHiQdw+kimgA2jiKQfoF3Q==
+ dependencies:
+ "@storybook/addons" "6.2.1"
+ "@storybook/channel-postmessage" "6.2.1"
+ "@storybook/channels" "6.2.1"
+ "@storybook/client-logger" "6.2.1"
+ "@storybook/core-events" "6.2.1"
+ "@storybook/csf" "0.0.1"
+ "@types/qs" "^6.9.5"
+ "@types/webpack-env" "^1.16.0"
+ core-js "^3.8.2"
+ global "^4.4.0"
+ lodash "^4.17.20"
+ memoizerific "^1.11.3"
+ qs "^6.10.0"
+ regenerator-runtime "^0.13.7"
+ stable "^0.1.8"
+ store2 "^2.12.0"
+ ts-dedent "^2.0.0"
+ util-deprecate "^1.0.2"
+
+"@storybook/client-logger@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/client-logger/-/client-logger-6.2.1.tgz#6fb8b39309cdaf6fd431bfe0fe11e4454afc910e"
+ integrity sha512-VDdSaM9MRiiFQF545GFgNJNb6hMC+JHjiV0cfJ3adrs021JE/J3d6Nc8Kn/XcpcX2cFrQsbffrOGaCAWAIllNg==
+ dependencies:
+ core-js "^3.8.2"
+ global "^4.4.0"
+
+"@storybook/components@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/components/-/components-6.2.1.tgz#da664c075844be49637c8d0b153f5a30cad68f20"
+ integrity sha512-pptXdgifINkc8K0yp55lOlqQywAyAwkuQVXAhbSGZriLn2kT6ei0GElJaEftcGlciOAUvi9H0rvcIvCAlxiPRQ==
+ dependencies:
+ "@popperjs/core" "^2.6.0"
+ "@storybook/client-logger" "6.2.1"
+ "@storybook/csf" "0.0.1"
+ "@storybook/theming" "6.2.1"
+ "@types/color-convert" "^2.0.0"
+ "@types/overlayscrollbars" "^1.12.0"
+ "@types/react-syntax-highlighter" "11.0.5"
+ color-convert "^2.0.1"
+ core-js "^3.8.2"
+ fast-deep-equal "^3.1.3"
+ global "^4.4.0"
+ lodash "^4.17.20"
+ markdown-to-jsx "^7.1.0"
+ memoizerific "^1.11.3"
+ overlayscrollbars "^1.13.1"
+ polished "^4.0.5"
+ prop-types "^15.7.2"
+ react-colorful "^5.0.1"
+ react-popper-tooltip "^3.1.1"
+ react-syntax-highlighter "^13.5.3"
+ react-textarea-autosize "^8.3.0"
+ regenerator-runtime "^0.13.7"
+ ts-dedent "^2.0.0"
+ util-deprecate "^1.0.2"
+
+"@storybook/core-client@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/core-client/-/core-client-6.2.1.tgz#4431e14b577f0dc52d2f4622e2c7fad9420edfec"
+ integrity sha512-RaHszy6H2aAFqQrF3bwJTDpkTZC7yjVpQm5yK07SQqVz5qKAWmuzeXeNTgUcLo3k54i/GQXf8Knu7Q6M3vs54A==
+ dependencies:
+ "@storybook/addons" "6.2.1"
+ "@storybook/channel-postmessage" "6.2.1"
+ "@storybook/client-api" "6.2.1"
+ "@storybook/client-logger" "6.2.1"
+ "@storybook/core-events" "6.2.1"
+ "@storybook/csf" "0.0.1"
+ "@storybook/ui" "6.2.1"
+ ansi-to-html "^0.6.11"
+ core-js "^3.8.2"
+ global "^4.4.0"
+ lodash "^4.17.20"
+ qs "^6.10.0"
+ regenerator-runtime "^0.13.7"
+ ts-dedent "^2.0.0"
+ unfetch "^4.2.0"
+ util-deprecate "^1.0.2"
+
+"@storybook/core-common@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/core-common/-/core-common-6.2.1.tgz#2f308ff3b434042938469955626434dac12c22a6"
+ integrity sha512-rr+zKt6GGpknsRQy/krt7fKMZH5Y3o5b6wldtlb65Gl2E8rVdlIP/bvrfOQ2n0je35Z68auIU9il1/xz8f4z8w==
+ dependencies:
+ "@babel/core" "^7.12.10"
+ "@babel/plugin-proposal-class-properties" "^7.12.1"
+ "@babel/plugin-proposal-decorators" "^7.12.12"
+ "@babel/plugin-proposal-export-default-from" "^7.12.1"
+ "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1"
+ "@babel/plugin-proposal-object-rest-spread" "^7.12.1"
+ "@babel/plugin-proposal-optional-chaining" "^7.12.7"
+ "@babel/plugin-proposal-private-methods" "^7.12.1"
+ "@babel/plugin-syntax-dynamic-import" "^7.8.3"
+ "@babel/plugin-transform-arrow-functions" "^7.12.1"
+ "@babel/plugin-transform-block-scoping" "^7.12.12"
+ "@babel/plugin-transform-classes" "^7.12.1"
+ "@babel/plugin-transform-destructuring" "^7.12.1"
+ "@babel/plugin-transform-for-of" "^7.12.1"
+ "@babel/plugin-transform-parameters" "^7.12.1"
+ "@babel/plugin-transform-shorthand-properties" "^7.12.1"
+ "@babel/plugin-transform-spread" "^7.12.1"
+ "@babel/preset-env" "^7.12.11"
+ "@babel/preset-react" "^7.12.10"
+ "@babel/preset-typescript" "^7.12.7"
+ "@babel/register" "^7.12.1"
+ "@storybook/node-logger" "6.2.1"
+ "@storybook/semver" "^7.3.2"
+ "@types/glob-base" "^0.3.0"
+ "@types/micromatch" "^4.0.1"
+ "@types/node" "^14.0.10"
+ "@types/pretty-hrtime" "^1.0.0"
+ babel-loader "^8.2.2"
+ babel-plugin-macros "^3.0.1"
+ babel-plugin-polyfill-corejs3 "^0.1.0"
+ chalk "^4.1.0"
+ core-js "^3.8.2"
+ express "^4.17.1"
+ file-system-cache "^1.0.5"
+ find-up "^5.0.0"
+ fork-ts-checker-webpack-plugin "^6.0.4"
+ glob "^7.1.6"
+ glob-base "^0.3.0"
+ interpret "^2.2.0"
+ json5 "^2.1.3"
+ lazy-universal-dotenv "^3.0.1"
+ micromatch "^4.0.2"
+ pkg-dir "^5.0.0"
+ pretty-hrtime "^1.0.3"
+ resolve-from "^5.0.0"
+ ts-dedent "^2.0.0"
+ util-deprecate "^1.0.2"
+ webpack "4"
+
+"@storybook/core-events@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-6.2.1.tgz#54e41fde06e07d4518e18857bc0ecf0f8d9c79c2"
+ integrity sha512-zZyVkCOQX52n0++/2ui3os6G7CSS0APqG+AlOhu8vF1O+NOknkYSTDPVncFcoWCHnWsS9ANcMwkRRGCocFKD6g==
+ dependencies:
+ core-js "^3.8.2"
+
+"@storybook/core-server@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/core-server/-/core-server-6.2.1.tgz#3d3c88de0f886842a60a789a98feb75091993f11"
+ integrity sha512-GT0jSqa7d7rfkopetK0gbJR68DChLyiU3+avtLkp2lPCiokPS226KshmvJbAwVeNrEgts4afgQzAkxx26/se/Q==
+ dependencies:
+ "@babel/core" "^7.12.10"
+ "@babel/plugin-transform-template-literals" "^7.12.1"
+ "@babel/preset-react" "^7.12.10"
+ "@storybook/addons" "6.2.1"
+ "@storybook/builder-webpack4" "6.2.1"
+ "@storybook/core-client" "6.2.1"
+ "@storybook/core-common" "6.2.1"
+ "@storybook/node-logger" "6.2.1"
+ "@storybook/semver" "^7.3.2"
+ "@storybook/theming" "6.2.1"
+ "@storybook/ui" "6.2.1"
+ "@types/node" "^14.0.10"
+ "@types/node-fetch" "^2.5.7"
+ "@types/pretty-hrtime" "^1.0.0"
+ "@types/webpack" "^4.41.26"
+ airbnb-js-shims "^2.2.1"
+ babel-loader "^8.2.2"
+ better-opn "^2.1.1"
+ boxen "^4.2.0"
+ case-sensitive-paths-webpack-plugin "^2.3.0"
+ chalk "^4.1.0"
+ cli-table3 "0.6.0"
+ commander "^6.2.1"
+ core-js "^3.8.2"
+ cpy "^8.1.1"
+ css-loader "^3.6.0"
+ detect-port "^1.3.0"
+ dotenv-webpack "^1.8.0"
+ express "^4.17.1"
+ file-loader "^6.2.0"
+ file-system-cache "^1.0.5"
+ find-up "^5.0.0"
+ fs-extra "^9.0.1"
+ global "^4.4.0"
+ html-webpack-plugin "^4.0.0"
+ ip "^1.1.5"
+ node-fetch "^2.6.1"
+ pnp-webpack-plugin "1.6.4"
+ pretty-hrtime "^1.0.3"
+ prompts "^2.4.0"
+ read-pkg-up "^7.0.1"
+ regenerator-runtime "^0.13.7"
+ resolve-from "^5.0.0"
+ serve-favicon "^2.5.0"
+ style-loader "^1.3.0"
+ telejson "^5.1.0"
+ terser-webpack-plugin "^3.1.0"
+ ts-dedent "^2.0.0"
+ url-loader "^4.1.1"
+ util-deprecate "^1.0.2"
+ webpack "4"
+ webpack-dev-middleware "^3.7.3"
+ webpack-virtual-modules "^0.2.2"
+
+"@storybook/core@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/core/-/core-6.2.1.tgz#846f25edfb4cb6ef7a7370a39b5c461bf72102e5"
+ integrity sha512-Q13btg+NggY1BoUHIAmNx6P+C3bPwV6LM+nEfNcTO4emfjCrF8j7vIpN+aRzMl+PGSU/QO+fteqp/+S9jc8HBw==
+ dependencies:
+ "@storybook/core-client" "6.2.1"
+ "@storybook/core-server" "6.2.1"
+
+"@storybook/csf@0.0.1":
+ version "0.0.1"
+ resolved "https://registry.yarnpkg.com/@storybook/csf/-/csf-0.0.1.tgz#95901507dc02f0bc6f9ac8ee1983e2fc5bb98ce6"
+ integrity sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==
+ dependencies:
+ lodash "^4.17.15"
+
+"@storybook/node-logger@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/node-logger/-/node-logger-6.2.1.tgz#80afe89a3f85e2329c46d530f4690a13d30c7c29"
+ integrity sha512-PuyLORwbvs6uB6dzbY+Uvs/LUW94yD5sbarNGIg866lIzhNT6nZOCRkiEgo7+RD1/mcMz0Lho0kh5Hob2Y5mqQ==
+ dependencies:
+ "@types/npmlog" "^4.1.2"
+ chalk "^4.1.0"
+ core-js "^3.8.2"
+ npmlog "^4.1.2"
+ pretty-hrtime "^1.0.3"
+
+"@storybook/postinstall@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/postinstall/-/postinstall-6.2.1.tgz#71c276cf658ab42b1fd67f965330941c6e47786a"
+ integrity sha512-NpATQ8qt09/+0FdWpUJ/G/R0SKO9yPcMrOSoub4Knmhr+aBgIoGfQxDl0pwEzvHw6Ookt0eM4k++7wNO8hCa4A==
+ dependencies:
+ core-js "^3.8.2"
+
+"@storybook/react@^6.1.11":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/react/-/react-6.2.1.tgz#d07d5dc3b48823527a6a632189008d4a2c9399be"
+ integrity sha512-k9muo4BqItVnCNx45uQAUP9gQOtEBMQljrUD+UesTxZ11gfWPE4QeUHryJJUsA3ojKtUN8VAQawwHp/5cSFDFw==
+ dependencies:
+ "@babel/preset-flow" "^7.12.1"
+ "@babel/preset-react" "^7.12.10"
+ "@pmmmwh/react-refresh-webpack-plugin" "^0.4.3"
+ "@storybook/addons" "6.2.1"
+ "@storybook/core" "6.2.1"
+ "@storybook/core-common" "6.2.1"
+ "@storybook/node-logger" "6.2.1"
+ "@storybook/semver" "^7.3.2"
+ "@types/webpack-env" "^1.16.0"
+ babel-plugin-add-react-displayname "^0.0.5"
+ babel-plugin-named-asset-import "^0.3.1"
+ babel-plugin-react-docgen "^4.2.1"
+ core-js "^3.8.2"
+ global "^4.4.0"
+ lodash "^4.17.20"
+ prop-types "^15.7.2"
+ react-dev-utils "^11.0.3"
+ react-docgen-typescript-plugin "^0.6.2"
+ react-refresh "^0.8.3"
+ read-pkg-up "^7.0.1"
+ regenerator-runtime "^0.13.7"
+ ts-dedent "^2.0.0"
+ webpack "4"
+
+"@storybook/router@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/router/-/router-6.2.1.tgz#45a40a13c0cbae54ac4034e3d461d0e9a3f80bcb"
+ integrity sha512-gG4c7NB/z/8zaJjkMFPA4jzENFPg+eywzHK6deuja3iXiEHLd/O0nqwQh1jzxOXLNMWjrCrGm/TTOrz8LbO5Lw==
+ dependencies:
+ "@reach/router" "^1.3.4"
+ "@storybook/client-logger" "6.2.1"
+ "@types/reach__router" "^1.3.7"
+ core-js "^3.8.2"
+ fast-deep-equal "^3.1.3"
+ global "^4.4.0"
+ lodash "^4.17.20"
+ memoizerific "^1.11.3"
+ qs "^6.10.0"
+ ts-dedent "^2.0.0"
+
+"@storybook/semver@^7.3.2":
+ version "7.3.2"
+ resolved "https://registry.yarnpkg.com/@storybook/semver/-/semver-7.3.2.tgz#f3b9c44a1c9a0b933c04e66d0048fcf2fa10dac0"
+ integrity sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==
+ dependencies:
+ core-js "^3.6.5"
+ find-up "^4.1.0"
+
+"@storybook/source-loader@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/source-loader/-/source-loader-6.2.1.tgz#547d9dd0590987ba427a2e0fb8bbbf5567165b88"
+ integrity sha512-amK+jAi1UqU6T2QMUnx7o1lMBA0ex2FsoPtzMQR3n758VDw22pd3Fs9GiCsRLAYeTLH9dVoH8FwB3MstpAEhuw==
+ dependencies:
+ "@storybook/addons" "6.2.1"
+ "@storybook/client-logger" "6.2.1"
+ "@storybook/csf" "0.0.1"
+ core-js "^3.8.2"
+ estraverse "^5.2.0"
+ global "^4.4.0"
+ loader-utils "^2.0.0"
+ lodash "^4.17.20"
+ prettier "~2.2.1"
+ regenerator-runtime "^0.13.7"
+
+"@storybook/theming@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-6.2.1.tgz#ad0ebc0a22560b775eca691b5e72c9db235eaf07"
+ integrity sha512-4sX3Qy6mgYlWpJcJx3AmMfzXhj/o/lVpux9MdhNDRFkDU958k7NhoSdny3ahg59C9t7yQ4chakZynKLgnVkFTA==
+ dependencies:
+ "@emotion/core" "^10.1.1"
+ "@emotion/is-prop-valid" "^0.8.6"
+ "@emotion/styled" "^10.0.27"
+ "@storybook/client-logger" "6.2.1"
+ core-js "^3.8.2"
+ deep-object-diff "^1.1.0"
+ emotion-theming "^10.0.27"
+ global "^4.4.0"
+ memoizerific "^1.11.3"
+ polished "^4.0.5"
+ resolve-from "^5.0.0"
+ ts-dedent "^2.0.0"
+
+"@storybook/ui@6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@storybook/ui/-/ui-6.2.1.tgz#ea2567dc14240a67b14a9bec9bc672c01d6e1430"
+ integrity sha512-RUK1feL5XWftXzOxuKvsv8Y6fsznQpOuROgTFhzAJtusyhcqOKMr74BOLX5Ldkb6Le0OVA65nGwxannhzG2dMA==
+ dependencies:
+ "@emotion/core" "^10.1.1"
+ "@storybook/addons" "6.2.1"
+ "@storybook/api" "6.2.1"
+ "@storybook/channels" "6.2.1"
+ "@storybook/client-logger" "6.2.1"
+ "@storybook/components" "6.2.1"
+ "@storybook/core-events" "6.2.1"
+ "@storybook/router" "6.2.1"
+ "@storybook/semver" "^7.3.2"
+ "@storybook/theming" "6.2.1"
+ "@types/markdown-to-jsx" "^6.11.3"
+ copy-to-clipboard "^3.3.1"
+ core-js "^3.8.2"
+ core-js-pure "^3.8.2"
+ downshift "^6.0.15"
+ emotion-theming "^10.0.27"
+ fuse.js "^3.6.1"
+ global "^4.4.0"
+ lodash "^4.17.20"
+ markdown-to-jsx "^6.11.4"
+ memoizerific "^1.11.3"
+ polished "^4.0.5"
+ qs "^6.10.0"
+ react-draggable "^4.4.3"
+ react-helmet-async "^1.0.7"
+ react-sizeme "^3.0.1"
+ regenerator-runtime "^0.13.7"
+ resolve-from "^5.0.0"
+ store2 "^2.12.0"
+
+"@surma/rollup-plugin-off-main-thread@^1.4.1":
+ version "1.4.2"
+ resolved "https://registry.yarnpkg.com/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz#e6786b6af5799f82f7ab3a82e53f6182d2b91a58"
+ integrity sha512-yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A==
+ dependencies:
+ ejs "^2.6.1"
+ magic-string "^0.25.0"
+
+"@szmarczak/http-timer@^1.1.2":
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421"
+ integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==
+ dependencies:
+ defer-to-connect "^1.0.1"
+
+"@testing-library/dom@*":
+ version "7.30.3"
+ resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-7.30.3.tgz#779ea9bbb92d63302461800a388a5a890ac22519"
+ integrity sha512-7JhIg2MW6WPwyikH2iL3o7z+FTVgSOd2jqCwTAHqK7Qal2gRRYiUQyURAxtbK9VXm/UTyG9bRihv8C5Tznr2zw==
+ dependencies:
+ "@babel/code-frame" "^7.10.4"
+ "@babel/runtime" "^7.12.5"
+ "@types/aria-query" "^4.2.0"
+ aria-query "^4.2.2"
+ chalk "^4.1.0"
+ dom-accessibility-api "^0.5.4"
+ lz-string "^1.4.4"
+ pretty-format "^26.6.2"
+
+"@types/anymatch@*":
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a"
+ integrity sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==
+
+"@types/aria-query@^4.2.0":
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-4.2.1.tgz#78b5433344e2f92e8b306c06a5622c50c245bf6b"
+ integrity sha512-S6oPal772qJZHoRZLFc/XoZW2gFvwXusYUmXPXkgxJLuEk2vOt7jc4Yo6z/vtI0EBkbPBVrJJ0B+prLIKiWqHg==
+
+"@types/babel__core@^7.1.14":
+ version "7.1.14"
+ resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.14.tgz#faaeefc4185ec71c389f4501ee5ec84b170cc402"
+ integrity sha512-zGZJzzBUVDo/eV6KgbE0f0ZI7dInEYvo12Rb70uNQDshC3SkRMb67ja0GgRHZgAX3Za6rhaWlvbDO8rrGyAb1g==
+ dependencies:
+ "@babel/parser" "^7.1.0"
+ "@babel/types" "^7.0.0"
+ "@types/babel__generator" "*"
+ "@types/babel__template" "*"
+ "@types/babel__traverse" "*"
+
+"@types/babel__generator@*":
+ version "7.6.2"
+ resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.2.tgz#f3d71178e187858f7c45e30380f8f1b7415a12d8"
+ integrity sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==
+ dependencies:
+ "@babel/types" "^7.0.0"
+
+"@types/babel__template@*":
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.0.tgz#0c888dd70b3ee9eebb6e4f200e809da0076262be"
+ integrity sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==
+ dependencies:
+ "@babel/parser" "^7.1.0"
+ "@babel/types" "^7.0.0"
+
+"@types/babel__traverse@*":
+ version "7.11.1"
+ resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.11.1.tgz#654f6c4f67568e24c23b367e947098c6206fa639"
+ integrity sha512-Vs0hm0vPahPMYi9tDjtP66llufgO3ST16WXaSTtDGEl9cewAl3AibmxWw6TINOqHPT9z0uABKAYjT9jNSg4npw==
+ dependencies:
+ "@babel/types" "^7.3.0"
+
+"@types/braces@*":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@types/braces/-/braces-3.0.0.tgz#7da1c0d44ff1c7eb660a36ec078ea61ba7eb42cb"
+ integrity sha512-TbH79tcyi9FHwbyboOKeRachRq63mSuWYXOflsNO9ZyE5ClQ/JaozNKl+aWUq87qPNsXasXxi2AbgfwIJ+8GQw==
+
+"@types/color-convert@^2.0.0":
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/@types/color-convert/-/color-convert-2.0.0.tgz#8f5ee6b9e863dcbee5703f5a517ffb13d3ea4e22"
+ integrity sha512-m7GG7IKKGuJUXvkZ1qqG3ChccdIM/qBBo913z+Xft0nKCX4hAU/IxKwZBU4cpRZ7GS5kV4vOblUkILtSShCPXQ==
+ dependencies:
+ "@types/color-name" "*"
+
+"@types/color-name@*":
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0"
+ integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==
+
+"@types/estree@0.0.39":
+ version "0.0.39"
+ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
+ integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
+
+"@types/fined@*":
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/@types/fined/-/fined-1.1.2.tgz#05d2b9f93d144855c97c18c9675f424ed01400c4"
+ integrity sha512-hzzTS+X9EqDhx4vwdch/DOZci/bfh5J6Nyz8lqvyfBg2ROx2fPafX+LpDfpVgSvQKj0EYkwTYpBO3z2etwbkOw==
+
+"@types/glob-base@^0.3.0":
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/@types/glob-base/-/glob-base-0.3.0.tgz#a581d688347e10e50dd7c17d6f2880a10354319d"
+ integrity sha1-pYHWiDR+EOUN18F9byiAoQNUMZ0=
+
+"@types/glob@*", "@types/glob@^7.1.1":
+ version "7.1.3"
+ resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.3.tgz#e6ba80f36b7daad2c685acd9266382e68985c183"
+ integrity sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==
+ dependencies:
+ "@types/minimatch" "*"
+ "@types/node" "*"
+
+"@types/graceful-fs@^4.1.2":
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15"
+ integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==
+ dependencies:
+ "@types/node" "*"
+
+"@types/hast@^2.0.0":
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.1.tgz#b16872f2a6144c7025f296fb9636a667ebb79cd9"
+ integrity sha512-viwwrB+6xGzw+G1eWpF9geV3fnsDgXqHG+cqgiHrvQfDUW5hzhCyV7Sy3UJxhfRFBsgky2SSW33qi/YrIkjX5Q==
+ dependencies:
+ "@types/unist" "*"
+
+"@types/hoist-non-react-statics@*":
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz#1124aafe5118cb591977aeb1ceaaed1070eb039f"
+ integrity sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==
+ dependencies:
+ "@types/react" "*"
+ hoist-non-react-statics "^3.3.0"
+
+"@types/html-minifier-terser@^5.0.0":
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#3c9ee980f1a10d6021ae6632ca3e79ca2ec4fb50"
+ integrity sha512-giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA==
+
+"@types/inquirer@^6.5.0":
+ version "6.5.0"
+ resolved "https://registry.yarnpkg.com/@types/inquirer/-/inquirer-6.5.0.tgz#b83b0bf30b88b8be7246d40e51d32fe9d10e09be"
+ integrity sha512-rjaYQ9b9y/VFGOpqBEXRavc3jh0a+e6evAbI31tMda8VlPaSy0AZJfXsvmIe3wklc7W6C3zCSfleuMXR7NOyXw==
+ dependencies:
+ "@types/through" "*"
+ rxjs "^6.4.0"
+
+"@types/interpret@*":
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/@types/interpret/-/interpret-1.1.1.tgz#b1bf85b0420e2414b989ce237658ad20dc03719b"
+ integrity sha512-HZ4d0m2Ebl8DmrOdYZHgYyipj/8Ftq1/ssB/oQR7fqfUrwtTP7IW3BDi2V445nhPBLzZjEkApaPVp83moSCXlA==
+ dependencies:
+ "@types/node" "*"
+
+"@types/is-function@^1.0.0":
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/@types/is-function/-/is-function-1.0.0.tgz#1b0b819b1636c7baf0d6785d030d12edf70c3e83"
+ integrity sha512-iTs9HReBu7evG77Q4EC8hZnqRt57irBDkK9nvmHroiOIVwYMQc4IvYvdRgwKfYepunIY7Oh/dBuuld+Gj9uo6w==
+
+"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0":
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762"
+ integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==
+
+"@types/istanbul-lib-report@*":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686"
+ integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==
+ dependencies:
+ "@types/istanbul-lib-coverage" "*"
+
+"@types/istanbul-reports@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz#508b13aa344fa4976234e75dddcc34925737d821"
+ integrity sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==
+ dependencies:
+ "@types/istanbul-lib-report" "*"
+
+"@types/json-schema@^7.0.3", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6":
+ version "7.0.7"
+ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad"
+ integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==
+
+"@types/liftoff@^2.5.0":
+ version "2.5.0"
+ resolved "https://registry.yarnpkg.com/@types/liftoff/-/liftoff-2.5.0.tgz#aa5f030ae0952d1b86225f3e9f27f6d5b69714aa"
+ integrity sha512-1jsThE//wKDK+hYM+NJqswI+K9lfR0YNMctteOxAzk/aemI0rQsVDk6Dia0zkPfBWFTh+hiDmrGQXqP1tyM+eg==
+ dependencies:
+ "@types/fined" "*"
+ "@types/interpret" "*"
+ "@types/node" "*"
+
+"@types/markdown-to-jsx@^6.11.3":
+ version "6.11.3"
+ resolved "https://registry.yarnpkg.com/@types/markdown-to-jsx/-/markdown-to-jsx-6.11.3.tgz#cdd1619308fecbc8be7e6a26f3751260249b020e"
+ integrity sha512-30nFYpceM/ZEvhGiqWjm5quLUxNeld0HCzJEXMZZDpq53FPkS85mTwkWtCXzCqq8s5JYLgM5W392a02xn8Bdaw==
+ dependencies:
+ "@types/react" "*"
+
+"@types/mdast@^3.0.0":
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.3.tgz#2d7d671b1cd1ea3deb306ea75036c2a0407d2deb"
+ integrity sha512-SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw==
+ dependencies:
+ "@types/unist" "*"
+
+"@types/micromatch@^4.0.1":
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/@types/micromatch/-/micromatch-4.0.1.tgz#9381449dd659fc3823fd2a4190ceacc985083bc7"
+ integrity sha512-my6fLBvpY70KattTNzYOK6KU1oR1+UCz9ug/JbcF5UrEmeCt9P7DV2t7L8+t18mMPINqGQCE4O8PLOPbI84gxw==
+ dependencies:
+ "@types/braces" "*"
+
+"@types/minimatch@*":
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.4.tgz#f0ec25dbf2f0e4b18647313ac031134ca5b24b21"
+ integrity sha512-1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA==
+
+"@types/node-fetch@^2.5.7":
+ version "2.5.8"
+ resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.5.8.tgz#e199c835d234c7eb0846f6618012e558544ee2fb"
+ integrity sha512-fbjI6ja0N5ZA8TV53RUqzsKNkl9fv8Oj3T7zxW7FGv1GSH7gwJaNF8dzCjrqKaxKeUpTz4yT1DaJFq/omNpGfw==
+ dependencies:
+ "@types/node" "*"
+ form-data "^3.0.0"
+
+"@types/node@*", "@types/node@^14.0.10", "@types/node@^14.14.26":
+ version "14.14.37"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.37.tgz#a3dd8da4eb84a996c36e331df98d82abd76b516e"
+ integrity sha512-XYmBiy+ohOR4Lh5jE379fV2IU+6Jn4g5qASinhitfyO71b/sCo6MKsMLF5tc7Zf2CE8hViVQyYSobJNke8OvUw==
+
+"@types/normalize-package-data@^2.4.0":
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e"
+ integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==
+
+"@types/npmlog@^4.1.2":
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/@types/npmlog/-/npmlog-4.1.2.tgz#d070fe6a6b78755d1092a3dc492d34c3d8f871c4"
+ integrity sha512-4QQmOF5KlwfxJ5IGXFIudkeLCdMABz03RcUXu+LCb24zmln8QW6aDjuGl4d4XPVLf2j+FnjelHTP7dvceAFbhA==
+
+"@types/overlayscrollbars@^1.12.0":
+ version "1.12.0"
+ resolved "https://registry.yarnpkg.com/@types/overlayscrollbars/-/overlayscrollbars-1.12.0.tgz#98456caceca8ad73bd5bb572632a585074e70764"
+ integrity sha512-h/pScHNKi4mb+TrJGDon8Yb06ujFG0mSg12wIO0sWMUF3dQIe2ExRRdNRviaNt9IjxIiOfnRr7FsQAdHwK4sMg==
+
+"@types/parse-json@^4.0.0":
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
+ integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
+
+"@types/parse5@^5.0.0":
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/@types/parse5/-/parse5-5.0.3.tgz#e7b5aebbac150f8b5fdd4a46e7f0bd8e65e19109"
+ integrity sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==
+
+"@types/pretty-hrtime@^1.0.0":
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/@types/pretty-hrtime/-/pretty-hrtime-1.0.0.tgz#c5a2d644a135e988b2932f99737e67b3c62528d0"
+ integrity sha512-xl+5r2rcrxdLViAYkkiLMYsoUs3qEyrAnHFyEzYysgRxdVp3WbhysxIvJIxZp9FvZ2CYezh0TaHZorivH+voOQ==
+
+"@types/prop-types@*":
+ version "15.7.3"
+ resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7"
+ integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==
+
+"@types/qs@^6.9.5":
+ version "6.9.6"
+ resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.6.tgz#df9c3c8b31a247ec315e6996566be3171df4b3b1"
+ integrity sha512-0/HnwIfW4ki2D8L8c9GVcG5I72s9jP5GSLVF0VIXDW00kmIpA6O33G7a8n59Tmh7Nz0WUC3rSb7PTY/sdW2JzA==
+
+"@types/reach__router@^1.3.7":
+ version "1.3.7"
+ resolved "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.3.7.tgz#de8ab374259ae7f7499fc1373b9697a5f3cd6428"
+ integrity sha512-cyBEb8Ef3SJNH5NYEIDGPoMMmYUxROatuxbICusVRQIqZUB85UCt6R2Ok60tKS/TABJsJYaHyNTW3kqbpxlMjg==
+ dependencies:
+ "@types/react" "*"
+
+"@types/react-icons@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@types/react-icons/-/react-icons-3.0.0.tgz#27ca2823a6add881d06a371bfff093afc1b9c829"
+ integrity sha512-Vefs6LkLqF61vfV7AiAqls+vpR94q67gunhMueDznG+msAkrYgRxl7gYjNem/kZ+as2l2mNChmF1jRZzzQQtMg==
+ dependencies:
+ react-icons "*"
+
+"@types/react-syntax-highlighter@11.0.5":
+ version "11.0.5"
+ resolved "https://registry.yarnpkg.com/@types/react-syntax-highlighter/-/react-syntax-highlighter-11.0.5.tgz#0d546261b4021e1f9d85b50401c0a42acb106087"
+ integrity sha512-VIOi9i2Oj5XsmWWoB72p3KlZoEbdRAcechJa8Ztebw7bDl2YmR+odxIqhtJGp1q2EozHs02US+gzxJ9nuf56qg==
+ dependencies:
+ "@types/react" "*"
+
+"@types/react-tabs@^2.3.2":
+ version "2.3.2"
+ resolved "https://registry.yarnpkg.com/@types/react-tabs/-/react-tabs-2.3.2.tgz#99fb6866bbc6912d44f7bbc99eca03fbbd217960"
+ integrity sha512-QfMelaJSdMcp+CenKhATp12XFFqqUcLXILgwpX3dgWfVYNZPtsLXZDDCRsVn+kwmBOWB+DFPKpQorxbUhnXINw==
+ dependencies:
+ "@types/react" "*"
+
+"@types/react@*", "@types/react@^17.0.0":
+ version "17.0.3"
+ resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.3.tgz#ba6e215368501ac3826951eef2904574c262cc79"
+ integrity sha512-wYOUxIgs2HZZ0ACNiIayItyluADNbONl7kt8lkLjVK8IitMH5QMyAh75Fwhmo37r1m7L2JaFj03sIfxBVDvRAg==
+ dependencies:
+ "@types/prop-types" "*"
+ "@types/scheduler" "*"
+ csstype "^3.0.2"
+
+"@types/resolve@1.17.1":
+ version "1.17.1"
+ resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6"
+ integrity sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==
+ dependencies:
+ "@types/node" "*"
+
+"@types/scheduler@*":
+ version "0.16.1"
+ resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.1.tgz#18845205e86ff0038517aab7a18a62a6b9f71275"
+ integrity sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA==
+
+"@types/source-list-map@*":
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9"
+ integrity sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==
+
+"@types/styled-components@^5.1.7":
+ version "5.1.9"
+ resolved "https://registry.yarnpkg.com/@types/styled-components/-/styled-components-5.1.9.tgz#00d3d84b501420521c4db727e3c195459f87a6cf"
+ integrity sha512-kbEG6YlwK8rucITpKEr6pA4Ho9KSQHUUOzZ9lY3va1mtcjvS3D0wDciFyHEiNHKLL/npZCKDQJqm0x44sPO9oA==
+ dependencies:
+ "@types/hoist-non-react-statics" "*"
+ "@types/react" "*"
+ csstype "^3.0.2"
+
+"@types/tapable@^1", "@types/tapable@^1.0.5":
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.7.tgz#545158342f949e8fd3bfd813224971ecddc3fac4"
+ integrity sha512-0VBprVqfgFD7Ehb2vd8Lh9TG3jP98gvr8rgehQqzztZNI7o8zS8Ad4jyZneKELphpuE212D8J70LnSNQSyO6bQ==
+
+"@types/testing-library__dom@^7.5.0":
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@types/testing-library__dom/-/testing-library__dom-7.5.0.tgz#e0a00dd766983b1d6e9d10d33e708005ce6ad13e"
+ integrity sha512-mj1aH4cj3XUpMEgVpognma5kHVtbm6U6cHZmEFzCRiXPvKkuHrFr3+yXdGLXvfFRBaQIVshPGHI+hGTOJlhS/g==
+ dependencies:
+ "@testing-library/dom" "*"
+
+"@types/through@*":
+ version "0.0.30"
+ resolved "https://registry.yarnpkg.com/@types/through/-/through-0.0.30.tgz#e0e42ce77e897bd6aead6f6ea62aeb135b8a3895"
+ integrity sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==
+ dependencies:
+ "@types/node" "*"
+
+"@types/uglify-js@*":
+ version "3.13.0"
+ resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.13.0.tgz#1cad8df1fb0b143c5aba08de5712ea9d1ff71124"
+ integrity sha512-EGkrJD5Uy+Pg0NUR8uA4bJ5WMfljyad0G+784vLCNUkD+QwOJXUbBYExXfVGf7YtyzdQp3L/XMYcliB987kL5Q==
+ dependencies:
+ source-map "^0.6.1"
+
+"@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2", "@types/unist@^2.0.3":
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e"
+ integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==
+
+"@types/webpack-env@^1.16.0":
+ version "1.16.0"
+ resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.16.0.tgz#8c0a9435dfa7b3b1be76562f3070efb3f92637b4"
+ integrity sha512-Fx+NpfOO0CpeYX2g9bkvX8O5qh9wrU1sOF4g8sft4Mu7z+qfe387YlyY8w8daDyDsKY5vUxM0yxkAYnbkRbZEw==
+
+"@types/webpack-sources@*":
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-2.1.0.tgz#8882b0bd62d1e0ce62f183d0d01b72e6e82e8c10"
+ integrity sha512-LXn/oYIpBeucgP1EIJbKQ2/4ZmpvRl+dlrFdX7+94SKRUV3Evy3FsfMZY318vGhkWUS5MPhtOM3w1/hCOAOXcg==
+ dependencies:
+ "@types/node" "*"
+ "@types/source-list-map" "*"
+ source-map "^0.7.3"
+
+"@types/webpack@^4.4.31", "@types/webpack@^4.41.26", "@types/webpack@^4.41.8":
+ version "4.41.27"
+ resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.27.tgz#f47da488c8037e7f1b2dbf2714fbbacb61ec0ffc"
+ integrity sha512-wK/oi5gcHi72VMTbOaQ70VcDxSQ1uX8S2tukBK9ARuGXrYM/+u4ou73roc7trXDNmCxCoerE8zruQqX/wuHszA==
+ dependencies:
+ "@types/anymatch" "*"
+ "@types/node" "*"
+ "@types/tapable" "^1"
+ "@types/uglify-js" "*"
+ "@types/webpack-sources" "*"
+ source-map "^0.6.0"
+
+"@types/yargs-parser@*":
+ version "20.2.0"
+ resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.0.tgz#dd3e6699ba3237f0348cd085e4698780204842f9"
+ integrity sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA==
+
+"@types/yargs@^15.0.0":
+ version "15.0.13"
+ resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.13.tgz#34f7fec8b389d7f3c1fd08026a5763e072d3c6dc"
+ integrity sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==
+ dependencies:
+ "@types/yargs-parser" "*"
+
+"@typescript-eslint/eslint-plugin@^4.15.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.20.0.tgz#9d8794bd99aad9153092ad13c96164e3082e9a92"
+ integrity sha512-sw+3HO5aehYqn5w177z2D82ZQlqHCwcKSMboueo7oE4KU9QiC0SAgfS/D4z9xXvpTc8Bt41Raa9fBR8T2tIhoQ==
+ dependencies:
+ "@typescript-eslint/experimental-utils" "4.20.0"
+ "@typescript-eslint/scope-manager" "4.20.0"
+ debug "^4.1.1"
+ functional-red-black-tree "^1.0.1"
+ lodash "^4.17.15"
+ regexpp "^3.0.0"
+ semver "^7.3.2"
+ tsutils "^3.17.1"
+
+"@typescript-eslint/experimental-utils@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.20.0.tgz#a8ab2d7b61924f99042b7d77372996d5f41dc44b"
+ integrity sha512-sQNlf6rjLq2yB5lELl3gOE7OuoA/6IVXJUJ+Vs7emrQMva14CkOwyQwD7CW+TkmOJ4Q/YGmoDLmbfFrpGmbKng==
+ dependencies:
+ "@types/json-schema" "^7.0.3"
+ "@typescript-eslint/scope-manager" "4.20.0"
+ "@typescript-eslint/types" "4.20.0"
+ "@typescript-eslint/typescript-estree" "4.20.0"
+ eslint-scope "^5.0.0"
+ eslint-utils "^2.0.0"
+
+"@typescript-eslint/parser@^4.11.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.20.0.tgz#8dd403c8b4258b99194972d9799e201b8d083bdd"
+ integrity sha512-m6vDtgL9EABdjMtKVw5rr6DdeMCH3OA1vFb0dAyuZSa3e5yw1YRzlwFnm9knma9Lz6b2GPvoNSa8vOXrqsaglA==
+ dependencies:
+ "@typescript-eslint/scope-manager" "4.20.0"
+ "@typescript-eslint/types" "4.20.0"
+ "@typescript-eslint/typescript-estree" "4.20.0"
+ debug "^4.1.1"
+
+"@typescript-eslint/scope-manager@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.20.0.tgz#953ecbf3b00845ece7be66246608be9d126d05ca"
+ integrity sha512-/zm6WR6iclD5HhGpcwl/GOYDTzrTHmvf8LLLkwKqqPKG6+KZt/CfSgPCiybshmck66M2L5fWSF/MKNuCwtKQSQ==
+ dependencies:
+ "@typescript-eslint/types" "4.20.0"
+ "@typescript-eslint/visitor-keys" "4.20.0"
+
+"@typescript-eslint/types@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.20.0.tgz#c6cf5ef3c9b1c8f699a9bbdafb7a1da1ca781225"
+ integrity sha512-cYY+1PIjei1nk49JAPnH1VEnu7OYdWRdJhYI5wiKOUMhLTG1qsx5cQxCUTuwWCmQoyriadz3Ni8HZmGSofeC+w==
+
+"@typescript-eslint/typescript-estree@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.20.0.tgz#8b3b08f85f18a8da5d88f65cb400f013e88ab7be"
+ integrity sha512-Knpp0reOd4ZsyoEJdW8i/sK3mtZ47Ls7ZHvD8WVABNx5Xnn7KhenMTRGegoyMTx6TiXlOVgMz9r0pDgXTEEIHA==
+ dependencies:
+ "@typescript-eslint/types" "4.20.0"
+ "@typescript-eslint/visitor-keys" "4.20.0"
+ debug "^4.1.1"
+ globby "^11.0.1"
+ is-glob "^4.0.1"
+ semver "^7.3.2"
+ tsutils "^3.17.1"
+
+"@typescript-eslint/visitor-keys@4.20.0":
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.20.0.tgz#1e84db034da13f208325e6bfc995c3b75f7dbd62"
+ integrity sha512-NXKRM3oOVQL8yNFDNCZuieRIwZ5UtjNLYtmMx2PacEAGmbaEYtGgVHUHVyZvU/0rYZcizdrWjDo+WBtRPSgq+A==
+ dependencies:
+ "@typescript-eslint/types" "4.20.0"
+ eslint-visitor-keys "^2.0.0"
+
+"@webassemblyjs/ast@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
+ integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==
+ dependencies:
+ "@webassemblyjs/helper-module-context" "1.9.0"
+ "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
+ "@webassemblyjs/wast-parser" "1.9.0"
+
+"@webassemblyjs/floating-point-hex-parser@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4"
+ integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==
+
+"@webassemblyjs/helper-api-error@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2"
+ integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==
+
+"@webassemblyjs/helper-buffer@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00"
+ integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==
+
+"@webassemblyjs/helper-code-frame@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27"
+ integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==
+ dependencies:
+ "@webassemblyjs/wast-printer" "1.9.0"
+
+"@webassemblyjs/helper-fsm@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8"
+ integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==
+
+"@webassemblyjs/helper-module-context@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07"
+ integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+
+"@webassemblyjs/helper-wasm-bytecode@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790"
+ integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==
+
+"@webassemblyjs/helper-wasm-section@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346"
+ integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/helper-buffer" "1.9.0"
+ "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
+ "@webassemblyjs/wasm-gen" "1.9.0"
+
+"@webassemblyjs/ieee754@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4"
+ integrity sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==
+ dependencies:
+ "@xtuc/ieee754" "^1.2.0"
+
+"@webassemblyjs/leb128@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95"
+ integrity sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==
+ dependencies:
+ "@xtuc/long" "4.2.2"
+
+"@webassemblyjs/utf8@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab"
+ integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==
+
+"@webassemblyjs/wasm-edit@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf"
+ integrity sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/helper-buffer" "1.9.0"
+ "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
+ "@webassemblyjs/helper-wasm-section" "1.9.0"
+ "@webassemblyjs/wasm-gen" "1.9.0"
+ "@webassemblyjs/wasm-opt" "1.9.0"
+ "@webassemblyjs/wasm-parser" "1.9.0"
+ "@webassemblyjs/wast-printer" "1.9.0"
+
+"@webassemblyjs/wasm-gen@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c"
+ integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
+ "@webassemblyjs/ieee754" "1.9.0"
+ "@webassemblyjs/leb128" "1.9.0"
+ "@webassemblyjs/utf8" "1.9.0"
+
+"@webassemblyjs/wasm-opt@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61"
+ integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/helper-buffer" "1.9.0"
+ "@webassemblyjs/wasm-gen" "1.9.0"
+ "@webassemblyjs/wasm-parser" "1.9.0"
+
+"@webassemblyjs/wasm-parser@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e"
+ integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/helper-api-error" "1.9.0"
+ "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
+ "@webassemblyjs/ieee754" "1.9.0"
+ "@webassemblyjs/leb128" "1.9.0"
+ "@webassemblyjs/utf8" "1.9.0"
+
+"@webassemblyjs/wast-parser@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914"
+ integrity sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/floating-point-hex-parser" "1.9.0"
+ "@webassemblyjs/helper-api-error" "1.9.0"
+ "@webassemblyjs/helper-code-frame" "1.9.0"
+ "@webassemblyjs/helper-fsm" "1.9.0"
+ "@xtuc/long" "4.2.2"
+
+"@webassemblyjs/wast-printer@1.9.0":
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899"
+ integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/wast-parser" "1.9.0"
+ "@xtuc/long" "4.2.2"
+
+"@xtuc/ieee754@^1.2.0":
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
+ integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==
+
+"@xtuc/long@4.2.2":
+ version "4.2.2"
+ resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d"
+ integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
+
+accepts@~1.3.5, accepts@~1.3.7:
+ version "1.3.7"
+ resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
+ integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==
+ dependencies:
+ mime-types "~2.1.24"
+ negotiator "0.6.2"
+
+acorn-jsx@^5.3.1:
+ version "5.3.1"
+ resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b"
+ integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==
+
+acorn-walk@^7.2.0:
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
+ integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
+
+acorn@^6.4.1:
+ version "6.4.2"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6"
+ integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==
+
+acorn@^7.4.0, acorn@^7.4.1:
+ version "7.4.1"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
+ integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
+
+address@1.1.2, address@^1.0.1:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6"
+ integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==
+
+aggregate-error@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
+ integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==
+ dependencies:
+ clean-stack "^2.0.0"
+ indent-string "^4.0.0"
+
+airbnb-js-shims@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/airbnb-js-shims/-/airbnb-js-shims-2.2.1.tgz#db481102d682b98ed1daa4c5baa697a05ce5c040"
+ integrity sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==
+ dependencies:
+ array-includes "^3.0.3"
+ array.prototype.flat "^1.2.1"
+ array.prototype.flatmap "^1.2.1"
+ es5-shim "^4.5.13"
+ es6-shim "^0.35.5"
+ function.prototype.name "^1.1.0"
+ globalthis "^1.0.0"
+ object.entries "^1.1.0"
+ object.fromentries "^2.0.0 || ^1.0.0"
+ object.getownpropertydescriptors "^2.0.3"
+ object.values "^1.1.0"
+ promise.allsettled "^1.0.0"
+ promise.prototype.finally "^3.1.0"
+ string.prototype.matchall "^4.0.0 || ^3.0.1"
+ string.prototype.padend "^3.0.0"
+ string.prototype.padstart "^3.0.0"
+ symbol.prototype.description "^1.0.0"
+
+ajv-errors@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d"
+ integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
+
+ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2:
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
+ integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
+
+ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.12.4, ajv@^6.12.5:
+ version "6.12.6"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
+ integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
+ dependencies:
+ fast-deep-equal "^3.1.1"
+ fast-json-stable-stringify "^2.0.0"
+ json-schema-traverse "^0.4.1"
+ uri-js "^4.2.2"
+
+ajv@^8.0.1:
+ version "8.0.3"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.0.3.tgz#81f1b07003b329f000b7912e59a24f52392867b6"
+ integrity sha512-Df6NAivu9KpZw+q8ySijAgLvr1mUA5ihkRvCLCxpdYR21ann5yIuN+PpFxmweSj7i3yjJ0x5LN5KVs0RRzskAQ==
+ dependencies:
+ fast-deep-equal "^3.1.1"
+ json-schema-traverse "^1.0.0"
+ require-from-string "^2.0.2"
+ uri-js "^4.2.2"
+
+anser@1.4.9:
+ version "1.4.9"
+ resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.9.tgz#1f85423a5dcf8da4631a341665ff675b96845760"
+ integrity sha512-AI+BjTeGt2+WFk4eWcqbQ7snZpDBt8SaLlj0RT2h5xfdWaiy51OjYvqwMrNzJLGy8iOAL6nKDITWO+rd4MkYEA==
+
+ansi-align@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.0.tgz#b536b371cf687caaef236c18d3e21fe3797467cb"
+ integrity sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==
+ dependencies:
+ string-width "^3.0.0"
+
+ansi-colors@^3.0.0:
+ version "3.2.4"
+ resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf"
+ integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==
+
+ansi-colors@^4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348"
+ integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
+
+ansi-escapes@^4.2.1:
+ version "4.3.2"
+ resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
+ integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
+ dependencies:
+ type-fest "^0.21.3"
+
+ansi-html@0.0.7, ansi-html@^0.0.7:
+ version "0.0.7"
+ resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e"
+ integrity sha1-gTWEAhliqenm/QOflA0S9WynhZ4=
+
+ansi-regex@^2.0.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
+ integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
+
+ansi-regex@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
+ integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
+
+ansi-regex@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
+ integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==
+
+ansi-regex@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
+ integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
+
+ansi-styles@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
+ integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
+
+ansi-styles@^3.2.1:
+ version "3.2.1"
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
+ integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
+ dependencies:
+ color-convert "^1.9.0"
+
+ansi-styles@^4.0.0, ansi-styles@^4.1.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
+ integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
+ dependencies:
+ color-convert "^2.0.1"
+
+ansi-to-html@^0.6.11:
+ version "0.6.14"
+ resolved "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.14.tgz#65fe6d08bba5dd9db33f44a20aec331e0010dad8"
+ integrity sha512-7ZslfB1+EnFSDO5Ju+ue5Y6It19DRnZXWv8jrGHgIlPna5Mh4jz7BV5jCbQneXNFurQcKoolaaAjHtgSBfOIuA==
+ dependencies:
+ entities "^1.1.2"
+
+anymatch@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
+ integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==
+ dependencies:
+ micromatch "^3.1.4"
+ normalize-path "^2.1.1"
+
+anymatch@^3.0.3, anymatch@~3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142"
+ integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
+ dependencies:
+ normalize-path "^3.0.0"
+ picomatch "^2.0.4"
+
+app-root-dir@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118"
+ integrity sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg=
+
+aproba@^1.0.3, aproba@^1.1.1:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
+ integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
+
+are-we-there-yet@~1.1.2:
+ version "1.1.5"
+ resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
+ integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==
+ dependencies:
+ delegates "^1.0.0"
+ readable-stream "^2.0.6"
+
+argparse@^1.0.7:
+ version "1.0.10"
+ resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
+ integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
+ dependencies:
+ sprintf-js "~1.0.2"
+
+aria-query@^4.2.2:
+ version "4.2.2"
+ resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b"
+ integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
+ dependencies:
+ "@babel/runtime" "^7.10.2"
+ "@babel/runtime-corejs3" "^7.10.2"
+
+arr-diff@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
+ integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=
+
+arr-flatten@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
+ integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==
+
+arr-union@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
+ integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
+
+array-each@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f"
+ integrity sha1-p5SvDAWrF1KEbudTofIRoFugxE8=
+
+array-flatten@1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
+ integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=
+
+array-includes@^3.0.3, array-includes@^3.1.2, array-includes@^3.1.3:
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz#c7f619b382ad2afaf5326cddfdc0afc61af7690a"
+ integrity sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+ get-intrinsic "^1.1.1"
+ is-string "^1.0.5"
+
+array-slice@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4"
+ integrity sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==
+
+array-union@^1.0.1, array-union@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
+ integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=
+ dependencies:
+ array-uniq "^1.0.1"
+
+array-union@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
+ integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
+
+array-uniq@^1.0.1:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
+ integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=
+
+array-unique@^0.3.2:
+ version "0.3.2"
+ resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
+ integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
+
+array.prototype.flat@^1.2.1:
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz#6ef638b43312bd401b4c6199fdec7e2dc9e9a123"
+ integrity sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==
+ dependencies:
+ call-bind "^1.0.0"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.1"
+
+array.prototype.flatmap@^1.2.1, array.prototype.flatmap@^1.2.4:
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz#94cfd47cc1556ec0747d97f7c7738c58122004c9"
+ integrity sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==
+ dependencies:
+ call-bind "^1.0.0"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.1"
+ function-bind "^1.1.1"
+
+array.prototype.map@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/array.prototype.map/-/array.prototype.map-1.0.3.tgz#1609623618d3d84134a37d4a220030c2bd18420b"
+ integrity sha512-nNcb30v0wfDyIe26Yif3PcV1JXQp4zEeEfupG7L4SRjnD6HLbO5b2a7eVSba53bOx4YCHYMBHt+Fp4vYstneRA==
+ dependencies:
+ call-bind "^1.0.0"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.1"
+ es-array-method-boxes-properly "^1.0.0"
+ is-string "^1.0.5"
+
+arrify@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa"
+ integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==
+
+asn1.js@^5.2.0:
+ version "5.4.1"
+ resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07"
+ integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==
+ dependencies:
+ bn.js "^4.0.0"
+ inherits "^2.0.1"
+ minimalistic-assert "^1.0.0"
+ safer-buffer "^2.1.0"
+
+assert@^1.1.1:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb"
+ integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==
+ dependencies:
+ object-assign "^4.1.1"
+ util "0.10.3"
+
+assign-symbols@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
+ integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
+
+ast-types@0.13.2:
+ version "0.13.2"
+ resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.2.tgz#df39b677a911a83f3a049644fb74fdded23cea48"
+ integrity sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA==
+
+ast-types@^0.14.2:
+ version "0.14.2"
+ resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.14.2.tgz#600b882df8583e3cd4f2df5fa20fa83759d4bdfd"
+ integrity sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==
+ dependencies:
+ tslib "^2.0.1"
+
+astral-regex@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
+ integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
+
+async-each@^1.0.1:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf"
+ integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
+
+asynckit@^0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
+ integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
+
+at-least-node@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2"
+ integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
+
+atob@^2.1.2:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
+ integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
+
+autoprefixer@^9.8.6:
+ version "9.8.6"
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.6.tgz#3b73594ca1bf9266320c5acf1588d74dea74210f"
+ integrity sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==
+ dependencies:
+ browserslist "^4.12.0"
+ caniuse-lite "^1.0.30001109"
+ colorette "^1.2.1"
+ normalize-range "^0.1.2"
+ num2fraction "^1.2.2"
+ postcss "^7.0.32"
+ postcss-value-parser "^4.1.0"
+
+axios@^0.21.1:
+ version "0.21.1"
+ resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.1.tgz#22563481962f4d6bde9a76d516ef0e5d3c09b2b8"
+ integrity sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==
+ dependencies:
+ follow-redirects "^1.10.0"
+
+babel-loader@^8.2.2:
+ version "8.2.2"
+ resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.2.tgz#9363ce84c10c9a40e6c753748e1441b60c8a0b81"
+ integrity sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==
+ dependencies:
+ find-cache-dir "^3.3.1"
+ loader-utils "^1.4.0"
+ make-dir "^3.1.0"
+ schema-utils "^2.6.5"
+
+babel-plugin-add-react-displayname@^0.0.5:
+ version "0.0.5"
+ resolved "https://registry.yarnpkg.com/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz#339d4cddb7b65fd62d1df9db9fe04de134122bd5"
+ integrity sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=
+
+babel-plugin-apply-mdx-type-prop@1.6.22:
+ version "1.6.22"
+ resolved "https://registry.yarnpkg.com/babel-plugin-apply-mdx-type-prop/-/babel-plugin-apply-mdx-type-prop-1.6.22.tgz#d216e8fd0de91de3f1478ef3231e05446bc8705b"
+ integrity sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "7.10.4"
+ "@mdx-js/util" "1.6.22"
+
+babel-plugin-dynamic-import-node@^2.3.3:
+ version "2.3.3"
+ resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
+ integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==
+ dependencies:
+ object.assign "^4.1.0"
+
+babel-plugin-emotion@^10.0.27:
+ version "10.2.2"
+ resolved "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-10.2.2.tgz#a1fe3503cff80abfd0bdda14abd2e8e57a79d17d"
+ integrity sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==
+ dependencies:
+ "@babel/helper-module-imports" "^7.0.0"
+ "@emotion/hash" "0.8.0"
+ "@emotion/memoize" "0.7.4"
+ "@emotion/serialize" "^0.11.16"
+ babel-plugin-macros "^2.0.0"
+ babel-plugin-syntax-jsx "^6.18.0"
+ convert-source-map "^1.5.0"
+ escape-string-regexp "^1.0.5"
+ find-root "^1.1.0"
+ source-map "^0.5.7"
+
+babel-plugin-extract-import-names@1.6.22:
+ version "1.6.22"
+ resolved "https://registry.yarnpkg.com/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.22.tgz#de5f9a28eb12f3eb2578bf74472204e66d1a13dc"
+ integrity sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "7.10.4"
+
+babel-plugin-istanbul@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765"
+ integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@istanbuljs/load-nyc-config" "^1.0.0"
+ "@istanbuljs/schema" "^0.1.2"
+ istanbul-lib-instrument "^4.0.0"
+ test-exclude "^6.0.0"
+
+babel-plugin-macros@^2.0.0, babel-plugin-macros@^2.8.0:
+ version "2.8.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138"
+ integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==
+ dependencies:
+ "@babel/runtime" "^7.7.2"
+ cosmiconfig "^6.0.0"
+ resolve "^1.12.0"
+
+babel-plugin-macros@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.0.1.tgz#0d412d68f5b3d1b64358f24ab099bd148724e2a9"
+ integrity sha512-CKt4+Oy9k2wiN+hT1uZzOw7d8zb1anbQpf7KLwaaXRCi/4pzKdFKHf7v5mvoPmjkmxshh7eKZQuRop06r5WP4w==
+ dependencies:
+ "@babel/runtime" "^7.12.5"
+ cosmiconfig "^7.0.0"
+ resolve "^1.19.0"
+
+babel-plugin-named-asset-import@^0.3.1:
+ version "0.3.7"
+ resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.7.tgz#156cd55d3f1228a5765774340937afc8398067dd"
+ integrity sha512-squySRkf+6JGnvjoUtDEjSREJEBirnXi9NqP6rjSYsylxQxqBTz+pkmf395i9E2zsvmYUaI40BHo6SqZUdydlw==
+
+babel-plugin-polyfill-corejs2@^0.1.4:
+ version "0.1.10"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.1.10.tgz#a2c5c245f56c0cac3dbddbf0726a46b24f0f81d1"
+ integrity sha512-DO95wD4g0A8KRaHKi0D51NdGXzvpqVLnLu5BTvDlpqUEpTmeEtypgC1xqesORaWmiUOQI14UHKlzNd9iZ2G3ZA==
+ dependencies:
+ "@babel/compat-data" "^7.13.0"
+ "@babel/helper-define-polyfill-provider" "^0.1.5"
+ semver "^6.1.1"
+
+babel-plugin-polyfill-corejs3@^0.1.0, babel-plugin-polyfill-corejs3@^0.1.3:
+ version "0.1.7"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz#80449d9d6f2274912e05d9e182b54816904befd0"
+ integrity sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==
+ dependencies:
+ "@babel/helper-define-polyfill-provider" "^0.1.5"
+ core-js-compat "^3.8.1"
+
+babel-plugin-polyfill-regenerator@^0.1.2:
+ version "0.1.6"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.1.6.tgz#0fe06a026fe0faa628ccc8ba3302da0a6ce02f3f"
+ integrity sha512-OUrYG9iKPKz8NxswXbRAdSwF0GhRdIEMTloQATJi4bDuFqrXaXcCUT/VGNrr8pBcjMh1RxZ7Xt9cytVJTJfvMg==
+ dependencies:
+ "@babel/helper-define-polyfill-provider" "^0.1.5"
+
+babel-plugin-react-docgen@^4.2.1:
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/babel-plugin-react-docgen/-/babel-plugin-react-docgen-4.2.1.tgz#7cc8e2f94e8dc057a06e953162f0810e4e72257b"
+ integrity sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==
+ dependencies:
+ ast-types "^0.14.2"
+ lodash "^4.17.15"
+ react-docgen "^5.0.0"
+
+"babel-plugin-styled-components@>= 1.12.0", babel-plugin-styled-components@^1.12.0:
+ version "1.12.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.12.0.tgz#1dec1676512177de6b827211e9eda5a30db4f9b9"
+ integrity sha512-FEiD7l5ZABdJPpLssKXjBUJMYqzbcNzBowfXDCdJhOpbhWiewapUaY+LZGT8R4Jg2TwOjGjG4RKeyrO5p9sBkA==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.0.0"
+ "@babel/helper-module-imports" "^7.0.0"
+ babel-plugin-syntax-jsx "^6.18.0"
+ lodash "^4.17.11"
+
+babel-plugin-syntax-jsx@6.18.0, babel-plugin-syntax-jsx@^6.18.0:
+ version "6.18.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
+ integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=
+
+bail@^1.0.0:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776"
+ integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==
+
+balanced-match@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
+ integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
+
+base64-js@^1.0.2:
+ version "1.5.1"
+ resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
+ integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
+
+base@^0.11.1:
+ version "0.11.2"
+ resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
+ integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==
+ dependencies:
+ cache-base "^1.0.1"
+ class-utils "^0.3.5"
+ component-emitter "^1.2.1"
+ define-property "^1.0.0"
+ isobject "^3.0.1"
+ mixin-deep "^1.2.0"
+ pascalcase "^0.1.1"
+
+basic-auth@~2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.1.tgz#b998279bf47ce38344b4f3cf916d4679bbf51e3a"
+ integrity sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==
+ dependencies:
+ safe-buffer "5.1.2"
+
+batch-processor@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/batch-processor/-/batch-processor-1.0.0.tgz#75c95c32b748e0850d10c2b168f6bdbe9891ace8"
+ integrity sha1-dclcMrdI4IUNEMKxaPa9vpiRrOg=
+
+better-opn@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/better-opn/-/better-opn-2.1.1.tgz#94a55b4695dc79288f31d7d0e5f658320759f7c6"
+ integrity sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==
+ dependencies:
+ open "^7.0.3"
+
+big.js@^5.2.2:
+ version "5.2.2"
+ resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
+ integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
+
+binary-extensions@^1.0.0:
+ version "1.13.1"
+ resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
+ integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
+
+binary-extensions@^2.0.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
+ integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
+
+bindings@^1.5.0:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
+ integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
+ dependencies:
+ file-uri-to-path "1.0.0"
+
+bluebird@^3.3.5, bluebird@^3.5.5:
+ version "3.7.2"
+ resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
+ integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
+
+bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9:
+ version "4.12.0"
+ resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88"
+ integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==
+
+bn.js@^5.0.0, bn.js@^5.1.1:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.0.tgz#358860674396c6997771a9d051fcc1b57d4ae002"
+ integrity sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==
+
+body-parser@1.19.0, body-parser@^1.19.0:
+ version "1.19.0"
+ resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a"
+ integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==
+ dependencies:
+ bytes "3.1.0"
+ content-type "~1.0.4"
+ debug "2.6.9"
+ depd "~1.1.2"
+ http-errors "1.7.2"
+ iconv-lite "0.4.24"
+ on-finished "~2.3.0"
+ qs "6.7.0"
+ raw-body "2.4.0"
+ type-is "~1.6.17"
+
+boolbase@^1.0.0, boolbase@~1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
+ integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
+
+boxen@^4.2.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/boxen/-/boxen-4.2.0.tgz#e411b62357d6d6d36587c8ac3d5d974daa070e64"
+ integrity sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==
+ dependencies:
+ ansi-align "^3.0.0"
+ camelcase "^5.3.1"
+ chalk "^3.0.0"
+ cli-boxes "^2.2.0"
+ string-width "^4.1.0"
+ term-size "^2.1.0"
+ type-fest "^0.8.1"
+ widest-line "^3.1.0"
+
+boxen@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/boxen/-/boxen-5.0.0.tgz#64fe9b16066af815f51057adcc800c3730120854"
+ integrity sha512-5bvsqw+hhgUi3oYGK0Vf4WpIkyemp60WBInn7+WNfoISzAqk/HX4L7WNROq38E6UR/y3YADpv6pEm4BfkeEAdA==
+ dependencies:
+ ansi-align "^3.0.0"
+ camelcase "^6.2.0"
+ chalk "^4.1.0"
+ cli-boxes "^2.2.1"
+ string-width "^4.2.0"
+ type-fest "^0.20.2"
+ widest-line "^3.1.0"
+ wrap-ansi "^7.0.0"
+
+brace-expansion@^1.1.7:
+ version "1.1.11"
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
+ integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
+ dependencies:
+ balanced-match "^1.0.0"
+ concat-map "0.0.1"
+
+braces@^2.3.1, braces@^2.3.2:
+ version "2.3.2"
+ resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
+ integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
+ dependencies:
+ arr-flatten "^1.1.0"
+ array-unique "^0.3.2"
+ extend-shallow "^2.0.1"
+ fill-range "^4.0.0"
+ isobject "^3.0.1"
+ repeat-element "^1.1.2"
+ snapdragon "^0.8.1"
+ snapdragon-node "^2.0.1"
+ split-string "^3.0.2"
+ to-regex "^3.0.1"
+
+braces@^3.0.1, braces@~3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
+ integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
+ dependencies:
+ fill-range "^7.0.1"
+
+brorand@^1.0.1, brorand@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
+ integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=
+
+browserify-aes@^1.0.0, browserify-aes@^1.0.4:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
+ integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==
+ dependencies:
+ buffer-xor "^1.0.3"
+ cipher-base "^1.0.0"
+ create-hash "^1.1.0"
+ evp_bytestokey "^1.0.3"
+ inherits "^2.0.1"
+ safe-buffer "^5.0.1"
+
+browserify-cipher@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0"
+ integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==
+ dependencies:
+ browserify-aes "^1.0.4"
+ browserify-des "^1.0.0"
+ evp_bytestokey "^1.0.0"
+
+browserify-des@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c"
+ integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==
+ dependencies:
+ cipher-base "^1.0.1"
+ des.js "^1.0.0"
+ inherits "^2.0.1"
+ safe-buffer "^5.1.2"
+
+browserify-rsa@^4.0.0, browserify-rsa@^4.0.1:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d"
+ integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==
+ dependencies:
+ bn.js "^5.0.0"
+ randombytes "^2.0.1"
+
+browserify-sign@^4.0.0:
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3"
+ integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==
+ dependencies:
+ bn.js "^5.1.1"
+ browserify-rsa "^4.0.1"
+ create-hash "^1.2.0"
+ create-hmac "^1.1.7"
+ elliptic "^6.5.3"
+ inherits "^2.0.4"
+ parse-asn1 "^5.1.5"
+ readable-stream "^3.6.0"
+ safe-buffer "^5.2.0"
+
+browserify-zlib@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"
+ integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==
+ dependencies:
+ pako "~1.0.5"
+
+browserslist@4.14.2:
+ version "4.14.2"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.2.tgz#1b3cec458a1ba87588cc5e9be62f19b6d48813ce"
+ integrity sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==
+ dependencies:
+ caniuse-lite "^1.0.30001125"
+ electron-to-chromium "^1.3.564"
+ escalade "^3.0.2"
+ node-releases "^1.1.61"
+
+browserslist@4.16.1:
+ version "4.16.1"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.1.tgz#bf757a2da376b3447b800a16f0f1c96358138766"
+ integrity sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA==
+ dependencies:
+ caniuse-lite "^1.0.30001173"
+ colorette "^1.2.1"
+ electron-to-chromium "^1.3.634"
+ escalade "^3.1.1"
+ node-releases "^1.1.69"
+
+browserslist@^4.12.0, browserslist@^4.14.5, browserslist@^4.16.3:
+ version "4.16.3"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.3.tgz#340aa46940d7db878748567c5dea24a48ddf3717"
+ integrity sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==
+ dependencies:
+ caniuse-lite "^1.0.30001181"
+ colorette "^1.2.1"
+ electron-to-chromium "^1.3.649"
+ escalade "^3.1.1"
+ node-releases "^1.1.70"
+
+bser@2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
+ integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==
+ dependencies:
+ node-int64 "^0.4.0"
+
+buffer-from@^1.0.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
+ integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
+
+buffer-xor@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
+ integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=
+
+buffer@5.6.0:
+ version "5.6.0"
+ resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.6.0.tgz#a31749dc7d81d84db08abf937b6b8c4033f62786"
+ integrity sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==
+ dependencies:
+ base64-js "^1.0.2"
+ ieee754 "^1.1.4"
+
+buffer@^4.3.0:
+ version "4.9.2"
+ resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8"
+ integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
+ dependencies:
+ base64-js "^1.0.2"
+ ieee754 "^1.1.4"
+ isarray "^1.0.0"
+
+builtin-modules@^3.1.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.2.0.tgz#45d5db99e7ee5e6bc4f362e008bf917ab5049887"
+ integrity sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==
+
+builtin-status-codes@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
+ integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=
+
+bytes@3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
+ integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=
+
+bytes@3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
+ integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
+
+cacache@^12.0.2:
+ version "12.0.4"
+ resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c"
+ integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==
+ dependencies:
+ bluebird "^3.5.5"
+ chownr "^1.1.1"
+ figgy-pudding "^3.5.1"
+ glob "^7.1.4"
+ graceful-fs "^4.1.15"
+ infer-owner "^1.0.3"
+ lru-cache "^5.1.1"
+ mississippi "^3.0.0"
+ mkdirp "^0.5.1"
+ move-concurrently "^1.0.1"
+ promise-inflight "^1.0.1"
+ rimraf "^2.6.3"
+ ssri "^6.0.1"
+ unique-filename "^1.1.1"
+ y18n "^4.0.0"
+
+cacache@^15.0.5:
+ version "15.0.6"
+ resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.0.6.tgz#65a8c580fda15b59150fb76bf3f3a8e45d583099"
+ integrity sha512-g1WYDMct/jzW+JdWEyjaX2zoBkZ6ZT9VpOyp2I/VMtDsNLffNat3kqPFfi1eDRSK9/SuKGyORDHcQMcPF8sQ/w==
+ dependencies:
+ "@npmcli/move-file" "^1.0.1"
+ chownr "^2.0.0"
+ fs-minipass "^2.0.0"
+ glob "^7.1.4"
+ infer-owner "^1.0.4"
+ lru-cache "^6.0.0"
+ minipass "^3.1.1"
+ minipass-collect "^1.0.2"
+ minipass-flush "^1.0.5"
+ minipass-pipeline "^1.2.2"
+ mkdirp "^1.0.3"
+ p-map "^4.0.0"
+ promise-inflight "^1.0.1"
+ rimraf "^3.0.2"
+ ssri "^8.0.1"
+ tar "^6.0.2"
+ unique-filename "^1.1.1"
+
+cache-base@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
+ integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==
+ dependencies:
+ collection-visit "^1.0.0"
+ component-emitter "^1.2.1"
+ get-value "^2.0.6"
+ has-value "^1.0.0"
+ isobject "^3.0.1"
+ set-value "^2.0.0"
+ to-object-path "^0.3.0"
+ union-value "^1.0.0"
+ unset-value "^1.0.0"
+
+cacheable-request@^6.0.0:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912"
+ integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==
+ dependencies:
+ clone-response "^1.0.2"
+ get-stream "^5.1.0"
+ http-cache-semantics "^4.0.0"
+ keyv "^3.0.0"
+ lowercase-keys "^2.0.0"
+ normalize-url "^4.1.0"
+ responselike "^1.0.2"
+
+call-bind@^1.0.0, call-bind@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
+ integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
+ dependencies:
+ function-bind "^1.1.1"
+ get-intrinsic "^1.0.2"
+
+call-me-maybe@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b"
+ integrity sha1-JtII6onje1y95gJQoV8DHBak1ms=
+
+callsites@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
+ integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
+
+camel-case@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73"
+ integrity sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=
+ dependencies:
+ no-case "^2.2.0"
+ upper-case "^1.1.1"
+
+camel-case@^4.1.1:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a"
+ integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==
+ dependencies:
+ pascal-case "^3.1.2"
+ tslib "^2.0.3"
+
+camelcase-css@2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5"
+ integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
+
+camelcase@^5.3.1:
+ version "5.3.1"
+ resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
+ integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
+
+camelcase@^6.2.0:
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809"
+ integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==
+
+camelize@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b"
+ integrity sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=
+
+caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001173, caniuse-lite@^1.0.30001179, caniuse-lite@^1.0.30001181:
+ version "1.0.30001205"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001205.tgz#d79bf6a6fb13196b4bb46e5143a22ca0242e0ef8"
+ integrity sha512-TL1GrS5V6LElbitPazidkBMD9sa448bQDDLrumDqaggmKFcuU2JW1wTOHJPukAcOMtEmLcmDJEzfRrf+GjM0Og==
+
+capture-exit@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4"
+ integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==
+ dependencies:
+ rsvp "^4.8.4"
+
+case-sensitive-paths-webpack-plugin@^2.3.0:
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz#db64066c6422eed2e08cc14b986ca43796dbc6d4"
+ integrity sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==
+
+ccount@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.1.0.tgz#246687debb6014735131be8abab2d93898f8d043"
+ integrity sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==
+
+chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.1, chalk@^2.4.2:
+ version "2.4.2"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
+ integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
+ dependencies:
+ ansi-styles "^3.2.1"
+ escape-string-regexp "^1.0.5"
+ supports-color "^5.3.0"
+
+chalk@4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.0.0.tgz#6e98081ed2d17faab615eb52ac66ec1fe6209e72"
+ integrity sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==
+ dependencies:
+ ansi-styles "^4.1.0"
+ supports-color "^7.1.0"
+
+chalk@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
+ integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=
+ dependencies:
+ ansi-styles "^2.2.1"
+ escape-string-regexp "^1.0.2"
+ has-ansi "^2.0.0"
+ strip-ansi "^3.0.0"
+ supports-color "^2.0.0"
+
+chalk@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
+ integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
+ dependencies:
+ ansi-styles "^4.1.0"
+ supports-color "^7.1.0"
+
+chalk@^4.0.0, chalk@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a"
+ integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==
+ dependencies:
+ ansi-styles "^4.1.0"
+ supports-color "^7.1.0"
+
+change-case@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/change-case/-/change-case-3.1.0.tgz#0e611b7edc9952df2e8513b27b42de72647dd17e"
+ integrity sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==
+ dependencies:
+ camel-case "^3.0.0"
+ constant-case "^2.0.0"
+ dot-case "^2.1.0"
+ header-case "^1.0.0"
+ is-lower-case "^1.1.0"
+ is-upper-case "^1.1.0"
+ lower-case "^1.1.1"
+ lower-case-first "^1.0.0"
+ no-case "^2.3.2"
+ param-case "^2.1.0"
+ pascal-case "^2.0.0"
+ path-case "^2.1.0"
+ sentence-case "^2.1.0"
+ snake-case "^2.1.0"
+ swap-case "^1.1.0"
+ title-case "^2.1.0"
+ upper-case "^1.1.1"
+ upper-case-first "^1.1.0"
+
+character-entities-legacy@^1.0.0:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1"
+ integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==
+
+character-entities@^1.0.0:
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b"
+ integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==
+
+character-reference-invalid@^1.0.0:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560"
+ integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==
+
+chardet@^0.7.0:
+ version "0.7.0"
+ resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
+ integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
+
+chokidar@3.5.1, chokidar@^3.4.1, chokidar@^3.4.2:
+ version "3.5.1"
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a"
+ integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==
+ dependencies:
+ anymatch "~3.1.1"
+ braces "~3.0.2"
+ glob-parent "~5.1.0"
+ is-binary-path "~2.1.0"
+ is-glob "~4.0.1"
+ normalize-path "~3.0.0"
+ readdirp "~3.5.0"
+ optionalDependencies:
+ fsevents "~2.3.1"
+
+chokidar@^2.1.8:
+ version "2.1.8"
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
+ integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
+ dependencies:
+ anymatch "^2.0.0"
+ async-each "^1.0.1"
+ braces "^2.3.2"
+ glob-parent "^3.1.0"
+ inherits "^2.0.3"
+ is-binary-path "^1.0.0"
+ is-glob "^4.0.0"
+ normalize-path "^3.0.0"
+ path-is-absolute "^1.0.0"
+ readdirp "^2.2.1"
+ upath "^1.1.1"
+ optionalDependencies:
+ fsevents "^1.2.7"
+
+chownr@^1.1.1:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
+ integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
+
+chownr@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"
+ integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==
+
+chrome-trace-event@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4"
+ integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==
+ dependencies:
+ tslib "^1.9.0"
+
+ci-info@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
+ integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
+
+cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
+ integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==
+ dependencies:
+ inherits "^2.0.1"
+ safe-buffer "^5.0.1"
+
+class-utils@^0.3.5:
+ version "0.3.6"
+ resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
+ integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==
+ dependencies:
+ arr-union "^3.1.0"
+ define-property "^0.2.5"
+ isobject "^3.0.0"
+ static-extend "^0.1.1"
+
+classnames@2.2.6:
+ version "2.2.6"
+ resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce"
+ integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==
+
+classnames@^2.2.5:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.0.tgz#19524334bad47ccd99793936b67f9be0860fe835"
+ integrity sha512-UUf/S3eeczXBjHPpSnrZ1ZyxH3KmLW8nVYFUWIZA/dixYMIQr7l94yYKxaAkmPk7HO9dlT6gFqAPZC02tTdfQw==
+
+clean-css@^4.2.3:
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.3.tgz#507b5de7d97b48ee53d84adb0160ff6216380f78"
+ integrity sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==
+ dependencies:
+ source-map "~0.6.0"
+
+clean-stack@^2.0.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
+ integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
+
+clean-webpack-plugin@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz#a99d8ec34c1c628a4541567aa7b457446460c62b"
+ integrity sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==
+ dependencies:
+ "@types/webpack" "^4.4.31"
+ del "^4.1.1"
+
+cli-boxes@^2.2.0, cli-boxes@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f"
+ integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==
+
+cli-cursor@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
+ integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=
+ dependencies:
+ restore-cursor "^2.0.0"
+
+cli-cursor@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307"
+ integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==
+ dependencies:
+ restore-cursor "^3.1.0"
+
+cli-spinners@^2.0.0:
+ version "2.6.0"
+ resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.0.tgz#36c7dc98fb6a9a76bd6238ec3f77e2425627e939"
+ integrity sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q==
+
+cli-table3@0.6.0:
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.0.tgz#b7b1bc65ca8e7b5cef9124e13dc2b21e2ce4faee"
+ integrity sha512-gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ==
+ dependencies:
+ object-assign "^4.1.0"
+ string-width "^4.2.0"
+ optionalDependencies:
+ colors "^1.1.2"
+
+cli-width@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6"
+ integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==
+
+clipboard@^2.0.0:
+ version "2.0.8"
+ resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.8.tgz#ffc6c103dd2967a83005f3f61976aa4655a4cdba"
+ integrity sha512-Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ==
+ dependencies:
+ good-listener "^1.2.2"
+ select "^1.1.2"
+ tiny-emitter "^2.0.0"
+
+cliui@^7.0.2:
+ version "7.0.4"
+ resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
+ integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
+ dependencies:
+ string-width "^4.2.0"
+ strip-ansi "^6.0.0"
+ wrap-ansi "^7.0.0"
+
+clone-response@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b"
+ integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=
+ dependencies:
+ mimic-response "^1.0.0"
+
+clone@^1.0.2:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
+ integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4=
+
+clsx@^1.1.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188"
+ integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==
+
+code-point-at@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
+ integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
+
+collapse-white-space@^1.0.2:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287"
+ integrity sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==
+
+collection-visit@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
+ integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=
+ dependencies:
+ map-visit "^1.0.0"
+ object-visit "^1.0.0"
+
+color-convert@^1.9.0:
+ version "1.9.3"
+ resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
+ integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
+ dependencies:
+ color-name "1.1.3"
+
+color-convert@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
+ integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
+ dependencies:
+ color-name "~1.1.4"
+
+color-name@1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
+ integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
+
+color-name@~1.1.4:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
+ integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
+
+colorette@^1.2.1:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94"
+ integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==
+
+colors@^1.1.2:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78"
+ integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==
+
+combined-stream@^1.0.8:
+ version "1.0.8"
+ resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
+ integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
+ dependencies:
+ delayed-stream "~1.0.0"
+
+comma-separated-tokens@^1.0.0:
+ version "1.0.8"
+ resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz#632b80b6117867a158f1080ad498b2fbe7e3f5ea"
+ integrity sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==
+
+commander@^2.19.0, commander@^2.20.0:
+ version "2.20.3"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
+ integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
+
+commander@^4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
+ integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
+
+commander@^6.2.1:
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c"
+ integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==
+
+common-tags@^1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937"
+ integrity sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==
+
+commondir@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
+ integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
+
+component-emitter@^1.2.1:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
+ integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
+
+compressible@~2.0.16:
+ version "2.0.18"
+ resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba"
+ integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==
+ dependencies:
+ mime-db ">= 1.43.0 < 2"
+
+compression@^1.7.4:
+ version "1.7.4"
+ resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f"
+ integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==
+ dependencies:
+ accepts "~1.3.5"
+ bytes "3.0.0"
+ compressible "~2.0.16"
+ debug "2.6.9"
+ on-headers "~1.0.2"
+ safe-buffer "5.1.2"
+ vary "~1.1.2"
+
+compute-scroll-into-view@^1.0.17:
+ version "1.0.17"
+ resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz#6a88f18acd9d42e9cf4baa6bec7e0522607ab7ab"
+ integrity sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==
+
+concat-map@0.0.1:
+ version "0.0.1"
+ resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
+ integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
+
+concat-stream@^1.5.0:
+ version "1.6.2"
+ resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
+ integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
+ dependencies:
+ buffer-from "^1.0.0"
+ inherits "^2.0.3"
+ readable-stream "^2.2.2"
+ typedarray "^0.0.6"
+
+configstore@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96"
+ integrity sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==
+ dependencies:
+ dot-prop "^5.2.0"
+ graceful-fs "^4.1.2"
+ make-dir "^3.0.0"
+ unique-string "^2.0.0"
+ write-file-atomic "^3.0.0"
+ xdg-basedir "^4.0.0"
+
+connect-pause@^0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/connect-pause/-/connect-pause-0.1.1.tgz#b269b2bb82ddb1ac3db5099c0fb582aba99fb37a"
+ integrity sha1-smmyu4Ldsaw9tQmcD7WCq6mfs3o=
+
+console-browserify@^1.1.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336"
+ integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==
+
+console-control-strings@^1.0.0, console-control-strings@~1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
+ integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=
+
+constant-case@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/constant-case/-/constant-case-2.0.0.tgz#4175764d389d3fa9c8ecd29186ed6005243b6a46"
+ integrity sha1-QXV2TTidP6nI7NKRhu1gBSQ7akY=
+ dependencies:
+ snake-case "^2.1.0"
+ upper-case "^1.1.1"
+
+constants-browserify@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
+ integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=
+
+content-disposition@0.5.3:
+ version "0.5.3"
+ resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd"
+ integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==
+ dependencies:
+ safe-buffer "5.1.2"
+
+content-type@~1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
+ integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
+
+convert-source-map@1.7.0, convert-source-map@^1.4.0, convert-source-map@^1.5.0, convert-source-map@^1.7.0:
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
+ integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
+ dependencies:
+ safe-buffer "~5.1.1"
+
+cookie-signature@1.0.6:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
+ integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw=
+
+cookie@0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba"
+ integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==
+
+copy-concurrently@^1.0.0:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0"
+ integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==
+ dependencies:
+ aproba "^1.1.1"
+ fs-write-stream-atomic "^1.0.8"
+ iferr "^0.1.5"
+ mkdirp "^0.5.1"
+ rimraf "^2.5.4"
+ run-queue "^1.0.0"
+
+copy-descriptor@^0.1.0:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
+ integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
+
+copy-to-clipboard@^3.3.1:
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz#115aa1a9998ffab6196f93076ad6da3b913662ae"
+ integrity sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==
+ dependencies:
+ toggle-selection "^1.0.6"
+
+core-js-compat@^3.8.1, core-js-compat@^3.9.0:
+ version "3.10.0"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.10.0.tgz#3600dc72869673c110215ee7a005a8609dea0fe1"
+ integrity sha512-9yVewub2MXNYyGvuLnMHcN1k9RkvB7/ofktpeKTIaASyB88YYqGzUnu0ywMMhJrDHOMiTjSHWGzR+i7Wb9Z1kQ==
+ dependencies:
+ browserslist "^4.16.3"
+ semver "7.0.0"
+
+core-js-pure@^3.0.0, core-js-pure@^3.8.2:
+ version "3.10.0"
+ resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.10.0.tgz#dab9d6b141779b622b40567e7a536d2276646c15"
+ integrity sha512-CC582enhrFZStO4F8lGI7QL3SYx7/AIRc+IdSi3btrQGrVsTawo5K/crmKbRrQ+MOMhNX4v+PATn0k2NN6wI7A==
+
+core-js@^3.0.4, core-js@^3.6.5, core-js@^3.8.2:
+ version "3.10.0"
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.10.0.tgz#9a020547c8b6879f929306949e31496bbe2ae9b3"
+ integrity sha512-MQx/7TLgmmDVamSyfE+O+5BHvG1aUGj/gHhLn1wVtm2B5u1eVIPvh7vkfjwWKNCjrTJB8+He99IntSQ1qP+vYQ==
+
+core-util-is@~1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
+ integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
+
+cors@^2.8.5:
+ version "2.8.5"
+ resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29"
+ integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==
+ dependencies:
+ object-assign "^4"
+ vary "^1"
+
+cosmiconfig@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
+ integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
+ dependencies:
+ "@types/parse-json" "^4.0.0"
+ import-fresh "^3.1.0"
+ parse-json "^5.0.0"
+ path-type "^4.0.0"
+ yaml "^1.7.2"
+
+cosmiconfig@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3"
+ integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==
+ dependencies:
+ "@types/parse-json" "^4.0.0"
+ import-fresh "^3.2.1"
+ parse-json "^5.0.0"
+ path-type "^4.0.0"
+ yaml "^1.10.0"
+
+cp-file@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/cp-file/-/cp-file-7.0.0.tgz#b9454cfd07fe3b974ab9ea0e5f29655791a9b8cd"
+ integrity sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==
+ dependencies:
+ graceful-fs "^4.1.2"
+ make-dir "^3.0.0"
+ nested-error-stacks "^2.0.0"
+ p-event "^4.1.0"
+
+cpy@^8.1.1:
+ version "8.1.2"
+ resolved "https://registry.yarnpkg.com/cpy/-/cpy-8.1.2.tgz#e339ea54797ad23f8e3919a5cffd37bfc3f25935"
+ integrity sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==
+ dependencies:
+ arrify "^2.0.1"
+ cp-file "^7.0.0"
+ globby "^9.2.0"
+ has-glob "^1.0.0"
+ junk "^3.1.0"
+ nested-error-stacks "^2.1.0"
+ p-all "^2.1.0"
+ p-filter "^2.1.0"
+ p-map "^3.0.0"
+
+create-ecdh@^4.0.0:
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e"
+ integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==
+ dependencies:
+ bn.js "^4.1.0"
+ elliptic "^6.5.3"
+
+create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"
+ integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==
+ dependencies:
+ cipher-base "^1.0.1"
+ inherits "^2.0.1"
+ md5.js "^1.3.4"
+ ripemd160 "^2.0.1"
+ sha.js "^2.4.0"
+
+create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7:
+ version "1.1.7"
+ resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff"
+ integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
+ dependencies:
+ cipher-base "^1.0.3"
+ create-hash "^1.1.0"
+ inherits "^2.0.1"
+ ripemd160 "^2.0.0"
+ safe-buffer "^5.0.1"
+ sha.js "^2.4.8"
+
+create-react-context@0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.3.0.tgz#546dede9dc422def0d3fc2fe03afe0bc0f4f7d8c"
+ integrity sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==
+ dependencies:
+ gud "^1.0.0"
+ warning "^4.0.3"
+
+cross-spawn@7.0.3, cross-spawn@^7.0.2:
+ version "7.0.3"
+ resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
+ integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
+ dependencies:
+ path-key "^3.1.0"
+ shebang-command "^2.0.0"
+ which "^2.0.1"
+
+cross-spawn@^6.0.0:
+ version "6.0.5"
+ resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
+ integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
+ dependencies:
+ nice-try "^1.0.4"
+ path-key "^2.0.1"
+ semver "^5.5.0"
+ shebang-command "^1.2.0"
+ which "^1.2.9"
+
+crypto-browserify@3.12.0, crypto-browserify@^3.11.0:
+ version "3.12.0"
+ resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec"
+ integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==
+ dependencies:
+ browserify-cipher "^1.0.0"
+ browserify-sign "^4.0.0"
+ create-ecdh "^4.0.0"
+ create-hash "^1.1.0"
+ create-hmac "^1.1.0"
+ diffie-hellman "^5.0.0"
+ inherits "^2.0.1"
+ pbkdf2 "^3.0.3"
+ public-encrypt "^4.0.0"
+ randombytes "^2.0.0"
+ randomfill "^1.0.3"
+
+crypto-random-string@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5"
+ integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==
+
+css-color-keywords@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05"
+ integrity sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=
+
+css-loader@^3.6.0:
+ version "3.6.0"
+ resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.6.0.tgz#2e4b2c7e6e2d27f8c8f28f61bffcd2e6c91ef645"
+ integrity sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==
+ dependencies:
+ camelcase "^5.3.1"
+ cssesc "^3.0.0"
+ icss-utils "^4.1.1"
+ loader-utils "^1.2.3"
+ normalize-path "^3.0.0"
+ postcss "^7.0.32"
+ postcss-modules-extract-imports "^2.0.0"
+ postcss-modules-local-by-default "^3.0.2"
+ postcss-modules-scope "^2.2.0"
+ postcss-modules-values "^3.0.0"
+ postcss-value-parser "^4.1.0"
+ schema-utils "^2.7.0"
+ semver "^6.3.0"
+
+css-select@^2.0.2:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef"
+ integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==
+ dependencies:
+ boolbase "^1.0.0"
+ css-what "^3.2.1"
+ domutils "^1.7.0"
+ nth-check "^1.0.2"
+
+css-to-react-native@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-3.0.0.tgz#62dbe678072a824a689bcfee011fc96e02a7d756"
+ integrity sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==
+ dependencies:
+ camelize "^1.0.0"
+ css-color-keywords "^1.0.0"
+ postcss-value-parser "^4.0.2"
+
+css-what@^3.2.1:
+ version "3.4.2"
+ resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4"
+ integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==
+
+css.escape@1.5.1:
+ version "1.5.1"
+ resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb"
+ integrity sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=
+
+cssesc@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
+ integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
+
+cssnano-preset-simple@1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/cssnano-preset-simple/-/cssnano-preset-simple-1.2.2.tgz#c631bf79ffec7fdfc4069e2f2da3ca67d99d8413"
+ integrity sha512-gtvrcRSGtP3hA/wS8mFVinFnQdEsEpm3v4I/s/KmNjpdWaThV/4E5EojAzFXxyT5OCSRPLlHR9iQexAqKHlhGQ==
+ dependencies:
+ caniuse-lite "^1.0.30001179"
+ postcss "^7.0.32"
+
+cssnano-simple@1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/cssnano-simple/-/cssnano-simple-1.2.2.tgz#72c2c3970e67123c3b4130894a30dc1050267007"
+ integrity sha512-4slyYc1w4JhSbhVX5xi9G0aQ42JnRyPg+7l7cqoNyoIDzfWx40Rq3JQZnoAWDu60A4AvKVp9ln/YSUOdhDX68g==
+ dependencies:
+ cssnano-preset-simple "1.2.2"
+ postcss "^7.0.32"
+
+csstype@^2.5.7:
+ version "2.6.16"
+ resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.16.tgz#544d69f547013b85a40d15bff75db38f34fe9c39"
+ integrity sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==
+
+csstype@^3.0.2:
+ version "3.0.7"
+ resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.7.tgz#2a5fb75e1015e84dd15692f71e89a1450290950b"
+ integrity sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==
+
+cyclist@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9"
+ integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=
+
+data-uri-to-buffer@3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz#594b8973938c5bc2c33046535785341abc4f3636"
+ integrity sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==
+
+debug@*, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
+ version "4.3.1"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
+ integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
+ dependencies:
+ ms "2.1.2"
+
+debug@2, debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0:
+ version "2.6.9"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
+ integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
+ dependencies:
+ ms "2.0.0"
+
+debug@3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
+ integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==
+ dependencies:
+ ms "2.0.0"
+
+debug@^3.0.0:
+ version "3.2.7"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
+ integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
+ dependencies:
+ ms "^2.1.1"
+
+decode-uri-component@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
+ integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
+
+decompress-response@^3.3.0:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3"
+ integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=
+ dependencies:
+ mimic-response "^1.0.0"
+
+dedent@^0.7.0:
+ version "0.7.0"
+ resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c"
+ integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=
+
+deep-extend@^0.6.0:
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
+ integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
+
+deep-is@^0.1.3, deep-is@~0.1.3:
+ version "0.1.3"
+ resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
+ integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
+
+deep-object-diff@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/deep-object-diff/-/deep-object-diff-1.1.0.tgz#d6fabf476c2ed1751fc94d5ca693d2ed8c18bc5a"
+ integrity sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw==
+
+deepmerge@^4.2.2:
+ version "4.2.2"
+ resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
+ integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
+
+defaults@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d"
+ integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=
+ dependencies:
+ clone "^1.0.2"
+
+defer-to-connect@^1.0.1:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591"
+ integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==
+
+define-properties@^1.1.2, define-properties@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
+ integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
+ dependencies:
+ object-keys "^1.0.12"
+
+define-property@^0.2.5:
+ version "0.2.5"
+ resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
+ integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=
+ dependencies:
+ is-descriptor "^0.1.0"
+
+define-property@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
+ integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY=
+ dependencies:
+ is-descriptor "^1.0.0"
+
+define-property@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
+ integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==
+ dependencies:
+ is-descriptor "^1.0.2"
+ isobject "^3.0.1"
+
+del@^4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/del/-/del-4.1.1.tgz#9e8f117222ea44a31ff3a156c049b99052a9f0b4"
+ integrity sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==
+ dependencies:
+ "@types/glob" "^7.1.1"
+ globby "^6.1.0"
+ is-path-cwd "^2.0.0"
+ is-path-in-cwd "^2.0.0"
+ p-map "^2.0.0"
+ pify "^4.0.1"
+ rimraf "^2.6.3"
+
+del@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/del/-/del-5.1.0.tgz#d9487c94e367410e6eff2925ee58c0c84a75b3a7"
+ integrity sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==
+ dependencies:
+ globby "^10.0.1"
+ graceful-fs "^4.2.2"
+ is-glob "^4.0.1"
+ is-path-cwd "^2.2.0"
+ is-path-inside "^3.0.1"
+ p-map "^3.0.0"
+ rimraf "^3.0.0"
+ slash "^3.0.0"
+
+delayed-stream@~1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
+ integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
+
+delegate@^3.1.2:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166"
+ integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==
+
+delegates@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
+ integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=
+
+depd@~1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
+ integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
+
+depd@~2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"
+ integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==
+
+des.js@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843"
+ integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==
+ dependencies:
+ inherits "^2.0.1"
+ minimalistic-assert "^1.0.0"
+
+destroy@~1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
+ integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
+
+detab@2.0.4:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/detab/-/detab-2.0.4.tgz#b927892069aff405fbb9a186fe97a44a92a94b43"
+ integrity sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==
+ dependencies:
+ repeat-string "^1.5.4"
+
+detect-file@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7"
+ integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=
+
+detect-port-alt@1.1.6:
+ version "1.1.6"
+ resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.6.tgz#24707deabe932d4a3cf621302027c2b266568275"
+ integrity sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==
+ dependencies:
+ address "^1.0.1"
+ debug "^2.6.0"
+
+detect-port@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/detect-port/-/detect-port-1.3.0.tgz#d9c40e9accadd4df5cac6a782aefd014d573d1f1"
+ integrity sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==
+ dependencies:
+ address "^1.0.1"
+ debug "^2.6.0"
+
+diffie-hellman@^5.0.0:
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
+ integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==
+ dependencies:
+ bn.js "^4.1.0"
+ miller-rabin "^4.0.0"
+ randombytes "^2.0.0"
+
+dir-glob@^2.2.2:
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4"
+ integrity sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==
+ dependencies:
+ path-type "^3.0.0"
+
+dir-glob@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
+ integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
+ dependencies:
+ path-type "^4.0.0"
+
+doctrine@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
+ integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
+ dependencies:
+ esutils "^2.0.2"
+
+doctrine@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
+ integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
+ dependencies:
+ esutils "^2.0.2"
+
+dom-accessibility-api@^0.5.4:
+ version "0.5.4"
+ resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.4.tgz#b06d059cdd4a4ad9a79275f9d414a5c126241166"
+ integrity sha512-TvrjBckDy2c6v6RLxPv5QXOnU+SmF9nBII5621Ve5fu6Z/BDrENurBEvlC1f44lKEUVqOpK4w9E5Idc5/EgkLQ==
+
+dom-converter@^0.2:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768"
+ integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==
+ dependencies:
+ utila "~0.4"
+
+dom-serializer@0:
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
+ integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==
+ dependencies:
+ domelementtype "^2.0.1"
+ entities "^2.0.0"
+
+dom-walk@^0.1.0:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84"
+ integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==
+
+domain-browser@^1.1.1:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
+ integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==
+
+domelementtype@1, domelementtype@^1.3.1:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f"
+ integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
+
+domelementtype@^2.0.1:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57"
+ integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==
+
+domhandler@^2.3.0:
+ version "2.4.2"
+ resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803"
+ integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==
+ dependencies:
+ domelementtype "1"
+
+domutils@^1.5.1, domutils@^1.7.0:
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a"
+ integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==
+ dependencies:
+ dom-serializer "0"
+ domelementtype "1"
+
+dot-case@^2.1.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-2.1.1.tgz#34dcf37f50a8e93c2b3bca8bb7fb9155c7da3bee"
+ integrity sha1-NNzzf1Co6TwrO8qLt/uRVcfaO+4=
+ dependencies:
+ no-case "^2.2.0"
+
+dot-case@^3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751"
+ integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==
+ dependencies:
+ no-case "^3.0.4"
+ tslib "^2.0.3"
+
+dot-prop@^5.2.0:
+ version "5.3.0"
+ resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88"
+ integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==
+ dependencies:
+ is-obj "^2.0.0"
+
+dotenv-defaults@^1.0.2:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/dotenv-defaults/-/dotenv-defaults-1.1.1.tgz#032c024f4b5906d9990eb06d722dc74cc60ec1bd"
+ integrity sha512-6fPRo9o/3MxKvmRZBD3oNFdxODdhJtIy1zcJeUSCs6HCy4tarUpd+G67UTU9tF6OWXeSPqsm4fPAB+2eY9Rt9Q==
+ dependencies:
+ dotenv "^6.2.0"
+
+dotenv-expand@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0"
+ integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==
+
+dotenv-webpack@^1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/dotenv-webpack/-/dotenv-webpack-1.8.0.tgz#7ca79cef2497dd4079d43e81e0796bc9d0f68a5e"
+ integrity sha512-o8pq6NLBehtrqA8Jv8jFQNtG9nhRtVqmoD4yWbgUyoU3+9WBlPe+c2EAiaJok9RB28QvrWvdWLZGeTT5aATDMg==
+ dependencies:
+ dotenv-defaults "^1.0.2"
+
+dotenv@^6.2.0:
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-6.2.0.tgz#941c0410535d942c8becf28d3f357dbd9d476064"
+ integrity sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w==
+
+dotenv@^8.0.0:
+ version "8.2.0"
+ resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a"
+ integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==
+
+downshift@^6.0.15:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/downshift/-/downshift-6.1.2.tgz#99d9a03d4da4bf369df766effc3b70f7e789950e"
+ integrity sha512-WnPoQ6miic4+uEzPEfqgeen0t5YREOUabMopU/Juo/UYDMZl0ZACkO6ykWCRg48dlEUmEt6zfaJlj1x7kEy78g==
+ dependencies:
+ "@babel/runtime" "^7.13.10"
+ compute-scroll-into-view "^1.0.17"
+ prop-types "^15.7.2"
+ react-is "^17.0.2"
+
+duplexer3@^0.1.4:
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"
+ integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=
+
+duplexer@^0.1.1:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6"
+ integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==
+
+duplexify@^3.4.2, duplexify@^3.6.0:
+ version "3.7.1"
+ resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309"
+ integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==
+ dependencies:
+ end-of-stream "^1.0.0"
+ inherits "^2.0.1"
+ readable-stream "^2.0.0"
+ stream-shift "^1.0.0"
+
+ee-first@1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
+ integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
+
+ejs@^2.6.1:
+ version "2.7.4"
+ resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba"
+ integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==
+
+electron-to-chromium@^1.3.564, electron-to-chromium@^1.3.634, electron-to-chromium@^1.3.649:
+ version "1.3.704"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.704.tgz#894205a237cbe0097d63da8f6d19e605dd13ab51"
+ integrity sha512-6cz0jvawlUe4h5AbfQWxPzb+8LzVyswGAWiGc32EJEmfj39HTQyNPkLXirc7+L4x5I6RgRkzua8Ryu5QZqc8cA==
+
+element-resize-detector@^1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/element-resize-detector/-/element-resize-detector-1.2.2.tgz#bf7c3ff915957e4e62e86241ed2f9c86b078892b"
+ integrity sha512-+LOXRkCJc4I5WhEJxIDjhmE3raF8jtOMBDqSCgZTMz2TX3oXAX5pE2+MDeopJlGdXzP7KzPbBJaUGfNaP9HG4A==
+ dependencies:
+ batch-processor "1.0.0"
+
+elliptic@^6.5.3:
+ version "6.5.4"
+ resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb"
+ integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==
+ dependencies:
+ bn.js "^4.11.9"
+ brorand "^1.1.0"
+ hash.js "^1.0.0"
+ hmac-drbg "^1.0.1"
+ inherits "^2.0.4"
+ minimalistic-assert "^1.0.1"
+ minimalistic-crypto-utils "^1.0.1"
+
+"emoji-regex@>=6.0.0 <=6.1.1":
+ version "6.1.1"
+ resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.1.1.tgz#c6cd0ec1b0642e2a3c67a1137efc5e796da4f88e"
+ integrity sha1-xs0OwbBkLio8Z6ETfvxeeW2k+I4=
+
+emoji-regex@^7.0.1:
+ version "7.0.3"
+ resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
+ integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
+
+emoji-regex@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
+ integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
+
+emojis-list@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
+ integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k=
+
+emojis-list@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
+ integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
+
+emotion-theming@^10.0.27:
+ version "10.0.27"
+ resolved "https://registry.yarnpkg.com/emotion-theming/-/emotion-theming-10.0.27.tgz#1887baaec15199862c89b1b984b79806f2b9ab10"
+ integrity sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw==
+ dependencies:
+ "@babel/runtime" "^7.5.5"
+ "@emotion/weak-memoize" "0.2.5"
+ hoist-non-react-statics "^3.3.0"
+
+encodeurl@~1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
+ integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
+
+end-of-stream@^1.0.0, end-of-stream@^1.1.0:
+ version "1.4.4"
+ resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
+ integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
+ dependencies:
+ once "^1.4.0"
+
+endent@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/endent/-/endent-2.0.1.tgz#fb18383a3f37ae3213a5d9f6c4a880d1061eb4c5"
+ integrity sha512-mADztvcC+vCk4XEZaCz6xIPO2NHQuprv5CAEjuVAu6aZwqAj7nVNlMyl1goPFYqCCpS2OJV9jwpumJLkotZrNw==
+ dependencies:
+ dedent "^0.7.0"
+ fast-json-parse "^1.0.3"
+ objectorarray "^1.0.4"
+
+enhanced-resolve@^4.5.0:
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz#2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec"
+ integrity sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==
+ dependencies:
+ graceful-fs "^4.1.2"
+ memory-fs "^0.5.0"
+ tapable "^1.0.0"
+
+enquirer@^2.3.5:
+ version "2.3.6"
+ resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d"
+ integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
+ dependencies:
+ ansi-colors "^4.1.1"
+
+entities@^1.1.1, entities@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56"
+ integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==
+
+entities@^2.0.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55"
+ integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==
+
+errno@^0.1.3, errno@~0.1.7:
+ version "0.1.8"
+ resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f"
+ integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==
+ dependencies:
+ prr "~1.0.1"
+
+error-ex@^1.3.1:
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
+ integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
+ dependencies:
+ is-arrayish "^0.2.1"
+
+error-stack-parser@^2.0.6:
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.0.6.tgz#5a99a707bd7a4c58a797902d48d82803ede6aad8"
+ integrity sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==
+ dependencies:
+ stackframe "^1.1.1"
+
+errorhandler@^1.5.1:
+ version "1.5.1"
+ resolved "https://registry.yarnpkg.com/errorhandler/-/errorhandler-1.5.1.tgz#b9ba5d17cf90744cd1e851357a6e75bf806a9a91"
+ integrity sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==
+ dependencies:
+ accepts "~1.3.7"
+ escape-html "~1.0.3"
+
+es-abstract@^1.17.0-next.0, es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2:
+ version "1.18.0"
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0.tgz#ab80b359eecb7ede4c298000390bc5ac3ec7b5a4"
+ integrity sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==
+ dependencies:
+ call-bind "^1.0.2"
+ es-to-primitive "^1.2.1"
+ function-bind "^1.1.1"
+ get-intrinsic "^1.1.1"
+ has "^1.0.3"
+ has-symbols "^1.0.2"
+ is-callable "^1.2.3"
+ is-negative-zero "^2.0.1"
+ is-regex "^1.1.2"
+ is-string "^1.0.5"
+ object-inspect "^1.9.0"
+ object-keys "^1.1.1"
+ object.assign "^4.1.2"
+ string.prototype.trimend "^1.0.4"
+ string.prototype.trimstart "^1.0.4"
+ unbox-primitive "^1.0.0"
+
+es-array-method-boxes-properly@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e"
+ integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==
+
+es-get-iterator@^1.0.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.2.tgz#9234c54aba713486d7ebde0220864af5e2b283f7"
+ integrity sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.1.0"
+ has-symbols "^1.0.1"
+ is-arguments "^1.1.0"
+ is-map "^2.0.2"
+ is-set "^2.0.2"
+ is-string "^1.0.5"
+ isarray "^2.0.5"
+
+es-to-primitive@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
+ integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
+ dependencies:
+ is-callable "^1.1.4"
+ is-date-object "^1.0.1"
+ is-symbol "^1.0.2"
+
+es5-shim@^4.5.13:
+ version "4.5.15"
+ resolved "https://registry.yarnpkg.com/es5-shim/-/es5-shim-4.5.15.tgz#6a26869b261854a3b045273f5583c52d390217fe"
+ integrity sha512-FYpuxEjMeDvU4rulKqFdukQyZSTpzhg4ScQHrAosrlVpR6GFyaw14f74yn2+4BugniIS0Frpg7TvwZocU4ZMTw==
+
+es6-shim@^0.35.5:
+ version "0.35.6"
+ resolved "https://registry.yarnpkg.com/es6-shim/-/es6-shim-0.35.6.tgz#d10578301a83af2de58b9eadb7c2c9945f7388a0"
+ integrity sha512-EmTr31wppcaIAgblChZiuN/l9Y7DPyw8Xtbg7fIVngn6zMW+IEBJDJngeKC3x6wr0V/vcA2wqeFnaw1bFJbDdA==
+
+escalade@^3.0.2, escalade@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
+ integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
+
+escape-goat@^2.0.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675"
+ integrity sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==
+
+escape-html@~1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
+ integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=
+
+escape-string-regexp@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
+ integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
+
+escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
+ integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
+
+escodegen@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd"
+ integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==
+ dependencies:
+ esprima "^4.0.1"
+ estraverse "^5.2.0"
+ esutils "^2.0.2"
+ optionator "^0.8.1"
+ optionalDependencies:
+ source-map "~0.6.1"
+
+eslint-config-prettier@^7.1.0:
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-7.2.0.tgz#f4a4bd2832e810e8cc7c1411ec85b3e85c0c53f9"
+ integrity sha512-rV4Qu0C3nfJKPOAhFujFxB7RMP+URFyQqqOZW9DMRD7ZDTFyjaIlETU3xzHELt++4ugC0+Jm084HQYkkJe+Ivg==
+
+eslint-plugin-prettier@^3.3.1:
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.3.1.tgz#7079cfa2497078905011e6f82e8dd8453d1371b7"
+ integrity sha512-Rq3jkcFY8RYeQLgk2cCwuc0P7SEFwDravPhsJZOQ5N4YI4DSg50NyqJ/9gdZHzQlHf8MvafSesbNJCcP/FF6pQ==
+ dependencies:
+ prettier-linter-helpers "^1.0.0"
+
+eslint-plugin-react-hooks@^4.2.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz#8c229c268d468956334c943bb45fc860280f5556"
+ integrity sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==
+
+eslint-plugin-react@^7.22.0:
+ version "7.23.1"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.23.1.tgz#f1a2e844c0d1967c822388204a8bc4dee8415b11"
+ integrity sha512-MvFGhZjI8Z4HusajmSw0ougGrq3Gs4vT/0WgwksZgf5RrLrRa2oYAw56okU4tZJl8+j7IYNuTM+2RnFEuTSdRQ==
+ dependencies:
+ array-includes "^3.1.3"
+ array.prototype.flatmap "^1.2.4"
+ doctrine "^2.1.0"
+ has "^1.0.3"
+ jsx-ast-utils "^2.4.1 || ^3.0.0"
+ minimatch "^3.0.4"
+ object.entries "^1.1.3"
+ object.fromentries "^2.0.4"
+ object.values "^1.1.3"
+ prop-types "^15.7.2"
+ resolve "^2.0.0-next.3"
+ string.prototype.matchall "^4.0.4"
+
+eslint-scope@^4.0.3:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
+ integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==
+ dependencies:
+ esrecurse "^4.1.0"
+ estraverse "^4.1.1"
+
+eslint-scope@^5.0.0, eslint-scope@^5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
+ integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
+ dependencies:
+ esrecurse "^4.3.0"
+ estraverse "^4.1.1"
+
+eslint-utils@^2.0.0, eslint-utils@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27"
+ integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==
+ dependencies:
+ eslint-visitor-keys "^1.1.0"
+
+eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
+ integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
+
+eslint-visitor-keys@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8"
+ integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
+
+eslint@^7.20.0:
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.23.0.tgz#8d029d252f6e8cf45894b4bee08f5493f8e94325"
+ integrity sha512-kqvNVbdkjzpFy0XOszNwjkKzZ+6TcwCQ/h+ozlcIWwaimBBuhlQ4nN6kbiM2L+OjDcznkTJxzYfRFH92sx4a0Q==
+ dependencies:
+ "@babel/code-frame" "7.12.11"
+ "@eslint/eslintrc" "^0.4.0"
+ ajv "^6.10.0"
+ chalk "^4.0.0"
+ cross-spawn "^7.0.2"
+ debug "^4.0.1"
+ doctrine "^3.0.0"
+ enquirer "^2.3.5"
+ eslint-scope "^5.1.1"
+ eslint-utils "^2.1.0"
+ eslint-visitor-keys "^2.0.0"
+ espree "^7.3.1"
+ esquery "^1.4.0"
+ esutils "^2.0.2"
+ file-entry-cache "^6.0.1"
+ functional-red-black-tree "^1.0.1"
+ glob-parent "^5.0.0"
+ globals "^13.6.0"
+ ignore "^4.0.6"
+ import-fresh "^3.0.0"
+ imurmurhash "^0.1.4"
+ is-glob "^4.0.0"
+ js-yaml "^3.13.1"
+ json-stable-stringify-without-jsonify "^1.0.1"
+ levn "^0.4.1"
+ lodash "^4.17.21"
+ minimatch "^3.0.4"
+ natural-compare "^1.4.0"
+ optionator "^0.9.1"
+ progress "^2.0.0"
+ regexpp "^3.1.0"
+ semver "^7.2.1"
+ strip-ansi "^6.0.0"
+ strip-json-comments "^3.1.0"
+ table "^6.0.4"
+ text-table "^0.2.0"
+ v8-compile-cache "^2.0.3"
+
+espree@^7.3.0, espree@^7.3.1:
+ version "7.3.1"
+ resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6"
+ integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==
+ dependencies:
+ acorn "^7.4.0"
+ acorn-jsx "^5.3.1"
+ eslint-visitor-keys "^1.3.0"
+
+esprima@^4.0.0, esprima@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
+ integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
+
+esquery@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
+ integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
+ dependencies:
+ estraverse "^5.1.0"
+
+esrecurse@^4.1.0, esrecurse@^4.3.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
+ integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
+ dependencies:
+ estraverse "^5.2.0"
+
+estraverse@^4.1.1:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
+ integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
+
+estraverse@^5.1.0, estraverse@^5.2.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880"
+ integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==
+
+estree-walker@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700"
+ integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==
+
+esutils@^2.0.2:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
+ integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
+
+etag@1.8.1, etag@~1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
+ integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
+
+events@^3.0.0:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
+ integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
+
+evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
+ integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==
+ dependencies:
+ md5.js "^1.3.4"
+ safe-buffer "^5.1.1"
+
+exec-sh@^0.3.2:
+ version "0.3.6"
+ resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc"
+ integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==
+
+execa@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8"
+ integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==
+ dependencies:
+ cross-spawn "^6.0.0"
+ get-stream "^4.0.0"
+ is-stream "^1.1.0"
+ npm-run-path "^2.0.0"
+ p-finally "^1.0.0"
+ signal-exit "^3.0.0"
+ strip-eof "^1.0.0"
+
+expand-brackets@^2.1.4:
+ version "2.1.4"
+ resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
+ integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI=
+ dependencies:
+ debug "^2.3.3"
+ define-property "^0.2.5"
+ extend-shallow "^2.0.1"
+ posix-character-classes "^0.1.0"
+ regex-not "^1.0.0"
+ snapdragon "^0.8.1"
+ to-regex "^3.0.1"
+
+expand-tilde@^2.0.0, expand-tilde@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502"
+ integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=
+ dependencies:
+ homedir-polyfill "^1.0.1"
+
+express-urlrewrite@^1.3.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/express-urlrewrite/-/express-urlrewrite-1.4.0.tgz#985ee022773bac7ed32126f1cf9ec8ee48e1290a"
+ integrity sha512-PI5h8JuzoweS26vFizwQl6UTF25CAHSggNv0J25Dn/IKZscJHWZzPrI5z2Y2jgOzIaw2qh8l6+/jUcig23Z2SA==
+ dependencies:
+ debug "*"
+ path-to-regexp "^1.0.3"
+
+express@^4.17.1:
+ version "4.17.1"
+ resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134"
+ integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==
+ dependencies:
+ accepts "~1.3.7"
+ array-flatten "1.1.1"
+ body-parser "1.19.0"
+ content-disposition "0.5.3"
+ content-type "~1.0.4"
+ cookie "0.4.0"
+ cookie-signature "1.0.6"
+ debug "2.6.9"
+ depd "~1.1.2"
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ etag "~1.8.1"
+ finalhandler "~1.1.2"
+ fresh "0.5.2"
+ merge-descriptors "1.0.1"
+ methods "~1.1.2"
+ on-finished "~2.3.0"
+ parseurl "~1.3.3"
+ path-to-regexp "0.1.7"
+ proxy-addr "~2.0.5"
+ qs "6.7.0"
+ range-parser "~1.2.1"
+ safe-buffer "5.1.2"
+ send "0.17.1"
+ serve-static "1.14.1"
+ setprototypeof "1.1.1"
+ statuses "~1.5.0"
+ type-is "~1.6.18"
+ utils-merge "1.0.1"
+ vary "~1.1.2"
+
+extend-shallow@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
+ integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=
+ dependencies:
+ is-extendable "^0.1.0"
+
+extend-shallow@^3.0.0, extend-shallow@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
+ integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=
+ dependencies:
+ assign-symbols "^1.0.0"
+ is-extendable "^1.0.1"
+
+extend@^3.0.0:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
+ integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
+
+external-editor@^3.0.3:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495"
+ integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==
+ dependencies:
+ chardet "^0.7.0"
+ iconv-lite "^0.4.24"
+ tmp "^0.0.33"
+
+extglob@^2.0.4:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
+ integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==
+ dependencies:
+ array-unique "^0.3.2"
+ define-property "^1.0.0"
+ expand-brackets "^2.1.4"
+ extend-shallow "^2.0.1"
+ fragment-cache "^0.2.1"
+ regex-not "^1.0.0"
+ snapdragon "^0.8.1"
+ to-regex "^3.0.1"
+
+fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
+ integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
+
+fast-diff@^1.1.2:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
+ integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
+
+fast-glob@^2.2.6:
+ version "2.2.7"
+ resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d"
+ integrity sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==
+ dependencies:
+ "@mrmlnc/readdir-enhanced" "^2.2.1"
+ "@nodelib/fs.stat" "^1.1.2"
+ glob-parent "^3.1.0"
+ is-glob "^4.0.0"
+ merge2 "^1.2.3"
+ micromatch "^3.1.10"
+
+fast-glob@^3.0.3, fast-glob@^3.1.1:
+ version "3.2.5"
+ resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.5.tgz#7939af2a656de79a4f1901903ee8adcaa7cb9661"
+ integrity sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==
+ dependencies:
+ "@nodelib/fs.stat" "^2.0.2"
+ "@nodelib/fs.walk" "^1.2.3"
+ glob-parent "^5.1.0"
+ merge2 "^1.3.0"
+ micromatch "^4.0.2"
+ picomatch "^2.2.1"
+
+fast-json-parse@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/fast-json-parse/-/fast-json-parse-1.0.3.tgz#43e5c61ee4efa9265633046b770fb682a7577c4d"
+ integrity sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==
+
+fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
+ integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
+
+fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6:
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
+ integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
+
+fastq@^1.6.0:
+ version "1.11.0"
+ resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.11.0.tgz#bb9fb955a07130a918eb63c1f5161cc32a5d0858"
+ integrity sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==
+ dependencies:
+ reusify "^1.0.4"
+
+fault@^1.0.0:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.4.tgz#eafcfc0a6d214fc94601e170df29954a4f842f13"
+ integrity sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==
+ dependencies:
+ format "^0.2.0"
+
+fb-watchman@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85"
+ integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==
+ dependencies:
+ bser "2.1.1"
+
+figgy-pudding@^3.5.1:
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e"
+ integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==
+
+figures@^3.0.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af"
+ integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==
+ dependencies:
+ escape-string-regexp "^1.0.5"
+
+file-entry-cache@^6.0.1:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
+ integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
+ dependencies:
+ flat-cache "^3.0.4"
+
+file-loader@^6.2.0:
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d"
+ integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==
+ dependencies:
+ loader-utils "^2.0.0"
+ schema-utils "^3.0.0"
+
+file-system-cache@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/file-system-cache/-/file-system-cache-1.0.5.tgz#84259b36a2bbb8d3d6eb1021d3132ffe64cfff4f"
+ integrity sha1-hCWbNqK7uNPW6xAh0xMv/mTP/08=
+ dependencies:
+ bluebird "^3.3.5"
+ fs-extra "^0.30.0"
+ ramda "^0.21.0"
+
+file-uri-to-path@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
+ integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
+
+filesize@6.1.0:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/filesize/-/filesize-6.1.0.tgz#e81bdaa780e2451d714d71c0d7a4f3238d37ad00"
+ integrity sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==
+
+fill-range@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
+ integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=
+ dependencies:
+ extend-shallow "^2.0.1"
+ is-number "^3.0.0"
+ repeat-string "^1.6.1"
+ to-regex-range "^2.1.0"
+
+fill-range@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
+ integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
+ dependencies:
+ to-regex-range "^5.0.1"
+
+finalhandler@~1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d"
+ integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==
+ dependencies:
+ debug "2.6.9"
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ on-finished "~2.3.0"
+ parseurl "~1.3.3"
+ statuses "~1.5.0"
+ unpipe "~1.0.0"
+
+find-cache-dir@3.3.1, find-cache-dir@^3.3.1:
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880"
+ integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==
+ dependencies:
+ commondir "^1.0.1"
+ make-dir "^3.0.2"
+ pkg-dir "^4.1.0"
+
+find-cache-dir@^2.0.0, find-cache-dir@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
+ integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
+ dependencies:
+ commondir "^1.0.1"
+ make-dir "^2.0.0"
+ pkg-dir "^3.0.0"
+
+find-root@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
+ integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
+
+find-up@4.1.0, find-up@^4.0.0, find-up@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
+ integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
+ dependencies:
+ locate-path "^5.0.0"
+ path-exists "^4.0.0"
+
+find-up@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
+ integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
+ dependencies:
+ locate-path "^3.0.0"
+
+find-up@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
+ integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
+ dependencies:
+ locate-path "^6.0.0"
+ path-exists "^4.0.0"
+
+findup-sync@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc"
+ integrity sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=
+ dependencies:
+ detect-file "^1.0.0"
+ is-glob "^3.1.0"
+ micromatch "^3.0.4"
+ resolve-dir "^1.0.1"
+
+fined@^1.0.1:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/fined/-/fined-1.2.0.tgz#d00beccf1aa2b475d16d423b0238b713a2c4a37b"
+ integrity sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==
+ dependencies:
+ expand-tilde "^2.0.2"
+ is-plain-object "^2.0.3"
+ object.defaults "^1.1.0"
+ object.pick "^1.2.0"
+ parse-filepath "^1.0.1"
+
+flagged-respawn@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-1.0.1.tgz#e7de6f1279ddd9ca9aac8a5971d618606b3aab41"
+ integrity sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==
+
+flat-cache@^3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
+ integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
+ dependencies:
+ flatted "^3.1.0"
+ rimraf "^3.0.2"
+
+flatted@^3.1.0:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.1.1.tgz#c4b489e80096d9df1dfc97c79871aea7c617c469"
+ integrity sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==
+
+flush-write-stream@^1.0.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8"
+ integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==
+ dependencies:
+ inherits "^2.0.3"
+ readable-stream "^2.3.6"
+
+follow-redirects@^1.10.0:
+ version "1.13.3"
+ resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.3.tgz#e5598ad50174c1bc4e872301e82ac2cd97f90267"
+ integrity sha512-DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA==
+
+for-in@^1.0.1, for-in@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
+ integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
+
+for-own@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b"
+ integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=
+ dependencies:
+ for-in "^1.0.1"
+
+fork-ts-checker-webpack-plugin@4.1.6, fork-ts-checker-webpack-plugin@^4.1.6:
+ version "4.1.6"
+ resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz#5055c703febcf37fa06405d400c122b905167fc5"
+ integrity sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==
+ dependencies:
+ "@babel/code-frame" "^7.5.5"
+ chalk "^2.4.1"
+ micromatch "^3.1.10"
+ minimatch "^3.0.4"
+ semver "^5.6.0"
+ tapable "^1.0.0"
+ worker-rpc "^0.1.0"
+
+fork-ts-checker-webpack-plugin@^6.0.4:
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.2.0.tgz#d13af02e24d1b17f769af6bdf41c1e849e1615cc"
+ integrity sha512-DTNbOhq6lRdjYprukX54JMeYJgQ0zMow+R5BMLwWxEX2NAXthIkwnV8DBmsWjwNLSUItKZM4TCCJbtgrtKBu2Q==
+ dependencies:
+ "@babel/code-frame" "^7.8.3"
+ "@types/json-schema" "^7.0.5"
+ chalk "^4.1.0"
+ chokidar "^3.4.2"
+ cosmiconfig "^6.0.0"
+ deepmerge "^4.2.2"
+ fs-extra "^9.0.0"
+ memfs "^3.1.2"
+ minimatch "^3.0.4"
+ schema-utils "2.7.0"
+ semver "^7.3.2"
+ tapable "^1.0.0"
+
+form-data@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f"
+ integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==
+ dependencies:
+ asynckit "^0.4.0"
+ combined-stream "^1.0.8"
+ mime-types "^2.1.12"
+
+format@^0.2.0:
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b"
+ integrity sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=
+
+forwarded@~0.1.2:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
+ integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=
+
+fragment-cache@^0.2.1:
+ version "0.2.1"
+ resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
+ integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=
+ dependencies:
+ map-cache "^0.2.2"
+
+fresh@0.5.2:
+ version "0.5.2"
+ resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
+ integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
+
+from2@^2.1.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af"
+ integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=
+ dependencies:
+ inherits "^2.0.1"
+ readable-stream "^2.0.0"
+
+fs-extra@^0.30.0:
+ version "0.30.0"
+ resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0"
+ integrity sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=
+ dependencies:
+ graceful-fs "^4.1.2"
+ jsonfile "^2.1.0"
+ klaw "^1.0.0"
+ path-is-absolute "^1.0.0"
+ rimraf "^2.2.8"
+
+fs-extra@^9.0.0, fs-extra@^9.0.1:
+ version "9.1.0"
+ resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d"
+ integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==
+ dependencies:
+ at-least-node "^1.0.0"
+ graceful-fs "^4.2.0"
+ jsonfile "^6.0.1"
+ universalify "^2.0.0"
+
+fs-minipass@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb"
+ integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==
+ dependencies:
+ minipass "^3.0.0"
+
+fs-monkey@1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.1.tgz#4a82f36944365e619f4454d9fff106553067b781"
+ integrity sha512-fcSa+wyTqZa46iWweI7/ZiUfegOZl0SG8+dltIwFXo7+zYU9J9kpS3NB6pZcSlJdhvIwp81Adx2XhZorncxiaA==
+
+fs-write-stream-atomic@^1.0.8:
+ version "1.0.10"
+ resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9"
+ integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=
+ dependencies:
+ graceful-fs "^4.1.2"
+ iferr "^0.1.5"
+ imurmurhash "^0.1.4"
+ readable-stream "1 || 2"
+
+fs.realpath@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
+ integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
+
+fsevents@^1.2.7:
+ version "1.2.13"
+ resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38"
+ integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==
+ dependencies:
+ bindings "^1.5.0"
+ nan "^2.12.1"
+
+fsevents@^2.1.2, fsevents@~2.3.1:
+ version "2.3.2"
+ resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
+ integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
+
+function-bind@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
+ integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
+
+function.prototype.name@^1.1.0:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.4.tgz#e4ea839b9d3672ae99d0efd9f38d9191c5eaac83"
+ integrity sha512-iqy1pIotY/RmhdFZygSSlW0wko2yxkSCKqsuv4pr8QESohpYyG/Z7B/XXvPRKTJS//960rgguE5mSRUsDdaJrQ==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+ functions-have-names "^1.2.2"
+
+functional-red-black-tree@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
+ integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
+
+functions-have-names@^1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.2.tgz#98d93991c39da9361f8e50b337c4f6e41f120e21"
+ integrity sha512-bLgc3asbWdwPbx2mNk2S49kmJCuQeu0nfmaOgbs8WIyzzkw3r4htszdIi9Q9EMezDPTYuJx2wvjZ/EwgAthpnA==
+
+fuse.js@^3.6.1:
+ version "3.6.1"
+ resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-3.6.1.tgz#7de85fdd6e1b3377c23ce010892656385fd9b10c"
+ integrity sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==
+
+gauge@~2.7.3:
+ version "2.7.4"
+ resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
+ integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=
+ dependencies:
+ aproba "^1.0.3"
+ console-control-strings "^1.0.0"
+ has-unicode "^2.0.0"
+ object-assign "^4.1.0"
+ signal-exit "^3.0.0"
+ string-width "^1.0.1"
+ strip-ansi "^3.0.1"
+ wide-align "^1.1.0"
+
+gensync@^1.0.0-beta.1, gensync@^1.0.0-beta.2:
+ version "1.0.0-beta.2"
+ resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
+ integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
+
+get-caller-file@^2.0.5:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
+ integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
+
+get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
+ integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
+ dependencies:
+ function-bind "^1.1.1"
+ has "^1.0.3"
+ has-symbols "^1.0.1"
+
+get-orientation@1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/get-orientation/-/get-orientation-1.1.2.tgz#20507928951814f8a91ded0a0e67b29dfab98947"
+ integrity sha512-/pViTfifW+gBbh/RnlFYHINvELT9Znt+SYyDKAUL6uV6By019AK/s+i9XP4jSwq7lwP38Fd8HVeTxym3+hkwmQ==
+ dependencies:
+ stream-parser "^0.3.1"
+
+get-own-enumerable-property-symbols@^3.0.0:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664"
+ integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==
+
+get-package-type@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a"
+ integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==
+
+get-stream@^4.0.0, get-stream@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
+ integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==
+ dependencies:
+ pump "^3.0.0"
+
+get-stream@^5.1.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3"
+ integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==
+ dependencies:
+ pump "^3.0.0"
+
+get-value@^2.0.3, get-value@^2.0.6:
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
+ integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=
+
+github-slugger@^1.0.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.3.0.tgz#9bd0a95c5efdfc46005e82a906ef8e2a059124c9"
+ integrity sha512-gwJScWVNhFYSRDvURk/8yhcFBee6aFjye2a7Lhb2bUyRulpIoek9p0I9Kt7PT67d/nUlZbFu8L9RLiA0woQN8Q==
+ dependencies:
+ emoji-regex ">=6.0.0 <=6.1.1"
+
+glob-base@^0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
+ integrity sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=
+ dependencies:
+ glob-parent "^2.0.0"
+ is-glob "^2.0.0"
+
+glob-parent@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
+ integrity sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=
+ dependencies:
+ is-glob "^2.0.0"
+
+glob-parent@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
+ integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=
+ dependencies:
+ is-glob "^3.1.0"
+ path-dirname "^1.0.0"
+
+glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@~5.1.0:
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
+ integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
+ dependencies:
+ is-glob "^4.0.1"
+
+glob-promise@^3.4.0:
+ version "3.4.0"
+ resolved "https://registry.yarnpkg.com/glob-promise/-/glob-promise-3.4.0.tgz#b6b8f084504216f702dc2ce8c9bc9ac8866fdb20"
+ integrity sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==
+ dependencies:
+ "@types/glob" "*"
+
+glob-to-regexp@^0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab"
+ integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=
+
+glob-to-regexp@^0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
+ integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
+
+glob@^7.0.3, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
+ version "7.1.6"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
+ integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
+ dependencies:
+ fs.realpath "^1.0.0"
+ inflight "^1.0.4"
+ inherits "2"
+ minimatch "^3.0.4"
+ once "^1.3.0"
+ path-is-absolute "^1.0.0"
+
+global-dirs@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.0.tgz#70a76fe84ea315ab37b1f5576cbde7d48ef72686"
+ integrity sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==
+ dependencies:
+ ini "2.0.0"
+
+global-modules@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780"
+ integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==
+ dependencies:
+ global-prefix "^3.0.0"
+
+global-modules@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea"
+ integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==
+ dependencies:
+ global-prefix "^1.0.1"
+ is-windows "^1.0.1"
+ resolve-dir "^1.0.0"
+
+global-prefix@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe"
+ integrity sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=
+ dependencies:
+ expand-tilde "^2.0.2"
+ homedir-polyfill "^1.0.1"
+ ini "^1.3.4"
+ is-windows "^1.0.1"
+ which "^1.2.14"
+
+global-prefix@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97"
+ integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==
+ dependencies:
+ ini "^1.3.5"
+ kind-of "^6.0.2"
+ which "^1.3.1"
+
+global@^4.4.0:
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406"
+ integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==
+ dependencies:
+ min-document "^2.19.0"
+ process "^0.11.10"
+
+globals@^11.1.0:
+ version "11.12.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
+ integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
+
+globals@^12.1.0:
+ version "12.4.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8"
+ integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==
+ dependencies:
+ type-fest "^0.8.1"
+
+globals@^13.6.0:
+ version "13.7.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-13.7.0.tgz#aed3bcefd80ad3ec0f0be2cf0c895110c0591795"
+ integrity sha512-Aipsz6ZKRxa/xQkZhNg0qIWXT6x6rD46f6x/PCnBomlttdIyAPak4YD9jTmKpZ72uROSMU87qJtcgpgHaVchiA==
+ dependencies:
+ type-fest "^0.20.2"
+
+globalthis@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.2.tgz#2a235d34f4d8036219f7e34929b5de9e18166b8b"
+ integrity sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ==
+ dependencies:
+ define-properties "^1.1.3"
+
+globby@11.0.1:
+ version "11.0.1"
+ resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357"
+ integrity sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==
+ dependencies:
+ array-union "^2.1.0"
+ dir-glob "^3.0.1"
+ fast-glob "^3.1.1"
+ ignore "^5.1.4"
+ merge2 "^1.3.0"
+ slash "^3.0.0"
+
+globby@^10.0.1:
+ version "10.0.2"
+ resolved "https://registry.yarnpkg.com/globby/-/globby-10.0.2.tgz#277593e745acaa4646c3ab411289ec47a0392543"
+ integrity sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==
+ dependencies:
+ "@types/glob" "^7.1.1"
+ array-union "^2.1.0"
+ dir-glob "^3.0.1"
+ fast-glob "^3.0.3"
+ glob "^7.1.3"
+ ignore "^5.1.1"
+ merge2 "^1.2.3"
+ slash "^3.0.0"
+
+globby@^11.0.1, globby@^11.0.2:
+ version "11.0.3"
+ resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.3.tgz#9b1f0cb523e171dd1ad8c7b2a9fb4b644b9593cb"
+ integrity sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==
+ dependencies:
+ array-union "^2.1.0"
+ dir-glob "^3.0.1"
+ fast-glob "^3.1.1"
+ ignore "^5.1.4"
+ merge2 "^1.3.0"
+ slash "^3.0.0"
+
+globby@^6.1.0:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
+ integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=
+ dependencies:
+ array-union "^1.0.1"
+ glob "^7.0.3"
+ object-assign "^4.0.1"
+ pify "^2.0.0"
+ pinkie-promise "^2.0.0"
+
+globby@^9.2.0:
+ version "9.2.0"
+ resolved "https://registry.yarnpkg.com/globby/-/globby-9.2.0.tgz#fd029a706c703d29bdd170f4b6db3a3f7a7cb63d"
+ integrity sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==
+ dependencies:
+ "@types/glob" "^7.1.1"
+ array-union "^1.0.2"
+ dir-glob "^2.2.2"
+ fast-glob "^2.2.6"
+ glob "^7.1.3"
+ ignore "^4.0.3"
+ pify "^4.0.1"
+ slash "^2.0.0"
+
+good-listener@^1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50"
+ integrity sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=
+ dependencies:
+ delegate "^3.1.2"
+
+got@^9.6.0:
+ version "9.6.0"
+ resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85"
+ integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==
+ dependencies:
+ "@sindresorhus/is" "^0.14.0"
+ "@szmarczak/http-timer" "^1.1.2"
+ cacheable-request "^6.0.0"
+ decompress-response "^3.3.0"
+ duplexer3 "^0.1.4"
+ get-stream "^4.1.0"
+ lowercase-keys "^1.0.1"
+ mimic-response "^1.0.1"
+ p-cancelable "^1.0.0"
+ to-readable-stream "^1.0.0"
+ url-parse-lax "^3.0.0"
+
+graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4:
+ version "4.2.6"
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee"
+ integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==
+
+gud@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0"
+ integrity sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==
+
+gzip-size@5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274"
+ integrity sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==
+ dependencies:
+ duplexer "^0.1.1"
+ pify "^4.0.1"
+
+handlebars@^4.4.3:
+ version "4.7.7"
+ resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1"
+ integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==
+ dependencies:
+ minimist "^1.2.5"
+ neo-async "^2.6.0"
+ source-map "^0.6.1"
+ wordwrap "^1.0.0"
+ optionalDependencies:
+ uglify-js "^3.1.4"
+
+has-ansi@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
+ integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=
+ dependencies:
+ ansi-regex "^2.0.0"
+
+has-bigints@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113"
+ integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==
+
+has-flag@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
+ integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
+
+has-flag@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
+ integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
+
+has-glob@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/has-glob/-/has-glob-1.0.0.tgz#9aaa9eedbffb1ba3990a7b0010fb678ee0081207"
+ integrity sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc=
+ dependencies:
+ is-glob "^3.0.0"
+
+has-symbols@^1.0.1, has-symbols@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
+ integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
+
+has-unicode@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
+ integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=
+
+has-value@^0.3.1:
+ version "0.3.1"
+ resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
+ integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=
+ dependencies:
+ get-value "^2.0.3"
+ has-values "^0.1.4"
+ isobject "^2.0.0"
+
+has-value@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
+ integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=
+ dependencies:
+ get-value "^2.0.6"
+ has-values "^1.0.0"
+ isobject "^3.0.0"
+
+has-values@^0.1.4:
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
+ integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E=
+
+has-values@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
+ integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=
+ dependencies:
+ is-number "^3.0.0"
+ kind-of "^4.0.0"
+
+has-yarn@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77"
+ integrity sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==
+
+has@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
+ integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
+ dependencies:
+ function-bind "^1.1.1"
+
+hash-base@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33"
+ integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==
+ dependencies:
+ inherits "^2.0.4"
+ readable-stream "^3.6.0"
+ safe-buffer "^5.2.0"
+
+hash.js@^1.0.0, hash.js@^1.0.3:
+ version "1.1.7"
+ resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42"
+ integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
+ dependencies:
+ inherits "^2.0.3"
+ minimalistic-assert "^1.0.1"
+
+hast-to-hyperscript@^9.0.0:
+ version "9.0.1"
+ resolved "https://registry.yarnpkg.com/hast-to-hyperscript/-/hast-to-hyperscript-9.0.1.tgz#9b67fd188e4c81e8ad66f803855334173920218d"
+ integrity sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==
+ dependencies:
+ "@types/unist" "^2.0.3"
+ comma-separated-tokens "^1.0.0"
+ property-information "^5.3.0"
+ space-separated-tokens "^1.0.0"
+ style-to-object "^0.3.0"
+ unist-util-is "^4.0.0"
+ web-namespaces "^1.0.0"
+
+hast-util-from-parse5@^6.0.0:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-6.0.1.tgz#554e34abdeea25ac76f5bd950a1f0180e0b3bc2a"
+ integrity sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==
+ dependencies:
+ "@types/parse5" "^5.0.0"
+ hastscript "^6.0.0"
+ property-information "^5.0.0"
+ vfile "^4.0.0"
+ vfile-location "^3.2.0"
+ web-namespaces "^1.0.0"
+
+hast-util-parse-selector@^2.0.0:
+ version "2.2.5"
+ resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz#d57c23f4da16ae3c63b3b6ca4616683313499c3a"
+ integrity sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==
+
+hast-util-raw@6.0.1:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/hast-util-raw/-/hast-util-raw-6.0.1.tgz#973b15930b7529a7b66984c98148b46526885977"
+ integrity sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==
+ dependencies:
+ "@types/hast" "^2.0.0"
+ hast-util-from-parse5 "^6.0.0"
+ hast-util-to-parse5 "^6.0.0"
+ html-void-elements "^1.0.0"
+ parse5 "^6.0.0"
+ unist-util-position "^3.0.0"
+ vfile "^4.0.0"
+ web-namespaces "^1.0.0"
+ xtend "^4.0.0"
+ zwitch "^1.0.0"
+
+hast-util-to-parse5@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz#1ec44650b631d72952066cea9b1445df699f8479"
+ integrity sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==
+ dependencies:
+ hast-to-hyperscript "^9.0.0"
+ property-information "^5.0.0"
+ web-namespaces "^1.0.0"
+ xtend "^4.0.0"
+ zwitch "^1.0.0"
+
+hastscript@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-6.0.0.tgz#e8768d7eac56c3fdeac8a92830d58e811e5bf640"
+ integrity sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==
+ dependencies:
+ "@types/hast" "^2.0.0"
+ comma-separated-tokens "^1.0.0"
+ hast-util-parse-selector "^2.0.0"
+ property-information "^5.0.0"
+ space-separated-tokens "^1.0.0"
+
+he@1.2.0, he@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
+ integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
+
+header-case@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/header-case/-/header-case-1.0.1.tgz#9535973197c144b09613cd65d317ef19963bd02d"
+ integrity sha1-lTWXMZfBRLCWE81l0xfvGZY70C0=
+ dependencies:
+ no-case "^2.2.0"
+ upper-case "^1.1.3"
+
+highlight.js@^10.1.1, highlight.js@~10.7.0:
+ version "10.7.1"
+ resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.7.1.tgz#a8ec4152db24ea630c90927d6cae2a45f8ecb955"
+ integrity sha512-S6G97tHGqJ/U8DsXcEdnACbirtbx58Bx9CzIVeYli8OuswCfYI/LsXH2EiGcoGio1KAC3x4mmUwulOllJ2ZyRA==
+
+hmac-drbg@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
+ integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=
+ dependencies:
+ hash.js "^1.0.3"
+ minimalistic-assert "^1.0.0"
+ minimalistic-crypto-utils "^1.0.1"
+
+hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.3.0:
+ version "3.3.2"
+ resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
+ integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==
+ dependencies:
+ react-is "^16.7.0"
+
+homedir-polyfill@^1.0.1:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8"
+ integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==
+ dependencies:
+ parse-passwd "^1.0.0"
+
+hosted-git-info@^2.1.4:
+ version "2.8.8"
+ resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488"
+ integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==
+
+html-entities@^1.2.0, html-entities@^1.2.1:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.4.0.tgz#cfbd1b01d2afaf9adca1b10ae7dffab98c71d2dc"
+ integrity sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==
+
+html-minifier-terser@^5.0.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054"
+ integrity sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==
+ dependencies:
+ camel-case "^4.1.1"
+ clean-css "^4.2.3"
+ commander "^4.1.1"
+ he "^1.2.0"
+ param-case "^3.0.3"
+ relateurl "^0.2.7"
+ terser "^4.6.3"
+
+html-tags@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.1.0.tgz#7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140"
+ integrity sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==
+
+html-void-elements@^1.0.0:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-1.0.5.tgz#ce9159494e86d95e45795b166c2021c2cfca4483"
+ integrity sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==
+
+html-webpack-plugin@^4.0.0:
+ version "4.5.2"
+ resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz#76fc83fa1a0f12dd5f7da0404a54e2699666bc12"
+ integrity sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==
+ dependencies:
+ "@types/html-minifier-terser" "^5.0.0"
+ "@types/tapable" "^1.0.5"
+ "@types/webpack" "^4.41.8"
+ html-minifier-terser "^5.0.1"
+ loader-utils "^1.2.3"
+ lodash "^4.17.20"
+ pretty-error "^2.1.1"
+ tapable "^1.1.3"
+ util.promisify "1.0.0"
+
+htmlparser2@^3.10.1:
+ version "3.10.1"
+ resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f"
+ integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==
+ dependencies:
+ domelementtype "^1.3.1"
+ domhandler "^2.3.0"
+ domutils "^1.5.1"
+ entities "^1.1.1"
+ inherits "^2.0.1"
+ readable-stream "^3.1.1"
+
+http-cache-semantics@^4.0.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390"
+ integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==
+
+http-errors@1.7.2:
+ version "1.7.2"
+ resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f"
+ integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==
+ dependencies:
+ depd "~1.1.2"
+ inherits "2.0.3"
+ setprototypeof "1.1.1"
+ statuses ">= 1.5.0 < 2"
+ toidentifier "1.0.0"
+
+http-errors@1.7.3, http-errors@~1.7.2:
+ version "1.7.3"
+ resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06"
+ integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==
+ dependencies:
+ depd "~1.1.2"
+ inherits "2.0.4"
+ setprototypeof "1.1.1"
+ statuses ">= 1.5.0 < 2"
+ toidentifier "1.0.0"
+
+https-browserify@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
+ integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
+
+iconv-lite@0.4.24, iconv-lite@^0.4.24:
+ version "0.4.24"
+ resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
+ integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
+ dependencies:
+ safer-buffer ">= 2.1.2 < 3"
+
+icss-utils@^4.0.0, icss-utils@^4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467"
+ integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==
+ dependencies:
+ postcss "^7.0.14"
+
+ieee754@^1.1.4:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
+ integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
+
+iferr@^0.1.5:
+ version "0.1.5"
+ resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"
+ integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE=
+
+ignore@^4.0.3, ignore@^4.0.6:
+ version "4.0.6"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
+ integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
+
+ignore@^5.1.1, ignore@^5.1.4:
+ version "5.1.8"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57"
+ integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==
+
+immer@8.0.1:
+ version "8.0.1"
+ resolved "https://registry.yarnpkg.com/immer/-/immer-8.0.1.tgz#9c73db683e2b3975c424fb0572af5889877ae656"
+ integrity sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==
+
+import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
+ integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
+ dependencies:
+ parent-module "^1.0.0"
+ resolve-from "^4.0.0"
+
+import-lazy@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43"
+ integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=
+
+imurmurhash@^0.1.4:
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
+ integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
+
+indent-string@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
+ integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
+
+indexes-of@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
+ integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc=
+
+infer-owner@^1.0.3, infer-owner@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
+ integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
+
+inflight@^1.0.4:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
+ integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
+ dependencies:
+ once "^1.3.0"
+ wrappy "1"
+
+inherits@2, inherits@2.0.4, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
+ integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
+
+inherits@2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
+ integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=
+
+inherits@2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
+ integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
+
+ini@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5"
+ integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==
+
+ini@^1.3.4, ini@^1.3.5, ini@~1.3.0:
+ version "1.3.8"
+ resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
+ integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
+
+inline-style-parser@0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1"
+ integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==
+
+inquirer@^7.1.0:
+ version "7.3.3"
+ resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003"
+ integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==
+ dependencies:
+ ansi-escapes "^4.2.1"
+ chalk "^4.1.0"
+ cli-cursor "^3.1.0"
+ cli-width "^3.0.0"
+ external-editor "^3.0.3"
+ figures "^3.0.0"
+ lodash "^4.17.19"
+ mute-stream "0.0.8"
+ run-async "^2.4.0"
+ rxjs "^6.6.0"
+ string-width "^4.1.0"
+ strip-ansi "^6.0.0"
+ through "^2.3.6"
+
+internal-slot@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
+ integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
+ dependencies:
+ get-intrinsic "^1.1.0"
+ has "^1.0.3"
+ side-channel "^1.0.4"
+
+interpret@^1.2.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e"
+ integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==
+
+interpret@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9"
+ integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==
+
+invariant@^2.2.3, invariant@^2.2.4:
+ version "2.2.4"
+ resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
+ integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
+ dependencies:
+ loose-envify "^1.0.0"
+
+ip@^1.1.5:
+ version "1.1.5"
+ resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a"
+ integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=
+
+ipaddr.js@1.9.1:
+ version "1.9.1"
+ resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
+ integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==
+
+is-absolute-url@^3.0.0:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698"
+ integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==
+
+is-absolute@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576"
+ integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==
+ dependencies:
+ is-relative "^1.0.0"
+ is-windows "^1.0.1"
+
+is-accessor-descriptor@^0.1.6:
+ version "0.1.6"
+ resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
+ integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=
+ dependencies:
+ kind-of "^3.0.2"
+
+is-accessor-descriptor@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
+ integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==
+ dependencies:
+ kind-of "^6.0.0"
+
+is-alphabetical@1.0.4, is-alphabetical@^1.0.0:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d"
+ integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==
+
+is-alphanumerical@^1.0.0:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf"
+ integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==
+ dependencies:
+ is-alphabetical "^1.0.0"
+ is-decimal "^1.0.0"
+
+is-arguments@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz#62353031dfbee07ceb34656a6bde59efecae8dd9"
+ integrity sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==
+ dependencies:
+ call-bind "^1.0.0"
+
+is-arrayish@^0.2.1:
+ version "0.2.1"
+ resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
+ integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
+
+is-bigint@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.1.tgz#6923051dfcbc764278540b9ce0e6b3213aa5ebc2"
+ integrity sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==
+
+is-binary-path@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
+ integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=
+ dependencies:
+ binary-extensions "^1.0.0"
+
+is-binary-path@~2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
+ integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
+ dependencies:
+ binary-extensions "^2.0.0"
+
+is-boolean-object@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.0.tgz#e2aaad3a3a8fca34c28f6eee135b156ed2587ff0"
+ integrity sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==
+ dependencies:
+ call-bind "^1.0.0"
+
+is-buffer@^1.1.5:
+ version "1.1.6"
+ resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
+ integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
+
+is-buffer@^2.0.0:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
+ integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
+
+is-callable@^1.1.4, is-callable@^1.2.3:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e"
+ integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==
+
+is-ci@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c"
+ integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==
+ dependencies:
+ ci-info "^2.0.0"
+
+is-core-module@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a"
+ integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==
+ dependencies:
+ has "^1.0.3"
+
+is-data-descriptor@^0.1.4:
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
+ integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=
+ dependencies:
+ kind-of "^3.0.2"
+
+is-data-descriptor@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
+ integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==
+ dependencies:
+ kind-of "^6.0.0"
+
+is-date-object@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e"
+ integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==
+
+is-decimal@^1.0.0:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5"
+ integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==
+
+is-descriptor@^0.1.0:
+ version "0.1.6"
+ resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
+ integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==
+ dependencies:
+ is-accessor-descriptor "^0.1.6"
+ is-data-descriptor "^0.1.4"
+ kind-of "^5.0.0"
+
+is-descriptor@^1.0.0, is-descriptor@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
+ integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==
+ dependencies:
+ is-accessor-descriptor "^1.0.0"
+ is-data-descriptor "^1.0.0"
+ kind-of "^6.0.2"
+
+is-docker@^2.0.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz#4125a88e44e450d384e09047ede71adc2d144156"
+ integrity sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==
+
+is-dom@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/is-dom/-/is-dom-1.1.0.tgz#af1fced292742443bb59ca3f76ab5e80907b4e8a"
+ integrity sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==
+ dependencies:
+ is-object "^1.0.1"
+ is-window "^1.0.2"
+
+is-extendable@^0.1.0, is-extendable@^0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
+ integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
+
+is-extendable@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
+ integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
+ dependencies:
+ is-plain-object "^2.0.4"
+
+is-extglob@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
+ integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=
+
+is-extglob@^2.1.0, is-extglob@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
+ integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
+
+is-fullwidth-code-point@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
+ integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs=
+ dependencies:
+ number-is-nan "^1.0.0"
+
+is-fullwidth-code-point@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
+ integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
+
+is-fullwidth-code-point@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
+ integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
+
+is-function@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-function/-/is-function-1.0.2.tgz#4f097f30abf6efadac9833b17ca5dc03f8144e08"
+ integrity sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==
+
+is-glob@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
+ integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=
+ dependencies:
+ is-extglob "^1.0.0"
+
+is-glob@^3.0.0, is-glob@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
+ integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=
+ dependencies:
+ is-extglob "^2.1.0"
+
+is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
+ integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
+ dependencies:
+ is-extglob "^2.1.1"
+
+is-hexadecimal@^1.0.0:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7"
+ integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==
+
+is-installed-globally@^0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520"
+ integrity sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==
+ dependencies:
+ global-dirs "^3.0.0"
+ is-path-inside "^3.0.2"
+
+is-lower-case@^1.1.0:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/is-lower-case/-/is-lower-case-1.1.3.tgz#7e147be4768dc466db3bfb21cc60b31e6ad69393"
+ integrity sha1-fhR75HaNxGbbO/shzGCzHmrWk5M=
+ dependencies:
+ lower-case "^1.1.0"
+
+is-map@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127"
+ integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==
+
+is-module@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
+ integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=
+
+is-negative-zero@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24"
+ integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==
+
+is-npm@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-5.0.0.tgz#43e8d65cc56e1b67f8d47262cf667099193f45a8"
+ integrity sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==
+
+is-number-object@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197"
+ integrity sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==
+
+is-number@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
+ integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=
+ dependencies:
+ kind-of "^3.0.2"
+
+is-number@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
+ integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
+
+is-obj@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
+ integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
+
+is-obj@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
+ integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
+
+is-object@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.2.tgz#a56552e1c665c9e950b4a025461da87e72f86fcf"
+ integrity sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==
+
+is-path-cwd@^2.0.0, is-path-cwd@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb"
+ integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==
+
+is-path-in-cwd@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz#bfe2dca26c69f397265a4009963602935a053acb"
+ integrity sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==
+ dependencies:
+ is-path-inside "^2.1.0"
+
+is-path-inside@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2"
+ integrity sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==
+ dependencies:
+ path-is-inside "^1.0.2"
+
+is-path-inside@^3.0.1, is-path-inside@^3.0.2:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
+ integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
+
+is-plain-obj@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
+ integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
+
+is-plain-object@3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-3.0.1.tgz#662d92d24c0aa4302407b0d45d21f2251c85f85b"
+ integrity sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==
+
+is-plain-object@^2.0.3, is-plain-object@^2.0.4:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
+ integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
+ dependencies:
+ isobject "^3.0.1"
+
+is-promise@^2.1.0:
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1"
+ integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==
+
+is-regex@^1.1.1, is-regex@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.2.tgz#81c8ebde4db142f2cf1c53fc86d6a45788266251"
+ integrity sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==
+ dependencies:
+ call-bind "^1.0.2"
+ has-symbols "^1.0.1"
+
+is-regexp@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069"
+ integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk=
+
+is-relative@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d"
+ integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==
+ dependencies:
+ is-unc-path "^1.0.0"
+
+is-root@2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c"
+ integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==
+
+is-set@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec"
+ integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==
+
+is-stream@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
+ integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
+
+is-stream@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3"
+ integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==
+
+is-string@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6"
+ integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==
+
+is-symbol@^1.0.2, is-symbol@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937"
+ integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==
+ dependencies:
+ has-symbols "^1.0.1"
+
+is-typedarray@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
+ integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
+
+is-unc-path@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d"
+ integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==
+ dependencies:
+ unc-path-regex "^0.1.2"
+
+is-upper-case@^1.1.0:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/is-upper-case/-/is-upper-case-1.1.2.tgz#8d0b1fa7e7933a1e58483600ec7d9661cbaf756f"
+ integrity sha1-jQsfp+eTOh5YSDYA7H2WYcuvdW8=
+ dependencies:
+ upper-case "^1.1.0"
+
+is-whitespace-character@^1.0.0:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz#0858edd94a95594c7c9dd0b5c174ec6e45ee4aa7"
+ integrity sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==
+
+is-window@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-window/-/is-window-1.0.2.tgz#2c896ca53db97de45d3c33133a65d8c9f563480d"
+ integrity sha1-LIlspT25feRdPDMTOmXYyfVjSA0=
+
+is-windows@^1.0.1, is-windows@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
+ integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
+
+is-word-character@^1.0.0:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.4.tgz#ce0e73216f98599060592f62ff31354ddbeb0230"
+ integrity sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==
+
+is-wsl@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
+ integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
+
+is-wsl@^2.1.1:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271"
+ integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==
+ dependencies:
+ is-docker "^2.0.0"
+
+is-yarn-global@^0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232"
+ integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==
+
+isarray@0.0.1:
+ version "0.0.1"
+ resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
+ integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=
+
+isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
+ integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
+
+isarray@^2.0.5:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723"
+ integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==
+
+isbinaryfile@^4.0.2:
+ version "4.0.6"
+ resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.6.tgz#edcb62b224e2b4710830b67498c8e4e5a4d2610b"
+ integrity sha512-ORrEy+SNVqUhrCaal4hA4fBzhggQQ+BaLntyPOdoEiwlKZW9BZiJXjg3RMiruE4tPEI3pyVPpySHQF/dKWperg==
+
+isexe@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
+ integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
+
+isobject@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
+ integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=
+ dependencies:
+ isarray "1.0.0"
+
+isobject@^3.0.0, isobject@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
+ integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
+
+isobject@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/isobject/-/isobject-4.0.0.tgz#3f1c9155e73b192022a80819bacd0343711697b0"
+ integrity sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==
+
+istanbul-lib-coverage@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec"
+ integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==
+
+istanbul-lib-instrument@^4.0.0:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d"
+ integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==
+ dependencies:
+ "@babel/core" "^7.7.5"
+ "@istanbuljs/schema" "^0.1.2"
+ istanbul-lib-coverage "^3.0.0"
+ semver "^6.3.0"
+
+iterate-iterator@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/iterate-iterator/-/iterate-iterator-1.0.1.tgz#1693a768c1ddd79c969051459453f082fe82e9f6"
+ integrity sha512-3Q6tudGN05kbkDQDI4CqjaBf4qf85w6W6GnuZDtUVYwKgtC1q8yxYX7CZed7N+tLzQqS6roujWvszf13T+n9aw==
+
+iterate-value@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/iterate-value/-/iterate-value-1.0.2.tgz#935115bd37d006a52046535ebc8d07e9c9337f57"
+ integrity sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==
+ dependencies:
+ es-get-iterator "^1.0.2"
+ iterate-iterator "^1.0.1"
+
+jest-haste-map@^26.6.2:
+ version "26.6.2"
+ resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.6.2.tgz#dd7e60fe7dc0e9f911a23d79c5ff7fb5c2cafeaa"
+ integrity sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==
+ dependencies:
+ "@jest/types" "^26.6.2"
+ "@types/graceful-fs" "^4.1.2"
+ "@types/node" "*"
+ anymatch "^3.0.3"
+ fb-watchman "^2.0.0"
+ graceful-fs "^4.2.4"
+ jest-regex-util "^26.0.0"
+ jest-serializer "^26.6.2"
+ jest-util "^26.6.2"
+ jest-worker "^26.6.2"
+ micromatch "^4.0.2"
+ sane "^4.0.3"
+ walker "^1.0.7"
+ optionalDependencies:
+ fsevents "^2.1.2"
+
+jest-regex-util@^26.0.0:
+ version "26.0.0"
+ resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28"
+ integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==
+
+jest-serializer@^26.6.2:
+ version "26.6.2"
+ resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.6.2.tgz#d139aafd46957d3a448f3a6cdabe2919ba0742d1"
+ integrity sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==
+ dependencies:
+ "@types/node" "*"
+ graceful-fs "^4.2.4"
+
+jest-util@^26.6.2:
+ version "26.6.2"
+ resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.6.2.tgz#907535dbe4d5a6cb4c47ac9b926f6af29576cbc1"
+ integrity sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==
+ dependencies:
+ "@jest/types" "^26.6.2"
+ "@types/node" "*"
+ chalk "^4.0.0"
+ graceful-fs "^4.2.4"
+ is-ci "^2.0.0"
+ micromatch "^4.0.2"
+
+jest-worker@24.9.0:
+ version "24.9.0"
+ resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5"
+ integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==
+ dependencies:
+ merge-stream "^2.0.0"
+ supports-color "^6.1.0"
+
+jest-worker@^26.2.1, jest-worker@^26.6.2:
+ version "26.6.2"
+ resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed"
+ integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==
+ dependencies:
+ "@types/node" "*"
+ merge-stream "^2.0.0"
+ supports-color "^7.0.0"
+
+jju@^1.1.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/jju/-/jju-1.4.0.tgz#a3abe2718af241a2b2904f84a625970f389ae32a"
+ integrity sha1-o6vicYryQaKykE+EpiWXDzia4yo=
+
+joi@^17.4.0:
+ version "17.4.0"
+ resolved "https://registry.yarnpkg.com/joi/-/joi-17.4.0.tgz#b5c2277c8519e016316e49ababd41a1908d9ef20"
+ integrity sha512-F4WiW2xaV6wc1jxete70Rw4V/VuMd6IN+a5ilZsxG4uYtUXWu2kq9W5P2dz30e7Gmw8RCbY/u/uk+dMPma9tAg==
+ dependencies:
+ "@hapi/hoek" "^9.0.0"
+ "@hapi/topo" "^5.0.0"
+ "@sideway/address" "^4.1.0"
+ "@sideway/formula" "^3.0.0"
+ "@sideway/pinpoint" "^2.0.0"
+
+js-string-escape@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef"
+ integrity sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=
+
+"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
+ integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
+
+js-yaml@^3.13.1:
+ version "3.14.1"
+ resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
+ integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
+ dependencies:
+ argparse "^1.0.7"
+ esprima "^4.0.0"
+
+jsesc@^2.5.1:
+ version "2.5.2"
+ resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
+ integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
+
+jsesc@~0.5.0:
+ version "0.5.0"
+ resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
+ integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
+
+json-buffer@3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898"
+ integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=
+
+json-parse-better-errors@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
+ integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
+
+json-parse-even-better-errors@^2.3.0:
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
+ integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
+
+json-parse-helpfulerror@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz#13f14ce02eed4e981297b64eb9e3b932e2dd13dc"
+ integrity sha1-E/FM4C7tTpgSl7ZOueO5MuLdE9w=
+ dependencies:
+ jju "^1.1.0"
+
+json-schema-traverse@^0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
+ integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
+
+json-schema-traverse@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"
+ integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
+
+json-server@^0.16.3:
+ version "0.16.3"
+ resolved "https://registry.yarnpkg.com/json-server/-/json-server-0.16.3.tgz#75e0417bc346f5f221a74f4d2ce4b67f52204a8e"
+ integrity sha512-tbsBONiefH7SR5EhSmK4EzwP3kCHuOduUq5hWAQjCwXTva4OBeKVcPrciHNWOK/+12ygtUnjuWcAxuHgqTuBLA==
+ dependencies:
+ body-parser "^1.19.0"
+ chalk "^4.1.0"
+ compression "^1.7.4"
+ connect-pause "^0.1.1"
+ cors "^2.8.5"
+ errorhandler "^1.5.1"
+ express "^4.17.1"
+ express-urlrewrite "^1.3.0"
+ json-parse-helpfulerror "^1.0.3"
+ lodash "^4.17.20"
+ lodash-id "^0.14.0"
+ lowdb "^1.0.0"
+ method-override "^3.0.0"
+ morgan "^1.10.0"
+ nanoid "^3.1.16"
+ please-upgrade-node "^3.2.0"
+ pluralize "^8.0.0"
+ server-destroy "^1.0.1"
+ update-notifier "^5.0.1"
+ yargs "^16.1.1"
+
+json-stable-stringify-without-jsonify@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
+ integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=
+
+json5@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
+ integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
+ dependencies:
+ minimist "^1.2.0"
+
+json5@^2.1.2, json5@^2.1.3:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
+ integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==
+ dependencies:
+ minimist "^1.2.5"
+
+jsonfile@^2.1.0:
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
+ integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug=
+ optionalDependencies:
+ graceful-fs "^4.1.6"
+
+jsonfile@^6.0.1:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae"
+ integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==
+ dependencies:
+ universalify "^2.0.0"
+ optionalDependencies:
+ graceful-fs "^4.1.6"
+
+"jsx-ast-utils@^2.4.1 || ^3.0.0":
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz#41108d2cec408c3453c1bbe8a4aae9e1e2bd8f82"
+ integrity sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==
+ dependencies:
+ array-includes "^3.1.2"
+ object.assign "^4.1.2"
+
+junk@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/junk/-/junk-3.1.0.tgz#31499098d902b7e98c5d9b9c80f43457a88abfa1"
+ integrity sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==
+
+keyv@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9"
+ integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==
+ dependencies:
+ json-buffer "3.0.0"
+
+kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
+ version "3.2.2"
+ resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
+ integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=
+ dependencies:
+ is-buffer "^1.1.5"
+
+kind-of@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
+ integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc=
+ dependencies:
+ is-buffer "^1.1.5"
+
+kind-of@^5.0.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
+ integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
+
+kind-of@^6.0.0, kind-of@^6.0.2:
+ version "6.0.3"
+ resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
+ integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
+
+klaw@^1.0.0:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439"
+ integrity sha1-QIhDO0azsbolnXh4XY6W9zugJDk=
+ optionalDependencies:
+ graceful-fs "^4.1.9"
+
+kleur@^3.0.3:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
+ integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
+
+klona@^2.0.4:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.4.tgz#7bb1e3affb0cb8624547ef7e8f6708ea2e39dfc0"
+ integrity sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==
+
+latest-version@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face"
+ integrity sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==
+ dependencies:
+ package-json "^6.3.0"
+
+lazy-universal-dotenv@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/lazy-universal-dotenv/-/lazy-universal-dotenv-3.0.1.tgz#a6c8938414bca426ab8c9463940da451a911db38"
+ integrity sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==
+ dependencies:
+ "@babel/runtime" "^7.5.0"
+ app-root-dir "^1.0.2"
+ core-js "^3.0.4"
+ dotenv "^8.0.0"
+ dotenv-expand "^5.1.0"
+
+levn@^0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
+ integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
+ dependencies:
+ prelude-ls "^1.2.1"
+ type-check "~0.4.0"
+
+levn@~0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
+ integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=
+ dependencies:
+ prelude-ls "~1.1.2"
+ type-check "~0.3.2"
+
+liftoff@^2.5.0:
+ version "2.5.0"
+ resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.5.0.tgz#2009291bb31cea861bbf10a7c15a28caf75c31ec"
+ integrity sha1-IAkpG7Mc6oYbvxCnwVooyvdcMew=
+ dependencies:
+ extend "^3.0.0"
+ findup-sync "^2.0.0"
+ fined "^1.0.1"
+ flagged-respawn "^1.0.0"
+ is-plain-object "^2.0.4"
+ object.map "^1.0.0"
+ rechoir "^0.6.2"
+ resolve "^1.1.7"
+
+line-column@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/line-column/-/line-column-1.0.2.tgz#d25af2936b6f4849172b312e4792d1d987bc34a2"
+ integrity sha1-0lryk2tvSEkXKzEuR5LR2Ye8NKI=
+ dependencies:
+ isarray "^1.0.0"
+ isobject "^2.0.0"
+
+lines-and-columns@^1.1.6:
+ version "1.1.6"
+ resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
+ integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
+
+loader-runner@^2.4.0:
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
+ integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
+
+loader-utils@1.2.3:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7"
+ integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==
+ dependencies:
+ big.js "^5.2.2"
+ emojis-list "^2.0.0"
+ json5 "^1.0.1"
+
+loader-utils@2.0.0, loader-utils@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0"
+ integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==
+ dependencies:
+ big.js "^5.2.2"
+ emojis-list "^3.0.0"
+ json5 "^2.1.2"
+
+loader-utils@^1.2.3, loader-utils@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613"
+ integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==
+ dependencies:
+ big.js "^5.2.2"
+ emojis-list "^3.0.0"
+ json5 "^1.0.1"
+
+locate-path@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
+ integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
+ dependencies:
+ p-locate "^3.0.0"
+ path-exists "^3.0.0"
+
+locate-path@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
+ integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
+ dependencies:
+ p-locate "^4.1.0"
+
+locate-path@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
+ integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
+ dependencies:
+ p-locate "^5.0.0"
+
+lodash-id@^0.14.0:
+ version "0.14.0"
+ resolved "https://registry.yarnpkg.com/lodash-id/-/lodash-id-0.14.0.tgz#baf48934e543a1b5d6346f8c84698b1a8c803896"
+ integrity sha1-uvSJNOVDobXWNG+MhGmLGoyAOJY=
+
+lodash.clonedeep@^4.5.0:
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
+ integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=
+
+lodash.debounce@^4.0.8:
+ version "4.0.8"
+ resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
+ integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
+
+lodash.flatten@^4.4.0:
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f"
+ integrity sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=
+
+lodash.get@^4.4.2:
+ version "4.4.2"
+ resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99"
+ integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=
+
+lodash.sortby@^4.7.0:
+ version "4.7.0"
+ resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
+ integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
+
+lodash.truncate@^4.4.2:
+ version "4.4.2"
+ resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193"
+ integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=
+
+lodash.uniq@4.5.0:
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
+ integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
+
+lodash@4, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21:
+ version "4.17.21"
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
+ integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
+
+log-symbols@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a"
+ integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==
+ dependencies:
+ chalk "^2.0.1"
+
+loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
+ integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
+ dependencies:
+ js-tokens "^3.0.0 || ^4.0.0"
+
+lowdb@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/lowdb/-/lowdb-1.0.0.tgz#5243be6b22786ccce30e50c9a33eac36b20c8064"
+ integrity sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==
+ dependencies:
+ graceful-fs "^4.1.3"
+ is-promise "^2.1.0"
+ lodash "4"
+ pify "^3.0.0"
+ steno "^0.4.1"
+
+lower-case-first@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/lower-case-first/-/lower-case-first-1.0.2.tgz#e5da7c26f29a7073be02d52bac9980e5922adfa1"
+ integrity sha1-5dp8JvKacHO+AtUrrJmA5ZIq36E=
+ dependencies:
+ lower-case "^1.1.2"
+
+lower-case@^1.1.0, lower-case@^1.1.1, lower-case@^1.1.2:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac"
+ integrity sha1-miyr0bno4K6ZOkv31YdcOcQujqw=
+
+lower-case@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28"
+ integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==
+ dependencies:
+ tslib "^2.0.3"
+
+lowercase-keys@^1.0.0, lowercase-keys@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f"
+ integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==
+
+lowercase-keys@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479"
+ integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==
+
+lowlight@^1.14.0:
+ version "1.20.0"
+ resolved "https://registry.yarnpkg.com/lowlight/-/lowlight-1.20.0.tgz#ddb197d33462ad0d93bf19d17b6c301aa3941888"
+ integrity sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==
+ dependencies:
+ fault "^1.0.0"
+ highlight.js "~10.7.0"
+
+lru-cache@^5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
+ integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
+ dependencies:
+ yallist "^3.0.2"
+
+lru-cache@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
+ integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
+ dependencies:
+ yallist "^4.0.0"
+
+lz-string@^1.4.4:
+ version "1.4.4"
+ resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.4.4.tgz#c0d8eaf36059f705796e1e344811cf4c498d3a26"
+ integrity sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=
+
+magic-string@^0.25.0, magic-string@^0.25.7:
+ version "0.25.7"
+ resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051"
+ integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==
+ dependencies:
+ sourcemap-codec "^1.4.4"
+
+make-dir@^2.0.0, make-dir@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
+ integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
+ dependencies:
+ pify "^4.0.1"
+ semver "^5.6.0"
+
+make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
+ integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
+ dependencies:
+ semver "^6.0.0"
+
+make-iterator@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/make-iterator/-/make-iterator-1.0.1.tgz#29b33f312aa8f547c4a5e490f56afcec99133ad6"
+ integrity sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==
+ dependencies:
+ kind-of "^6.0.2"
+
+makeerror@1.0.x:
+ version "1.0.11"
+ resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
+ integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=
+ dependencies:
+ tmpl "1.0.x"
+
+map-cache@^0.2.0, map-cache@^0.2.2:
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
+ integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=
+
+map-or-similar@^1.5.0:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/map-or-similar/-/map-or-similar-1.5.0.tgz#6de2653174adfb5d9edc33c69d3e92a1b76faf08"
+ integrity sha1-beJlMXSt+12e3DPGnT6Sobdvrwg=
+
+map-visit@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
+ integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=
+ dependencies:
+ object-visit "^1.0.0"
+
+markdown-escapes@^1.0.0:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.4.tgz#c95415ef451499d7602b91095f3c8e8975f78535"
+ integrity sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==
+
+markdown-to-jsx@^6.11.4:
+ version "6.11.4"
+ resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-6.11.4.tgz#b4528b1ab668aef7fe61c1535c27e837819392c5"
+ integrity sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==
+ dependencies:
+ prop-types "^15.6.2"
+ unquote "^1.1.0"
+
+markdown-to-jsx@^7.1.0:
+ version "7.1.2"
+ resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.1.2.tgz#19d3da4cd8864045cdd13a0d179147fbd6a088d4"
+ integrity sha512-O8DMCl32V34RrD+ZHxcAPc2+kYytuDIoQYjY36RVdsLK7uHjgNVvFec4yv0X6LgB4YEZgSvK5QtFi5YVqEpoMA==
+
+md5.js@^1.3.4:
+ version "1.3.5"
+ resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f"
+ integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==
+ dependencies:
+ hash-base "^3.0.0"
+ inherits "^2.0.1"
+ safe-buffer "^5.1.2"
+
+mdast-squeeze-paragraphs@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/mdast-squeeze-paragraphs/-/mdast-squeeze-paragraphs-4.0.0.tgz#7c4c114679c3bee27ef10b58e2e015be79f1ef97"
+ integrity sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==
+ dependencies:
+ unist-util-remove "^2.0.0"
+
+mdast-util-definitions@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz#c5c1a84db799173b4dcf7643cda999e440c24db2"
+ integrity sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==
+ dependencies:
+ unist-util-visit "^2.0.0"
+
+mdast-util-to-hast@10.0.1:
+ version "10.0.1"
+ resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-10.0.1.tgz#0cfc82089494c52d46eb0e3edb7a4eb2aea021eb"
+ integrity sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+ "@types/unist" "^2.0.0"
+ mdast-util-definitions "^4.0.0"
+ mdurl "^1.0.0"
+ unist-builder "^2.0.0"
+ unist-util-generated "^1.0.0"
+ unist-util-position "^3.0.0"
+ unist-util-visit "^2.0.0"
+
+mdast-util-to-string@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz#27055500103f51637bd07d01da01eb1967a43527"
+ integrity sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==
+
+mdurl@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e"
+ integrity sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=
+
+media-typer@0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
+ integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=
+
+memfs@^3.1.2:
+ version "3.2.1"
+ resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.2.1.tgz#12301801a14eb3daa9f7491aa0ff09ffec519dd0"
+ integrity sha512-Y5vcpQzWTime4fBTr/fEnxXUxEYUgKbDlty1WX0gaa4ae14I6KmvK1S8HtXOX0elKAE6ENZJctkGtbTFYcRIUw==
+ dependencies:
+ fs-monkey "1.0.1"
+
+memoizerific@^1.11.3:
+ version "1.11.3"
+ resolved "https://registry.yarnpkg.com/memoizerific/-/memoizerific-1.11.3.tgz#7c87a4646444c32d75438570905f2dbd1b1a805a"
+ integrity sha1-fIekZGREwy11Q4VwkF8tvRsagFo=
+ dependencies:
+ map-or-similar "^1.5.0"
+
+memory-fs@^0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
+ integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=
+ dependencies:
+ errno "^0.1.3"
+ readable-stream "^2.0.1"
+
+memory-fs@^0.5.0:
+ version "0.5.0"
+ resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c"
+ integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==
+ dependencies:
+ errno "^0.1.3"
+ readable-stream "^2.0.1"
+
+merge-descriptors@1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
+ integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=
+
+merge-stream@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
+ integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
+
+merge2@^1.2.3, merge2@^1.3.0:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
+ integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
+
+method-override@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/method-override/-/method-override-3.0.0.tgz#6ab0d5d574e3208f15b0c9cf45ab52000468d7a2"
+ integrity sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA==
+ dependencies:
+ debug "3.1.0"
+ methods "~1.1.2"
+ parseurl "~1.3.2"
+ vary "~1.1.2"
+
+methods@~1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
+ integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=
+
+microevent.ts@~0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/microevent.ts/-/microevent.ts-0.1.1.tgz#70b09b83f43df5172d0205a63025bce0f7357fa0"
+ integrity sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==
+
+micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4:
+ version "3.1.10"
+ resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
+ integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
+ dependencies:
+ arr-diff "^4.0.0"
+ array-unique "^0.3.2"
+ braces "^2.3.1"
+ define-property "^2.0.2"
+ extend-shallow "^3.0.2"
+ extglob "^2.0.4"
+ fragment-cache "^0.2.1"
+ kind-of "^6.0.2"
+ nanomatch "^1.2.9"
+ object.pick "^1.3.0"
+ regex-not "^1.0.0"
+ snapdragon "^0.8.1"
+ to-regex "^3.0.2"
+
+micromatch@^4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259"
+ integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==
+ dependencies:
+ braces "^3.0.1"
+ picomatch "^2.0.5"
+
+miller-rabin@^4.0.0:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
+ integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==
+ dependencies:
+ bn.js "^4.0.0"
+ brorand "^1.0.1"
+
+mime-db@1.46.0:
+ version "1.46.0"
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.46.0.tgz#6267748a7f799594de3cbc8cde91def349661cee"
+ integrity sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==
+
+"mime-db@>= 1.43.0 < 2":
+ version "1.47.0"
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.47.0.tgz#8cb313e59965d3c05cfbf898915a267af46a335c"
+ integrity sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw==
+
+mime-types@^2.1.12, mime-types@^2.1.27, mime-types@~2.1.24:
+ version "2.1.29"
+ resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.29.tgz#1d4ab77da64b91f5f72489df29236563754bb1b2"
+ integrity sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==
+ dependencies:
+ mime-db "1.46.0"
+
+mime@1.6.0:
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
+ integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
+
+mime@^2.4.4:
+ version "2.5.2"
+ resolved "https://registry.yarnpkg.com/mime/-/mime-2.5.2.tgz#6e3dc6cc2b9510643830e5f19d5cb753da5eeabe"
+ integrity sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==
+
+mimic-fn@^1.0.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
+ integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
+
+mimic-fn@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
+ integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
+
+mimic-response@^1.0.0, mimic-response@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b"
+ integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==
+
+min-document@^2.19.0:
+ version "2.19.0"
+ resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685"
+ integrity sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=
+ dependencies:
+ dom-walk "^0.1.0"
+
+min-indent@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869"
+ integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
+
+minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
+ integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
+
+minimalistic-crypto-utils@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
+ integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
+
+minimatch@3.0.4, minimatch@^3.0.2, minimatch@^3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
+ integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
+ dependencies:
+ brace-expansion "^1.1.7"
+
+minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5:
+ version "1.2.5"
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
+ integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
+
+minipass-collect@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617"
+ integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==
+ dependencies:
+ minipass "^3.0.0"
+
+minipass-flush@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373"
+ integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==
+ dependencies:
+ minipass "^3.0.0"
+
+minipass-pipeline@^1.2.2:
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c"
+ integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==
+ dependencies:
+ minipass "^3.0.0"
+
+minipass@^3.0.0, minipass@^3.1.1:
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.3.tgz#7d42ff1f39635482e15f9cdb53184deebd5815fd"
+ integrity sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==
+ dependencies:
+ yallist "^4.0.0"
+
+minizlib@^2.1.1:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931"
+ integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==
+ dependencies:
+ minipass "^3.0.0"
+ yallist "^4.0.0"
+
+mississippi@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022"
+ integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==
+ dependencies:
+ concat-stream "^1.5.0"
+ duplexify "^3.4.2"
+ end-of-stream "^1.1.0"
+ flush-write-stream "^1.0.0"
+ from2 "^2.1.0"
+ parallel-transform "^1.1.0"
+ pump "^3.0.0"
+ pumpify "^1.3.3"
+ stream-each "^1.1.0"
+ through2 "^2.0.0"
+
+mixin-deep@^1.2.0:
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
+ integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
+ dependencies:
+ for-in "^1.0.2"
+ is-extendable "^1.0.1"
+
+mkdirp@^0.5.1, mkdirp@^0.5.3:
+ version "0.5.5"
+ resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
+ integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
+ dependencies:
+ minimist "^1.2.5"
+
+mkdirp@^1.0.3, mkdirp@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
+ integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
+
+morgan@^1.10.0:
+ version "1.10.0"
+ resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.10.0.tgz#091778abc1fc47cd3509824653dae1faab6b17d7"
+ integrity sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==
+ dependencies:
+ basic-auth "~2.0.1"
+ debug "2.6.9"
+ depd "~2.0.0"
+ on-finished "~2.3.0"
+ on-headers "~1.0.2"
+
+move-concurrently@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"
+ integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=
+ dependencies:
+ aproba "^1.1.1"
+ copy-concurrently "^1.0.0"
+ fs-write-stream-atomic "^1.0.8"
+ mkdirp "^0.5.1"
+ rimraf "^2.5.4"
+ run-queue "^1.0.3"
+
+ms@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
+ integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
+
+ms@2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
+ integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
+
+ms@2.1.2:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
+ integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
+
+ms@^2.1.1:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
+ integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
+
+mute-stream@0.0.8:
+ version "0.0.8"
+ resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
+ integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
+
+nan@^2.12.1:
+ version "2.14.2"
+ resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz#f5376400695168f4cc694ac9393d0c9585eeea19"
+ integrity sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==
+
+nanoid@^3.1.16:
+ version "3.1.22"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.22.tgz#b35f8fb7d151990a8aebd5aa5015c03cf726f844"
+ integrity sha512-/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ==
+
+nanomatch@^1.2.9:
+ version "1.2.13"
+ resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
+ integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==
+ dependencies:
+ arr-diff "^4.0.0"
+ array-unique "^0.3.2"
+ define-property "^2.0.2"
+ extend-shallow "^3.0.2"
+ fragment-cache "^0.2.1"
+ is-windows "^1.0.2"
+ kind-of "^6.0.2"
+ object.pick "^1.3.0"
+ regex-not "^1.0.0"
+ snapdragon "^0.8.1"
+ to-regex "^3.0.1"
+
+native-url@0.3.4:
+ version "0.3.4"
+ resolved "https://registry.yarnpkg.com/native-url/-/native-url-0.3.4.tgz#29c943172aed86c63cee62c8c04db7f5756661f8"
+ integrity sha512-6iM8R99ze45ivyH8vybJ7X0yekIcPf5GgLV5K0ENCbmRcaRIDoj37BC8iLEmaaBfqqb8enuZ5p0uhY+lVAbAcA==
+ dependencies:
+ querystring "^0.2.0"
+
+native-url@^0.2.6:
+ version "0.2.6"
+ resolved "https://registry.yarnpkg.com/native-url/-/native-url-0.2.6.tgz#ca1258f5ace169c716ff44eccbddb674e10399ae"
+ integrity sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==
+ dependencies:
+ querystring "^0.2.0"
+
+natural-compare@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
+ integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
+
+negotiator@0.6.2:
+ version "0.6.2"
+ resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
+ integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
+
+neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1:
+ version "2.6.2"
+ resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
+ integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
+
+nested-error-stacks@^2.0.0, nested-error-stacks@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/nested-error-stacks/-/nested-error-stacks-2.1.0.tgz#0fbdcf3e13fe4994781280524f8b96b0cdff9c61"
+ integrity sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==
+
+next-pwa@^5.0.5:
+ version "5.0.6"
+ resolved "https://registry.yarnpkg.com/next-pwa/-/next-pwa-5.0.6.tgz#17ddc4461a1b1724263d31625814b77c39ed3d43"
+ integrity sha512-3IgjJr4iD0Fis1cplsY8nZo5BgHIdhJ9I5YpRU/3VBOpGQEkzb+B/+M0eNVjjebv9+WoqnvMkSjNDOs4KT7bBA==
+ dependencies:
+ babel-loader "^8.2.2"
+ clean-webpack-plugin "^3.0.0"
+ globby "^11.0.2"
+ workbox-webpack-plugin "^6.1.1"
+ workbox-window "^6.1.1"
+
+next@10.0.8:
+ version "10.0.8"
+ resolved "https://registry.yarnpkg.com/next/-/next-10.0.8.tgz#a2232c11ffad974d67f3d572b8db2acaa5ddedd7"
+ integrity sha512-iDY65ce4Prn/9EnQpJGFMb5QJvtGWzZPk6KQqT7vDNu4D+jkivkk9NaAs/k1hR73pXdJHmhHer1s0YxLSghAKQ==
+ dependencies:
+ "@babel/runtime" "7.12.5"
+ "@hapi/accept" "5.0.1"
+ "@next/env" "10.0.8"
+ "@next/polyfill-module" "10.0.8"
+ "@next/react-dev-overlay" "10.0.8"
+ "@next/react-refresh-utils" "10.0.8"
+ "@opentelemetry/api" "0.14.0"
+ ast-types "0.13.2"
+ browserslist "4.16.1"
+ buffer "5.6.0"
+ caniuse-lite "^1.0.30001179"
+ chalk "2.4.2"
+ chokidar "3.5.1"
+ crypto-browserify "3.12.0"
+ cssnano-simple "1.2.2"
+ etag "1.8.1"
+ find-cache-dir "3.3.1"
+ get-orientation "1.1.2"
+ jest-worker "24.9.0"
+ native-url "0.3.4"
+ node-fetch "2.6.1"
+ node-html-parser "1.4.9"
+ node-libs-browser "^2.2.1"
+ p-limit "3.1.0"
+ path-browserify "1.0.1"
+ pnp-webpack-plugin "1.6.4"
+ postcss "8.1.7"
+ process "0.11.10"
+ prop-types "15.7.2"
+ raw-body "2.4.1"
+ react-is "16.13.1"
+ react-refresh "0.8.3"
+ stream-browserify "3.0.0"
+ styled-jsx "3.3.2"
+ use-subscription "1.5.1"
+ vm-browserify "1.1.2"
+ watchpack "2.1.1"
+
+nice-try@^1.0.4:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
+ integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
+
+no-case@^2.2.0, no-case@^2.3.2:
+ version "2.3.2"
+ resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac"
+ integrity sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==
+ dependencies:
+ lower-case "^1.1.1"
+
+no-case@^3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d"
+ integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==
+ dependencies:
+ lower-case "^2.0.2"
+ tslib "^2.0.3"
+
+node-dir@^0.1.10:
+ version "0.1.17"
+ resolved "https://registry.yarnpkg.com/node-dir/-/node-dir-0.1.17.tgz#5f5665d93351335caabef8f1c554516cf5f1e4e5"
+ integrity sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=
+ dependencies:
+ minimatch "^3.0.2"
+
+node-fetch@2.6.1, node-fetch@^2.6.1:
+ version "2.6.1"
+ resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052"
+ integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==
+
+node-html-parser@1.4.9:
+ version "1.4.9"
+ resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-1.4.9.tgz#3c8f6cac46479fae5800725edb532e9ae8fd816c"
+ integrity sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8/PWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf/KYGw==
+ dependencies:
+ he "1.2.0"
+
+node-int64@^0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
+ integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
+
+node-libs-browser@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425"
+ integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==
+ dependencies:
+ assert "^1.1.1"
+ browserify-zlib "^0.2.0"
+ buffer "^4.3.0"
+ console-browserify "^1.1.0"
+ constants-browserify "^1.0.0"
+ crypto-browserify "^3.11.0"
+ domain-browser "^1.1.1"
+ events "^3.0.0"
+ https-browserify "^1.0.0"
+ os-browserify "^0.3.0"
+ path-browserify "0.0.1"
+ process "^0.11.10"
+ punycode "^1.2.4"
+ querystring-es3 "^0.2.0"
+ readable-stream "^2.3.3"
+ stream-browserify "^2.0.1"
+ stream-http "^2.7.2"
+ string_decoder "^1.0.0"
+ timers-browserify "^2.0.4"
+ tty-browserify "0.0.0"
+ url "^0.11.0"
+ util "^0.11.0"
+ vm-browserify "^1.0.1"
+
+node-modules-regexp@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
+ integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
+
+node-plop@~0.26.2:
+ version "0.26.2"
+ resolved "https://registry.yarnpkg.com/node-plop/-/node-plop-0.26.2.tgz#c2523596dab4e28360e615b768b11b4d60d5b1b9"
+ integrity sha512-q444beWkMvZwAiYC3BRGJUHgRlpOItQHy+xdy6egXg8KjxDY/Ro309spQTNvH01qK9A8XF6pc0xLKbrHDpxW7w==
+ dependencies:
+ "@babel/runtime-corejs3" "^7.9.2"
+ "@types/inquirer" "^6.5.0"
+ change-case "^3.1.0"
+ del "^5.1.0"
+ globby "^10.0.1"
+ handlebars "^4.4.3"
+ inquirer "^7.1.0"
+ isbinaryfile "^4.0.2"
+ lodash.get "^4.4.2"
+ mkdirp "^0.5.1"
+ resolve "^1.12.0"
+
+node-releases@^1.1.61, node-releases@^1.1.69, node-releases@^1.1.70:
+ version "1.1.71"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb"
+ integrity sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==
+
+normalize-package-data@^2.5.0:
+ version "2.5.0"
+ resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
+ integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
+ dependencies:
+ hosted-git-info "^2.1.4"
+ resolve "^1.10.0"
+ semver "2 || 3 || 4 || 5"
+ validate-npm-package-license "^3.0.1"
+
+normalize-path@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
+ integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=
+ dependencies:
+ remove-trailing-separator "^1.0.1"
+
+normalize-path@^3.0.0, normalize-path@~3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
+ integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
+
+normalize-range@^0.1.2:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
+ integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
+
+normalize-url@^4.1.0:
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129"
+ integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==
+
+npm-run-path@^2.0.0:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
+ integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=
+ dependencies:
+ path-key "^2.0.0"
+
+npmlog@^4.1.2:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
+ integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
+ dependencies:
+ are-we-there-yet "~1.1.2"
+ console-control-strings "~1.1.0"
+ gauge "~2.7.3"
+ set-blocking "~2.0.0"
+
+nth-check@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c"
+ integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==
+ dependencies:
+ boolbase "~1.0.0"
+
+num2fraction@^1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
+ integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=
+
+number-is-nan@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
+ integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
+
+object-assign@^4, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
+ integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
+
+object-copy@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
+ integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw=
+ dependencies:
+ copy-descriptor "^0.1.0"
+ define-property "^0.2.5"
+ kind-of "^3.0.3"
+
+object-inspect@^1.9.0:
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a"
+ integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==
+
+object-keys@^1.0.12, object-keys@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
+ integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
+
+object-visit@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
+ integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=
+ dependencies:
+ isobject "^3.0.0"
+
+object.assign@^4.1.0, object.assign@^4.1.2:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
+ integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
+ dependencies:
+ call-bind "^1.0.0"
+ define-properties "^1.1.3"
+ has-symbols "^1.0.1"
+ object-keys "^1.1.1"
+
+object.defaults@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf"
+ integrity sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=
+ dependencies:
+ array-each "^1.0.1"
+ array-slice "^1.0.0"
+ for-own "^1.0.0"
+ isobject "^3.0.0"
+
+object.entries@^1.1.0, object.entries@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.3.tgz#c601c7f168b62374541a07ddbd3e2d5e4f7711a6"
+ integrity sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==
+ dependencies:
+ call-bind "^1.0.0"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.1"
+ has "^1.0.3"
+
+"object.fromentries@^2.0.0 || ^1.0.0", object.fromentries@^2.0.4:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.4.tgz#26e1ba5c4571c5c6f0890cef4473066456a120b8"
+ integrity sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+ has "^1.0.3"
+
+object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.2:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz#1bd63aeacf0d5d2d2f31b5e393b03a7c601a23f7"
+ integrity sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+
+object.map@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/object.map/-/object.map-1.0.1.tgz#cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37"
+ integrity sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=
+ dependencies:
+ for-own "^1.0.0"
+ make-iterator "^1.0.0"
+
+object.pick@^1.2.0, object.pick@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
+ integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=
+ dependencies:
+ isobject "^3.0.1"
+
+object.values@^1.1.0, object.values@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.3.tgz#eaa8b1e17589f02f698db093f7c62ee1699742ee"
+ integrity sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+ has "^1.0.3"
+
+objectorarray@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/objectorarray/-/objectorarray-1.0.4.tgz#d69b2f0ff7dc2701903d308bb85882f4ddb49483"
+ integrity sha512-91k8bjcldstRz1bG6zJo8lWD7c6QXcB4nTDUqiEvIL1xAsLoZlOOZZG+nd6YPz+V7zY1580J4Xxh1vZtyv4i/w==
+
+on-finished@~2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
+ integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=
+ dependencies:
+ ee-first "1.1.1"
+
+on-headers@~1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f"
+ integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
+
+once@^1.3.0, once@^1.3.1, once@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
+ integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
+ dependencies:
+ wrappy "1"
+
+onetime@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
+ integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=
+ dependencies:
+ mimic-fn "^1.0.0"
+
+onetime@^5.1.0:
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
+ integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
+ dependencies:
+ mimic-fn "^2.1.0"
+
+open@^7.0.2, open@^7.0.3:
+ version "7.4.2"
+ resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321"
+ integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==
+ dependencies:
+ is-docker "^2.0.0"
+ is-wsl "^2.1.1"
+
+optionator@^0.8.1:
+ version "0.8.3"
+ resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
+ integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
+ dependencies:
+ deep-is "~0.1.3"
+ fast-levenshtein "~2.0.6"
+ levn "~0.3.0"
+ prelude-ls "~1.1.2"
+ type-check "~0.3.2"
+ word-wrap "~1.2.3"
+
+optionator@^0.9.1:
+ version "0.9.1"
+ resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
+ integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
+ dependencies:
+ deep-is "^0.1.3"
+ fast-levenshtein "^2.0.6"
+ levn "^0.4.1"
+ prelude-ls "^1.2.1"
+ type-check "^0.4.0"
+ word-wrap "^1.2.3"
+
+ora@^3.4.0:
+ version "3.4.0"
+ resolved "https://registry.yarnpkg.com/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318"
+ integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==
+ dependencies:
+ chalk "^2.4.2"
+ cli-cursor "^2.1.0"
+ cli-spinners "^2.0.0"
+ log-symbols "^2.2.0"
+ strip-ansi "^5.2.0"
+ wcwidth "^1.0.1"
+
+os-browserify@^0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
+ integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=
+
+os-tmpdir@~1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
+ integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
+
+overlayscrollbars@^1.13.1:
+ version "1.13.1"
+ resolved "https://registry.yarnpkg.com/overlayscrollbars/-/overlayscrollbars-1.13.1.tgz#0b840a88737f43a946b9d87875a2f9e421d0338a"
+ integrity sha512-gIQfzgGgu1wy80EB4/6DaJGHMEGmizq27xHIESrzXq0Y/J0Ay1P3DWk6tuVmEPIZH15zaBlxeEJOqdJKmowHCQ==
+
+p-all@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/p-all/-/p-all-2.1.0.tgz#91419be56b7dee8fe4c5db875d55e0da084244a0"
+ integrity sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==
+ dependencies:
+ p-map "^2.0.0"
+
+p-cancelable@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc"
+ integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==
+
+p-event@^4.1.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/p-event/-/p-event-4.2.0.tgz#af4b049c8acd91ae81083ebd1e6f5cae2044c1b5"
+ integrity sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==
+ dependencies:
+ p-timeout "^3.1.0"
+
+p-filter@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/p-filter/-/p-filter-2.1.0.tgz#1b1472562ae7a0f742f0f3d3d3718ea66ff9c09c"
+ integrity sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==
+ dependencies:
+ p-map "^2.0.0"
+
+p-finally@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
+ integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
+
+p-limit@3.1.0, p-limit@^3.0.2:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
+ integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
+ dependencies:
+ yocto-queue "^0.1.0"
+
+p-limit@^2.0.0, p-limit@^2.2.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
+ integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
+ dependencies:
+ p-try "^2.0.0"
+
+p-locate@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
+ integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
+ dependencies:
+ p-limit "^2.0.0"
+
+p-locate@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
+ integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
+ dependencies:
+ p-limit "^2.2.0"
+
+p-locate@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
+ integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
+ dependencies:
+ p-limit "^3.0.2"
+
+p-map@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175"
+ integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==
+
+p-map@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d"
+ integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==
+ dependencies:
+ aggregate-error "^3.0.0"
+
+p-map@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b"
+ integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==
+ dependencies:
+ aggregate-error "^3.0.0"
+
+p-timeout@^3.1.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe"
+ integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==
+ dependencies:
+ p-finally "^1.0.0"
+
+p-try@^2.0.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
+ integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
+
+package-json@^6.3.0:
+ version "6.5.0"
+ resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0"
+ integrity sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==
+ dependencies:
+ got "^9.6.0"
+ registry-auth-token "^4.0.0"
+ registry-url "^5.0.0"
+ semver "^6.2.0"
+
+pako@~1.0.5:
+ version "1.0.11"
+ resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"
+ integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==
+
+parallel-transform@^1.1.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc"
+ integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==
+ dependencies:
+ cyclist "^1.0.1"
+ inherits "^2.0.3"
+ readable-stream "^2.1.5"
+
+param-case@^2.1.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247"
+ integrity sha1-35T9jPZTHs915r75oIWPvHK+Ikc=
+ dependencies:
+ no-case "^2.2.0"
+
+param-case@^3.0.3:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5"
+ integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==
+ dependencies:
+ dot-case "^3.0.4"
+ tslib "^2.0.3"
+
+parent-module@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
+ integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
+ dependencies:
+ callsites "^3.0.0"
+
+parse-asn1@^5.0.0, parse-asn1@^5.1.5:
+ version "5.1.6"
+ resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4"
+ integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==
+ dependencies:
+ asn1.js "^5.2.0"
+ browserify-aes "^1.0.0"
+ evp_bytestokey "^1.0.0"
+ pbkdf2 "^3.0.3"
+ safe-buffer "^5.1.1"
+
+parse-entities@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8"
+ integrity sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==
+ dependencies:
+ character-entities "^1.0.0"
+ character-entities-legacy "^1.0.0"
+ character-reference-invalid "^1.0.0"
+ is-alphanumerical "^1.0.0"
+ is-decimal "^1.0.0"
+ is-hexadecimal "^1.0.0"
+
+parse-filepath@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891"
+ integrity sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=
+ dependencies:
+ is-absolute "^1.0.0"
+ map-cache "^0.2.0"
+ path-root "^0.1.1"
+
+parse-json@^5.0.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
+ integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
+ dependencies:
+ "@babel/code-frame" "^7.0.0"
+ error-ex "^1.3.1"
+ json-parse-even-better-errors "^2.3.0"
+ lines-and-columns "^1.1.6"
+
+parse-passwd@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6"
+ integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=
+
+parse5@^6.0.0:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b"
+ integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==
+
+parseurl@~1.3.2, parseurl@~1.3.3:
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
+ integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
+
+pascal-case@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-2.0.1.tgz#2d578d3455f660da65eca18ef95b4e0de912761e"
+ integrity sha1-LVeNNFX2YNpl7KGO+VtODekSdh4=
+ dependencies:
+ camel-case "^3.0.0"
+ upper-case-first "^1.1.0"
+
+pascal-case@^3.1.2:
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb"
+ integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==
+ dependencies:
+ no-case "^3.0.4"
+ tslib "^2.0.3"
+
+pascalcase@^0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
+ integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
+
+path-browserify@0.0.1:
+ version "0.0.1"
+ resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a"
+ integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==
+
+path-browserify@1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd"
+ integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==
+
+path-case@^2.1.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/path-case/-/path-case-2.1.1.tgz#94b8037c372d3fe2906e465bb45e25d226e8eea5"
+ integrity sha1-lLgDfDctP+KQbkZbtF4l0ibo7qU=
+ dependencies:
+ no-case "^2.2.0"
+
+path-dirname@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
+ integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=
+
+path-exists@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
+ integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
+
+path-exists@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
+ integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
+
+path-is-absolute@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
+ integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
+
+path-is-inside@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
+ integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=
+
+path-key@^2.0.0, path-key@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
+ integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
+
+path-key@^3.1.0:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
+ integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
+
+path-parse@^1.0.6:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
+ integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
+
+path-root-regex@^0.1.0:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d"
+ integrity sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=
+
+path-root@^0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7"
+ integrity sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=
+ dependencies:
+ path-root-regex "^0.1.0"
+
+path-to-regexp@0.1.7:
+ version "0.1.7"
+ resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
+ integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=
+
+path-to-regexp@^1.0.3:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a"
+ integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==
+ dependencies:
+ isarray "0.0.1"
+
+path-type@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
+ integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
+ dependencies:
+ pify "^3.0.0"
+
+path-type@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
+ integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
+
+pbkdf2@^3.0.3:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.1.tgz#cb8724b0fada984596856d1a6ebafd3584654b94"
+ integrity sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==
+ dependencies:
+ create-hash "^1.1.2"
+ create-hmac "^1.1.4"
+ ripemd160 "^2.0.1"
+ safe-buffer "^5.0.1"
+ sha.js "^2.4.8"
+
+picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1, picomatch@^2.2.2:
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
+ integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
+
+pify@^2.0.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
+ integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
+
+pify@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
+ integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
+
+pify@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
+ integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
+
+pinkie-promise@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
+ integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o=
+ dependencies:
+ pinkie "^2.0.0"
+
+pinkie@^2.0.0:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
+ integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
+
+pirates@^4.0.0, pirates@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87"
+ integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==
+ dependencies:
+ node-modules-regexp "^1.0.0"
+
+pkg-dir@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
+ integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
+ dependencies:
+ find-up "^3.0.0"
+
+pkg-dir@^4.1.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
+ integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
+ dependencies:
+ find-up "^4.0.0"
+
+pkg-dir@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-5.0.0.tgz#a02d6aebe6ba133a928f74aec20bafdfe6b8e760"
+ integrity sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==
+ dependencies:
+ find-up "^5.0.0"
+
+pkg-up@3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5"
+ integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==
+ dependencies:
+ find-up "^3.0.0"
+
+platform@1.3.6:
+ version "1.3.6"
+ resolved "https://registry.yarnpkg.com/platform/-/platform-1.3.6.tgz#48b4ce983164b209c2d45a107adb31f473a6e7a7"
+ integrity sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==
+
+please-upgrade-node@^3.2.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942"
+ integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==
+ dependencies:
+ semver-compare "^1.0.0"
+
+plop@^2.7.4:
+ version "2.7.4"
+ resolved "https://registry.yarnpkg.com/plop/-/plop-2.7.4.tgz#835280aef3541102063b758f5116cce899e1c72b"
+ integrity sha512-SaqN3mwug/Ur2RE/ryo05oLTLy+8qZGwosNt9JnrFWca+dLCsPJR1j2ZXwjrccmNu6LA7eB56lRyk/G0fKf9HA==
+ dependencies:
+ "@types/liftoff" "^2.5.0"
+ chalk "^1.1.3"
+ interpret "^1.2.0"
+ liftoff "^2.5.0"
+ minimist "^1.2.0"
+ node-plop "~0.26.2"
+ ora "^3.4.0"
+ v8flags "^2.0.10"
+
+pluralize@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1"
+ integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==
+
+pnp-webpack-plugin@1.6.4:
+ version "1.6.4"
+ resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149"
+ integrity sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==
+ dependencies:
+ ts-pnp "^1.1.6"
+
+polished@^4.0.5, polished@^4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/polished/-/polished-4.1.1.tgz#40442cc973348e466f2918cdf647531bb6c29bfb"
+ integrity sha512-4MZTrfPMPRLD7ac8b+2JZxei58zw6N1hFkdBDERif5Tlj19y3vPoPusrLG+mJIlPTGnUlKw3+yWz0BazvMx1vg==
+ dependencies:
+ "@babel/runtime" "^7.12.5"
+
+posix-character-classes@^0.1.0:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
+ integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
+
+postcss-flexbugs-fixes@^4.2.1:
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz#9218a65249f30897deab1033aced8578562a6690"
+ integrity sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==
+ dependencies:
+ postcss "^7.0.26"
+
+postcss-loader@^4.2.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-4.2.0.tgz#f6993ea3e0f46600fb3ee49bbd010448123a7db4"
+ integrity sha512-mqgScxHqbiz1yxbnNcPdKYo/6aVt+XExURmEbQlviFVWogDbM4AJ0A/B+ZBpYsJrTRxKw7HyRazg9x0Q9SWwLA==
+ dependencies:
+ cosmiconfig "^7.0.0"
+ klona "^2.0.4"
+ loader-utils "^2.0.0"
+ schema-utils "^3.0.0"
+ semver "^7.3.4"
+
+postcss-modules-extract-imports@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e"
+ integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==
+ dependencies:
+ postcss "^7.0.5"
+
+postcss-modules-local-by-default@^3.0.2:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz#bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0"
+ integrity sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==
+ dependencies:
+ icss-utils "^4.1.1"
+ postcss "^7.0.32"
+ postcss-selector-parser "^6.0.2"
+ postcss-value-parser "^4.1.0"
+
+postcss-modules-scope@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee"
+ integrity sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==
+ dependencies:
+ postcss "^7.0.6"
+ postcss-selector-parser "^6.0.0"
+
+postcss-modules-values@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10"
+ integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==
+ dependencies:
+ icss-utils "^4.0.0"
+ postcss "^7.0.6"
+
+postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2:
+ version "6.0.4"
+ resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3"
+ integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==
+ dependencies:
+ cssesc "^3.0.0"
+ indexes-of "^1.0.1"
+ uniq "^1.0.1"
+ util-deprecate "^1.0.2"
+
+postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
+ integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==
+
+postcss@8.1.7:
+ version "8.1.7"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.1.7.tgz#ff6a82691bd861f3354fd9b17b2332f88171233f"
+ integrity sha512-llCQW1Pz4MOPwbZLmOddGM9eIJ8Bh7SZ2Oj5sxZva77uVaotYDsYTch1WBTNu7fUY0fpWp0fdt7uW40D4sRiiQ==
+ dependencies:
+ colorette "^1.2.1"
+ line-column "^1.0.2"
+ nanoid "^3.1.16"
+ source-map "^0.6.1"
+
+postcss@^7.0.14, postcss@^7.0.26, postcss@^7.0.32, postcss@^7.0.35, postcss@^7.0.5, postcss@^7.0.6:
+ version "7.0.35"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24"
+ integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==
+ dependencies:
+ chalk "^2.4.2"
+ source-map "^0.6.1"
+ supports-color "^6.1.0"
+
+prelude-ls@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
+ integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
+
+prelude-ls@~1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
+ integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
+
+prepend-http@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
+ integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=
+
+prettier-linter-helpers@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b"
+ integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==
+ dependencies:
+ fast-diff "^1.1.2"
+
+prettier@~2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5"
+ integrity sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==
+
+pretty-bytes@^5.3.0, pretty-bytes@^5.4.1:
+ version "5.6.0"
+ resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb"
+ integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==
+
+pretty-error@^2.1.1:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.2.tgz#be89f82d81b1c86ec8fdfbc385045882727f93b6"
+ integrity sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==
+ dependencies:
+ lodash "^4.17.20"
+ renderkid "^2.0.4"
+
+pretty-format@^26.6.2:
+ version "26.6.2"
+ resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93"
+ integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==
+ dependencies:
+ "@jest/types" "^26.6.2"
+ ansi-regex "^5.0.0"
+ ansi-styles "^4.0.0"
+ react-is "^17.0.1"
+
+pretty-hrtime@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
+ integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=
+
+prismjs@^1.21.0, prismjs@~1.23.0:
+ version "1.23.0"
+ resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.23.0.tgz#d3b3967f7d72440690497652a9d40ff046067f33"
+ integrity sha512-c29LVsqOaLbBHuIbsTxaKENh1N2EQBOHaWv7gkHN4dgRbxSREqDnDbtFJYdpPauS4YCplMSNCABQ6Eeor69bAA==
+ optionalDependencies:
+ clipboard "^2.0.0"
+
+process-nextick-args@~2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
+ integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
+
+process@0.11.10, process@^0.11.10:
+ version "0.11.10"
+ resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
+ integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
+
+progress@^2.0.0:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
+ integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
+
+promise-inflight@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
+ integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM=
+
+promise.allsettled@^1.0.0:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/promise.allsettled/-/promise.allsettled-1.0.4.tgz#65e71f2a604082ed69c548b68603294090ee6803"
+ integrity sha512-o73CbvQh/OnPFShxHcHxk0baXR2a1m4ozb85ha0H14VEoi/EJJLa9mnPfEWJx9RjA9MLfhdjZ8I6HhWtBa64Ag==
+ dependencies:
+ array.prototype.map "^1.0.3"
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+ get-intrinsic "^1.0.2"
+ iterate-value "^1.0.2"
+
+promise.prototype.finally@^3.1.0:
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/promise.prototype.finally/-/promise.prototype.finally-3.1.2.tgz#b8af89160c9c673cefe3b4c4435b53cfd0287067"
+ integrity sha512-A2HuJWl2opDH0EafgdjwEw7HysI8ff/n4lW4QEVBCUXFk9QeGecBWv0Deph0UmLe3tTNYegz8MOjsVuE6SMoJA==
+ dependencies:
+ define-properties "^1.1.3"
+ es-abstract "^1.17.0-next.0"
+ function-bind "^1.1.1"
+
+prompts@2.4.0:
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.0.tgz#4aa5de0723a231d1ee9121c40fdf663df73f61d7"
+ integrity sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==
+ dependencies:
+ kleur "^3.0.3"
+ sisteransi "^1.0.5"
+
+prompts@^2.4.0:
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.1.tgz#befd3b1195ba052f9fd2fde8a486c4e82ee77f61"
+ integrity sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ==
+ dependencies:
+ kleur "^3.0.3"
+ sisteransi "^1.0.5"
+
+prop-types@15.7.2, prop-types@^15.0.0, prop-types@^15.5.0, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2:
+ version "15.7.2"
+ resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
+ integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
+ dependencies:
+ loose-envify "^1.4.0"
+ object-assign "^4.1.1"
+ react-is "^16.8.1"
+
+property-information@^5.0.0, property-information@^5.3.0:
+ version "5.6.0"
+ resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.6.0.tgz#61675545fb23002f245c6540ec46077d4da3ed69"
+ integrity sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==
+ dependencies:
+ xtend "^4.0.0"
+
+proxy-addr@~2.0.5:
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf"
+ integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==
+ dependencies:
+ forwarded "~0.1.2"
+ ipaddr.js "1.9.1"
+
+prr@~1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
+ integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY=
+
+public-encrypt@^4.0.0:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0"
+ integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==
+ dependencies:
+ bn.js "^4.1.0"
+ browserify-rsa "^4.0.0"
+ create-hash "^1.1.0"
+ parse-asn1 "^5.0.0"
+ randombytes "^2.0.1"
+ safe-buffer "^5.1.2"
+
+pump@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909"
+ integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==
+ dependencies:
+ end-of-stream "^1.1.0"
+ once "^1.3.1"
+
+pump@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
+ integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
+ dependencies:
+ end-of-stream "^1.1.0"
+ once "^1.3.1"
+
+pumpify@^1.3.3:
+ version "1.5.1"
+ resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce"
+ integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==
+ dependencies:
+ duplexify "^3.6.0"
+ inherits "^2.0.3"
+ pump "^2.0.0"
+
+punycode@1.3.2:
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
+ integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=
+
+punycode@^1.2.4:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
+ integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=
+
+punycode@^2.1.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
+ integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
+
+pupa@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/pupa/-/pupa-2.1.1.tgz#f5e8fd4afc2c5d97828faa523549ed8744a20d62"
+ integrity sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==
+ dependencies:
+ escape-goat "^2.0.0"
+
+qs@6.7.0:
+ version "6.7.0"
+ resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc"
+ integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==
+
+qs@^6.10.0:
+ version "6.10.1"
+ resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.1.tgz#4931482fa8d647a5aab799c5271d2133b981fb6a"
+ integrity sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==
+ dependencies:
+ side-channel "^1.0.4"
+
+querystring-es3@^0.2.0:
+ version "0.2.1"
+ resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
+ integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=
+
+querystring@0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
+ integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=
+
+querystring@^0.2.0:
+ version "0.2.1"
+ resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.1.tgz#40d77615bb09d16902a85c3e38aa8b5ed761c2dd"
+ integrity sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==
+
+queue-microtask@^1.2.2:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
+ integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
+
+ramda@^0.21.0:
+ version "0.21.0"
+ resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.21.0.tgz#a001abedb3ff61077d4ff1d577d44de77e8d0a35"
+ integrity sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=
+
+randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
+ integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
+ dependencies:
+ safe-buffer "^5.1.0"
+
+randomfill@^1.0.3:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458"
+ integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==
+ dependencies:
+ randombytes "^2.0.5"
+ safe-buffer "^5.1.0"
+
+range-parser@^1.2.1, range-parser@~1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
+ integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
+
+raw-body@2.4.0:
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332"
+ integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==
+ dependencies:
+ bytes "3.1.0"
+ http-errors "1.7.2"
+ iconv-lite "0.4.24"
+ unpipe "1.0.0"
+
+raw-body@2.4.1:
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.1.tgz#30ac82f98bb5ae8c152e67149dac8d55153b168c"
+ integrity sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==
+ dependencies:
+ bytes "3.1.0"
+ http-errors "1.7.3"
+ iconv-lite "0.4.24"
+ unpipe "1.0.0"
+
+raw-loader@^4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-4.0.2.tgz#1aac6b7d1ad1501e66efdac1522c73e59a584eb6"
+ integrity sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==
+ dependencies:
+ loader-utils "^2.0.0"
+ schema-utils "^3.0.0"
+
+rc@^1.2.8:
+ version "1.2.8"
+ resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
+ integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==
+ dependencies:
+ deep-extend "^0.6.0"
+ ini "~1.3.0"
+ minimist "^1.2.0"
+ strip-json-comments "~2.0.1"
+
+react-colorful@^5.0.1:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/react-colorful/-/react-colorful-5.1.0.tgz#45c8044d80bc0e7ee08dc78c760e6694f3745ca2"
+ integrity sha512-ZXKcQbSuuHaN5tOHORI+G9/tXsGxk/6qlAbfETfZILwwWwngyJiyYRhUJjI+Esk71BhhQRdj0v7cFHDnD95jtQ==
+
+react-dev-utils@^11.0.3:
+ version "11.0.4"
+ resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-11.0.4.tgz#a7ccb60257a1ca2e0efe7a83e38e6700d17aa37a"
+ integrity sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==
+ dependencies:
+ "@babel/code-frame" "7.10.4"
+ address "1.1.2"
+ browserslist "4.14.2"
+ chalk "2.4.2"
+ cross-spawn "7.0.3"
+ detect-port-alt "1.1.6"
+ escape-string-regexp "2.0.0"
+ filesize "6.1.0"
+ find-up "4.1.0"
+ fork-ts-checker-webpack-plugin "4.1.6"
+ global-modules "2.0.0"
+ globby "11.0.1"
+ gzip-size "5.1.1"
+ immer "8.0.1"
+ is-root "2.1.0"
+ loader-utils "2.0.0"
+ open "^7.0.2"
+ pkg-up "3.1.0"
+ prompts "2.4.0"
+ react-error-overlay "^6.0.9"
+ recursive-readdir "2.2.2"
+ shell-quote "1.7.2"
+ strip-ansi "6.0.0"
+ text-table "0.2.0"
+
+react-docgen-typescript-plugin@^0.6.2:
+ version "0.6.3"
+ resolved "https://registry.yarnpkg.com/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-0.6.3.tgz#664b22601df083597ecb1e60bd21beca60125fdf"
+ integrity sha512-av1S/fmWBNFGgNa4qtkidFjjOz23eEi6EdCtwSWo9WNhGzUMyMygbD/DosMWoeFlZpk9R3MXPkRE7PDH6j5GMQ==
+ dependencies:
+ debug "^4.1.1"
+ endent "^2.0.1"
+ micromatch "^4.0.2"
+ react-docgen-typescript "^1.20.5"
+ tslib "^2.0.0"
+
+react-docgen-typescript@^1.20.5:
+ version "1.21.0"
+ resolved "https://registry.yarnpkg.com/react-docgen-typescript/-/react-docgen-typescript-1.21.0.tgz#3385dde81b63eb1d54f86a935bd4f65f96c821f6"
+ integrity sha512-E4y/OcXwHukgiVafCGlxwoNHr4BDmM70Ww7oimL/QkMo5dmGALhceewe/xmVjdMxxI7E5syOGOc9/tbHL742rg==
+
+react-docgen@^5.0.0:
+ version "5.3.1"
+ resolved "https://registry.yarnpkg.com/react-docgen/-/react-docgen-5.3.1.tgz#940b519646a6c285c2950b96512aed59e8f90934"
+ integrity sha512-YG7YujVTwlLslr2Ny8nQiUfbBuEwKsLHJdQTSdEga1eY/nRFh/7LjCWUn6ogYhu2WDKg4z+6W/BJtUi+DPUIlA==
+ dependencies:
+ "@babel/core" "^7.7.5"
+ "@babel/runtime" "^7.7.6"
+ ast-types "^0.14.2"
+ commander "^2.19.0"
+ doctrine "^3.0.0"
+ neo-async "^2.6.1"
+ node-dir "^0.1.10"
+ strip-indent "^3.0.0"
+
+react-dom@17.0.1:
+ version "17.0.1"
+ resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.1.tgz#1de2560474ec9f0e334285662ede52dbc5426fc6"
+ integrity sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==
+ dependencies:
+ loose-envify "^1.1.0"
+ object-assign "^4.1.1"
+ scheduler "^0.20.1"
+
+react-draggable@^4.4.3:
+ version "4.4.3"
+ resolved "https://registry.yarnpkg.com/react-draggable/-/react-draggable-4.4.3.tgz#0727f2cae5813e36b0e4962bf11b2f9ef2b406f3"
+ integrity sha512-jV4TE59MBuWm7gb6Ns3Q1mxX8Azffb7oTtDtBgFkxRvhDp38YAARmRplrj0+XGkhOJB5XziArX+4HUUABtyZ0w==
+ dependencies:
+ classnames "^2.2.5"
+ prop-types "^15.6.0"
+
+react-element-to-jsx-string@^14.3.2:
+ version "14.3.2"
+ resolved "https://registry.yarnpkg.com/react-element-to-jsx-string/-/react-element-to-jsx-string-14.3.2.tgz#c0000ed54d1f8b4371731b669613f2d4e0f63d5c"
+ integrity sha512-WZbvG72cjLXAxV7VOuSzuHEaI3RHj10DZu8EcKQpkKcAj7+qAkG5XUeSdX5FXrA0vPrlx0QsnAzZEBJwzV0e+w==
+ dependencies:
+ "@base2/pretty-print-object" "1.0.0"
+ is-plain-object "3.0.1"
+
+react-error-overlay@^6.0.9:
+ version "6.0.9"
+ resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.9.tgz#3c743010c9359608c375ecd6bc76f35d93995b0a"
+ integrity sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==
+
+react-fast-compare@^3.0.1, react-fast-compare@^3.2.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.0.tgz#641a9da81b6a6320f270e89724fb45a0b39e43bb"
+ integrity sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==
+
+react-helmet-async@^1.0.7:
+ version "1.0.9"
+ resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-1.0.9.tgz#5b9ed2059de6b4aab47f769532f9fbcbce16c5ca"
+ integrity sha512-N+iUlo9WR3/u9qGMmP4jiYfaD6pe9IvDTapZLFJz2D3xlTlCM1Bzy4Ab3g72Nbajo/0ZyW+W9hdz8Hbe4l97pQ==
+ dependencies:
+ "@babel/runtime" "^7.12.5"
+ invariant "^2.2.4"
+ prop-types "^15.7.2"
+ react-fast-compare "^3.2.0"
+ shallowequal "^1.1.0"
+
+react-icons@*:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/react-icons/-/react-icons-4.2.0.tgz#6dda80c8a8f338ff96a1851424d63083282630d0"
+ integrity sha512-rmzEDFt+AVXRzD7zDE21gcxyBizD/3NqjbX6cmViAgdqfJ2UiLer8927/QhhrXQV7dEj/1EGuOTPp7JnLYVJKQ==
+
+react-inspector@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/react-inspector/-/react-inspector-5.1.0.tgz#45a325e15f33e595be5356ca2d3ceffb7d6b8c3a"
+ integrity sha512-JAwswiengIcxi4X/Ssb8nf6suOuQsyit8Fxo04+iPKTnPNY3XIOuagjMZSzpJDDKkYcc/ARlySOYZZv626WUvA==
+ dependencies:
+ "@babel/runtime" "^7.0.0"
+ is-dom "^1.0.0"
+ prop-types "^15.0.0"
+
+react-is@16.13.1, react-is@^16.7.0, react-is@^16.8.1:
+ version "16.13.1"
+ resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
+ integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
+
+react-is@^17.0.1, react-is@^17.0.2:
+ version "17.0.2"
+ resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0"
+ integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
+
+react-lifecycles-compat@^3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362"
+ integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==
+
+react-popper-tooltip@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/react-popper-tooltip/-/react-popper-tooltip-3.1.1.tgz#329569eb7b287008f04fcbddb6370452ad3f9eac"
+ integrity sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==
+ dependencies:
+ "@babel/runtime" "^7.12.5"
+ "@popperjs/core" "^2.5.4"
+ react-popper "^2.2.4"
+
+react-popper@^2.2.4:
+ version "2.2.5"
+ resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-2.2.5.tgz#1214ef3cec86330a171671a4fbcbeeb65ee58e96"
+ integrity sha512-kxGkS80eQGtLl18+uig1UIf9MKixFSyPxglsgLBxlYnyDf65BiY9B3nZSc6C9XUNDgStROB0fMQlTEz1KxGddw==
+ dependencies:
+ react-fast-compare "^3.0.1"
+ warning "^4.0.2"
+
+react-refresh@0.8.3, react-refresh@^0.8.3:
+ version "0.8.3"
+ resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.8.3.tgz#721d4657672d400c5e3c75d063c4a85fb2d5d68f"
+ integrity sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==
+
+react-sizeme@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/react-sizeme/-/react-sizeme-3.0.1.tgz#4d12f4244e0e6a0fb97253e7af0314dc7c83a5a0"
+ integrity sha512-9Hf1NLgSbny1bha77l9HwvwwxQUJxFUqi44Ih+y3evA+PezBpGdCGlnvye6avss2cIgs9PgdYgMnfuzJWn/RUw==
+ dependencies:
+ element-resize-detector "^1.2.2"
+ invariant "^2.2.4"
+ shallowequal "^1.1.0"
+ throttle-debounce "^3.0.1"
+
+react-syntax-highlighter@^13.5.3:
+ version "13.5.3"
+ resolved "https://registry.yarnpkg.com/react-syntax-highlighter/-/react-syntax-highlighter-13.5.3.tgz#9712850f883a3e19eb858cf93fad7bb357eea9c6"
+ integrity sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==
+ dependencies:
+ "@babel/runtime" "^7.3.1"
+ highlight.js "^10.1.1"
+ lowlight "^1.14.0"
+ prismjs "^1.21.0"
+ refractor "^3.1.0"
+
+react-tabs@^3.2.1:
+ version "3.2.1"
+ resolved "https://registry.yarnpkg.com/react-tabs/-/react-tabs-3.2.1.tgz#b0ce1e8b9f68bca82292ddecfb6480c9042bcb48"
+ integrity sha512-M7ERQvJgBVLTyojFmC3G4tpaJuMmUtsnYenVQm2oA1NjDrGXq1UuzHgxhVTDwimkJcKEbzgWCybXFSHQ/+2bsA==
+ dependencies:
+ clsx "^1.1.0"
+ prop-types "^15.5.0"
+
+react-textarea-autosize@^8.3.0:
+ version "8.3.2"
+ resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.3.2.tgz#4f9374d357b0a6f6469956726722549124a1b2db"
+ integrity sha512-JrMWVgQSaExQByP3ggI1eA8zF4mF0+ddVuX7acUeK2V7bmrpjVOY72vmLz2IXFJSAXoY3D80nEzrn0GWajWK3Q==
+ dependencies:
+ "@babel/runtime" "^7.10.2"
+ use-composed-ref "^1.0.0"
+ use-latest "^1.0.0"
+
+react@17.0.1:
+ version "17.0.1"
+ resolved "https://registry.yarnpkg.com/react/-/react-17.0.1.tgz#6e0600416bd57574e3f86d92edba3d9008726127"
+ integrity sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==
+ dependencies:
+ loose-envify "^1.1.0"
+ object-assign "^4.1.1"
+
+read-pkg-up@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507"
+ integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==
+ dependencies:
+ find-up "^4.1.0"
+ read-pkg "^5.2.0"
+ type-fest "^0.8.1"
+
+read-pkg@^5.2.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc"
+ integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==
+ dependencies:
+ "@types/normalize-package-data" "^2.4.0"
+ normalize-package-data "^2.5.0"
+ parse-json "^5.0.0"
+ type-fest "^0.6.0"
+
+"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6:
+ version "2.3.7"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
+ integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
+ dependencies:
+ core-util-is "~1.0.0"
+ inherits "~2.0.3"
+ isarray "~1.0.0"
+ process-nextick-args "~2.0.0"
+ safe-buffer "~5.1.1"
+ string_decoder "~1.1.1"
+ util-deprecate "~1.0.1"
+
+readable-stream@^3.1.1, readable-stream@^3.5.0, readable-stream@^3.6.0:
+ version "3.6.0"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
+ integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
+ dependencies:
+ inherits "^2.0.3"
+ string_decoder "^1.1.1"
+ util-deprecate "^1.0.1"
+
+readdirp@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
+ integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==
+ dependencies:
+ graceful-fs "^4.1.11"
+ micromatch "^3.1.10"
+ readable-stream "^2.0.2"
+
+readdirp@~3.5.0:
+ version "3.5.0"
+ resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e"
+ integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==
+ dependencies:
+ picomatch "^2.2.1"
+
+rechoir@^0.6.2:
+ version "0.6.2"
+ resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
+ integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=
+ dependencies:
+ resolve "^1.1.6"
+
+recursive-readdir@2.2.2:
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f"
+ integrity sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==
+ dependencies:
+ minimatch "3.0.4"
+
+refractor@^3.1.0:
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/refractor/-/refractor-3.3.1.tgz#ebbc04b427ea81dc25ad333f7f67a0b5f4f0be3a"
+ integrity sha512-vaN6R56kLMuBszHSWlwTpcZ8KTMG6aUCok4GrxYDT20UIOXxOc5o6oDc8tNTzSlH3m2sI+Eu9Jo2kVdDcUTWYw==
+ dependencies:
+ hastscript "^6.0.0"
+ parse-entities "^2.0.0"
+ prismjs "~1.23.0"
+
+regenerate-unicode-properties@^8.2.0:
+ version "8.2.0"
+ resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec"
+ integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==
+ dependencies:
+ regenerate "^1.4.0"
+
+regenerate@^1.4.0:
+ version "1.4.2"
+ resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
+ integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
+
+regenerator-runtime@^0.13.4, regenerator-runtime@^0.13.7:
+ version "0.13.7"
+ resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55"
+ integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==
+
+regenerator-transform@^0.14.2:
+ version "0.14.5"
+ resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4"
+ integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==
+ dependencies:
+ "@babel/runtime" "^7.8.4"
+
+regex-not@^1.0.0, regex-not@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
+ integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==
+ dependencies:
+ extend-shallow "^3.0.2"
+ safe-regex "^1.1.0"
+
+regexp.prototype.flags@^1.3.1:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz#7ef352ae8d159e758c0eadca6f8fcb4eef07be26"
+ integrity sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+
+regexpp@^3.0.0, regexpp@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2"
+ integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==
+
+regexpu-core@^4.7.1:
+ version "4.7.1"
+ resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.1.tgz#2dea5a9a07233298fbf0db91fa9abc4c6e0f8ad6"
+ integrity sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==
+ dependencies:
+ regenerate "^1.4.0"
+ regenerate-unicode-properties "^8.2.0"
+ regjsgen "^0.5.1"
+ regjsparser "^0.6.4"
+ unicode-match-property-ecmascript "^1.0.4"
+ unicode-match-property-value-ecmascript "^1.2.0"
+
+registry-auth-token@^4.0.0:
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.1.tgz#6d7b4006441918972ccd5fedcd41dc322c79b250"
+ integrity sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==
+ dependencies:
+ rc "^1.2.8"
+
+registry-url@^5.0.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz#e98334b50d5434b81136b44ec638d9c2009c5009"
+ integrity sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==
+ dependencies:
+ rc "^1.2.8"
+
+regjsgen@^0.5.1:
+ version "0.5.2"
+ resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733"
+ integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
+
+regjsparser@^0.6.4:
+ version "0.6.9"
+ resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.9.tgz#b489eef7c9a2ce43727627011429cf833a7183e6"
+ integrity sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==
+ dependencies:
+ jsesc "~0.5.0"
+
+relateurl@^0.2.7:
+ version "0.2.7"
+ resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9"
+ integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=
+
+remark-external-links@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/remark-external-links/-/remark-external-links-8.0.0.tgz#308de69482958b5d1cd3692bc9b725ce0240f345"
+ integrity sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==
+ dependencies:
+ extend "^3.0.0"
+ is-absolute-url "^3.0.0"
+ mdast-util-definitions "^4.0.0"
+ space-separated-tokens "^1.0.0"
+ unist-util-visit "^2.0.0"
+
+remark-footnotes@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/remark-footnotes/-/remark-footnotes-2.0.0.tgz#9001c4c2ffebba55695d2dd80ffb8b82f7e6303f"
+ integrity sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==
+
+remark-mdx@1.6.22:
+ version "1.6.22"
+ resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-1.6.22.tgz#06a8dab07dcfdd57f3373af7f86bd0e992108bbd"
+ integrity sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==
+ dependencies:
+ "@babel/core" "7.12.9"
+ "@babel/helper-plugin-utils" "7.10.4"
+ "@babel/plugin-proposal-object-rest-spread" "7.12.1"
+ "@babel/plugin-syntax-jsx" "7.12.1"
+ "@mdx-js/util" "1.6.22"
+ is-alphabetical "1.0.4"
+ remark-parse "8.0.3"
+ unified "9.2.0"
+
+remark-parse@8.0.3:
+ version "8.0.3"
+ resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-8.0.3.tgz#9c62aa3b35b79a486454c690472906075f40c7e1"
+ integrity sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==
+ dependencies:
+ ccount "^1.0.0"
+ collapse-white-space "^1.0.2"
+ is-alphabetical "^1.0.0"
+ is-decimal "^1.0.0"
+ is-whitespace-character "^1.0.0"
+ is-word-character "^1.0.0"
+ markdown-escapes "^1.0.0"
+ parse-entities "^2.0.0"
+ repeat-string "^1.5.4"
+ state-toggle "^1.0.0"
+ trim "0.0.1"
+ trim-trailing-lines "^1.0.0"
+ unherit "^1.0.4"
+ unist-util-remove-position "^2.0.0"
+ vfile-location "^3.0.0"
+ xtend "^4.0.1"
+
+remark-slug@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/remark-slug/-/remark-slug-6.0.0.tgz#2b54a14a7b50407a5e462ac2f376022cce263e2c"
+ integrity sha512-ln67v5BrGKHpETnm6z6adlJPhESFJwfuZZ3jrmi+lKTzeZxh2tzFzUfDD4Pm2hRGOarHLuGToO86MNMZ/hA67Q==
+ dependencies:
+ github-slugger "^1.0.0"
+ mdast-util-to-string "^1.0.0"
+ unist-util-visit "^2.0.0"
+
+remark-squeeze-paragraphs@4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/remark-squeeze-paragraphs/-/remark-squeeze-paragraphs-4.0.0.tgz#76eb0e085295131c84748c8e43810159c5653ead"
+ integrity sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==
+ dependencies:
+ mdast-squeeze-paragraphs "^4.0.0"
+
+remove-trailing-separator@^1.0.1:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
+ integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
+
+renderkid@^2.0.4:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.5.tgz#483b1ac59c6601ab30a7a596a5965cabccfdd0a5"
+ integrity sha512-ccqoLg+HLOHq1vdfYNm4TBeaCDIi1FLt3wGojTDSvdewUv65oTmI3cnT2E4hRjl1gzKZIPK+KZrXzlUYKnR+vQ==
+ dependencies:
+ css-select "^2.0.2"
+ dom-converter "^0.2"
+ htmlparser2 "^3.10.1"
+ lodash "^4.17.20"
+ strip-ansi "^3.0.0"
+
+repeat-element@^1.1.2:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce"
+ integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==
+
+repeat-string@^1.5.4, repeat-string@^1.6.1:
+ version "1.6.1"
+ resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
+ integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
+
+require-directory@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
+ integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
+
+require-from-string@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
+ integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
+
+resolve-dir@^1.0.0, resolve-dir@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43"
+ integrity sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=
+ dependencies:
+ expand-tilde "^2.0.0"
+ global-modules "^1.0.0"
+
+resolve-from@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
+ integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
+
+resolve-from@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
+ integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
+
+resolve-url@^0.2.1:
+ version "0.2.1"
+ resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
+ integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
+
+resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.19.0, resolve@^1.3.2:
+ version "1.20.0"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
+ integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
+ dependencies:
+ is-core-module "^2.2.0"
+ path-parse "^1.0.6"
+
+resolve@^2.0.0-next.3:
+ version "2.0.0-next.3"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46"
+ integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==
+ dependencies:
+ is-core-module "^2.2.0"
+ path-parse "^1.0.6"
+
+responselike@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7"
+ integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=
+ dependencies:
+ lowercase-keys "^1.0.0"
+
+restore-cursor@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
+ integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368=
+ dependencies:
+ onetime "^2.0.0"
+ signal-exit "^3.0.2"
+
+restore-cursor@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
+ integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==
+ dependencies:
+ onetime "^5.1.0"
+ signal-exit "^3.0.2"
+
+ret@~0.1.10:
+ version "0.1.15"
+ resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
+ integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
+
+reusify@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
+ integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
+
+rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.3:
+ version "2.7.1"
+ resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
+ integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
+ dependencies:
+ glob "^7.1.3"
+
+rimraf@^3.0.0, rimraf@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
+ integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
+ dependencies:
+ glob "^7.1.3"
+
+ripemd160@^2.0.0, ripemd160@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
+ integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==
+ dependencies:
+ hash-base "^3.0.0"
+ inherits "^2.0.1"
+
+rollup-plugin-terser@^7.0.0:
+ version "7.0.2"
+ resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz#e8fbba4869981b2dc35ae7e8a502d5c6c04d324d"
+ integrity sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==
+ dependencies:
+ "@babel/code-frame" "^7.10.4"
+ jest-worker "^26.2.1"
+ serialize-javascript "^4.0.0"
+ terser "^5.0.0"
+
+rollup@^2.25.0:
+ version "2.44.0"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.44.0.tgz#8da324d1c4fd12beef9ae6e12f4068265b6d95eb"
+ integrity sha512-rGSF4pLwvuaH/x4nAS+zP6UNn5YUDWf/TeEU5IoXSZKBbKRNTCI3qMnYXKZgrC0D2KzS2baiOZt1OlqhMu5rnQ==
+ optionalDependencies:
+ fsevents "~2.3.1"
+
+rsvp@^4.8.4:
+ version "4.8.5"
+ resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734"
+ integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==
+
+run-async@^2.4.0:
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"
+ integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==
+
+run-parallel@^1.1.9:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
+ integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
+ dependencies:
+ queue-microtask "^1.2.2"
+
+run-queue@^1.0.0, run-queue@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47"
+ integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=
+ dependencies:
+ aproba "^1.1.1"
+
+rxjs@^6.4.0, rxjs@^6.6.0:
+ version "6.6.7"
+ resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
+ integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==
+ dependencies:
+ tslib "^1.9.0"
+
+safe-buffer@5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
+ integrity sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==
+
+safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
+ integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
+
+safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0:
+ version "5.2.1"
+ resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
+ integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
+
+safe-regex@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
+ integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4=
+ dependencies:
+ ret "~0.1.10"
+
+"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.1.0:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
+ integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
+
+sane@^4.0.3:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded"
+ integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==
+ dependencies:
+ "@cnakazawa/watch" "^1.0.3"
+ anymatch "^2.0.0"
+ capture-exit "^2.0.0"
+ exec-sh "^0.3.2"
+ execa "^1.0.0"
+ fb-watchman "^2.0.0"
+ micromatch "^3.1.4"
+ minimist "^1.1.1"
+ walker "~1.0.5"
+
+scheduler@^0.20.1:
+ version "0.20.2"
+ resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91"
+ integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==
+ dependencies:
+ loose-envify "^1.1.0"
+ object-assign "^4.1.1"
+
+schema-utils@2.7.0:
+ version "2.7.0"
+ resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7"
+ integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==
+ dependencies:
+ "@types/json-schema" "^7.0.4"
+ ajv "^6.12.2"
+ ajv-keywords "^3.4.1"
+
+schema-utils@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770"
+ integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==
+ dependencies:
+ ajv "^6.1.0"
+ ajv-errors "^1.0.0"
+ ajv-keywords "^3.1.0"
+
+schema-utils@^2.6.5, schema-utils@^2.6.6, schema-utils@^2.7.0:
+ version "2.7.1"
+ resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7"
+ integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==
+ dependencies:
+ "@types/json-schema" "^7.0.5"
+ ajv "^6.12.4"
+ ajv-keywords "^3.5.2"
+
+schema-utils@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.0.0.tgz#67502f6aa2b66a2d4032b4279a2944978a0913ef"
+ integrity sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==
+ dependencies:
+ "@types/json-schema" "^7.0.6"
+ ajv "^6.12.5"
+ ajv-keywords "^3.5.2"
+
+select@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d"
+ integrity sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=
+
+semver-compare@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
+ integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w=
+
+semver-diff@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-3.1.1.tgz#05f77ce59f325e00e2706afd67bb506ddb1ca32b"
+ integrity sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==
+ dependencies:
+ semver "^6.3.0"
+
+"semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.6.0:
+ version "5.7.1"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
+ integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
+
+semver@7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
+ integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
+
+semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0:
+ version "6.3.0"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
+ integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
+
+semver@^7.2.1, semver@^7.3.2, semver@^7.3.4:
+ version "7.3.5"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
+ integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
+ dependencies:
+ lru-cache "^6.0.0"
+
+send@0.17.1:
+ version "0.17.1"
+ resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8"
+ integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==
+ dependencies:
+ debug "2.6.9"
+ depd "~1.1.2"
+ destroy "~1.0.4"
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ etag "~1.8.1"
+ fresh "0.5.2"
+ http-errors "~1.7.2"
+ mime "1.6.0"
+ ms "2.1.1"
+ on-finished "~2.3.0"
+ range-parser "~1.2.1"
+ statuses "~1.5.0"
+
+sentence-case@^2.1.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-2.1.1.tgz#1f6e2dda39c168bf92d13f86d4a918933f667ed4"
+ integrity sha1-H24t2jnBaL+S0T+G1KkYkz9mftQ=
+ dependencies:
+ no-case "^2.2.0"
+ upper-case-first "^1.1.2"
+
+serialize-javascript@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
+ integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==
+ dependencies:
+ randombytes "^2.1.0"
+
+serve-favicon@^2.5.0:
+ version "2.5.0"
+ resolved "https://registry.yarnpkg.com/serve-favicon/-/serve-favicon-2.5.0.tgz#935d240cdfe0f5805307fdfe967d88942a2cbcf0"
+ integrity sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=
+ dependencies:
+ etag "~1.8.1"
+ fresh "0.5.2"
+ ms "2.1.1"
+ parseurl "~1.3.2"
+ safe-buffer "5.1.1"
+
+serve-static@1.14.1:
+ version "1.14.1"
+ resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9"
+ integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==
+ dependencies:
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ parseurl "~1.3.3"
+ send "0.17.1"
+
+server-destroy@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/server-destroy/-/server-destroy-1.0.1.tgz#f13bf928e42b9c3e79383e61cc3998b5d14e6cdd"
+ integrity sha1-8Tv5KOQrnD55OD5hzDmYtdFObN0=
+
+set-blocking@~2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
+ integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
+
+set-value@^2.0.0, set-value@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
+ integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
+ dependencies:
+ extend-shallow "^2.0.1"
+ is-extendable "^0.1.1"
+ is-plain-object "^2.0.3"
+ split-string "^3.0.1"
+
+setimmediate@^1.0.4:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
+ integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=
+
+setprototypeof@1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
+ integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==
+
+sha.js@^2.4.0, sha.js@^2.4.8:
+ version "2.4.11"
+ resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7"
+ integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==
+ dependencies:
+ inherits "^2.0.1"
+ safe-buffer "^5.0.1"
+
+shallowequal@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8"
+ integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==
+
+shebang-command@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
+ integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
+ dependencies:
+ shebang-regex "^1.0.0"
+
+shebang-command@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
+ integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
+ dependencies:
+ shebang-regex "^3.0.0"
+
+shebang-regex@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
+ integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
+
+shebang-regex@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
+ integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
+
+shell-quote@1.7.2:
+ version "1.7.2"
+ resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2"
+ integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==
+
+side-channel@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
+ integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
+ dependencies:
+ call-bind "^1.0.0"
+ get-intrinsic "^1.0.2"
+ object-inspect "^1.9.0"
+
+signal-exit@^3.0.0, signal-exit@^3.0.2:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
+ integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
+
+sisteransi@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed"
+ integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==
+
+slash@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
+ integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==
+
+slash@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
+ integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
+
+slice-ansi@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
+ integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==
+ dependencies:
+ ansi-styles "^4.0.0"
+ astral-regex "^2.0.0"
+ is-fullwidth-code-point "^3.0.0"
+
+snake-case@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-2.1.0.tgz#41bdb1b73f30ec66a04d4e2cad1b76387d4d6d9f"
+ integrity sha1-Qb2xtz8w7GagTU4srRt2OH1NbZ8=
+ dependencies:
+ no-case "^2.2.0"
+
+snapdragon-node@^2.0.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
+ integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==
+ dependencies:
+ define-property "^1.0.0"
+ isobject "^3.0.0"
+ snapdragon-util "^3.0.1"
+
+snapdragon-util@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
+ integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==
+ dependencies:
+ kind-of "^3.2.0"
+
+snapdragon@^0.8.1:
+ version "0.8.2"
+ resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
+ integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==
+ dependencies:
+ base "^0.11.1"
+ debug "^2.2.0"
+ define-property "^0.2.5"
+ extend-shallow "^2.0.1"
+ map-cache "^0.2.2"
+ source-map "^0.5.6"
+ source-map-resolve "^0.5.0"
+ use "^3.1.0"
+
+source-list-map@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
+ integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
+
+source-map-resolve@^0.5.0:
+ version "0.5.3"
+ resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
+ integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==
+ dependencies:
+ atob "^2.1.2"
+ decode-uri-component "^0.2.0"
+ resolve-url "^0.2.1"
+ source-map-url "^0.4.0"
+ urix "^0.1.0"
+
+source-map-support@^0.5.16, source-map-support@~0.5.12, source-map-support@~0.5.19:
+ version "0.5.19"
+ resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
+ integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
+ dependencies:
+ buffer-from "^1.0.0"
+ source-map "^0.6.0"
+
+source-map-url@^0.4.0:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56"
+ integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==
+
+source-map@0.7.3, source-map@^0.7.3, source-map@~0.7.2:
+ version "0.7.3"
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
+ integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
+
+source-map@0.8.0-beta.0, source-map@^0.8.0-beta.0:
+ version "0.8.0-beta.0"
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.8.0-beta.0.tgz#d4c1bb42c3f7ee925f005927ba10709e0d1d1f11"
+ integrity sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==
+ dependencies:
+ whatwg-url "^7.0.0"
+
+source-map@^0.5.0, source-map@^0.5.6, source-map@^0.5.7:
+ version "0.5.7"
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
+ integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
+
+source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1:
+ version "0.6.1"
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
+ integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
+
+sourcemap-codec@^1.4.4:
+ version "1.4.8"
+ resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4"
+ integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==
+
+space-separated-tokens@^1.0.0:
+ version "1.1.5"
+ resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899"
+ integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==
+
+spdx-correct@^3.0.0:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"
+ integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==
+ dependencies:
+ spdx-expression-parse "^3.0.0"
+ spdx-license-ids "^3.0.0"
+
+spdx-exceptions@^2.1.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d"
+ integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
+
+spdx-expression-parse@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679"
+ integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
+ dependencies:
+ spdx-exceptions "^2.1.0"
+ spdx-license-ids "^3.0.0"
+
+spdx-license-ids@^3.0.0:
+ version "3.0.7"
+ resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz#e9c18a410e5ed7e12442a549fbd8afa767038d65"
+ integrity sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==
+
+split-string@^3.0.1, split-string@^3.0.2:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
+ integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==
+ dependencies:
+ extend-shallow "^3.0.0"
+
+sprintf-js@~1.0.2:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
+ integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
+
+ssri@^6.0.1:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8"
+ integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==
+ dependencies:
+ figgy-pudding "^3.5.1"
+
+ssri@^8.0.1:
+ version "8.0.1"
+ resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af"
+ integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==
+ dependencies:
+ minipass "^3.1.1"
+
+stable@^0.1.8:
+ version "0.1.8"
+ resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
+ integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==
+
+stackframe@^1.1.1:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.2.0.tgz#52429492d63c62eb989804c11552e3d22e779303"
+ integrity sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==
+
+stacktrace-parser@0.1.10:
+ version "0.1.10"
+ resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz#29fb0cae4e0d0b85155879402857a1639eb6051a"
+ integrity sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==
+ dependencies:
+ type-fest "^0.7.1"
+
+state-toggle@^1.0.0:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.3.tgz#e123b16a88e143139b09c6852221bc9815917dfe"
+ integrity sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==
+
+static-extend@^0.1.1:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
+ integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=
+ dependencies:
+ define-property "^0.2.5"
+ object-copy "^0.1.0"
+
+"statuses@>= 1.5.0 < 2", statuses@~1.5.0:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
+ integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
+
+steno@^0.4.1:
+ version "0.4.4"
+ resolved "https://registry.yarnpkg.com/steno/-/steno-0.4.4.tgz#071105bdfc286e6615c0403c27e9d7b5dcb855cb"
+ integrity sha1-BxEFvfwobmYVwEA8J+nXtdy4Vcs=
+ dependencies:
+ graceful-fs "^4.1.3"
+
+store2@^2.12.0:
+ version "2.12.0"
+ resolved "https://registry.yarnpkg.com/store2/-/store2-2.12.0.tgz#e1f1b7e1a59b6083b2596a8d067f6ee88fd4d3cf"
+ integrity sha512-7t+/wpKLanLzSnQPX8WAcuLCCeuSHoWdQuh9SB3xD0kNOM38DNf+0Oa+wmvxmYueRzkmh6IcdKFtvTa+ecgPDw==
+
+storybook-addon-next-router@^2.0.3:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/storybook-addon-next-router/-/storybook-addon-next-router-2.0.4.tgz#205a79b90ddb7a04b3da0ba2b613cde66790b68e"
+ integrity sha512-PAlAVA2joJC36r2uRU7pL5tNPqcOlcgJNuWyyiPAG6f/sptBK4EdOKUUdU0X9NBVV6BCkiwbLH/kkPmWYRxiFw==
+
+stream-browserify@3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f"
+ integrity sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==
+ dependencies:
+ inherits "~2.0.4"
+ readable-stream "^3.5.0"
+
+stream-browserify@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b"
+ integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==
+ dependencies:
+ inherits "~2.0.1"
+ readable-stream "^2.0.2"
+
+stream-each@^1.1.0:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae"
+ integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==
+ dependencies:
+ end-of-stream "^1.1.0"
+ stream-shift "^1.0.0"
+
+stream-http@^2.7.2:
+ version "2.8.3"
+ resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc"
+ integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==
+ dependencies:
+ builtin-status-codes "^3.0.0"
+ inherits "^2.0.1"
+ readable-stream "^2.3.6"
+ to-arraybuffer "^1.0.0"
+ xtend "^4.0.0"
+
+stream-parser@^0.3.1:
+ version "0.3.1"
+ resolved "https://registry.yarnpkg.com/stream-parser/-/stream-parser-0.3.1.tgz#1618548694420021a1182ff0af1911c129761773"
+ integrity sha1-FhhUhpRCACGhGC/wrxkRwSl2F3M=
+ dependencies:
+ debug "2"
+
+stream-shift@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d"
+ integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==
+
+string-hash@1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b"
+ integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=
+
+string-width@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
+ integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=
+ dependencies:
+ code-point-at "^1.0.0"
+ is-fullwidth-code-point "^1.0.0"
+ strip-ansi "^3.0.0"
+
+"string-width@^1.0.2 || 2":
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
+ integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
+ dependencies:
+ is-fullwidth-code-point "^2.0.0"
+ strip-ansi "^4.0.0"
+
+string-width@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
+ integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
+ dependencies:
+ emoji-regex "^7.0.1"
+ is-fullwidth-code-point "^2.0.0"
+ strip-ansi "^5.1.0"
+
+string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0:
+ version "4.2.2"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"
+ integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==
+ dependencies:
+ emoji-regex "^8.0.0"
+ is-fullwidth-code-point "^3.0.0"
+ strip-ansi "^6.0.0"
+
+"string.prototype.matchall@^4.0.0 || ^3.0.1", string.prototype.matchall@^4.0.4:
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.4.tgz#608f255e93e072107f5de066f81a2dfb78cf6b29"
+ integrity sha512-pknFIWVachNcyqRfaQSeu/FUfpvJTe4uskUSZ9Wc1RijsPuzbZ8TyYT8WCNnntCjUEqQ3vUHMAfVj2+wLAisPQ==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+ has-symbols "^1.0.1"
+ internal-slot "^1.0.3"
+ regexp.prototype.flags "^1.3.1"
+ side-channel "^1.0.4"
+
+string.prototype.padend@^3.0.0:
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.2.tgz#6858ca4f35c5268ebd5e8615e1327d55f59ee311"
+ integrity sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+
+string.prototype.padstart@^3.0.0:
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/string.prototype.padstart/-/string.prototype.padstart-3.1.2.tgz#f9b9ce66bedd7c06acb40ece6e34c6046e1a019d"
+ integrity sha512-HDpngIP3pd0DeazrfqzuBrQZa+D2arKWquEHfGt5LzVjd+roLC3cjqVI0X8foaZz5rrrhcu8oJAQamW8on9dqw==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+ es-abstract "^1.18.0-next.2"
+
+string.prototype.trimend@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80"
+ integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+
+string.prototype.trimstart@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed"
+ integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
+
+string_decoder@^1.0.0, string_decoder@^1.1.1:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
+ integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
+ dependencies:
+ safe-buffer "~5.2.0"
+
+string_decoder@~1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
+ integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
+ dependencies:
+ safe-buffer "~5.1.0"
+
+stringify-object@^3.3.0:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629"
+ integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==
+ dependencies:
+ get-own-enumerable-property-symbols "^3.0.0"
+ is-obj "^1.0.1"
+ is-regexp "^1.0.0"
+
+strip-ansi@6.0.0, strip-ansi@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
+ integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
+ dependencies:
+ ansi-regex "^5.0.0"
+
+strip-ansi@^3.0.0, strip-ansi@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
+ integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
+ dependencies:
+ ansi-regex "^2.0.0"
+
+strip-ansi@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
+ integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8=
+ dependencies:
+ ansi-regex "^3.0.0"
+
+strip-ansi@^5.1.0, strip-ansi@^5.2.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
+ integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
+ dependencies:
+ ansi-regex "^4.1.0"
+
+strip-comments@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/strip-comments/-/strip-comments-2.0.1.tgz#4ad11c3fbcac177a67a40ac224ca339ca1c1ba9b"
+ integrity sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==
+
+strip-eof@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
+ integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
+
+strip-indent@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001"
+ integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==
+ dependencies:
+ min-indent "^1.0.0"
+
+strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
+ integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
+
+strip-json-comments@~2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
+ integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
+
+style-loader@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.3.0.tgz#828b4a3b3b7e7aa5847ce7bae9e874512114249e"
+ integrity sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==
+ dependencies:
+ loader-utils "^2.0.0"
+ schema-utils "^2.7.0"
+
+style-to-object@0.3.0, style-to-object@^0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.3.0.tgz#b1b790d205991cc783801967214979ee19a76e46"
+ integrity sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==
+ dependencies:
+ inline-style-parser "0.1.1"
+
+styled-components@^5.2.1:
+ version "5.2.3"
+ resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.2.3.tgz#752669fd694aac10de814d96efc287dde0d11385"
+ integrity sha512-BlR+KrLW3NL1yhvEB+9Nu9Dt51CuOnHoxd+Hj+rYPdtyR8X11uIW9rvhpy3Dk4dXXBsiW1u5U78f00Lf/afGoA==
+ dependencies:
+ "@babel/helper-module-imports" "^7.0.0"
+ "@babel/traverse" "^7.4.5"
+ "@emotion/is-prop-valid" "^0.8.8"
+ "@emotion/stylis" "^0.8.4"
+ "@emotion/unitless" "^0.7.4"
+ babel-plugin-styled-components ">= 1.12.0"
+ css-to-react-native "^3.0.0"
+ hoist-non-react-statics "^3.0.0"
+ shallowequal "^1.1.0"
+ supports-color "^5.5.0"
+
+styled-jsx@3.3.2:
+ version "3.3.2"
+ resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-3.3.2.tgz#2474601a26670a6049fb4d3f94bd91695b3ce018"
+ integrity sha512-daAkGd5mqhbBhLd6jYAjYBa9LpxYCzsgo/f6qzPdFxVB8yoGbhxvzQgkC0pfmCVvW3JuAEBn0UzFLBfkHVZG1g==
+ dependencies:
+ "@babel/types" "7.8.3"
+ babel-plugin-syntax-jsx "6.18.0"
+ convert-source-map "1.7.0"
+ loader-utils "1.2.3"
+ source-map "0.7.3"
+ string-hash "1.1.3"
+ stylis "3.5.4"
+ stylis-rule-sheet "0.0.10"
+
+stylis-rule-sheet@0.0.10:
+ version "0.0.10"
+ resolved "https://registry.yarnpkg.com/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz#44e64a2b076643f4b52e5ff71efc04d8c3c4a430"
+ integrity sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==
+
+stylis@3.5.4:
+ version "3.5.4"
+ resolved "https://registry.yarnpkg.com/stylis/-/stylis-3.5.4.tgz#f665f25f5e299cf3d64654ab949a57c768b73fbe"
+ integrity sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==
+
+supports-color@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
+ integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=
+
+supports-color@^5.3.0, supports-color@^5.5.0:
+ version "5.5.0"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
+ integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
+ dependencies:
+ has-flag "^3.0.0"
+
+supports-color@^6.1.0:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
+ integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==
+ dependencies:
+ has-flag "^3.0.0"
+
+supports-color@^7.0.0, supports-color@^7.1.0:
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
+ integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
+ dependencies:
+ has-flag "^4.0.0"
+
+swap-case@^1.1.0:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/swap-case/-/swap-case-1.1.2.tgz#c39203a4587385fad3c850a0bd1bcafa081974e3"
+ integrity sha1-w5IDpFhzhfrTyFCgvRvK+ggZdOM=
+ dependencies:
+ lower-case "^1.1.1"
+ upper-case "^1.1.1"
+
+symbol.prototype.description@^1.0.0:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/symbol.prototype.description/-/symbol.prototype.description-1.0.4.tgz#c30edd3fe8c040d941cf7dc15842be15adf66855"
+ integrity sha512-fZkHwJ8ZNRVRzF/+/2OtygyyH06CjC0YZAQRHu9jKKw8RXlJpbizEHvGRUu22Qkg182wJk1ugb5Aovcv3UPrww==
+ dependencies:
+ call-bind "^1.0.2"
+ es-abstract "^1.18.0-next.2"
+ has-symbols "^1.0.1"
+ object.getownpropertydescriptors "^2.1.2"
+
+table@^6.0.4:
+ version "6.0.9"
+ resolved "https://registry.yarnpkg.com/table/-/table-6.0.9.tgz#790a12bf1e09b87b30e60419bafd6a1fd85536fb"
+ integrity sha512-F3cLs9a3hL1Z7N4+EkSscsel3z55XT950AvB05bwayrNg5T1/gykXtigioTAjbltvbMSJvvhFCbnf6mX+ntnJQ==
+ dependencies:
+ ajv "^8.0.1"
+ is-boolean-object "^1.1.0"
+ is-number-object "^1.0.4"
+ is-string "^1.0.5"
+ lodash.clonedeep "^4.5.0"
+ lodash.flatten "^4.4.0"
+ lodash.truncate "^4.4.2"
+ slice-ansi "^4.0.0"
+ string-width "^4.2.0"
+
+tapable@^1.0.0, tapable@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
+ integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
+
+tar@^6.0.2:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.0.tgz#d1724e9bcc04b977b18d5c573b333a2207229a83"
+ integrity sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA==
+ dependencies:
+ chownr "^2.0.0"
+ fs-minipass "^2.0.0"
+ minipass "^3.0.0"
+ minizlib "^2.1.1"
+ mkdirp "^1.0.3"
+ yallist "^4.0.0"
+
+telejson@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/telejson/-/telejson-5.1.0.tgz#cc04e4c2a355f9eb6af557e37acd6449feb1d146"
+ integrity sha512-Yy0N2OV0mosmr1SCZEm3Ezhu/oi5Dbao5RqauZu4+VI5I/XtVBHXajRk0txuqbFYtKdzzWGDZFGSif9ovVLjEA==
+ dependencies:
+ "@types/is-function" "^1.0.0"
+ global "^4.4.0"
+ is-function "^1.0.2"
+ is-regex "^1.1.1"
+ is-symbol "^1.0.3"
+ isobject "^4.0.0"
+ lodash "^4.17.20"
+ memoizerific "^1.11.3"
+
+temp-dir@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-2.0.0.tgz#bde92b05bdfeb1516e804c9c00ad45177f31321e"
+ integrity sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==
+
+tempy@^0.6.0:
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/tempy/-/tempy-0.6.0.tgz#65e2c35abc06f1124a97f387b08303442bde59f3"
+ integrity sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==
+ dependencies:
+ is-stream "^2.0.0"
+ temp-dir "^2.0.0"
+ type-fest "^0.16.0"
+ unique-string "^2.0.0"
+
+term-size@^2.1.0:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54"
+ integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==
+
+terser-webpack-plugin@^1.4.3:
+ version "1.4.5"
+ resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b"
+ integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==
+ dependencies:
+ cacache "^12.0.2"
+ find-cache-dir "^2.1.0"
+ is-wsl "^1.1.0"
+ schema-utils "^1.0.0"
+ serialize-javascript "^4.0.0"
+ source-map "^0.6.1"
+ terser "^4.1.2"
+ webpack-sources "^1.4.0"
+ worker-farm "^1.7.0"
+
+terser-webpack-plugin@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-3.1.0.tgz#91e6d39571460ed240c0cf69d295bcf30ebf98cb"
+ integrity sha512-cjdZte66fYkZ65rQ2oJfrdCAkkhJA7YLYk5eGOcGCSGlq0ieZupRdjedSQXYknMPo2IveQL+tPdrxUkERENCFA==
+ dependencies:
+ cacache "^15.0.5"
+ find-cache-dir "^3.3.1"
+ jest-worker "^26.2.1"
+ p-limit "^3.0.2"
+ schema-utils "^2.6.6"
+ serialize-javascript "^4.0.0"
+ source-map "^0.6.1"
+ terser "^4.8.0"
+ webpack-sources "^1.4.3"
+
+terser@^4.1.2, terser@^4.6.3, terser@^4.8.0:
+ version "4.8.0"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17"
+ integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==
+ dependencies:
+ commander "^2.20.0"
+ source-map "~0.6.1"
+ source-map-support "~0.5.12"
+
+terser@^5.0.0:
+ version "5.6.1"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.6.1.tgz#a48eeac5300c0a09b36854bf90d9c26fb201973c"
+ integrity sha512-yv9YLFQQ+3ZqgWCUk+pvNJwgUTdlIxUk1WTN+RnaFJe2L7ipG2csPT0ra2XRm7Cs8cxN7QXmK1rFzEwYEQkzXw==
+ dependencies:
+ commander "^2.20.0"
+ source-map "~0.7.2"
+ source-map-support "~0.5.19"
+
+test-exclude@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e"
+ integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==
+ dependencies:
+ "@istanbuljs/schema" "^0.1.2"
+ glob "^7.1.4"
+ minimatch "^3.0.4"
+
+text-table@0.2.0, text-table@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
+ integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
+
+throttle-debounce@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-3.0.1.tgz#32f94d84dfa894f786c9a1f290e7a645b6a19abb"
+ integrity sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==
+
+through2@^2.0.0:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
+ integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
+ dependencies:
+ readable-stream "~2.3.6"
+ xtend "~4.0.1"
+
+through@^2.3.6:
+ version "2.3.8"
+ resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
+ integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
+
+timers-browserify@^2.0.4:
+ version "2.0.12"
+ resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee"
+ integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==
+ dependencies:
+ setimmediate "^1.0.4"
+
+tiny-emitter@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423"
+ integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==
+
+title-case@^2.1.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/title-case/-/title-case-2.1.1.tgz#3e127216da58d2bc5becf137ab91dae3a7cd8faa"
+ integrity sha1-PhJyFtpY0rxb7PE3q5Ha46fNj6o=
+ dependencies:
+ no-case "^2.2.0"
+ upper-case "^1.0.3"
+
+tmp@^0.0.33:
+ version "0.0.33"
+ resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
+ integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==
+ dependencies:
+ os-tmpdir "~1.0.2"
+
+tmpl@1.0.x:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1"
+ integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=
+
+to-arraybuffer@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
+ integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=
+
+to-fast-properties@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
+ integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
+
+to-object-path@^0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
+ integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=
+ dependencies:
+ kind-of "^3.0.2"
+
+to-readable-stream@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771"
+ integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==
+
+to-regex-range@^2.1.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
+ integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=
+ dependencies:
+ is-number "^3.0.0"
+ repeat-string "^1.6.1"
+
+to-regex-range@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
+ integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
+ dependencies:
+ is-number "^7.0.0"
+
+to-regex@^3.0.1, to-regex@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
+ integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==
+ dependencies:
+ define-property "^2.0.2"
+ extend-shallow "^3.0.2"
+ regex-not "^1.0.2"
+ safe-regex "^1.1.0"
+
+toggle-selection@^1.0.6:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32"
+ integrity sha1-bkWxJj8gF/oKzH2J14sVuL932jI=
+
+toidentifier@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
+ integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
+
+tr46@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
+ integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=
+ dependencies:
+ punycode "^2.1.0"
+
+trim-trailing-lines@^1.0.0:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz#bd4abbec7cc880462f10b2c8b5ce1d8d1ec7c2c0"
+ integrity sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==
+
+trim@0.0.1:
+ version "0.0.1"
+ resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd"
+ integrity sha1-WFhUf2spB1fulczMZm+1AITEYN0=
+
+trough@^1.0.0:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406"
+ integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==
+
+ts-dedent@^2.0.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-2.1.1.tgz#6dd56870bb5493895171334fa5d7e929107e5bbc"
+ integrity sha512-riHuwnzAUCfdIeTBNUq7+Yj+ANnrMXo/7+Z74dIdudS7ys2k8aSGMzpJRMFDF7CLwUTbtvi1ZZff/Wl+XxmqIA==
+
+ts-essentials@^2.0.3:
+ version "2.0.12"
+ resolved "https://registry.yarnpkg.com/ts-essentials/-/ts-essentials-2.0.12.tgz#c9303f3d74f75fa7528c3d49b80e089ab09d8745"
+ integrity sha512-3IVX4nI6B5cc31/GFFE+i8ey/N2eA0CZDbo6n0yrz0zDX8ZJ8djmU1p+XRz7G3is0F3bB3pu2pAroFdAWQKU3w==
+
+ts-pnp@^1.1.6:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92"
+ integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==
+
+tslib@^1.8.1, tslib@^1.9.0:
+ version "1.14.1"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
+ integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
+
+tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a"
+ integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==
+
+tsutils@^3.17.1:
+ version "3.21.0"
+ resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
+ integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
+ dependencies:
+ tslib "^1.8.1"
+
+tty-browserify@0.0.0:
+ version "0.0.0"
+ resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
+ integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=
+
+type-check@^0.4.0, type-check@~0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
+ integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
+ dependencies:
+ prelude-ls "^1.2.1"
+
+type-check@~0.3.2:
+ version "0.3.2"
+ resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
+ integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=
+ dependencies:
+ prelude-ls "~1.1.2"
+
+type-fest@^0.16.0:
+ version "0.16.0"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.16.0.tgz#3240b891a78b0deae910dbeb86553e552a148860"
+ integrity sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==
+
+type-fest@^0.20.2:
+ version "0.20.2"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
+ integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
+
+type-fest@^0.21.3:
+ version "0.21.3"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
+ integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
+
+type-fest@^0.6.0:
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b"
+ integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==
+
+type-fest@^0.7.1:
+ version "0.7.1"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48"
+ integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==
+
+type-fest@^0.8.1:
+ version "0.8.1"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
+ integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
+
+type-is@~1.6.17, type-is@~1.6.18:
+ version "1.6.18"
+ resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
+ integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
+ dependencies:
+ media-typer "0.3.0"
+ mime-types "~2.1.24"
+
+typedarray-to-buffer@^3.1.5:
+ version "3.1.5"
+ resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
+ integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
+ dependencies:
+ is-typedarray "^1.0.0"
+
+typedarray@^0.0.6:
+ version "0.0.6"
+ resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
+ integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
+
+typescript@^4.1.3:
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.2.3.tgz#39062d8019912d43726298f09493d598048c1ce3"
+ integrity sha512-qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw==
+
+uglify-js@^3.1.4:
+ version "3.13.3"
+ resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.3.tgz#ce72a1ad154348ea2af61f50933c76cc8802276e"
+ integrity sha512-otIc7O9LyxpUcQoXzj2hL4LPWKklO6LJWoJUzNa8A17Xgi4fOeDC8FBDOLHnC/Slo1CQgsZMcM6as0M76BZaig==
+
+unbox-primitive@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471"
+ integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==
+ dependencies:
+ function-bind "^1.1.1"
+ has-bigints "^1.0.1"
+ has-symbols "^1.0.2"
+ which-boxed-primitive "^1.0.2"
+
+unc-path-regex@^0.1.2:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa"
+ integrity sha1-5z3T17DXxe2G+6xrCufYxqadUPo=
+
+unfetch@^4.2.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be"
+ integrity sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==
+
+unherit@^1.0.4:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.3.tgz#6c9b503f2b41b262330c80e91c8614abdaa69c22"
+ integrity sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==
+ dependencies:
+ inherits "^2.0.0"
+ xtend "^4.0.0"
+
+unicode-canonical-property-names-ecmascript@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
+ integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==
+
+unicode-match-property-ecmascript@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
+ integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==
+ dependencies:
+ unicode-canonical-property-names-ecmascript "^1.0.4"
+ unicode-property-aliases-ecmascript "^1.0.4"
+
+unicode-match-property-value-ecmascript@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531"
+ integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==
+
+unicode-property-aliases-ecmascript@^1.0.4:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4"
+ integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==
+
+unified@9.2.0:
+ version "9.2.0"
+ resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.0.tgz#67a62c627c40589edebbf60f53edfd4d822027f8"
+ integrity sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==
+ dependencies:
+ bail "^1.0.0"
+ extend "^3.0.0"
+ is-buffer "^2.0.0"
+ is-plain-obj "^2.0.0"
+ trough "^1.0.0"
+ vfile "^4.0.0"
+
+union-value@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
+ integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
+ dependencies:
+ arr-union "^3.1.0"
+ get-value "^2.0.6"
+ is-extendable "^0.1.1"
+ set-value "^2.0.1"
+
+uniq@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
+ integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=
+
+unique-filename@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230"
+ integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==
+ dependencies:
+ unique-slug "^2.0.0"
+
+unique-slug@^2.0.0:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c"
+ integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==
+ dependencies:
+ imurmurhash "^0.1.4"
+
+unique-string@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d"
+ integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==
+ dependencies:
+ crypto-random-string "^2.0.0"
+
+unist-builder@2.0.3, unist-builder@^2.0.0:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/unist-builder/-/unist-builder-2.0.3.tgz#77648711b5d86af0942f334397a33c5e91516436"
+ integrity sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==
+
+unist-util-generated@^1.0.0:
+ version "1.1.6"
+ resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-1.1.6.tgz#5ab51f689e2992a472beb1b35f2ce7ff2f324d4b"
+ integrity sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==
+
+unist-util-is@^4.0.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.1.0.tgz#976e5f462a7a5de73d94b706bac1b90671b57797"
+ integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==
+
+unist-util-position@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-3.1.0.tgz#1c42ee6301f8d52f47d14f62bbdb796571fa2d47"
+ integrity sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==
+
+unist-util-remove-position@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz#5d19ca79fdba712301999b2b73553ca8f3b352cc"
+ integrity sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==
+ dependencies:
+ unist-util-visit "^2.0.0"
+
+unist-util-remove@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/unist-util-remove/-/unist-util-remove-2.0.1.tgz#fa13c424ff8e964f3aa20d1098b9a690c6bfaa39"
+ integrity sha512-YtuetK6o16CMfG+0u4nndsWpujgsHDHHLyE0yGpJLLn5xSjKeyGyzEBOI2XbmoUHCYabmNgX52uxlWoQhcvR7Q==
+ dependencies:
+ unist-util-is "^4.0.0"
+
+unist-util-stringify-position@^2.0.0:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da"
+ integrity sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==
+ dependencies:
+ "@types/unist" "^2.0.2"
+
+unist-util-visit-parents@^3.0.0:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz#65a6ce698f78a6b0f56aa0e88f13801886cdaef6"
+ integrity sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==
+ dependencies:
+ "@types/unist" "^2.0.0"
+ unist-util-is "^4.0.0"
+
+unist-util-visit@2.0.3, unist-util-visit@^2.0.0:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.3.tgz#c3703893146df47203bb8a9795af47d7b971208c"
+ integrity sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==
+ dependencies:
+ "@types/unist" "^2.0.0"
+ unist-util-is "^4.0.0"
+ unist-util-visit-parents "^3.0.0"
+
+universalify@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717"
+ integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==
+
+unpipe@1.0.0, unpipe@~1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
+ integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
+
+unquote@^1.1.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544"
+ integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=
+
+unset-value@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
+ integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=
+ dependencies:
+ has-value "^0.3.1"
+ isobject "^3.0.0"
+
+upath@^1.1.1, upath@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894"
+ integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
+
+update-notifier@^5.0.1:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-5.1.0.tgz#4ab0d7c7f36a231dd7316cf7729313f0214d9ad9"
+ integrity sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==
+ dependencies:
+ boxen "^5.0.0"
+ chalk "^4.1.0"
+ configstore "^5.0.1"
+ has-yarn "^2.1.0"
+ import-lazy "^2.1.0"
+ is-ci "^2.0.0"
+ is-installed-globally "^0.4.0"
+ is-npm "^5.0.0"
+ is-yarn-global "^0.3.0"
+ latest-version "^5.1.0"
+ pupa "^2.1.1"
+ semver "^7.3.4"
+ semver-diff "^3.1.1"
+ xdg-basedir "^4.0.0"
+
+upper-case-first@^1.1.0, upper-case-first@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/upper-case-first/-/upper-case-first-1.1.2.tgz#5d79bedcff14419518fd2edb0a0507c9b6859115"
+ integrity sha1-XXm+3P8UQZUY/S7bCgUHybaFkRU=
+ dependencies:
+ upper-case "^1.1.1"
+
+upper-case@^1.0.3, upper-case@^1.1.0, upper-case@^1.1.1, upper-case@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598"
+ integrity sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=
+
+uri-js@^4.2.2:
+ version "4.4.1"
+ resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
+ integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
+ dependencies:
+ punycode "^2.1.0"
+
+urix@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
+ integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
+
+url-loader@^4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.1.tgz#28505e905cae158cf07c92ca622d7f237e70a4e2"
+ integrity sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==
+ dependencies:
+ loader-utils "^2.0.0"
+ mime-types "^2.1.27"
+ schema-utils "^3.0.0"
+
+url-parse-lax@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c"
+ integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=
+ dependencies:
+ prepend-http "^2.0.0"
+
+url@^0.11.0:
+ version "0.11.0"
+ resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
+ integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=
+ dependencies:
+ punycode "1.3.2"
+ querystring "0.2.0"
+
+use-composed-ref@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/use-composed-ref/-/use-composed-ref-1.1.0.tgz#9220e4e94a97b7b02d7d27eaeab0b37034438bbc"
+ integrity sha512-my1lNHGWsSDAhhVAT4MKs6IjBUtG6ZG11uUqexPH9PptiIZDQOzaF4f5tEbJ2+7qvNbtXNBbU3SfmN+fXlWDhg==
+ dependencies:
+ ts-essentials "^2.0.3"
+
+use-isomorphic-layout-effect@^1.0.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.1.tgz#7bb6589170cd2987a152042f9084f9effb75c225"
+ integrity sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==
+
+use-latest@^1.0.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/use-latest/-/use-latest-1.2.0.tgz#a44f6572b8288e0972ec411bdd0840ada366f232"
+ integrity sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==
+ dependencies:
+ use-isomorphic-layout-effect "^1.0.0"
+
+use-subscription@1.5.1:
+ version "1.5.1"
+ resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.5.1.tgz#73501107f02fad84c6dd57965beb0b75c68c42d1"
+ integrity sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==
+ dependencies:
+ object-assign "^4.1.1"
+
+use@^3.1.0:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
+ integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
+
+user-home@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190"
+ integrity sha1-K1viOjK2Onyd640PKNSFcko98ZA=
+
+util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
+ integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
+
+util.promisify@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
+ integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==
+ dependencies:
+ define-properties "^1.1.2"
+ object.getownpropertydescriptors "^2.0.3"
+
+util@0.10.3:
+ version "0.10.3"
+ resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
+ integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk=
+ dependencies:
+ inherits "2.0.1"
+
+util@^0.11.0:
+ version "0.11.1"
+ resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61"
+ integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==
+ dependencies:
+ inherits "2.0.3"
+
+utila@~0.4:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c"
+ integrity sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=
+
+utils-merge@1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
+ integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
+
+uuid-browser@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/uuid-browser/-/uuid-browser-3.1.0.tgz#0f05a40aef74f9e5951e20efbf44b11871e56410"
+ integrity sha1-DwWkCu90+eWVHiDvv0SxGHHlZBA=
+
+uuid@^3.3.2:
+ version "3.4.0"
+ resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
+ integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
+
+v8-compile-cache@^2.0.3:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
+ integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
+
+v8flags@^2.0.10:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4"
+ integrity sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=
+ dependencies:
+ user-home "^1.1.1"
+
+validate-npm-package-license@^3.0.1:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
+ integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
+ dependencies:
+ spdx-correct "^3.0.0"
+ spdx-expression-parse "^3.0.0"
+
+vary@^1, vary@~1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
+ integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
+
+vfile-location@^3.0.0, vfile-location@^3.2.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-3.2.0.tgz#d8e41fbcbd406063669ebf6c33d56ae8721d0f3c"
+ integrity sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==
+
+vfile-message@^2.0.0:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-2.0.4.tgz#5b43b88171d409eae58477d13f23dd41d52c371a"
+ integrity sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==
+ dependencies:
+ "@types/unist" "^2.0.0"
+ unist-util-stringify-position "^2.0.0"
+
+vfile@^4.0.0:
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.2.1.tgz#03f1dce28fc625c625bc6514350fbdb00fa9e624"
+ integrity sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==
+ dependencies:
+ "@types/unist" "^2.0.0"
+ is-buffer "^2.0.0"
+ unist-util-stringify-position "^2.0.0"
+ vfile-message "^2.0.0"
+
+vm-browserify@1.1.2, vm-browserify@^1.0.1:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0"
+ integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
+
+walker@^1.0.7, walker@~1.0.5:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb"
+ integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=
+ dependencies:
+ makeerror "1.0.x"
+
+warning@^4.0.2, warning@^4.0.3:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3"
+ integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==
+ dependencies:
+ loose-envify "^1.0.0"
+
+watchpack-chokidar2@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz#38500072ee6ece66f3769936950ea1771be1c957"
+ integrity sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==
+ dependencies:
+ chokidar "^2.1.8"
+
+watchpack@2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.1.1.tgz#e99630550fca07df9f90a06056987baa40a689c7"
+ integrity sha512-Oo7LXCmc1eE1AjyuSBmtC3+Wy4HcV8PxWh2kP6fOl8yTlNS7r0K9l1ao2lrrUza7V39Y3D/BbJgY8VeSlc5JKw==
+ dependencies:
+ glob-to-regexp "^0.4.1"
+ graceful-fs "^4.1.2"
+
+watchpack@^1.7.4:
+ version "1.7.5"
+ resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.5.tgz#1267e6c55e0b9b5be44c2023aed5437a2c26c453"
+ integrity sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==
+ dependencies:
+ graceful-fs "^4.1.2"
+ neo-async "^2.5.0"
+ optionalDependencies:
+ chokidar "^3.4.1"
+ watchpack-chokidar2 "^2.0.1"
+
+wcwidth@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"
+ integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=
+ dependencies:
+ defaults "^1.0.3"
+
+web-namespaces@^1.0.0:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-1.1.4.tgz#bc98a3de60dadd7faefc403d1076d529f5e030ec"
+ integrity sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==
+
+webidl-conversions@^4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
+ integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==
+
+webpack-dev-middleware@^3.7.3:
+ version "3.7.3"
+ resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz#0639372b143262e2b84ab95d3b91a7597061c2c5"
+ integrity sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==
+ dependencies:
+ memory-fs "^0.4.1"
+ mime "^2.4.4"
+ mkdirp "^0.5.1"
+ range-parser "^1.2.1"
+ webpack-log "^2.0.0"
+
+webpack-filter-warnings-plugin@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/webpack-filter-warnings-plugin/-/webpack-filter-warnings-plugin-1.2.1.tgz#dc61521cf4f9b4a336fbc89108a75ae1da951cdb"
+ integrity sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==
+
+webpack-hot-middleware@^2.25.0:
+ version "2.25.0"
+ resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.25.0.tgz#4528a0a63ec37f8f8ef565cf9e534d57d09fe706"
+ integrity sha512-xs5dPOrGPCzuRXNi8F6rwhawWvQQkeli5Ro48PRuQh8pYPCPmNnltP9itiUPT4xI8oW+y0m59lyyeQk54s5VgA==
+ dependencies:
+ ansi-html "0.0.7"
+ html-entities "^1.2.0"
+ querystring "^0.2.0"
+ strip-ansi "^3.0.0"
+
+webpack-log@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f"
+ integrity sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==
+ dependencies:
+ ansi-colors "^3.0.0"
+ uuid "^3.3.2"
+
+webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3:
+ version "1.4.3"
+ resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933"
+ integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==
+ dependencies:
+ source-list-map "^2.0.0"
+ source-map "~0.6.1"
+
+webpack-virtual-modules@^0.2.2:
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.2.2.tgz#20863dc3cb6bb2104729fff951fbe14b18bd0299"
+ integrity sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==
+ dependencies:
+ debug "^3.0.0"
+
+webpack@4:
+ version "4.46.0"
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.46.0.tgz#bf9b4404ea20a073605e0a011d188d77cb6ad542"
+ integrity sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==
+ dependencies:
+ "@webassemblyjs/ast" "1.9.0"
+ "@webassemblyjs/helper-module-context" "1.9.0"
+ "@webassemblyjs/wasm-edit" "1.9.0"
+ "@webassemblyjs/wasm-parser" "1.9.0"
+ acorn "^6.4.1"
+ ajv "^6.10.2"
+ ajv-keywords "^3.4.1"
+ chrome-trace-event "^1.0.2"
+ enhanced-resolve "^4.5.0"
+ eslint-scope "^4.0.3"
+ json-parse-better-errors "^1.0.2"
+ loader-runner "^2.4.0"
+ loader-utils "^1.2.3"
+ memory-fs "^0.4.1"
+ micromatch "^3.1.10"
+ mkdirp "^0.5.3"
+ neo-async "^2.6.1"
+ node-libs-browser "^2.2.1"
+ schema-utils "^1.0.0"
+ tapable "^1.1.3"
+ terser-webpack-plugin "^1.4.3"
+ watchpack "^1.7.4"
+ webpack-sources "^1.4.1"
+
+whatwg-url@^7.0.0:
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06"
+ integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==
+ dependencies:
+ lodash.sortby "^4.7.0"
+ tr46 "^1.0.1"
+ webidl-conversions "^4.0.2"
+
+which-boxed-primitive@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
+ integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
+ dependencies:
+ is-bigint "^1.0.1"
+ is-boolean-object "^1.1.0"
+ is-number-object "^1.0.4"
+ is-string "^1.0.5"
+ is-symbol "^1.0.3"
+
+which@^1.2.14, which@^1.2.9, which@^1.3.1:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
+ integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
+ dependencies:
+ isexe "^2.0.0"
+
+which@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
+ integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
+ dependencies:
+ isexe "^2.0.0"
+
+wide-align@^1.1.0:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
+ integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==
+ dependencies:
+ string-width "^1.0.2 || 2"
+
+widest-line@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca"
+ integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==
+ dependencies:
+ string-width "^4.0.0"
+
+word-wrap@^1.2.3, word-wrap@~1.2.3:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
+ integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
+
+wordwrap@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
+ integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=
+
+workbox-background-sync@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/workbox-background-sync/-/workbox-background-sync-6.1.2.tgz#76d971810063f38ef58b0c1cadb0bf2011617b54"
+ integrity sha512-rdXbGCI7KIxlw/rtVc3Bfp7S2ylZ7u+bSPoW8W6bxBR4RsSSagNIJOvkiS1+3zZOwvNcUxcRvVhDcwDz1cBbhQ==
+ dependencies:
+ workbox-core "^6.1.2"
+
+workbox-broadcast-update@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/workbox-broadcast-update/-/workbox-broadcast-update-6.1.2.tgz#8a60526fb007a005c4d11381372ed6461276a0cd"
+ integrity sha512-pISOgOMH5pRVBlnvverxoaMgZzxdopzozuyjAt6UcctOjvuISQyTGa28C4qQ6XN20/rb3tk3n94N122wxicGXg==
+ dependencies:
+ workbox-core "^6.1.2"
+
+workbox-build@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/workbox-build/-/workbox-build-6.1.2.tgz#857445d4f795859203306f26d4e89dde143fdee2"
+ integrity sha512-Px9amQd46uJh37ZWoT2LIcXTgBEZAOB28otxqJRNS4jpUhtANHQG3yX6AhwPdcw6xTV5ufLXizBCkF8z/cox0A==
+ dependencies:
+ "@babel/core" "^7.11.1"
+ "@babel/preset-env" "^7.11.0"
+ "@babel/runtime" "^7.11.2"
+ "@hapi/joi" "^16.1.8"
+ "@rollup/plugin-babel" "^5.2.0"
+ "@rollup/plugin-node-resolve" "^9.0.0"
+ "@rollup/plugin-replace" "^2.4.1"
+ "@surma/rollup-plugin-off-main-thread" "^1.4.1"
+ common-tags "^1.8.0"
+ fast-json-stable-stringify "^2.1.0"
+ fs-extra "^9.0.1"
+ glob "^7.1.6"
+ lodash "^4.17.20"
+ pretty-bytes "^5.3.0"
+ rollup "^2.25.0"
+ rollup-plugin-terser "^7.0.0"
+ source-map "^0.8.0-beta.0"
+ source-map-url "^0.4.0"
+ stringify-object "^3.3.0"
+ strip-comments "^2.0.1"
+ tempy "^0.6.0"
+ upath "^1.2.0"
+ workbox-background-sync "^6.1.2"
+ workbox-broadcast-update "^6.1.2"
+ workbox-cacheable-response "^6.1.2"
+ workbox-core "^6.1.2"
+ workbox-expiration "^6.1.2"
+ workbox-google-analytics "^6.1.2"
+ workbox-navigation-preload "^6.1.2"
+ workbox-precaching "^6.1.2"
+ workbox-range-requests "^6.1.2"
+ workbox-recipes "^6.1.2"
+ workbox-routing "^6.1.2"
+ workbox-strategies "^6.1.2"
+ workbox-streams "^6.1.2"
+ workbox-sw "^6.1.2"
+ workbox-window "^6.1.2"
+
+workbox-cacheable-response@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/workbox-cacheable-response/-/workbox-cacheable-response-6.1.2.tgz#926d08ec79f99d773f1c5763ba287b17eef0c760"
+ integrity sha512-zSTQWJU+CBHC90N/Dccb9n0IzbTsmnl28usKOlVYbfHS5wit3izpD7djqqHzgzyS+gdemRjY4s02VV9WvyeD1w==
+ dependencies:
+ workbox-core "^6.1.2"
+
+workbox-core@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/workbox-core/-/workbox-core-6.1.2.tgz#b694ca77e1cdf43c330f8fb29122946aa7e6a7a1"
+ integrity sha512-69rch7EyPsNAx5Y5YlSoHV39/EEE1oDeb5zmLIy6+mgB4BnaG6u/tlDtvjvKqHcPM0gz2L5SzYtTEvWmk5WRTQ==
+
+workbox-expiration@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/workbox-expiration/-/workbox-expiration-6.1.2.tgz#0e31ff9cc12a2982430226cd7f34f7b16b3ddbae"
+ integrity sha512-86cXz8Ae5cAJMgJ6aD/8E1NMNON4qGnE4ir1G3VuOu1xLsx2ItbbXmz6b0BB2dZ+kX6BDwqE0wkgS5As5Sds7g==
+ dependencies:
+ workbox-core "^6.1.2"
+
+workbox-google-analytics@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/workbox-google-analytics/-/workbox-google-analytics-6.1.2.tgz#723bc0f03671027afbce5f10f18843907276ff59"
+ integrity sha512-7mO/gMms1yivnoVPnm8LXYHV2SsHBxTijYNXx032nzMX0gpBKJfRHmNvZDVRvn2L6YRxFiMg0x9JuHe2b2wSeg==
+ dependencies:
+ workbox-background-sync "^6.1.2"
+ workbox-core "^6.1.2"
+ workbox-routing "^6.1.2"
+ workbox-strategies "^6.1.2"
+
+workbox-navigation-preload@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/workbox-navigation-preload/-/workbox-navigation-preload-6.1.2.tgz#442d085035f9d2f57cd123e8e2a9f1fa1f0ec3b2"
+ integrity sha512-A41yO/mLjHMNV1EGWFTDExYAYkNvdtu2U0deRNL3HKKEMomqhLfFHJVg/b2jyarMf9Iosm7jHFbbTr8hiaMWwA==
+ dependencies:
+ workbox-core "^6.1.2"
+
+workbox-precaching@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/workbox-precaching/-/workbox-precaching-6.1.2.tgz#5d8d5d13793feb8119acfaa54b1a627bc766c881"
+ integrity sha512-jGwv6tMdIecsyBSdVCgXoD7bHxLRI972lvYOfvcosGjP3oFKe8p2DVPsn3TIzEVYTl+b3j59utC7yrOP9oEHSg==
+ dependencies:
+ workbox-core "^6.1.2"
+ workbox-routing "^6.1.2"
+ workbox-strategies "^6.1.2"
+
+workbox-range-requests@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/workbox-range-requests/-/workbox-range-requests-6.1.2.tgz#d6b75f19652db62a74c73c4b052fd46d2a462738"
+ integrity sha512-VNwg8DKpQtIRBQ+3GPAv7/OFjs1AdJDt06BJOnNxy4NiY3/Abhjry5P7SJ8uXMNwxiSHKpcLY8nAF+YVYlLuRQ==
+ dependencies:
+ workbox-core "^6.1.2"
+
+workbox-recipes@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/workbox-recipes/-/workbox-recipes-6.1.2.tgz#35586e9074f6e66033f6ceede850588a0a446dca"
+ integrity sha512-KT9qome7svIajmXP6/4kmZYr8UzWua6MO2GIeM0Th+mr28WzrHfw2iCeo3362hCW/yMiNMlP5uuXiqsaFxUjHg==
+ dependencies:
+ workbox-cacheable-response "^6.1.2"
+ workbox-core "^6.1.2"
+ workbox-expiration "^6.1.2"
+ workbox-precaching "^6.1.2"
+ workbox-routing "^6.1.2"
+ workbox-strategies "^6.1.2"
+
+workbox-routing@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/workbox-routing/-/workbox-routing-6.1.2.tgz#e0e6a745bb2fb9110eafaeed0d35fdece0f589b8"
+ integrity sha512-aRcqO+KX9A0J5W6hEeEpGhT6Lesqd3WfgaqlSD5LRajm0vAgYnlQzY37w6uC55Ev7M5Gh/xg0lA99qKc6ozsEA==
+ dependencies:
+ workbox-core "^6.1.2"
+
+workbox-strategies@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/workbox-strategies/-/workbox-strategies-6.1.2.tgz#3547eb17ebada31d095db98316913e1031b12352"
+ integrity sha512-IX7UNePHmmfb1dcXSxgcephYShnLc0pmP3MRT/TZGjv8f0qcZYH7Sr/lTmwaxGXQL8yCSCrQICZwJnHLw2G5Ng==
+ dependencies:
+ workbox-core "^6.1.2"
+
+workbox-streams@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/workbox-streams/-/workbox-streams-6.1.2.tgz#d7c2fd49bca6e0594e046144248730a245294c6d"
+ integrity sha512-iAHamHNZPSfN8k2QMrfei6/2FrReSHCkQUi4gU4B+tDXi4lY33/iU3+xlWLsMunLzoJhtPChDLG10s+EU5egvQ==
+ dependencies:
+ workbox-core "^6.1.2"
+ workbox-routing "^6.1.2"
+
+workbox-sw@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/workbox-sw/-/workbox-sw-6.1.2.tgz#0db44f0625ffb53c0e6e9a056a61dda57f066f45"
+ integrity sha512-daxYjELQlNmGLeQolz29vkiVKMcAzZrSv5MLPAghvid6sajpq9x+FfMGriWaZcpyGZVKStAf6XzUbvvm0sJ/HA==
+
+workbox-webpack-plugin@^6.1.1:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/workbox-webpack-plugin/-/workbox-webpack-plugin-6.1.2.tgz#ac9470f3c1b87f9de15732b7311fd1a3861d5696"
+ integrity sha512-kuofLjytjuL9KrF1aq4AZoF7zTOeehr/XXbUCh1/viWegYhepkDj/ZB3wHuEnwvI7EDFqFM+L/JSoF4RZ82VGQ==
+ dependencies:
+ fast-json-stable-stringify "^2.1.0"
+ pretty-bytes "^5.4.1"
+ source-map-url "^0.4.0"
+ upath "^1.2.0"
+ webpack-sources "^1.4.3"
+ workbox-build "^6.1.2"
+
+workbox-window@^6.1.1, workbox-window@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/workbox-window/-/workbox-window-6.1.2.tgz#6db9a3b1eebf6470513d916852bfd1b1c918fe05"
+ integrity sha512-SXOAv56PWHzLhJcyQGPio1OXGzSza814lc2D42+go8CmeNIJDb03nzUi1FGMF4Tt1F7h5q8IYzq5bPQLTZ7IKQ==
+ dependencies:
+ workbox-core "^6.1.2"
+
+worker-farm@^1.7.0:
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8"
+ integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==
+ dependencies:
+ errno "~0.1.7"
+
+worker-rpc@^0.1.0:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/worker-rpc/-/worker-rpc-0.1.1.tgz#cb565bd6d7071a8f16660686051e969ad32f54d5"
+ integrity sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==
+ dependencies:
+ microevent.ts "~0.1.1"
+
+wrap-ansi@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
+ integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
+ dependencies:
+ ansi-styles "^4.0.0"
+ string-width "^4.1.0"
+ strip-ansi "^6.0.0"
+
+wrappy@1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
+ integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
+
+write-file-atomic@^3.0.0:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8"
+ integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==
+ dependencies:
+ imurmurhash "^0.1.4"
+ is-typedarray "^1.0.0"
+ signal-exit "^3.0.2"
+ typedarray-to-buffer "^3.1.5"
+
+xdg-basedir@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13"
+ integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==
+
+xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
+ integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
+
+y18n@^4.0.0:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4"
+ integrity sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==
+
+y18n@^5.0.5:
+ version "5.0.5"
+ resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.5.tgz#8769ec08d03b1ea2df2500acef561743bbb9ab18"
+ integrity sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==
+
+yallist@^3.0.2:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
+ integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
+
+yallist@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
+ integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
+
+yaml@^1.10.0, yaml@^1.7.2:
+ version "1.10.2"
+ resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
+ integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
+
+yargs-parser@^20.2.2:
+ version "20.2.7"
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.7.tgz#61df85c113edfb5a7a4e36eb8aa60ef423cbc90a"
+ integrity sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw==
+
+yargs@^16.1.1:
+ version "16.2.0"
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
+ integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
+ dependencies:
+ cliui "^7.0.2"
+ escalade "^3.1.1"
+ get-caller-file "^2.0.5"
+ require-directory "^2.1.1"
+ string-width "^4.2.0"
+ y18n "^5.0.5"
+ yargs-parser "^20.2.2"
+
+yocto-queue@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
+ integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
+
+zwitch@^1.0.0:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-1.0.5.tgz#d11d7381ffed16b742f6af7b3f223d5cd9fe9920"
+ integrity sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==
diff --git a/short-mock.json b/short-mock.json
new file mode 100644
index 000000000..9afedd39c
--- /dev/null
+++ b/short-mock.json
@@ -0,0 +1,17 @@
+[
+{"Row":"1","Name":"Bulbasaur","Pokedex Number":"1","Img name":"1","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"1","Cross Gen":"0","Type 1":"grass","Type 2":"poison","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"326","ATK":"118","DEF":"118","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"981","100% CP @ 39":"967"},
+{"Row":"2","Name":"Ivysaur","Pokedex Number":"2","Img name":"2","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"1","Cross Gen":"0","Type 1":"grass","Type 2":"poison","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"422","ATK":"151","DEF":"151","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1552","100% CP @ 39":"1529"},
+{"Row":"3","Name":"Venusaur","Pokedex Number":"3","Img name":"3","Generation":"1","Evolution Stage":"3","Evolved":"1","FamilyID":"1","Cross Gen":"0","Type 1":"grass","Type 2":"poison","Weather 1":"Sunny/clear","Weather 2":"Cloudy","STAT TOTAL":"556","ATK":"198","DEF":"198","STA":"160","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2568","100% CP @ 39":"2531"},
+{"Row":"4","Name":"Charmander","Pokedex Number":"4","Img name":"4","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"2","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"290","ATK":"116","DEF":"96","STA":"78","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"831","100% CP @ 39":"819"},
+{"Row":"5","Name":"Charmeleon","Pokedex Number":"5","Img name":"5","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"2","Cross Gen":"0","Type 1":"fire","Type 2":"","Weather 1":"Sunny/clear","Weather 2":"","STAT TOTAL":"403","ATK":"158","DEF":"129","STA":"116","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1484","100% CP @ 39":"1462"},
+{"Row":"6","Name":"Charizard","Pokedex Number":"6","Img name":"6","Generation":"1","Evolution Stage":"3","Evolved":"1","FamilyID":"2","Cross Gen":"0","Type 1":"fire","Type 2":"flying","Weather 1":"Sunny/clear","Weather 2":"Windy","STAT TOTAL":"555","ATK":"223","DEF":"176","STA":"156","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2686","100% CP @ 39":"2648"},
+{"Row":"7","Name":"Squirtle","Pokedex Number":"7","Img name":"7","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"3","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"304","ATK":"94","DEF":"122","STA":"88","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"5","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"808","100% CP @ 39":"797"},
+{"Row":"8","Name":"Wartortle","Pokedex Number":"8","Img name":"8","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"3","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"399","ATK":"126","DEF":"155","STA":"118","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1324","100% CP @ 39":"1305"},
+{"Row":"9","Name":"Blastoise","Pokedex Number":"9","Img name":"9","Generation":"1","Evolution Stage":"3","Evolved":"1","FamilyID":"3","Cross Gen":"0","Type 1":"water","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"539","ATK":"171","DEF":"210","STA":"158","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"2291","100% CP @ 39":"2259"},
+{"Row":"10","Name":"Caterpie","Pokedex Number":"10","Img name":"10","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"4","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"207","ATK":"55","DEF":"62","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"393","100% CP @ 39":"387"},
+{"Row":"11","Name":"Metapod","Pokedex Number":"11","Img name":"11","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"4","Cross Gen":"0","Type 1":"bug","Type 2":"","Weather 1":"Rainy","Weather 2":"","STAT TOTAL":"239","ATK":"45","DEF":"94","STA":"100","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"419","100% CP @ 39":"413"},
+{"Row":"12","Name":"Butterfree","Pokedex Number":"12","Img name":"12","Generation":"1","Evolution Stage":"3","Evolved":"0","FamilyID":"4","Cross Gen":"0","Type 1":"bug","Type 2":"flying","Weather 1":"Rainy","Weather 2":"Windy","STAT TOTAL":"438","ATK":"167","DEF":"151","STA":"120","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1701","100% CP @ 39":"1677"},
+{"Row":"13","Name":"Weedle","Pokedex Number":"13","Img name":"13","Generation":"1","Evolution Stage":"1","Evolved":"0","FamilyID":"5","Cross Gen":"0","Type 1":"bug","Type 2":"poison","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"198","ATK":"63","DEF":"55","STA":"80","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"1","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"397","100% CP @ 39":"391"},
+{"Row":"14","Name":"Kakuna","Pokedex Number":"14","Img name":"14","Generation":"1","Evolution Stage":"2","Evolved":"0","FamilyID":"5","Cross Gen":"0","Type 1":"bug","Type 2":"poison","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"222","ATK":"46","DEF":"86","STA":"90","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"392","100% CP @ 39":"386"},
+{"Row":"15","Name":"Beedrill","Pokedex Number":"15","Img name":"15","Generation":"1","Evolution Stage":"3","Evolved":"0","FamilyID":"5","Cross Gen":"0","Type 1":"bug","Type 2":"poison","Weather 1":"Rainy","Weather 2":"Cloudy","STAT TOTAL":"449","ATK":"169","DEF":"150","STA":"130","Legendary":"0","Aquireable":"1","Spawns":"1","Regional":"0","Raidable":"0","Hatchable":"0","Shiny":"0","Nest":"0","New":"0","Not-Gettable":"0","Future Evolve":"0","100% CP @ 40":"1777","100% CP @ 39":"1752"}
+]
\ No newline at end of file
diff --git a/yarn.lock b/yarn.lock
new file mode 100644
index 000000000..fb57ccd13
--- /dev/null
+++ b/yarn.lock
@@ -0,0 +1,4 @@
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+