From f3f42404e850a0ea244e698f5489dac4c1e74275 Mon Sep 17 00:00:00 2001 From: Mariaisa Date: Wed, 8 Mar 2023 11:00:54 -0500 Subject: [PATCH 01/41] actualizacion --- src/data.js | 27 ++++++++++++++++++++++++++- src/main.js | 32 ++++++++++++++++++++++++++++---- 2 files changed, 54 insertions(+), 5 deletions(-) diff --git a/src/data.js b/src/data.js index 6291453d..36c612a3 100644 --- a/src/data.js +++ b/src/data.js @@ -1,9 +1,34 @@ // estas funciones son de ejemplo -export const example = () => { +/*export const example = () => { return 'example'; }; export const anotherExample = () => { return 'OMG'; }; + +*/ + +// estas funciones son de ejemplo + +//export const example = () => { + // return 'example'; +//}; + +//export const anotherExample = () => { + //return 'OMG'; +//}; + +const miFuncionsita = () => console.log('ahroa si sirvo 2') + +miFuncionsita() + +export { + miFuncionsita +} + +export default { + a: 1, + b: 2 +} \ No newline at end of file diff --git a/src/main.js b/src/main.js index 71c59f2d..3caf6524 100644 --- a/src/main.js +++ b/src/main.js @@ -1,6 +1,30 @@ -import { example } from './data.js'; -// import data from './data/lol/lol.js'; -import data from './data/pokemon/pokemon.js'; -// import data from './data/rickandmorty/rickandmorty.js'; +import { miFuncionsita } from "./data.js"; +import otroObjeto from "./data.js"; +import personajes from "./data/lol/lol.js"; + +miFuncionsita() + +console.log('otroObjeto.a: ', otroObjeto.a) +console.log('otroObjeto["b"]: ', otroObjeto['b']) + +console.log('personakes: ', personajes) + + +const AatroxPartye = personajes.data.Aatrox.partype +console.log('AatroxPartye: ', AatroxPartye) + +const unH1 = document.createElement('h1') +unH1.textContent = AatroxPartye +document.body.append(unH1) + + +for (let characterName in personajes.data) { + const partType = personajes.data[characterName].partype + + const unH1 = document.createElement('h1') + unH1.textContent = partType + document.body.append(partType, document.createElement('br')) +} + console.log(example, data); From 0b317f7f270241027b34f6119956a888e28d4e3b Mon Sep 17 00:00:00 2001 From: Mariaisa Date: Thu, 9 Mar 2023 20:13:12 -0500 Subject: [PATCH 02/41] inicio --- src/data.js | 41 ++++++++++------------------------------- src/main.js | 37 +++++++++---------------------------- 2 files changed, 19 insertions(+), 59 deletions(-) diff --git a/src/data.js b/src/data.js index 36c612a3..1ca76745 100644 --- a/src/data.js +++ b/src/data.js @@ -1,34 +1,13 @@ -// estas funciones son de ejemplo -/*export const example = () => { - return 'example'; +export const sortData = (data, sortBy, sortOrder) => { + const newArray = data; + if (sortBy === 'name' && sortOrder === 'ascending') { + newArray.sort((a, b) => ((a.name > b.name) ? 1 : -1)); + } + if (sortBy === 'name' && sortOrder === 'descending') { + newArray.sort((a, b) => ((a.name < b.name) ? 1 : -1)); + } + return newArray; }; -export const anotherExample = () => { - return 'OMG'; -}; - -*/ - -// estas funciones son de ejemplo - -//export const example = () => { - // return 'example'; -//}; - -//export const anotherExample = () => { - //return 'OMG'; -//}; - -const miFuncionsita = () => console.log('ahroa si sirvo 2') - -miFuncionsita() - -export { - miFuncionsita -} - -export default { - a: 1, - b: 2 -} \ No newline at end of file + \ No newline at end of file diff --git a/src/main.js b/src/main.js index 3caf6524..c165f8d0 100644 --- a/src/main.js +++ b/src/main.js @@ -1,30 +1,11 @@ -import { miFuncionsita } from "./data.js"; -import otroObjeto from "./data.js"; -import personajes from "./data/lol/lol.js"; +/*La primera línea importa un objeto +llamado data desde un archivo llamado lol.js en un directorio llamado data/lol.*/ +import data from './data/lol/lol.js'; +/*La segunda línea importa varias funciones +llamadas sortData, filterData, averageData, y averageName desde un archivo llamado data.js.*/ +import{ + sortData, filterData, averageData, averageName, +} from './data.js'; -miFuncionsita() +import copyLol from './data/lol/lol.js'; -console.log('otroObjeto.a: ', otroObjeto.a) -console.log('otroObjeto["b"]: ', otroObjeto['b']) - -console.log('personakes: ', personajes) - - -const AatroxPartye = personajes.data.Aatrox.partype -console.log('AatroxPartye: ', AatroxPartye) - -const unH1 = document.createElement('h1') -unH1.textContent = AatroxPartye -document.body.append(unH1) - - -for (let characterName in personajes.data) { - const partType = personajes.data[characterName].partype - - const unH1 = document.createElement('h1') - unH1.textContent = partType - document.body.append(partType, document.createElement('br')) -} - - -console.log(example, data); From 4c27e6f6aa354a25183b55ede0113212aee42ec2 Mon Sep 17 00:00:00 2001 From: Mariaisa Date: Thu, 9 Mar 2023 20:37:51 -0500 Subject: [PATCH 03/41] prueba --- src/main.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main.js b/src/main.js index c165f8d0..eb2f4f15 100644 --- a/src/main.js +++ b/src/main.js @@ -7,5 +7,13 @@ import{ sortData, filterData, averageData, averageName, } from './data.js'; + import copyLol from './data/lol/lol.js'; +const allChampion = data.data; +const arrObject = Object.values(allChampion); +// console.log(allChampion); +// console.log(arrObject); + +// MOSTRAR DATA +const container = document.getElementById('container'); \ No newline at end of file From 9167441643f53dd297d9dc4baa25d0da42bbeea8 Mon Sep 17 00:00:00 2001 From: Daniela Mateo Date: Thu, 9 Mar 2023 19:50:43 -0600 Subject: [PATCH 04/41] actualizacion 1 --- src/main.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main.js b/src/main.js index c165f8d0..87c15ef1 100644 --- a/src/main.js +++ b/src/main.js @@ -9,3 +9,10 @@ import{ import copyLol from './data/lol/lol.js'; +const allChampion = data.data; +const arrObject = Object.values(allChampion); +// console.log(allChampion); +// console.log(arrObject); + +// MOSTRAR DATA +const container = document.getElementById('container'); \ No newline at end of file From a3977a55c03ac3f6e262f18cc9f3eebaeea06759 Mon Sep 17 00:00:00 2001 From: DaniMat30 <122123971+DaniMat30@users.noreply.github.com> Date: Thu, 9 Mar 2023 19:53:13 -0600 Subject: [PATCH 05/41] Create maria actualizacion 1 --- maria actualizacion 1 | 1 + 1 file changed, 1 insertion(+) create mode 100644 maria actualizacion 1 diff --git a/maria actualizacion 1 b/maria actualizacion 1 new file mode 100644 index 00000000..5c1b1494 --- /dev/null +++ b/maria actualizacion 1 @@ -0,0 +1 @@ +hola From d4cadacbc622cad81e4c99cfd2324b5afb22aa5c Mon Sep 17 00:00:00 2001 From: Mariaisa Date: Thu, 9 Mar 2023 20:58:04 -0500 Subject: [PATCH 06/41] porfa --- src/main.js | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index eb2f4f15..afdea3ef 100644 --- a/src/main.js +++ b/src/main.js @@ -10,10 +10,27 @@ import{ import copyLol from './data/lol/lol.js'; + const allChampion = data.data; const arrObject = Object.values(allChampion); // console.log(allChampion); // console.log(arrObject); // MOSTRAR DATA -const container = document.getElementById('container'); \ No newline at end of file +const container = document.getElementById('container'); + +const createTemplate = (arr) => { + arr.forEach((champion) => { + const newElement = document.createElement('div'); + const img = document.createElement('img'); + const p = document.createElement('p'); + newElement.classList.add('class-div'); + img.classList.add('class-img'); + p.classList.add('class-name'); + img.src = `${champion.splash}`; + p.innerHTML = `${champion.name}`; + newElement.appendChild(img); + newElement.appendChild(p); + container.appendChild(newElement); + }); +}; \ No newline at end of file From 705d8bdecd78559f67f99ba395a21dd88e33c6a5 Mon Sep 17 00:00:00 2001 From: Mariaisa Date: Thu, 9 Mar 2023 21:09:38 -0500 Subject: [PATCH 07/41] intentando --- src/main.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.js b/src/main.js index afdea3ef..703df28e 100644 --- a/src/main.js +++ b/src/main.js @@ -10,7 +10,6 @@ import{ import copyLol from './data/lol/lol.js'; - const allChampion = data.data; const arrObject = Object.values(allChampion); // console.log(allChampion); From f127507e0a109dbe61f2c93087a858c80db00fd4 Mon Sep 17 00:00:00 2001 From: Mariaisa Date: Thu, 9 Mar 2023 21:18:41 -0500 Subject: [PATCH 08/41] intentando2 --- src/main.js | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index 703df28e..9ba36847 100644 --- a/src/main.js +++ b/src/main.js @@ -32,4 +32,33 @@ const createTemplate = (arr) => { newElement.appendChild(p); container.appendChild(newElement); }); -}; \ No newline at end of file +}; + +reateTemplate(arrObject); + +const dataLol = (copyLol.data); +const myModal = document.getElementById('myModal'); + +container.addEventListener('click', (event) => { + const nombreSeleccionado = event.target.dataset.id; + const objCampeonSeleccionado = (dataLol[nombreSeleccionado]); + myModal.classList.remove('hide'); + myModal.querySelector('#modalInfo').innerHTML = ` +

${objCampeonSeleccionado.name}

+

${objCampeonSeleccionado.title}

+ +

Rol: ${objCampeonSeleccionado.tags}

+
+

Defensa:${objCampeonSeleccionado.info.defense}

+

Ataque:${objCampeonSeleccionado.info.attack}

+

Magia:${objCampeonSeleccionado.info.magic}

+

Dificultad:${objCampeonSeleccionado.info.difficulty}

+
+
+

Vida: ${objCampeonSeleccionado.stats.hp}

+

Mana: ${objCampeonSeleccionado.stats.mp}

+

Velocidad: ${objCampeonSeleccionado.stats.movespeed}

+

Ataque: ${objCampeonSeleccionado.stats.attackrange}

+
+ `; +}); \ No newline at end of file From 490b7098549f3fd0acae6f02f968ffd82913983b Mon Sep 17 00:00:00 2001 From: Daniela Mateo Date: Mon, 13 Mar 2023 08:35:35 -0600 Subject: [PATCH 09/41] tutoria 1 genesis --- package-lock.json | 13155 ++++++++++++++++++++++++++++++++++++++++++++ src/data.js | 12 +- src/index.html | 6 +- src/main.js | 74 +- src/style.css | 8 + 5 files changed, 13189 insertions(+), 66 deletions(-) create mode 100644 package-lock.json diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000..8f9ef0fc --- /dev/null +++ b/package-lock.json @@ -0,0 +1,13155 @@ +{ + "name": "data-lovers", + "version": "1.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "data-lovers", + "version": "1.0.0", + "license": "MIT", + "devDependencies": { + "@babel/core": "^7.6.2", + "@babel/plugin-transform-modules-commonjs": "^7.6.0", + "babel-jest": "^27.0.1", + "eslint": "^8.3.0", + "gh-pages": "^3.1.0", + "htmlhint": "^1.0.0", + "jest": "^27.0.1", + "opener": "^1.5.1", + "serve": "^13.0.2" + }, + "engines": { + "node": ">=16.x" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.0.tgz", + "integrity": "sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.0.tgz", + "integrity": "sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.21.0", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-module-transforms": "^7.21.0", + "@babel/helpers": "^7.21.0", + "@babel/parser": "^7.21.0", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.0", + "@babel/types": "^7.21.0", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.21.1", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.1.tgz", + "integrity": "sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.21.0", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz", + "integrity": "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz", + "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==", + "dev": true, + "dependencies": { + "@babel/template": "^7.20.7", + "@babel/types": "^7.21.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.21.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz", + "integrity": "sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.2", + "@babel/types": "^7.21.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz", + "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.0.tgz", + "integrity": "sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==", + "dev": true, + "dependencies": { + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.0", + "@babel/types": "^7.21.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.21.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.2.tgz", + "integrity": "sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz", + "integrity": "sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.21.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.2.tgz", + "integrity": "sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.21.2", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-simple-access": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.21.2", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.2.tgz", + "integrity": "sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.21.1", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.21.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.21.2", + "@babel/types": "^7.21.2", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.21.2", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.2.tgz", + "integrity": "sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.2.0.tgz", + "integrity": "sha512-gB8T4H4DEfX2IV9zGDJPOBgP1e/DbfCPDTtEqUMckpvzS1OYtva8JdFYBqMwYk7xAQ429WGF/UPqn8uQ//h2vQ==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.4.0.tgz", + "integrity": "sha512-A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.1.tgz", + "integrity": "sha512-eFRmABvW2E5Ho6f5fHLqgena46rOj7r7OKHYfLElqcBfGFHHpjBhivyi5+jOEQuSpdc/1phIZJlbC2te+tZNIw==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.5.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "8.36.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.36.0.tgz", + "integrity": "sha512-lxJ9R5ygVm8ZWgYdUweoq5ownDlJ4upvoWmO4eLxBYHdMo+vZ/Rx0EN6MbKWDJOSUGrqJy2Gt+Dyv/VKml0fjg==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", + "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "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" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/console/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/console/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/console/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/core/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/core/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/reporters/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "dev": true, + "dependencies": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/transform/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/transform/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/transform/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/types/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/types/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/types/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", + "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz", + "integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.3.0" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/node": { + "version": "18.15.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.1.tgz", + "integrity": "sha512-U2TWca8AeHSmbpi314QBESRk7oPjSZjDsR+c+H4ECC1l+kFgpZf8Ydhv3SJpPy51VyZHHqxlb6mTTqYNNRVAIw==", + "dev": true + }, + "node_modules/@types/prettier": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", + "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==", + "dev": true + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "node_modules/@zeit/schemas": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@zeit/schemas/-/schemas-2.6.0.tgz", + "integrity": "sha512-uUrgZ8AxS+Lio0fZKAipJjAh415JyrOZowliZAzmnJSsf7piVL5w+G0+gFJ0KSu3QRhvui/7zuvpLz03YjXAhg==", + "dev": true + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dev": true, + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "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" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dev": true, + "dependencies": { + "string-width": "^4.1.0" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/arg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/arg/-/arg-2.0.0.tgz", + "integrity": "sha512-XxNTUzKnz1ctK3ZIcI2XUPlD96wbHP2nGqkPKpvk/HNRlPveYrXIVSTk9m3LcqOgDPg3B1nMvdV/K8wZd7PG4w==", + "dev": true + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "dev": true, + "dependencies": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/babel-jest/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/babel-jest/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-jest/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@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.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "dev": true, + "dependencies": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/boxen/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/boxen/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/boxen/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/boxen/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "dev": true + }, + "node_modules/browserslist": { + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001465", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001465.tgz", + "integrity": "sha512-HvjgL3MYAJjceTDCcjRnQGjwUz/5qec9n7JPOzUursUoOTIsYCSDOb1l7RsnZE8mjbxG78zVRCKfrBXyvChBag==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + } + ] + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", + "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", + "dev": true + }, + "node_modules/cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clipboardy": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-2.3.0.tgz", + "integrity": "sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==", + "dev": true, + "dependencies": { + "arch": "^2.1.1", + "execa": "^1.0.0", + "is-wsl": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/clipboardy/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/clipboardy/node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "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" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clipboardy/node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clipboardy/node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clipboardy/node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/clipboardy/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/clipboardy/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/clipboardy/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clipboardy/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clipboardy/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.3.tgz", + "integrity": "sha512-HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg==", + "dev": true, + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.14", + "debug": "2.6.9", + "on-headers": "~1.0.1", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/content-disposition": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", + "integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dev": true, + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "dev": true + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", + "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "dev": true, + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.328", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.328.tgz", + "integrity": "sha512-DE9tTy2PNmy1v55AZAO542ui+MLC2cvINMK4P2LXGsJdput/ThVG9t+QGecPuAZZSgC8XoI+Jh9M1OG9IoNSCw==", + "dev": true + }, + "node_modules/email-addresses": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/email-addresses/-/email-addresses-3.1.0.tgz", + "integrity": "sha512-k0/r7GrWVL32kZlGwfPNgB2Y/mMXVTq/decgLczm/j34whdaspNrZO8CnXPf1laaHxI6ptUlsnAxN+UAPw+fzg==", + "dev": true + }, + "node_modules/emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/escodegen": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "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" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/eslint": { + "version": "8.36.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.36.0.tgz", + "integrity": "sha512-Y956lmS7vDqomxlaaQAHVmeb4tNMp2FWIvU/RnU5BD3IKMD/MJPr76xdyr68P8tV1iNMvN2mRK0yy3c+UjL+bw==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.0.1", + "@eslint/js": "8.36.0", + "@humanwhocodes/config-array": "^0.11.8", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.1", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.5.0", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-sdsl": "^4.1.4", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-scope": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/eslint/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/espree": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.0.tgz", + "integrity": "sha512-JPbJGhKc47++oo4JkEoTe2wjy4fmMwvFpgJT9cQzmfXKp22Dr6Hf1tdCteLz1h0P3t+mGvWZ+4Uankvh8+c6zw==", + "dev": true, + "dependencies": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fast-url-parser": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz", + "integrity": "sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==", + "dev": true, + "dependencies": { + "punycode": "^1.3.2" + } + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/filenamify": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-4.3.0.tgz", + "integrity": "sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==", + "dev": true, + "dependencies": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.1", + "trim-repeated": "^1.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true + }, + "node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gh-pages": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/gh-pages/-/gh-pages-3.2.3.tgz", + "integrity": "sha512-jA1PbapQ1jqzacECfjUaO9gV8uBgU6XNMV0oXLtfCX3haGLe5Atq8BxlrADhbD6/UdG9j6tZLWAkAybndOXTJg==", + "dev": true, + "dependencies": { + "async": "^2.6.1", + "commander": "^2.18.0", + "email-addresses": "^3.0.1", + "filenamify": "^4.3.0", + "find-cache-dir": "^3.3.1", + "fs-extra": "^8.1.0", + "globby": "^6.1.0" + }, + "bin": { + "gh-pages": "bin/gh-pages.js", + "gh-pages-clean": "bin/gh-pages-clean.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "dev": true, + "dependencies": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true + }, + "node_modules/grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dev": true, + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/htmlhint": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/htmlhint/-/htmlhint-1.1.4.tgz", + "integrity": "sha512-tSKPefhIaaWDk/vKxAOQbN+QwZmDeJCq3bZZGbJMoMQAfTjepudC+MkuT9MOBbuQI3dLLzDWbmU7fLV3JASC7Q==", + "dev": true, + "dependencies": { + "async": "3.2.3", + "chalk": "^4.1.2", + "commander": "^9.1.0", + "glob": "^7.2.0", + "is-glob": "^4.0.3", + "node-fetch": "^2.6.2", + "strip-json-comments": "3.1.0", + "xml": "1.0.1" + }, + "bin": { + "htmlhint": "bin/htmlhint" + } + }, + "node_modules/htmlhint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/htmlhint/node_modules/async": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz", + "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==", + "dev": true + }, + "node_modules/htmlhint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/htmlhint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/htmlhint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/htmlhint/node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/htmlhint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/htmlhint/node_modules/strip-json-comments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.0.tgz", + "integrity": "sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/htmlhint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dev": true, + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-core-module": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "dev": true, + "dependencies": { + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-circus/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-circus/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "dev": true, + "dependencies": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-cli/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-config/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-config/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-config/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-diff/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-diff/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-each/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-each/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-jasmine2/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-jasmine2/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-jasmine2/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-jasmine2/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "dev": true, + "dependencies": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-matcher-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-matcher-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-message-util/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-message-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-resolve/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-resolve/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runner/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-runner/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runtime/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-runtime/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-snapshot/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-util/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-validate/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "dev": true, + "dependencies": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-watcher/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-watcher/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-watcher/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-sdsl": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", + "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/js-sdsl" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dev": true, + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node_modules/node-fetch": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", + "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", + "dev": true, + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nwsapi": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.2.tgz", + "integrity": "sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==", + "dev": true + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/opener": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "dev": true, + "bin": { + "opener": "bin/opener-bin.js" + } + }, + "node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "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" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "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" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", + "dev": true + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-to-regexp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.2.1.tgz", + "integrity": "sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "dev": true + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/range-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", + "integrity": "sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true + }, + "node_modules/registry-auth-token": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.2.tgz", + "integrity": "sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==", + "dev": true, + "dependencies": { + "rc": "^1.1.6", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/registry-url": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", + "integrity": "sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==", + "dev": true, + "dependencies": { + "rc": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve.exports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dev": true, + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/serve": { + "version": "13.0.4", + "resolved": "https://registry.npmjs.org/serve/-/serve-13.0.4.tgz", + "integrity": "sha512-Lj8rhXmphJCRQVv5qwu0NQZ2h+0MrRyRJxDZu5y3qLH2i/XY6a0FPj/VmjMUdkJb672MBfE8hJ274PU6JzBd0Q==", + "dev": true, + "dependencies": { + "@zeit/schemas": "2.6.0", + "ajv": "6.12.6", + "arg": "2.0.0", + "boxen": "5.1.2", + "chalk": "2.4.1", + "clipboardy": "2.3.0", + "compression": "1.7.3", + "serve-handler": "6.1.3", + "update-check": "1.5.2" + }, + "bin": { + "serve": "bin/serve.js" + } + }, + "node_modules/serve-handler": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.3.tgz", + "integrity": "sha512-FosMqFBNrLyeiIDvP1zgO6YoTzFYHxLDEIavhlmQ+knB2Z7l1t+kGLHkZIDN7UVWqQAmKI3D20A6F6jo3nDd4w==", + "dev": true, + "dependencies": { + "bytes": "3.0.0", + "content-disposition": "0.5.2", + "fast-url-parser": "1.1.3", + "mime-types": "2.1.18", + "minimatch": "3.0.4", + "path-is-inside": "1.0.2", + "path-to-regexp": "2.2.1", + "range-parser": "1.2.0" + } + }, + "node_modules/serve-handler/node_modules/mime-db": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", + "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-handler/node_modules/mime-types": { + "version": "2.1.18", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", + "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", + "dev": true, + "dependencies": { + "mime-db": "~1.33.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-handler/node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/serve/node_modules/chalk": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", + "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/throat": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", + "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==", + "dev": true + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tough-cookie": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", + "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", + "dev": true, + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dev": true, + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tr46/node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist-lint": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/update-check": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/update-check/-/update-check-1.5.2.tgz", + "integrity": "sha512-1TrmYLuLj/5ZovwUS7fFd1jMH3NnFDN1y1A8dboedIDt7zs/zJMo6TwwlhYKkSeEwzleeiSBV5/3c9ufAQWDaQ==", + "dev": true, + "dependencies": { + "registry-auth-token": "3.3.2", + "registry-url": "3.1.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/uri-js/node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/v8-to-istanbul": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "deprecated": "Use your platform's native performance.now() and performance.timeOrigin.", + "dev": true, + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dev": true, + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "dev": true, + "engines": { + "node": ">=10.4" + } + }, + "node_modules/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true + }, + "node_modules/whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dev": true, + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "dev": true, + "dependencies": { + "string-width": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "dev": true, + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xml": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", + "integrity": "sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==", + "dev": true + }, + "node_modules/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "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" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + }, + "dependencies": { + "@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "dev": true, + "requires": { + "@babel/highlight": "^7.18.6" + } + }, + "@babel/compat-data": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.0.tgz", + "integrity": "sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g==", + "dev": true + }, + "@babel/core": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.0.tgz", + "integrity": "sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.21.0", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-module-transforms": "^7.21.0", + "@babel/helpers": "^7.21.0", + "@babel/parser": "^7.21.0", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.0", + "@babel/types": "^7.21.0", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.2", + "semver": "^6.3.0" + } + }, + "@babel/generator": { + "version": "7.21.1", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.1.tgz", + "integrity": "sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==", + "dev": true, + "requires": { + "@babel/types": "^7.21.0", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "dependencies": { + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + } + } + }, + "@babel/helper-compilation-targets": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz", + "integrity": "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.20.5", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.21.3", + "lru-cache": "^5.1.1", + "semver": "^6.3.0" + } + }, + "@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "dev": true + }, + "@babel/helper-function-name": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz", + "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==", + "dev": true, + "requires": { + "@babel/template": "^7.20.7", + "@babel/types": "^7.21.0" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-module-imports": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-module-transforms": { + "version": "7.21.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.2.tgz", + "integrity": "sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.2", + "@babel/types": "^7.21.2" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "dev": true + }, + "@babel/helper-simple-access": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "dev": true, + "requires": { + "@babel/types": "^7.20.2" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "dev": true, + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-string-parser": { + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", + "dev": true + }, + "@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz", + "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==", + "dev": true + }, + "@babel/helpers": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.0.tgz", + "integrity": "sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==", + "dev": true, + "requires": { + "@babel/template": "^7.20.7", + "@babel/traverse": "^7.21.0", + "@babel/types": "^7.21.0" + } + }, + "@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.21.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.2.tgz", + "integrity": "sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ==", + "dev": true + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.14.5" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz", + "integrity": "sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.19.0" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.21.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.2.tgz", + "integrity": "sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "^7.21.2", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-simple-access": "^7.20.2" + } + }, + "@babel/template": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", + "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7" + } + }, + "@babel/traverse": { + "version": "7.21.2", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.2.tgz", + "integrity": "sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.21.1", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.21.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.21.2", + "@babel/types": "^7.21.2", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.21.2", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.2.tgz", + "integrity": "sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==", + "dev": true, + "requires": { + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + } + }, + "@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "@eslint-community/eslint-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.2.0.tgz", + "integrity": "sha512-gB8T4H4DEfX2IV9zGDJPOBgP1e/DbfCPDTtEqUMckpvzS1OYtva8JdFYBqMwYk7xAQ429WGF/UPqn8uQ//h2vQ==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^3.3.0" + } + }, + "@eslint-community/regexpp": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.4.0.tgz", + "integrity": "sha512-A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ==", + "dev": true + }, + "@eslint/eslintrc": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.1.tgz", + "integrity": "sha512-eFRmABvW2E5Ho6f5fHLqgena46rOj7r7OKHYfLElqcBfGFHHpjBhivyi5+jOEQuSpdc/1phIZJlbC2te+tZNIw==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.5.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } + } + }, + "@eslint/js": { + "version": "8.36.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.36.0.tgz", + "integrity": "sha512-lxJ9R5ygVm8ZWgYdUweoq5ownDlJ4upvoWmO4eLxBYHdMo+vZ/Rx0EN6MbKWDJOSUGrqJy2Gt+Dyv/VKml0fjg==", + "dev": true + }, + "@humanwhocodes/config-array": { + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", + "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", + "dev": true, + "requires": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + } + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "requires": { + "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": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true + }, + "@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/core": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "dev": true, + "requires": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dev": true, + "requires": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + } + }, + "@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + } + }, + "@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "dev": true, + "requires": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + } + }, + "@jest/reporters": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "dev": true, + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "dev": true, + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + } + }, + "@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dev": true, + "requires": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "dev": true, + "requires": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + } + }, + "@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.7.0" + } + }, + "@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "dev": true + }, + "@types/babel__core": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", + "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==", + "dev": true, + "requires": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dev": true, + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dev": true, + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz", + "integrity": "sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==", + "dev": true, + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/graceful-fs": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz", + "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "requires": { + "@types/istanbul-lib-report": "*" + } + }, + "@types/node": { + "version": "18.15.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.1.tgz", + "integrity": "sha512-U2TWca8AeHSmbpi314QBESRk7oPjSZjDsR+c+H4ECC1l+kFgpZf8Ydhv3SJpPy51VyZHHqxlb6mTTqYNNRVAIw==", + "dev": true + }, + "@types/prettier": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz", + "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==", + "dev": true + }, + "@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "@types/yargs": { + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz", + "integrity": "sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true + }, + "@zeit/schemas": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@zeit/schemas/-/schemas-2.6.0.tgz", + "integrity": "sha512-uUrgZ8AxS+Lio0fZKAipJjAh415JyrOZowliZAzmnJSsf7piVL5w+G0+gFJ0KSu3QRhvui/7zuvpLz03YjXAhg==", + "dev": true + }, + "abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", + "dev": true + }, + "acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dev": true, + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + } + } + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "requires": {} + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "dev": true + }, + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "requires": { + "debug": "4" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dev": true, + "requires": { + "string-width": "^4.1.0" + } + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "dev": true + }, + "arg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/arg/-/arg-2.0.0.tgz", + "integrity": "sha512-XxNTUzKnz1ctK3ZIcI2XUPlD96wbHP2nGqkPKpvk/HNRlPveYrXIVSTk9m3LcqOgDPg3B1nMvdV/K8wZd7PG4w==", + "dev": true + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true + }, + "async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "requires": { + "lodash": "^4.17.14" + } + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "dev": true, + "requires": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "dev": true, + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@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.8.3" + } + }, + "babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "dev": true, + "requires": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "dev": true, + "requires": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "dev": true + }, + "browserslist": { + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" + } + }, + "bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "requires": { + "node-int64": "^0.4.0" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30001465", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001465.tgz", + "integrity": "sha512-HvjgL3MYAJjceTDCcjRnQGjwUz/5qec9n7JPOzUursUoOTIsYCSDOb1l7RsnZE8mjbxG78zVRCKfrBXyvChBag==", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true + }, + "ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true + }, + "cjs-module-lexer": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", + "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", + "dev": true + }, + "cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "dev": true + }, + "clipboardy": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-2.3.0.tgz", + "integrity": "sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==", + "dev": true, + "requires": { + "arch": "^2.1.1", + "execa": "^1.0.0", + "is-wsl": "^2.1.1" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "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" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "dev": true + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dev": true, + "requires": { + "path-key": "^2.0.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true + }, + "collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.3.tgz", + "integrity": "sha512-HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg==", + "dev": true, + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.14", + "debug": "2.6.9", + "on-headers": "~1.0.1", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "content-disposition": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", + "integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==", + "dev": true + }, + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true + }, + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + } + } + }, + "data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dev": true, + "requires": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + } + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "dev": true + }, + "dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true + }, + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "deepmerge": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", + "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==", + "dev": true + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true + }, + "detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true + }, + "diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "dev": true + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "dev": true, + "requires": { + "webidl-conversions": "^5.0.0" + }, + "dependencies": { + "webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "dev": true + } + } + }, + "electron-to-chromium": { + "version": "1.4.328", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.328.tgz", + "integrity": "sha512-DE9tTy2PNmy1v55AZAO542ui+MLC2cvINMK4P2LXGsJdput/ThVG9t+QGecPuAZZSgC8XoI+Jh9M1OG9IoNSCw==", + "dev": true + }, + "email-addresses": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/email-addresses/-/email-addresses-3.1.0.tgz", + "integrity": "sha512-k0/r7GrWVL32kZlGwfPNgB2Y/mMXVTq/decgLczm/j34whdaspNrZO8CnXPf1laaHxI6ptUlsnAxN+UAPw+fzg==", + "dev": true + }, + "emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "escodegen": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "dev": true, + "requires": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": { + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "requires": { + "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" + } + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "dev": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2" + } + } + } + }, + "eslint": { + "version": "8.36.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.36.0.tgz", + "integrity": "sha512-Y956lmS7vDqomxlaaQAHVmeb4tNMp2FWIvU/RnU5BD3IKMD/MJPr76xdyr68P8tV1iNMvN2mRK0yy3c+UjL+bw==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.0.1", + "@eslint/js": "8.36.0", + "@humanwhocodes/config-array": "^0.11.8", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.1", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.5.0", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-sdsl": "^4.1.4", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } + } + }, + "eslint-scope": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true + }, + "espree": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.0.tgz", + "integrity": "sha512-JPbJGhKc47++oo4JkEoTe2wjy4fmMwvFpgJT9cQzmfXKp22Dr6Hf1tdCteLz1h0P3t+mGvWZ+4Uankvh8+c6zw==", + "dev": true, + "requires": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.3.0" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true + }, + "expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "fast-url-parser": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz", + "integrity": "sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==", + "dev": true, + "requires": { + "punycode": "^1.3.2" + } + }, + "fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "requires": { + "bser": "2.1.1" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", + "dev": true + }, + "filenamify": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-4.3.0.tgz", + "integrity": "sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==", + "dev": true, + "requires": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.1", + "trim-repeated": "^1.0.0" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true + }, + "form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true + }, + "gh-pages": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/gh-pages/-/gh-pages-3.2.3.tgz", + "integrity": "sha512-jA1PbapQ1jqzacECfjUaO9gV8uBgU6XNMV0oXLtfCX3haGLe5Atq8BxlrADhbD6/UdG9j6tZLWAkAybndOXTJg==", + "dev": true, + "requires": { + "async": "^2.6.1", + "commander": "^2.18.0", + "email-addresses": "^3.0.1", + "filenamify": "^4.3.0", + "find-cache-dir": "^3.3.1", + "fs-extra": "^8.1.0", + "globby": "^6.1.0" + } + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true + }, + "grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "dev": true + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dev": true, + "requires": { + "whatwg-encoding": "^1.0.5" + } + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "htmlhint": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/htmlhint/-/htmlhint-1.1.4.tgz", + "integrity": "sha512-tSKPefhIaaWDk/vKxAOQbN+QwZmDeJCq3bZZGbJMoMQAfTjepudC+MkuT9MOBbuQI3dLLzDWbmU7fLV3JASC7Q==", + "dev": true, + "requires": { + "async": "3.2.3", + "chalk": "^4.1.2", + "commander": "^9.1.0", + "glob": "^7.2.0", + "is-glob": "^4.0.3", + "node-fetch": "^2.6.2", + "strip-json-comments": "3.1.0", + "xml": "1.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "async": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz", + "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "strip-json-comments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.0.tgz", + "integrity": "sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dev": true, + "requires": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + } + }, + "https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "requires": { + "agent-base": "6", + "debug": "4" + } + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + } + } + }, + "import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "is-core-module": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true + }, + "is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "requires": { + "is-docker": "^2.0.0" + } + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + } + }, + "istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + } + }, + "istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "dev": true, + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "dev": true, + "requires": { + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + } + }, + "jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" + } + }, + "jest-circus": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "dev": true, + "requires": { + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "dev": true, + "requires": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "dev": true, + "requires": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "dev": true, + "requires": { + "detect-newline": "^3.0.0" + } + }, + "jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "dev": true, + "requires": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + } + }, + "jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "dev": true, + "requires": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + } + }, + "jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "dev": true + }, + "jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + } + }, + "jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "dev": true, + "requires": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "dev": true, + "requires": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + } + }, + "jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*" + } + }, + "jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "requires": {} + }, + "jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true + }, + "jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + } + }, + "jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "dev": true, + "requires": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dev": true, + "requires": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + } + }, + "jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "dev": true, + "requires": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-watcher": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "dev": true, + "requires": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "js-sdsl": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", + "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==", + "dev": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dev": true, + "requires": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + } + }, + "makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "requires": { + "tmpl": "1.0.5" + } + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "requires": { + "mime-db": "1.52.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node-fetch": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", + "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", + "dev": true, + "requires": { + "whatwg-url": "^5.0.0" + }, + "dependencies": { + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, + "requires": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + } + } + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node-releases": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==", + "dev": true + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "nwsapi": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.2.tgz", + "integrity": "sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "opener": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "dev": true + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "requires": { + "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" + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "dev": true + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@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" + } + }, + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-to-regexp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.2.1.tgz", + "integrity": "sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pirates": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "dev": true + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", + "dev": true + }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "range-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", + "integrity": "sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==", + "dev": true + }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true + } + } + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true + }, + "registry-auth-token": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.2.tgz", + "integrity": "sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==", + "dev": true, + "requires": { + "rc": "^1.1.6", + "safe-buffer": "^5.0.1" + } + }, + "registry-url": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", + "integrity": "sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==", + "dev": true, + "requires": { + "rc": "^1.0.1" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "dev": true, + "requires": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "requires": { + "resolve-from": "^5.0.0" + } + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + }, + "resolve.exports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dev": true, + "requires": { + "xmlchars": "^2.2.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "serve": { + "version": "13.0.4", + "resolved": "https://registry.npmjs.org/serve/-/serve-13.0.4.tgz", + "integrity": "sha512-Lj8rhXmphJCRQVv5qwu0NQZ2h+0MrRyRJxDZu5y3qLH2i/XY6a0FPj/VmjMUdkJb672MBfE8hJ274PU6JzBd0Q==", + "dev": true, + "requires": { + "@zeit/schemas": "2.6.0", + "ajv": "6.12.6", + "arg": "2.0.0", + "boxen": "5.1.2", + "chalk": "2.4.1", + "clipboardy": "2.3.0", + "compression": "1.7.3", + "serve-handler": "6.1.3", + "update-check": "1.5.2" + }, + "dependencies": { + "chalk": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", + "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + } + } + }, + "serve-handler": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.3.tgz", + "integrity": "sha512-FosMqFBNrLyeiIDvP1zgO6YoTzFYHxLDEIavhlmQ+knB2Z7l1t+kGLHkZIDN7UVWqQAmKI3D20A6F6jo3nDd4w==", + "dev": true, + "requires": { + "bytes": "3.0.0", + "content-disposition": "0.5.2", + "fast-url-parser": "1.1.3", + "mime-types": "2.1.18", + "minimatch": "3.0.4", + "path-is-inside": "1.0.2", + "path-to-regexp": "2.2.1", + "range-parser": "1.2.0" + }, + "dependencies": { + "mime-db": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", + "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==", + "dev": true + }, + "mime-types": { + "version": "2.1.18", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", + "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", + "dev": true, + "requires": { + "mime-db": "~1.33.0" + } + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true + } + } + }, + "string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "requires": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + } + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "dev": true + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "dev": true, + "requires": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + } + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "throat": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz", + "integrity": "sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==", + "dev": true + }, + "tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "tough-cookie": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", + "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", + "dev": true, + "requires": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "dependencies": { + "punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true + }, + "universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true + } + } + }, + "tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dev": true, + "requires": { + "punycode": "^2.1.1" + }, + "dependencies": { + "punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true + } + } + }, + "trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + }, + "update-browserslist-db": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", + "dev": true, + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, + "update-check": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/update-check/-/update-check-1.5.2.tgz", + "integrity": "sha512-1TrmYLuLj/5ZovwUS7fFd1jMH3NnFDN1y1A8dboedIDt7zs/zJMo6TwwlhYKkSeEwzleeiSBV5/3c9ufAQWDaQ==", + "dev": true, + "requires": { + "registry-auth-token": "3.3.2", + "registry-url": "3.1.0" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": { + "punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true + } + } + }, + "url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "v8-to-istanbul": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true + } + } + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "dev": true, + "requires": { + "browser-process-hrtime": "^1.0.0" + } + }, + "w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dev": true, + "requires": { + "xml-name-validator": "^3.0.0" + } + }, + "walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "requires": { + "makeerror": "1.0.12" + } + }, + "webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "dev": true + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, + "requires": { + "iconv-lite": "0.4.24" + } + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true + }, + "whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dev": true, + "requires": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "dev": true, + "requires": { + "string-width": "^4.0.0" + } + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "dev": true, + "requires": {} + }, + "xml": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", + "integrity": "sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==", + "dev": true + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true + }, + "xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "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" + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true + } + } +} diff --git a/src/data.js b/src/data.js index 1ca76745..f1f0e5c9 100644 --- a/src/data.js +++ b/src/data.js @@ -1,13 +1,5 @@ -export const sortData = (data, sortBy, sortOrder) => { - const newArray = data; - if (sortBy === 'name' && sortOrder === 'ascending') { - newArray.sort((a, b) => ((a.name > b.name) ? 1 : -1)); - } - if (sortBy === 'name' && sortOrder === 'descending') { - newArray.sort((a, b) => ((a.name < b.name) ? 1 : -1)); - } - return newArray; -}; +//export const + \ No newline at end of file diff --git a/src/index.html b/src/index.html index 5aef81f0..0cbba823 100644 --- a/src/index.html +++ b/src/index.html @@ -6,7 +6,11 @@ -
+
+ + + +
diff --git a/src/main.js b/src/main.js index 9ba36847..4882625f 100644 --- a/src/main.js +++ b/src/main.js @@ -1,64 +1,28 @@ /*La primera línea importa un objeto llamado data desde un archivo llamado lol.js en un directorio llamado data/lol.*/ -import data from './data/lol/lol.js'; +import data from "./data/lol/lol.js"; /*La segunda línea importa varias funciones llamadas sortData, filterData, averageData, y averageName desde un archivo llamado data.js.*/ -import{ - sortData, filterData, averageData, averageName, -} from './data.js'; +//import { } from "./data.js"; +//from "./data/lol/lol.js"; -import copyLol from './data/lol/lol.js'; +const lol = data.data; -const allChampion = data.data; -const arrObject = Object.values(allChampion); -// console.log(allChampion); -// console.log(arrObject); +// console.log(lol) -// MOSTRAR DATA -const container = document.getElementById('container'); +function printChampion(lol) { + const root = document.getElementById("root"); + console.log(root); + for (const element in lol) { + console.log(lol[element]); + // template string + root.innerHTML += `
+

${lol[element].name}

+ +
`; + } +} -const createTemplate = (arr) => { - arr.forEach((champion) => { - const newElement = document.createElement('div'); - const img = document.createElement('img'); - const p = document.createElement('p'); - newElement.classList.add('class-div'); - img.classList.add('class-img'); - p.classList.add('class-name'); - img.src = `${champion.splash}`; - p.innerHTML = `${champion.name}`; - newElement.appendChild(img); - newElement.appendChild(p); - container.appendChild(newElement); - }); -}; - -reateTemplate(arrObject); - -const dataLol = (copyLol.data); -const myModal = document.getElementById('myModal'); - -container.addEventListener('click', (event) => { - const nombreSeleccionado = event.target.dataset.id; - const objCampeonSeleccionado = (dataLol[nombreSeleccionado]); - myModal.classList.remove('hide'); - myModal.querySelector('#modalInfo').innerHTML = ` -

${objCampeonSeleccionado.name}

-

${objCampeonSeleccionado.title}

- -

Rol: ${objCampeonSeleccionado.tags}

-
-

Defensa:${objCampeonSeleccionado.info.defense}

-

Ataque:${objCampeonSeleccionado.info.attack}

-

Magia:${objCampeonSeleccionado.info.magic}

-

Dificultad:${objCampeonSeleccionado.info.difficulty}

-
-
-

Vida: ${objCampeonSeleccionado.stats.hp}

-

Mana: ${objCampeonSeleccionado.stats.mp}

-

Velocidad: ${objCampeonSeleccionado.stats.movespeed}

-

Ataque: ${objCampeonSeleccionado.stats.attackrange}

-
- `; -}); \ No newline at end of file +// Invocar funcion +printChampion(lol); diff --git a/src/style.css b/src/style.css index e69de29b..05061843 100644 --- a/src/style.css +++ b/src/style.css @@ -0,0 +1,8 @@ +#root{ + display: flex; + flex-wrap: wrap; +} +.lolChampion{ + width: 100px; + height: 100; +} \ No newline at end of file From 5cc0b0f068e9433620431dfcd7663c4f722557d0 Mon Sep 17 00:00:00 2001 From: DaniMat30 <122123971+DaniMat30@users.noreply.github.com> Date: Mon, 13 Mar 2023 08:37:35 -0600 Subject: [PATCH 10/41] Create solicitud actualizacion 1 --- solicitud actualizacion 1 | 1 + 1 file changed, 1 insertion(+) create mode 100644 solicitud actualizacion 1 diff --git a/solicitud actualizacion 1 b/solicitud actualizacion 1 new file mode 100644 index 00000000..f944b384 --- /dev/null +++ b/solicitud actualizacion 1 @@ -0,0 +1 @@ +:) From c79e4dd8cb49b0396ac1687eb0f362a4d37746e7 Mon Sep 17 00:00:00 2001 From: DaniMat30 <122123971+DaniMat30@users.noreply.github.com> Date: Mon, 13 Mar 2023 08:41:11 -0600 Subject: [PATCH 11/41] Create solicitud 2 --- solicitud 2 | 1 + 1 file changed, 1 insertion(+) create mode 100644 solicitud 2 diff --git a/solicitud 2 b/solicitud 2 new file mode 100644 index 00000000..569cf523 --- /dev/null +++ b/solicitud 2 @@ -0,0 +1 @@ +:3 From 1f4a8d04ccad9f46a8dc2c5faa0f32c0d6fc340e Mon Sep 17 00:00:00 2001 From: Mariaisa Date: Mon, 13 Mar 2023 09:57:12 -0500 Subject: [PATCH 12/41] borre --- src/data.js | 12 ----------- src/main.js | 61 +---------------------------------------------------- 2 files changed, 1 insertion(+), 72 deletions(-) diff --git a/src/data.js b/src/data.js index 1ca76745..8b137891 100644 --- a/src/data.js +++ b/src/data.js @@ -1,13 +1 @@ -export const sortData = (data, sortBy, sortOrder) => { - const newArray = data; - if (sortBy === 'name' && sortOrder === 'ascending') { - newArray.sort((a, b) => ((a.name > b.name) ? 1 : -1)); - } - if (sortBy === 'name' && sortOrder === 'descending') { - newArray.sort((a, b) => ((a.name < b.name) ? 1 : -1)); - } - return newArray; -}; - - \ No newline at end of file diff --git a/src/main.js b/src/main.js index 9ba36847..30d0c47a 100644 --- a/src/main.js +++ b/src/main.js @@ -1,64 +1,5 @@ /*La primera línea importa un objeto llamado data desde un archivo llamado lol.js en un directorio llamado data/lol.*/ -import data from './data/lol/lol.js'; +import data from "./data/lol/lol.js"; /*La segunda línea importa varias funciones llamadas sortData, filterData, averageData, y averageName desde un archivo llamado data.js.*/ -import{ - sortData, filterData, averageData, averageName, -} from './data.js'; - - -import copyLol from './data/lol/lol.js'; - -const allChampion = data.data; -const arrObject = Object.values(allChampion); -// console.log(allChampion); -// console.log(arrObject); - -// MOSTRAR DATA -const container = document.getElementById('container'); - -const createTemplate = (arr) => { - arr.forEach((champion) => { - const newElement = document.createElement('div'); - const img = document.createElement('img'); - const p = document.createElement('p'); - newElement.classList.add('class-div'); - img.classList.add('class-img'); - p.classList.add('class-name'); - img.src = `${champion.splash}`; - p.innerHTML = `${champion.name}`; - newElement.appendChild(img); - newElement.appendChild(p); - container.appendChild(newElement); - }); -}; - -reateTemplate(arrObject); - -const dataLol = (copyLol.data); -const myModal = document.getElementById('myModal'); - -container.addEventListener('click', (event) => { - const nombreSeleccionado = event.target.dataset.id; - const objCampeonSeleccionado = (dataLol[nombreSeleccionado]); - myModal.classList.remove('hide'); - myModal.querySelector('#modalInfo').innerHTML = ` -

${objCampeonSeleccionado.name}

-

${objCampeonSeleccionado.title}

- -

Rol: ${objCampeonSeleccionado.tags}

-
-

Defensa:${objCampeonSeleccionado.info.defense}

-

Ataque:${objCampeonSeleccionado.info.attack}

-

Magia:${objCampeonSeleccionado.info.magic}

-

Dificultad:${objCampeonSeleccionado.info.difficulty}

-
-
-

Vida: ${objCampeonSeleccionado.stats.hp}

-

Mana: ${objCampeonSeleccionado.stats.mp}

-

Velocidad: ${objCampeonSeleccionado.stats.movespeed}

-

Ataque: ${objCampeonSeleccionado.stats.attackrange}

-
- `; -}); \ No newline at end of file From 20dc8adb8f92b5595299f0f07b20286a8cfb77e9 Mon Sep 17 00:00:00 2001 From: Mariaisa Date: Mon, 13 Mar 2023 14:03:23 -0500 Subject: [PATCH 13/41] avance --- src/data.js | 5 +- src/data/athletes/README.md | 28 - src/data/athletes/README.pt-BR.md | 27 - src/data/athletes/athletes.js | 24284 ---------------------- src/data/athletes/athletes.json | 24284 ---------------------- src/data/ghibli/README.md | 33 - src/data/ghibli/README.pt-BR.md | 31 - src/data/ghibli/ghibli.js | 2435 --- src/data/ghibli/ghibli.json | 2435 --- src/data/harrypotter/README.md | 74 - src/data/harrypotter/README.pt-BR.md | 75 - src/data/harrypotter/data.js | 16228 --------------- src/data/harrypotter/harry.json | 19672 ------------------ src/data/img2/fondo1.jpg | Bin 0 -> 517997 bytes src/data/pokemon/README.md | 37 - src/data/pokemon/README.pt-BR.md | 33 - src/data/pokemon/pokemon.js | 23953 --------------------- src/data/pokemon/pokemon.json | 23953 --------------------- src/data/rickandmorty/README.md | 40 - src/data/rickandmorty/README.pt-BR.md | 40 - src/data/rickandmorty/rickandmorty.js | 11165 ---------- src/data/rickandmorty/rickandmorty.json | 11165 ---------- src/img/Image1.png | Bin 0 -> 635406 bytes src/img/league.png | Bin 0 -> 118574 bytes src/index.html | 47 +- src/main.js | 1 - src/style.css | 23 +- 27 files changed, 58 insertions(+), 160010 deletions(-) delete mode 100644 src/data/athletes/README.md delete mode 100644 src/data/athletes/README.pt-BR.md delete mode 100644 src/data/athletes/athletes.js delete mode 100644 src/data/athletes/athletes.json delete mode 100644 src/data/ghibli/README.md delete mode 100644 src/data/ghibli/README.pt-BR.md delete mode 100644 src/data/ghibli/ghibli.js delete mode 100644 src/data/ghibli/ghibli.json delete mode 100644 src/data/harrypotter/README.md delete mode 100644 src/data/harrypotter/README.pt-BR.md delete mode 100644 src/data/harrypotter/data.js delete mode 100644 src/data/harrypotter/harry.json create mode 100644 src/data/img2/fondo1.jpg delete mode 100644 src/data/pokemon/README.md delete mode 100644 src/data/pokemon/README.pt-BR.md delete mode 100644 src/data/pokemon/pokemon.js delete mode 100644 src/data/pokemon/pokemon.json delete mode 100644 src/data/rickandmorty/README.md delete mode 100644 src/data/rickandmorty/README.pt-BR.md delete mode 100644 src/data/rickandmorty/rickandmorty.js delete mode 100644 src/data/rickandmorty/rickandmorty.json create mode 100644 src/img/Image1.png create mode 100644 src/img/league.png diff --git a/src/data.js b/src/data.js index 341fff2d..e8acf306 100644 --- a/src/data.js +++ b/src/data.js @@ -1,6 +1,6 @@ +export const lol = (data) -export const sortData = (data, sortBy, sortOrder) => { - const newArray = data; +const newArray = data; if (sortBy === 'name' && sortOrder === 'ascending') { newArray.sort((a, b) => ((a.name > b.name) ? 1 : -1)); } @@ -9,4 +9,3 @@ export const sortData = (data, sortBy, sortOrder) => { } return newArray; }; - diff --git a/src/data/athletes/README.md b/src/data/athletes/README.md deleted file mode 100644 index 771c7f4e..00000000 --- a/src/data/athletes/README.md +++ /dev/null @@ -1,28 +0,0 @@ -# Juegos Olímpicos de Río de Janeiro - -Juegos Olímpicos de Río de Janeiro, fueron un evento multideportivo internacional, -celebrado en la ciudad de Río de Janeiro, Brasil. La elección de Río marcó la -primera vez que se realiza en un país sudamericano. Este evento tuvo gran -acogida a nivel mundial, de todas estas personas hay un grupo que desea poder -interactuar y ver la información de los atletas, los deportes olímpicos y los -países que participaron. - -## Hallazgos - -Para entender mejor qué información que podrían necesitar nuestos usuarios, -hicimos una rápida investigación (research) y estos son algunos de los -hallazgos. - -- Información relevante sobre los atletas olímpicos, como nombre, altura, peso, -país que representa y especialidad deportiva -- En los juegos olímpicos son muchos los países participantes, para nuestros -usuarios es importante saber cuáles son -- Adicionalmente a esta información, para nuestros usuarios es importante poder -ver la cantidad de atletas que participaron por país -- En los juegos olímpicos hay deportes y estos tienen sus disciplinas, para -nuestros usuarios es importante saber cuántos y cuáles son -- En los juegos olímpicos siempre hay equipos o atletas que ganan diferentes -disciplinas, para nuestros usuarios es importante saber quiénes son y cuantas -son las medallas que ganaron -- Adicionalmente a nuestros usuarios les gustaría saber la cantidad de mujeres -atletas que participaron y ganaron medallas. diff --git a/src/data/athletes/README.pt-BR.md b/src/data/athletes/README.pt-BR.md deleted file mode 100644 index 4b27c451..00000000 --- a/src/data/athletes/README.pt-BR.md +++ /dev/null @@ -1,27 +0,0 @@ -# Jogos Olímpicos do Rio de Janeiro - -Jogos Olímpicos do Rio de Janeiro, foi um evento multiesportivo internacional, -realizado na cidade do Rio de Janeiro, Brasil. A escolha do Rio marcou a -primeira vez em que o evento foi realizado em um país sul-americano. Este evento -foi bem recebido em todo o mundo, e dentre todas essas pessoas há um grupo que -quer ser capaz de interagir e ver informações sobre os atletas, esportes -olímpicos e países que participaram do evento. - -## Achados - -Para entender melhor quais informações nossos usuários podem precisar, -fizemos uma investigação rápida (research) e essas são algumas das conclusões. - -- Informações relevantes sobre atletas olímpicos, como nome, altura, peso, -país que representa e especialidade esportiva -- Nos Jogos Olímpicos há muitos países participantes, para nossos usuários é -importante saber quais são -- Além dessas informações, é importante que nossos usuários possam ver o -número de atletas participantes por país -- Nos jogos olímpicos existem esportes e esses têm suas disciplinas, para nossos -usuários, é importante saber quantos e quais são -- Nos jogos olímpicos sempre há equipes ou atletas que vencem diferentes -disciplinas, para os nossos usuários é importante saber quem eles são e quantas -medalhas eles ganharam -- Além disso, nossos usuários gostariam de saber o número de mulheres -atletas que participaram e ganharam medalhas. diff --git a/src/data/athletes/athletes.js b/src/data/athletes/athletes.js deleted file mode 100644 index 7c5d4b7b..00000000 --- a/src/data/athletes/athletes.js +++ /dev/null @@ -1,24284 +0,0 @@ -export default { - "games": "Olympic Games", - "year": 2016, - "season": "summer", - "city": "Rio de Janeiro", - "athletes": [ - { - "name": "Giovanni Abagnale", - "gender": "M", - "height": "198", - "weight": "90", - "sport": "Rowing", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Rowing Men's Coxless Pairs", - "medal": "Bronze" - }, - { - "name": "Patimat Abakarova", - "gender": "F", - "height": "165", - "weight": "49", - "sport": "Taekwondo", - "team": "Azerbaijan", - "noc": "AZE", - "age": 21, - "event": "Taekwondo Women's Flyweight", - "medal": "Bronze" - }, - { - "name": "Luc Abalo", - "gender": "M", - "height": "182", - "weight": "86", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 31, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Saeid Morad Abdevali", - "gender": "M", - "height": "170", - "weight": "80", - "sport": "Wrestling", - "team": "Iran", - "noc": "IRI", - "age": 26, - "event": "Wrestling Men's Middleweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Denis Mikhaylovich Ablyazin", - "gender": "M", - "height": "161", - "weight": "62", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Gymnastics Men's Team All-Around", - "medal": "Silver" - }, - { - "name": "Denis Mikhaylovich Ablyazin", - "gender": "M", - "height": "161", - "weight": "62", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Gymnastics Men's Horse Vault", - "medal": "Silver" - }, - { - "name": "Denis Mikhaylovich Ablyazin", - "gender": "M", - "height": "161", - "weight": "62", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Gymnastics Men's Rings", - "medal": "Bronze" - }, - { - "name": "Matthew \"Matt\" Abood", - "gender": "M", - "height": "197", - "weight": "92", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 30, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Alejandro \"lex\" Abrines Redondo", - "gender": "M", - "height": "198", - "weight": "93", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 23, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Ahmad Abughaush", - "gender": "M", - "height": "178", - "weight": "68", - "sport": "Taekwondo", - "team": "Jordan", - "noc": "JOR", - "age": 20, - "event": "Taekwondo Men's Featherweight", - "medal": "Gold" - }, - { - "name": "Chantal Achterberg", - "gender": "F", - "height": "172", - "weight": "72", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 31, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Silver" - }, - { - "name": "Nicola Virginia Adams", - "gender": "F", - "height": "164", - "weight": "51", - "sport": "Boxing", - "team": "Great Britain", - "noc": "GBR", - "age": 33, - "event": "Boxing Women's Flyweight", - "medal": "Gold" - }, - { - "name": "Rachael Alexis Adams", - "gender": "F", - "height": "188", - "weight": "81", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Valerie Kasanita Adams-Vili (-Price)", - "gender": "F", - "height": "193", - "weight": "120", - "sport": "Athletics", - "team": "New Zealand", - "noc": "NZL", - "age": 31, - "event": "Athletics Women's Shot Put", - "medal": "Silver" - }, - { - "name": "Nathan Ghar-Jun Adrian", - "gender": "M", - "height": "198", - "weight": "100", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Swimming Men's 50 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Nathan Ghar-Jun Adrian", - "gender": "M", - "height": "198", - "weight": "100", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Swimming Men's 100 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Nathan Ghar-Jun Adrian", - "gender": "M", - "height": "198", - "weight": "100", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Nathan Ghar-Jun Adrian", - "gender": "M", - "height": "198", - "weight": "100", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Cecil Sebastian Afrika", - "gender": "M", - "height": "175", - "weight": "75", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 28, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Timothy Ernest Victor Kwizera \"Tim\" Agaba", - "gender": "M", - "height": "193", - "weight": "104", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 27, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Clarisse Agbegnenou", - "gender": "F", - "height": "164", - "weight": "66", - "sport": "Judo", - "team": "France", - "noc": "FRA", - "age": 23, - "event": "Judo Women's Half-Middleweight", - "medal": "Silver" - }, - { - "name": "Sandra Aguilar Navarro", - "gender": "F", - "height": "167", - "weight": "50", - "sport": "Rhythmic Gymnastics", - "team": "Spain", - "noc": "ESP", - "age": 23, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Silver" - }, - { - "name": "Sri Wahyuni Agustiani", - "gender": "F", - "height": "147", - "weight": "47", - "sport": "Weightlifting", - "team": "Indonesia", - "noc": "INA", - "age": 21, - "event": "Weightlifting Women's Flyweight", - "medal": "Silver" - }, - { - "name": "Christian Ahlmann", - "gender": "M", - "height": "189", - "weight": "80", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 41, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Bronze" - }, - { - "name": "Tontowi Ahmad", - "gender": "M", - "height": "179", - "weight": "72", - "sport": "Badminton", - "team": "Indonesia-1", - "noc": "INA", - "age": 29, - "event": "Badminton Mixed Doubles", - "medal": "Gold" - }, - { - "name": "Matteo Aicardi", - "gender": "M", - "height": "192", - "weight": "102", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 30, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Rosaria Aiello", - "gender": "F", - "height": "172", - "weight": "74", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 27, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Oluwafemi \"Junior\" Ajayi", - "gender": "M", - "height": "172", - "weight": "79", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 20, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Mobolade Abimbola Ajomale", - "gender": "M", - "height": "180", - "weight": "62", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 20, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "Taha Akgl", - "gender": "M", - "height": "192", - "weight": "125", - "sport": "Wrestling", - "team": "Turkey", - "noc": "TUR", - "age": 25, - "event": "Wrestling Men's Super-Heavyweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Murodzhon Kakharovich Akhmadaliyev", - "gender": "M", - "height": "165", - "weight": "56", - "sport": "Boxing", - "team": "Uzbekistan", - "noc": "UZB", - "age": 21, - "event": "Boxing Men's Bantamweight", - "medal": "Bronze" - }, - { - "name": "Artur Kamilevich Akhmatkhuzin", - "gender": "M", - "height": "187", - "weight": "79", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Fencing Men's Foil, Team", - "medal": "Gold" - }, - { - "name": "Morolake Akinosun", - "gender": "F", - "height": "163", - "weight": "61", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Foluke Antinuke Akinradewo", - "gender": "F", - "height": "191", - "weight": "79", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Daniel Akpeyi", - "gender": "M", - "height": "187", - "weight": "80", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 30, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Monica Aksamit", - "gender": "F", - "height": "183", - "weight": "74", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Fencing Women's Sabre, Team", - "medal": "Bronze" - }, - { - "name": "Fehaid Al-Deehani", - "gender": "M", - "height": "178", - "weight": "95", - "sport": "Shooting", - "team": "Individual Olympic Athletes", - "noc": "IOA", - "age": 49, - "event": "Shooting Men's Double Trap", - "medal": "Gold" - }, - { - "name": "Abdullah Al-Rashidi", - "gender": "M", - "height": "183", - "weight": "83", - "sport": "Shooting", - "team": "Individual Olympic Athletes", - "noc": "IOA", - "age": 52, - "event": "Shooting Men's Skeet", - "medal": "Bronze" - }, - { - "name": "Jo Qesem Ayela Aleh", - "gender": "F", - "height": "171", - "weight": "58", - "sport": "Sailing", - "team": "New Zealand", - "noc": "NZL", - "age": 30, - "event": "Sailing Women's Two Person Dinghy", - "medal": "Silver" - }, - { - "name": "Artur Aleksanyan", - "gender": "M", - "height": "190", - "weight": "98", - "sport": "Wrestling", - "team": "Armenia", - "noc": "ARM", - "age": 24, - "event": "Wrestling Men's Heavyweight, Greco-Roman", - "medal": "Gold" - }, - { - "name": "Milan Aleksi", - "gender": "M", - "height": "193", - "weight": "96", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 30, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Abdoul Razak Issoufou Alfaga", - "gender": "M", - "height": "207", - "weight": "90", - "sport": "Taekwondo", - "team": "Niger", - "noc": "NIG", - "age": 21, - "event": "Taekwondo Men's Heavyweight", - "medal": "Silver" - }, - { - "name": "Nia Sifaatihii Ali", - "gender": "F", - "height": "170", - "weight": "65", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Athletics Women's 100 metres Hurdles", - "medal": "Silver" - }, - { - "name": "Alison Conte Cerutti", - "gender": "M", - "height": "203", - "weight": "106", - "sport": "Beach Volleyball", - "team": "Brazil-1", - "noc": "BRA", - "age": 30, - "event": "Beach Volleyball Men's Beach Volleyball", - "medal": "Gold" - }, - { - "name": "Kimia Alizadeh Zenoorin", - "gender": "F", - "height": "185", - "weight": "57", - "sport": "Taekwondo", - "team": "Iran", - "noc": "IRI", - "age": 18, - "event": "Taekwondo Women's Featherweight", - "medal": "Bronze" - }, - { - "name": "Nathon Allen", - "gender": "M", - "height": "178", - "weight": "NA", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 20, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Ida Alstad", - "gender": "F", - "height": "172", - "weight": "60", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 31, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Lzaro Jorge lvarez Estrada", - "gender": "M", - "height": "173", - "weight": "60", - "sport": "Boxing", - "team": "Cuba", - "noc": "CUB", - "age": 25, - "event": "Boxing Men's Lightweight", - "medal": "Bronze" - }, - { - "name": "Yuri Alvear Orjuela", - "gender": "F", - "height": "176", - "weight": "70", - "sport": "Judo", - "team": "Colombia", - "noc": "COL", - "age": 30, - "event": "Judo Women's Middleweight", - "medal": "Silver" - }, - { - "name": "Marwa Al-Amri", - "gender": "F", - "height": "160", - "weight": "58", - "sport": "Wrestling", - "team": "Tunisia", - "noc": "TUN", - "age": 27, - "event": "Wrestling Women's Lightweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Stanley Amuzie", - "gender": "M", - "height": "171", - "weight": "85", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 20, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "An Ba-Ul", - "gender": "M", - "height": "169", - "weight": "66", - "sport": "Judo", - "team": "South Korea", - "noc": "KOR", - "age": 22, - "event": "Judo Men's Half-Lightweight", - "medal": "Silver" - }, - { - "name": "milie Andol", - "gender": "F", - "height": "170", - "weight": "97", - "sport": "Judo", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Judo Women's Heavyweight", - "medal": "Gold" - }, - { - "name": "Anne Dsane Andersen", - "gender": "F", - "height": "183", - "weight": "86", - "sport": "Rowing", - "team": "Denmark", - "noc": "DEN", - "age": 23, - "event": "Rowing Women's Coxless Pairs", - "medal": "Bronze" - }, - { - "name": "Matthew John \"Matt\" Anderson", - "gender": "M", - "height": "202", - "weight": "100", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Jonna Andersson", - "gender": "F", - "height": "167", - "weight": "61", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 23, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Roman Sergeyevich Anoshkin", - "gender": "M", - "height": "192", - "weight": "95", - "sport": "Canoeing", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Canoeing Men's Kayak Singles, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Giselle Anne Ansley", - "gender": "F", - "height": "176", - "weight": "73", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Carmelo Kyan Anthony", - "gender": "M", - "height": "203", - "weight": "109", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 32, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Oleg Antonov", - "gender": "M", - "height": "198", - "weight": "88", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 28, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Emilia Elisabeth Appelqvist", - "gender": "F", - "height": "168", - "weight": "65", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 26, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Hirooki Arai", - "gender": "M", - "height": "180", - "weight": "62", - "sport": "Athletics", - "team": "Japan", - "noc": "JPN", - "age": 28, - "event": "Athletics Men's 50 kilometres Walk", - "medal": "Bronze" - }, - { - "name": "Katie Louise Archibald", - "gender": "F", - "height": "178", - "weight": "70", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 22, - "event": "Cycling Women's Team Pursuit", - "medal": "Gold" - }, - { - "name": "Joahnys Oscar Argilagos Prez", - "gender": "M", - "height": "152", - "weight": "49", - "sport": "Boxing", - "team": "Cuba", - "noc": "CUB", - "age": 19, - "event": "Boxing Men's Light-Flyweight", - "medal": "Bronze" - }, - { - "name": "William Peixoto Arjona", - "gender": "M", - "height": "186", - "weight": "78", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 37, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Kristin Ann Armstrong (-Savola)", - "gender": "F", - "height": "173", - "weight": "58", - "sport": "Cycling", - "team": "United States", - "noc": "USA", - "age": 42, - "event": "Cycling Women's Individual Time Trial", - "medal": "Gold" - }, - { - "name": "Emilie Hegh Arntzen", - "gender": "F", - "height": "183", - "weight": "78", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 22, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Migran Arutyunyan", - "gender": "M", - "height": "166", - "weight": "67", - "sport": "Wrestling", - "team": "Armenia", - "noc": "ARM", - "age": 27, - "event": "Wrestling Men's Welterweight, Greco-Roman", - "medal": "Silver" - }, - { - "name": "Geraldina Rachel \"Dina\" Asher-Smith", - "gender": "F", - "height": "164", - "weight": "55", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 20, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "Nickel Ashmeade", - "gender": "M", - "height": "183", - "weight": "77", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 26, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Jessica Ashwood", - "gender": "F", - "height": "173", - "weight": "64", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 23, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Kosovare \"Kosse\" Asllani", - "gender": "F", - "height": "166", - "weight": "56", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 27, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Sandra Auffarth", - "gender": "F", - "height": "170", - "weight": "57", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Silver" - }, - { - "name": "Seimone Delicia Augustus", - "gender": "F", - "height": "183", - "weight": "74", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 32, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Mohd Azizulhasni Awang", - "gender": "M", - "height": "166", - "weight": "69", - "sport": "Cycling", - "team": "Malaysia", - "noc": "MAS", - "age": 28, - "event": "Cycling Men's Keirin", - "medal": "Bronze" - }, - { - "name": "Viktor Axelsen", - "gender": "M", - "height": "194", - "weight": "88", - "sport": "Badminton", - "team": "Denmark", - "noc": "DEN", - "age": 22, - "event": "Badminton Men's Singles", - "medal": "Bronze" - }, - { - "name": "Almaz Ayana Eba", - "gender": "F", - "height": "166", - "weight": "47", - "sport": "Athletics", - "team": "Ethiopia", - "noc": "ETH", - "age": 24, - "event": "Athletics Women's 5,000 metres", - "medal": "Bronze" - }, - { - "name": "Almaz Ayana Eba", - "gender": "F", - "height": "166", - "weight": "47", - "sport": "Athletics", - "team": "Ethiopia", - "noc": "ETH", - "age": 24, - "event": "Athletics Women's 10,000 metres", - "medal": "Gold" - }, - { - "name": "Camille Anas Ayglon-Saurina", - "gender": "F", - "height": "180", - "weight": "66", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 31, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Jrmie Azou", - "gender": "M", - "height": "178", - "weight": "71", - "sport": "Rowing", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Rowing Men's Lightweight Double Sculls", - "medal": "Gold" - }, - { - "name": "Okechukwu Godson Azubuike", - "gender": "M", - "height": "170", - "weight": "68", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 19, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Diana Bacosi", - "gender": "F", - "height": "175", - "weight": "85", - "sport": "Shooting", - "team": "Italy", - "noc": "ITA", - "age": 33, - "event": "Shooting Women's Skeet", - "medal": "Gold" - }, - { - "name": "Timea Bacsinszky", - "gender": "F", - "height": "170", - "weight": "62", - "sport": "Tennis", - "team": "Switzerland", - "noc": "SUI", - "age": 27, - "event": "Tennis Women's Doubles", - "medal": "Silver" - }, - { - "name": "Kemar Bailey-Cole", - "gender": "M", - "height": "193", - "weight": "84", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 24, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Kathleen Baker", - "gender": "F", - "height": "173", - "weight": "68", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 100 metres Backstroke", - "medal": "Silver" - }, - { - "name": "Kathleen Baker", - "gender": "F", - "height": "173", - "weight": "68", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Mashu Baker", - "gender": "M", - "height": "178", - "weight": "90", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Judo Men's Middleweight", - "medal": "Gold" - }, - { - "name": "Shakira Baker", - "gender": "F", - "height": "172", - "weight": "89", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 24, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Dmitry Igorevich Balandin", - "gender": "M", - "height": "195", - "weight": "85", - "sport": "Swimming", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 21, - "event": "Swimming Men's 200 metres Breaststroke", - "medal": "Gold" - }, - { - "name": "Kayla Banwarth", - "gender": "F", - "height": "178", - "weight": "70", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Carina Br", - "gender": "F", - "height": "185", - "weight": "75", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Gold" - }, - { - "name": "Brbara Seixas de Freitas", - "gender": "F", - "height": "178", - "weight": "67", - "sport": "Beach Volleyball", - "team": "Brazil-1", - "noc": "BRA", - "age": 29, - "event": "Beach Volleyball Women's Beach Volleyball", - "medal": "Silver" - }, - { - "name": "Elinor Jane Barker", - "gender": "F", - "height": "168", - "weight": "56", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 21, - "event": "Cycling Women's Team Pursuit", - "medal": "Gold" - }, - { - "name": "Harrison Bryce Jordan Barnes", - "gender": "M", - "height": "203", - "weight": "102", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Thomas Gabriel Jrmie Baroukh", - "gender": "M", - "height": "183", - "weight": "70", - "sport": "Rowing", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Bronze" - }, - { - "name": "Bronte Amelia Arnold Barratt", - "gender": "F", - "height": "171", - "weight": "59", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 27, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Jennifer Mae \"Jenny\" Barringer-Simpson", - "gender": "F", - "height": "166", - "weight": "53", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Athletics Women's 1,500 metres", - "medal": "Bronze" - }, - { - "name": "Mutaz Essa Barshim", - "gender": "M", - "height": "190", - "weight": "65", - "sport": "Athletics", - "team": "Qatar", - "noc": "QAT", - "age": 25, - "event": "Athletics Men's High Jump", - "medal": "Silver" - }, - { - "name": "Jacob Jepsen Barse", - "gender": "M", - "height": "188", - "weight": "73", - "sport": "Rowing", - "team": "Denmark", - "noc": "DEN", - "age": 27, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Silver" - }, - { - "name": "Saskia Bartusiak", - "gender": "F", - "height": "170", - "weight": "60", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 33, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Dimitri David Bascou", - "gender": "M", - "height": "181", - "weight": "80", - "sport": "Athletics", - "team": "France", - "noc": "FRA", - "age": 29, - "event": "Athletics Men's 110 metres Hurdles", - "medal": "Bronze" - }, - { - "name": "Fabio Basile", - "gender": "M", - "height": "160", - "weight": "66", - "sport": "Judo", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Judo Men's Half-Lightweight", - "medal": "Gold" - }, - { - "name": "Vitalina Igorevna Batsarashkina", - "gender": "F", - "height": "162", - "weight": "60", - "sport": "Shooting", - "team": "Russia", - "noc": "RUS", - "age": 19, - "event": "Shooting Women's Air Pistol, 10 metres", - "medal": "Silver" - }, - { - "name": "Mathieu Albert Daniel Bauderlique", - "gender": "M", - "height": "185", - "weight": "81", - "sport": "Boxing", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Boxing Men's Light-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Robert Bauer", - "gender": "M", - "height": "183", - "weight": "76", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Grgory Benot Baug", - "gender": "M", - "height": "181", - "weight": "100", - "sport": "Cycling", - "team": "France", - "noc": "FRA", - "age": 31, - "event": "Cycling Men's Team Sprint", - "medal": "Bronze" - }, - { - "name": "Maxime Eugne Ren Beaumont", - "gender": "M", - "height": "191", - "weight": "94", - "sport": "Canoeing", - "team": "France", - "noc": "FRA", - "age": 34, - "event": "Canoeing Men's Kayak Singles, 200 metres", - "medal": "Silver" - }, - { - "name": "Nicole Elise Beck", - "gender": "F", - "height": "168", - "weight": "66", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 28, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Janine Elizabeth Beckie", - "gender": "F", - "height": "173", - "weight": "63", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 21, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "gatha Bednarczuk Rippel", - "gender": "F", - "height": "182", - "weight": "70", - "sport": "Beach Volleyball", - "team": "Brazil-1", - "noc": "BRA", - "age": 33, - "event": "Beach Volleyball Women's Beach Volleyball", - "medal": "Silver" - }, - { - "name": "Ludger Beerbaum", - "gender": "M", - "height": "190", - "weight": "85", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 52, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Bronze" - }, - { - "name": "Genevieve \"Gen\" Behrent", - "gender": "F", - "height": "183", - "weight": "73", - "sport": "Rowing", - "team": "New Zealand", - "noc": "NZL", - "age": 25, - "event": "Rowing Women's Coxless Pairs", - "medal": "Silver" - }, - { - "name": "Melanie Behringer", - "gender": "F", - "height": "172", - "weight": "71", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 30, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Milad Beigi Hareqani", - "gender": "M", - "height": "197", - "weight": "80", - "sport": "Taekwondo", - "team": "Azerbaijan", - "noc": "AZE", - "age": 25, - "event": "Taekwondo Men's Welterweight", - "medal": "Bronze" - }, - { - "name": "Ruth Beita Vila", - "gender": "F", - "height": "191", - "weight": "72", - "sport": "Athletics", - "team": "Spain", - "noc": "ESP", - "age": 37, - "event": "Athletics Women's High Jump", - "medal": "Gold" - }, - { - "name": "Jose Blanger", - "gender": "F", - "height": "163", - "weight": "63", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 30, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Mathew Belcher", - "gender": "M", - "height": "173", - "weight": "62", - "sport": "Sailing", - "team": "Australia", - "noc": "AUS", - "age": 33, - "event": "Sailing Men's Two Person Dinghy", - "medal": "Silver" - }, - { - "name": "Zhan Vensanovych Beleniuk", - "gender": "M", - "height": "178", - "weight": "85", - "sport": "Wrestling", - "team": "Ukraine", - "noc": "UKR", - "age": 25, - "event": "Wrestling Men's Light-Heavyweight, Greco-Roman", - "medal": "Silver" - }, - { - "name": "Mireia Belmonte Garca", - "gender": "F", - "height": "170", - "weight": "59", - "sport": "Swimming", - "team": "Spain", - "noc": "ESP", - "age": 25, - "event": "Swimming Women's 200 metres Butterfly", - "medal": "Gold" - }, - { - "name": "Mireia Belmonte Garca", - "gender": "F", - "height": "170", - "weight": "59", - "sport": "Swimming", - "team": "Spain", - "noc": "ESP", - "age": 25, - "event": "Swimming Women's 400 metres Individual Medley", - "medal": "Bronze" - }, - { - "name": "Alexander Belonogoff", - "gender": "M", - "height": "187", - "weight": "90", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 26, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Silver" - }, - { - "name": "Olga Konstantinovna Belova-Gorbunova", - "gender": "F", - "height": "169", - "weight": "60", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Anastasiya Yevgenyevna Belyakova", - "gender": "F", - "height": "173", - "weight": "60", - "sport": "Boxing", - "team": "Russia", - "noc": "RUS", - "age": 23, - "event": "Boxing Women's Lightweight", - "medal": "Bronze" - }, - { - "name": "David Sagitovich Belyavsky", - "gender": "M", - "height": "165", - "weight": "55", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Gymnastics Men's Team All-Around", - "medal": "Silver" - }, - { - "name": "David Sagitovich Belyavsky", - "gender": "M", - "height": "165", - "weight": "55", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Gymnastics Men's Parallel Bars", - "medal": "Bronze" - }, - { - "name": "Lars Bender", - "gender": "M", - "height": "184", - "weight": "80", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Sven Bender", - "gender": "M", - "height": "185", - "weight": "80", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Meaghan Benfeito", - "gender": "F", - "height": "155", - "weight": "48", - "sport": "Diving", - "team": "Canada", - "noc": "CAN", - "age": 27, - "event": "Diving Women's Platform", - "medal": "Bronze" - }, - { - "name": "Meaghan Benfeito", - "gender": "F", - "height": "155", - "weight": "48", - "sport": "Diving", - "team": "Canada", - "noc": "CAN", - "age": 27, - "event": "Diving Women's Synchronized Platform", - "medal": "Bronze" - }, - { - "name": "Brittany \"Britt\" Benn", - "gender": "F", - "height": "165", - "weight": "68", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 27, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Karen Bennett", - "gender": "F", - "height": "179", - "weight": "75", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Mark Stewart Bennett", - "gender": "M", - "height": "183", - "weight": "89", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Paul Bennett", - "gender": "M", - "height": "207", - "weight": "100", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Joseph \"Gunnar\" Bentz", - "gender": "M", - "height": "196", - "weight": "84", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Matej Beu", - "gender": "M", - "height": "196", - "weight": "83", - "sport": "Canoeing", - "team": "Slovakia", - "noc": "SVK", - "age": 28, - "event": "Canoeing Men's Canadian Singles, Slalom", - "medal": "Silver" - }, - { - "name": "Mdlina Bere", - "gender": "F", - "height": "186", - "weight": "75", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 23, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Stig Andr Berge", - "gender": "M", - "height": "167", - "weight": "60", - "sport": "Wrestling", - "team": "Norway", - "noc": "NOR", - "age": 33, - "event": "Wrestling Men's Featherweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Emma Sofia Berglund", - "gender": "F", - "height": "171", - "weight": "64", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 27, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Nicole Beukers", - "gender": "F", - "height": "170", - "weight": "66", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 25, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Silver" - }, - { - "name": "Allison Beveridge", - "gender": "F", - "height": "169", - "weight": "62", - "sport": "Cycling", - "team": "Canada", - "noc": "CAN", - "age": 23, - "event": "Cycling Women's Team Pursuit", - "medal": "Bronze" - }, - { - "name": "Roberta Bianconi", - "gender": "F", - "height": "176", - "weight": "76", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 27, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Daniel \"Dan\" Bibby", - "gender": "M", - "height": "176", - "weight": "86", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Fiona Clare Bigwood", - "gender": "F", - "height": "173", - "weight": "75", - "sport": "Equestrianism", - "team": "Great Britain", - "noc": "GBR", - "age": 40, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Silver" - }, - { - "name": "Marko Bija", - "gender": "M", - "height": "201", - "weight": "85", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 25, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Simone Arianne Biles", - "gender": "F", - "height": "143", - "weight": "47", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Gymnastics Women's Individual All-Around", - "medal": "Gold" - }, - { - "name": "Simone Arianne Biles", - "gender": "F", - "height": "143", - "weight": "47", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Gymnastics Women's Team All-Around", - "medal": "Gold" - }, - { - "name": "Simone Arianne Biles", - "gender": "F", - "height": "143", - "weight": "47", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Gymnastics Women's Floor Exercise", - "medal": "Gold" - }, - { - "name": "Simone Arianne Biles", - "gender": "F", - "height": "143", - "weight": "47", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Gymnastics Women's Horse Vault", - "medal": "Gold" - }, - { - "name": "Simone Arianne Biles", - "gender": "F", - "height": "143", - "weight": "47", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Gymnastics Women's Balance Beam", - "medal": "Bronze" - }, - { - "name": "Emanuele Birarelli", - "gender": "M", - "height": "202", - "weight": "95", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 35, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Stefan Birevi", - "gender": "M", - "height": "210", - "weight": "104", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 26, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Suzanne Brigit \"Sue\" Bird", - "gender": "F", - "height": "175", - "weight": "66", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 35, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Dane Alex Bird-Smith", - "gender": "M", - "height": "187", - "weight": "72", - "sport": "Athletics", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Athletics Men's 20 kilometres Walk", - "medal": "Bronze" - }, - { - "name": "Vera Leonidovna Biryukova", - "gender": "F", - "height": "168", - "weight": "47", - "sport": "Rhythmic Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 18, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Gold" - }, - { - "name": "Emma Stina Blackstenius", - "gender": "F", - "height": "173", - "weight": "69", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 20, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Yohan Blake", - "gender": "M", - "height": "180", - "weight": "80", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 26, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Irina Valeryevna Bliznova", - "gender": "F", - "height": "182", - "weight": "68", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 29, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Anastasiya Ilyinichna Bliznyuk", - "gender": "F", - "height": "173", - "weight": "51", - "sport": "Rhythmic Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Gold" - }, - { - "name": "Pernille Blume", - "gender": "F", - "height": "170", - "weight": "58", - "sport": "Swimming", - "team": "Denmark", - "noc": "DEN", - "age": 22, - "event": "Swimming Women's 50 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Pernille Blume", - "gender": "F", - "height": "170", - "weight": "58", - "sport": "Swimming", - "team": "Denmark", - "noc": "DEN", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Jack Bobridge", - "gender": "M", - "height": "180", - "weight": "65", - "sport": "Cycling", - "team": "Australia", - "noc": "AUS", - "age": 27, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Silver" - }, - { - "name": "Vladlena Eduardovna Bobrovnikova", - "gender": "F", - "height": "180", - "weight": "72", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Gauthier Boccard", - "gender": "M", - "height": "186", - "weight": "79", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 24, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Gbor Gyula Boczk", - "gender": "M", - "height": "192", - "weight": "89", - "sport": "Fencing", - "team": "Hungary", - "noc": "HUN", - "age": 39, - "event": "Fencing Men's epee, Team", - "medal": "Bronze" - }, - { - "name": "Michal Alexandre Bodegas", - "gender": "M", - "height": "192", - "weight": "102", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 29, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Bogdan Bogdanovi", - "gender": "M", - "height": "197", - "weight": "99", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 23, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Tijana Bogdanovi", - "gender": "F", - "height": "172", - "weight": "52", - "sport": "Taekwondo", - "team": "Serbia", - "noc": "SRB", - "age": 18, - "event": "Taekwondo Women's Flyweight", - "medal": "Silver" - }, - { - "name": "Andreea Boghian", - "gender": "F", - "height": "186", - "weight": "78", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 24, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Shmagi Bolkvadze", - "gender": "M", - "height": "170", - "weight": "66", - "sport": "Wrestling", - "team": "Georgia", - "noc": "GEO", - "age": 22, - "event": "Wrestling Men's Welterweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Timo Boll", - "gender": "M", - "height": "181", - "weight": "74", - "sport": "Table Tennis", - "team": "Germany", - "noc": "GER", - "age": 35, - "event": "Table Tennis Men's Team", - "medal": "Bronze" - }, - { - "name": "Usain St. Leo Bolt", - "gender": "M", - "height": "196", - "weight": "95", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 29, - "event": "Athletics Men's 100 metres", - "medal": "Gold" - }, - { - "name": "Usain St. Leo Bolt", - "gender": "M", - "height": "196", - "weight": "95", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 29, - "event": "Athletics Men's 200 metres", - "medal": "Gold" - }, - { - "name": "Usain St. Leo Bolt", - "gender": "M", - "height": "196", - "weight": "95", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 29, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Hamish Byron Bond", - "gender": "M", - "height": "189", - "weight": "89", - "sport": "Rowing", - "team": "New Zealand", - "noc": "NZL", - "age": 30, - "event": "Rowing Men's Coxless Pairs", - "medal": "Gold" - }, - { - "name": "Bohdan Viktorovych Bondarenko", - "gender": "M", - "height": "198", - "weight": "77", - "sport": "Athletics", - "team": "Ukraine", - "noc": "UKR", - "age": 26, - "event": "Athletics Men's High Jump", - "medal": "Bronze" - }, - { - "name": "Tom Boon", - "gender": "M", - "height": "184", - "weight": "81", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 26, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Joshua \"Josh\" Booth", - "gender": "M", - "height": "190", - "weight": "93", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 25, - "event": "Rowing Men's Coxless Fours", - "medal": "Silver" - }, - { - "name": "Kjetil Borch", - "gender": "M", - "height": "193", - "weight": "84", - "sport": "Rowing", - "team": "Norway", - "noc": "NOR", - "age": 26, - "event": "Rowing Men's Double Sculls", - "medal": "Bronze" - }, - { - "name": "Yannick Philippe Andr Borel", - "gender": "M", - "height": "197", - "weight": "100", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Fencing Men's epee, Team", - "medal": "Gold" - }, - { - "name": "Maurcio Borges Almeida Silva", - "gender": "M", - "height": "199", - "weight": "99", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 27, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Mariya Olegovna Borisova", - "gender": "F", - "height": "184", - "weight": "95", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 19, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Ismael Borrero Molina", - "gender": "M", - "height": "160", - "weight": "59", - "sport": "Wrestling", - "team": "Cuba", - "noc": "CUB", - "age": 24, - "event": "Wrestling Men's Featherweight, Greco-Roman", - "medal": "Gold" - }, - { - "name": "Willemijn Bos", - "gender": "F", - "height": "181", - "weight": "69", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 28, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Tijana Bokovi", - "gender": "F", - "height": "193", - "weight": "82", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 19, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Roger-Yves Bost", - "gender": "M", - "height": "176", - "weight": "80", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 50, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Gold" - }, - { - "name": "Ins Boubakri", - "gender": "F", - "height": "167", - "weight": "56", - "sport": "Fencing", - "team": "Tunisia", - "noc": "TUN", - "age": 27, - "event": "Fencing Women's Foil, Individual", - "medal": "Bronze" - }, - { - "name": "David Alasdair Boudia", - "gender": "M", - "height": "175", - "weight": "73", - "sport": "Diving", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Diving Men's Platform", - "medal": "Bronze" - }, - { - "name": "David Alasdair Boudia", - "gender": "M", - "height": "175", - "weight": "73", - "sport": "Diving", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Diving Men's Synchronized Platform", - "medal": "Silver" - }, - { - "name": "Carline Bouw", - "gender": "F", - "height": "184", - "weight": "72", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 31, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Silver" - }, - { - "name": "Marit Bouwmeester", - "gender": "F", - "height": "177", - "weight": "68", - "sport": "Sailing", - "team": "Netherlands", - "noc": "NED", - "age": 28, - "event": "Sailing Women's One Person Dinghy", - "medal": "Gold" - }, - { - "name": "Frentorish \"Tori\" Bowie", - "gender": "F", - "height": "175", - "weight": "58", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Athletics Women's 100 metres", - "medal": "Silver" - }, - { - "name": "Frentorish \"Tori\" Bowie", - "gender": "F", - "height": "175", - "weight": "58", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Athletics Women's 200 metres", - "medal": "Bronze" - }, - { - "name": "Frentorish \"Tori\" Bowie", - "gender": "F", - "height": "175", - "weight": "58", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Jovana Brakoevi-Kancian", - "gender": "F", - "height": "196", - "weight": "82", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 28, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Julian Brandt", - "gender": "M", - "height": "183", - "weight": "83", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 20, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Ana Maria Florentina Brnz-Popescu", - "gender": "F", - "height": "175", - "weight": "64", - "sport": "Fencing", - "team": "Romania", - "noc": "ROU", - "age": 31, - "event": "Fencing Women's epee, Team", - "medal": "Gold" - }, - { - "name": "Sophie Charlotte Bray", - "gender": "F", - "height": "164", - "weight": "58", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 26, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Thiago Braz da Silva", - "gender": "M", - "height": "183", - "weight": "75", - "sport": "Athletics", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Athletics Men's Pole Vault", - "medal": "Gold" - }, - { - "name": "Kelly Brazier", - "gender": "F", - "height": "171", - "weight": "70", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 26, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Sebastian Brendel", - "gender": "M", - "height": "192", - "weight": "92", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Canoeing Men's Canadian Singles, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Sebastian Brendel", - "gender": "M", - "height": "192", - "weight": "92", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Canoeing Men's Canadian Doubles, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Thomas Briels", - "gender": "M", - "height": "172", - "weight": "71", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 28, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Lawrence Brittain", - "gender": "M", - "height": "187", - "weight": "94", - "sport": "Rowing", - "team": "South Africa", - "noc": "RSA", - "age": 25, - "event": "Rowing Men's Coxless Pairs", - "medal": "Silver" - }, - { - "name": "Allison M. Brock", - "gender": "F", - "height": "168", - "weight": "59", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 36, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Bronze" - }, - { - "name": "Kristina Brring-Sprehe", - "gender": "F", - "height": "168", - "weight": "54", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Equestrianism Mixed Dressage, Individual", - "medal": "Bronze" - }, - { - "name": "Kristina Brring-Sprehe", - "gender": "F", - "height": "168", - "weight": "54", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Gold" - }, - { - "name": "Gayle Broughton", - "gender": "F", - "height": "174", - "weight": "70", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 20, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Alexander Brouwer", - "gender": "M", - "height": "198", - "weight": "88", - "sport": "Beach Volleyball", - "team": "Netherlands-1", - "noc": "NED", - "age": 26, - "event": "Beach Volleyball Men's Beach Volleyball", - "medal": "Bronze" - }, - { - "name": "Aaron Brown", - "gender": "M", - "height": "198", - "weight": "79", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "Christopher Deon \"Chris\" Brown", - "gender": "M", - "height": "178", - "weight": "75", - "sport": "Athletics", - "team": "Bahamas", - "noc": "BAH", - "age": 37, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Kyle Gie Brown", - "gender": "M", - "height": "182", - "weight": "92", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 29, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Laura Brown", - "gender": "F", - "height": "167", - "weight": "61", - "sport": "Cycling", - "team": "Canada", - "noc": "CAN", - "age": 29, - "event": "Cycling Women's Team Pursuit", - "medal": "Bronze" - }, - { - "name": "Alistair Edward Brownlee", - "gender": "M", - "height": "184", - "weight": "70", - "sport": "Triathlon", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Triathlon Men's Olympic Distance", - "medal": "Gold" - }, - { - "name": "Jonathan Callum \"Jonny\" Brownlee", - "gender": "M", - "height": "181", - "weight": "70", - "sport": "Triathlon", - "team": "Great Britain", - "noc": "GBR", - "age": 26, - "event": "Triathlon Men's Olympic Distance", - "medal": "Silver" - }, - { - "name": "Kristoffer Brun", - "gender": "M", - "height": "175", - "weight": "70", - "sport": "Rowing", - "team": "Norway", - "noc": "NOR", - "age": 28, - "event": "Rowing Men's Lightweight Double Sculls", - "medal": "Bronze" - }, - { - "name": "Manuel Brunet", - "gender": "M", - "height": "179", - "weight": "79", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 30, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Rachele Bruni", - "gender": "F", - "height": "170", - "weight": "59", - "sport": "Swimming", - "team": "Italy", - "noc": "ITA", - "age": 25, - "event": "Swimming Women's 10 kilometres Open Water", - "medal": "Silver" - }, - { - "name": "Bruno \"Bruninho\" Mossa de Rezende", - "gender": "M", - "height": "190", - "weight": "76", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 30, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Joshua Buatsi", - "gender": "M", - "height": "185", - "weight": "81", - "sport": "Boxing", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Boxing Men's Light-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Kadeisha Buchanan", - "gender": "F", - "height": "170", - "weight": "65", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 20, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Matthijs Bchli", - "gender": "M", - "height": "188", - "weight": "90", - "sport": "Cycling", - "team": "Netherlands", - "noc": "NED", - "age": 23, - "event": "Cycling Men's Keirin", - "medal": "Silver" - }, - { - "name": "Luka Buki", - "gender": "M", - "height": "195", - "weight": "90", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 22, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Yekaterina Borisovna Bukina", - "gender": "F", - "height": "174", - "weight": "75", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 29, - "event": "Wrestling Women's Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Chlo Bulleux", - "gender": "F", - "height": "172", - "weight": "65", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Phil Burgess", - "gender": "M", - "height": "180", - "weight": "92", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Damir Buri", - "gender": "M", - "height": "205", - "weight": "115", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 35, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Steven James Burke", - "gender": "M", - "height": "183", - "weight": "78", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Gold" - }, - { - "name": "Peter Burling", - "gender": "M", - "height": "186", - "weight": "82", - "sport": "Sailing", - "team": "New Zealand", - "noc": "NZL", - "age": 25, - "event": "Sailing Men's Skiff", - "medal": "Gold" - }, - { - "name": "Christopher Burton", - "gender": "M", - "height": "180", - "weight": "70", - "sport": "Equestrianism", - "team": "Australia", - "noc": "AUS", - "age": 34, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Bronze" - }, - { - "name": "Tom Burton", - "gender": "M", - "height": "180", - "weight": "81", - "sport": "Sailing", - "team": "Australia", - "noc": "AUS", - "age": 26, - "event": "Sailing Men's One Person Dinghy", - "medal": "Gold" - }, - { - "name": "Bianka Bua", - "gender": "F", - "height": "187", - "weight": "74", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 22, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Andro Bulje", - "gender": "M", - "height": "200", - "weight": "115", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 30, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Simone Buti", - "gender": "M", - "height": "206", - "weight": "100", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 32, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Jimmy Butler III", - "gender": "M", - "height": "201", - "weight": "99", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Linus Butt", - "gender": "M", - "height": "186", - "weight": "83", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Dajana Butulija", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 30, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Denia Caballero Ponce", - "gender": "F", - "height": "175", - "weight": "70", - "sport": "Athletics", - "team": "Cuba", - "noc": "CUB", - "age": 26, - "event": "Athletics Women's Discus Throw", - "medal": "Bronze" - }, - { - "name": "Jrmy Cadot", - "gender": "M", - "height": "185", - "weight": "78", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 29, - "event": "Fencing Men's Foil, Team", - "medal": "Silver" - }, - { - "name": "Tania Cagnotto (-Parolin)", - "gender": "F", - "height": "160", - "weight": "54", - "sport": "Diving", - "team": "Italy", - "noc": "ITA", - "age": 31, - "event": "Diving Women's Springboard", - "medal": "Bronze" - }, - { - "name": "Tania Cagnotto (-Parolin)", - "gender": "F", - "height": "160", - "weight": "54", - "sport": "Diving", - "team": "Italy", - "noc": "ITA", - "age": 31, - "event": "Diving Women's Synchronized Springboard", - "medal": "Silver" - }, - { - "name": "Cai Zelin", - "gender": "M", - "height": "175", - "weight": "55", - "sport": "Athletics", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Athletics Men's 20 kilometres Walk", - "medal": "Silver" - }, - { - "name": "Chiara Cainero", - "gender": "F", - "height": "171", - "weight": "81", - "sport": "Shooting", - "team": "Italy", - "noc": "ITA", - "age": 38, - "event": "Shooting Women's Skeet", - "medal": "Silver" - }, - { - "name": "Jos Manuel Caldern Borrallo", - "gender": "M", - "height": "191", - "weight": "90", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 34, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Hilary Caldwell", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 25, - "event": "Swimming Women's 200 metres Backstroke", - "medal": "Bronze" - }, - { - "name": "Facundo Callioni", - "gender": "M", - "height": "183", - "weight": "77", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 30, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Eva Calvo Gmez", - "gender": "F", - "height": "176", - "weight": "57", - "sport": "Taekwondo", - "team": "Spain", - "noc": "ESP", - "age": 25, - "event": "Taekwondo Women's Featherweight", - "medal": "Silver" - }, - { - "name": "Asuka Antonio \"Aska\" Cambridge", - "gender": "M", - "height": "179", - "weight": "74", - "sport": "Athletics", - "team": "Japan", - "noc": "JPN", - "age": 23, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Bronte Campbell", - "gender": "F", - "height": "179", - "weight": "58", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Cate Natalie Campbell", - "gender": "F", - "height": "186", - "weight": "67", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Cate Natalie Campbell", - "gender": "F", - "height": "186", - "weight": "67", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Veronica Angella Campbell-Brown", - "gender": "F", - "height": "168", - "weight": "58", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 34, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Niccol Campriani", - "gender": "M", - "height": "177", - "weight": "80", - "sport": "Shooting", - "team": "Italy", - "noc": "ITA", - "age": 28, - "event": "Shooting Men's Air Rifle, 10 metres", - "medal": "Gold" - }, - { - "name": "Niccol Campriani", - "gender": "M", - "height": "177", - "weight": "80", - "sport": "Shooting", - "team": "Italy", - "noc": "ITA", - "age": 28, - "event": "Shooting Men's Small-Bore Rifle, Three Positions, 50 metres", - "medal": "Gold" - }, - { - "name": "Fabian Cancellara", - "gender": "M", - "height": "186", - "weight": "81", - "sport": "Cycling", - "team": "Switzerland", - "noc": "SUI", - "age": 35, - "event": "Cycling Men's Individual Time Trial", - "medal": "Gold" - }, - { - "name": "Cao Yuan", - "gender": "M", - "height": "160", - "weight": "42", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 21, - "event": "Diving Men's Springboard", - "medal": "Gold" - }, - { - "name": "Cao Yuan", - "gender": "M", - "height": "160", - "weight": "42", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 21, - "event": "Diving Men's Synchronized Springboard", - "medal": "Bronze" - }, - { - "name": "Jazmin Roxy \"Jazz\" Carlin", - "gender": "F", - "height": "175", - "weight": "57", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Swimming Women's 400 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Jazmin Roxy \"Jazz\" Carlin", - "gender": "F", - "height": "175", - "weight": "57", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Swimming Women's 800 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Olivia Frances Carnegie-Brown", - "gender": "F", - "height": "181", - "weight": "73", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Cecilia Carranza Saroli", - "gender": "F", - "height": "164", - "weight": "63", - "sport": "Sailing", - "team": "Argentina", - "noc": "ARG", - "age": 29, - "event": "Sailing Mixed Multihull", - "medal": "Gold" - }, - { - "name": "Lisa Carrington", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Canoeing", - "team": "New Zealand", - "noc": "NZL", - "age": 27, - "event": "Canoeing Women's Kayak Singles, 200 metres", - "medal": "Gold" - }, - { - "name": "Lisa Carrington", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Canoeing", - "team": "New Zealand", - "noc": "NZL", - "age": 27, - "event": "Canoeing Women's Kayak Singles, 500 metres", - "medal": "Bronze" - }, - { - "name": "Michelle Denee Carter", - "gender": "F", - "height": "176", - "weight": "136", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Women's Shot Put", - "medal": "Gold" - }, - { - "name": "Charlotte Caslick", - "gender": "F", - "height": "172", - "weight": "65", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 21, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Matteo Castaldo", - "gender": "M", - "height": "188", - "weight": "86", - "sport": "Rowing", - "team": "Italy", - "noc": "ITA", - "age": 30, - "event": "Rowing Men's Coxless Fours", - "medal": "Bronze" - }, - { - "name": "Kristi Castlin", - "gender": "F", - "height": "170", - "weight": "60", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Athletics Women's 100 metres Hurdles", - "medal": "Bronze" - }, - { - "name": "Tamika Devonne Catchings", - "gender": "F", - "height": "185", - "weight": "77", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 37, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Kelly Catlin", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Cycling", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Cycling Women's Team Pursuit", - "medal": "Silver" - }, - { - "name": "Mark Simon Cavendish", - "gender": "M", - "height": "175", - "weight": "70", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Cycling Men's Omnium", - "medal": "Silver" - }, - { - "name": "Saa ao", - "gender": "F", - "height": "178", - "weight": "72", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 27, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Matthew Gerald \"Matt\" Centrowitz, Jr.", - "gender": "M", - "height": "176", - "weight": "65", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Athletics Men's 1,500 metres", - "medal": "Gold" - }, - { - "name": "Davit Gochayevich Chakvetadze", - "gender": "M", - "height": "174", - "weight": "85", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 23, - "event": "Wrestling Men's Light-Heavyweight, Greco-Roman", - "medal": "Gold" - }, - { - "name": "Kyle Chalmers", - "gender": "M", - "height": "193", - "weight": "90", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 18, - "event": "Swimming Men's 100 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Kyle Chalmers", - "gender": "M", - "height": "193", - "weight": "90", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 18, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Kyle Chalmers", - "gender": "M", - "height": "193", - "weight": "90", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 18, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Frank Chamizo Marquez", - "gender": "M", - "height": "172", - "weight": "65", - "sport": "Wrestling", - "team": "Italy", - "noc": "ITA", - "age": 24, - "event": "Wrestling Men's Welterweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Miles Cleveland Chamley-Watson", - "gender": "M", - "height": "193", - "weight": "80", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Fencing Men's Foil, Team", - "medal": "Bronze" - }, - { - "name": "Chan Peng Soon", - "gender": "M", - "height": "175", - "weight": "68", - "sport": "Badminton", - "team": "Malaysia", - "noc": "MAS", - "age": 28, - "event": "Badminton Mixed Doubles", - "medal": "Silver" - }, - { - "name": "Chang Hye-Jin", - "gender": "F", - "height": "158", - "weight": "50", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 29, - "event": "Archery Women's Individual", - "medal": "Gold" - }, - { - "name": "Chang Hye-Jin", - "gender": "F", - "height": "158", - "weight": "50", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 29, - "event": "Archery Women's Team", - "medal": "Gold" - }, - { - "name": "Allysha Chapman", - "gender": "F", - "height": "160", - "weight": "56", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 27, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Tina Alexandria Charles", - "gender": "F", - "height": "193", - "weight": "88", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Cdric Charlier", - "gender": "M", - "height": "181", - "weight": "81", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 28, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Yuriy Volodymyrovych Cheban", - "gender": "M", - "height": "185", - "weight": "93", - "sport": "Canoeing", - "team": "Ukraine", - "noc": "UKR", - "age": 30, - "event": "Canoeing Men's Canadian Singles, 200 metres", - "medal": "Gold" - }, - { - "name": "Paul Kipkemboi Chelimo", - "gender": "M", - "height": "175", - "weight": "57", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Athletics Men's 5,000 metres", - "medal": "Silver" - }, - { - "name": "Chen Aisen", - "gender": "M", - "height": "168", - "weight": "60", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 20, - "event": "Diving Men's Platform", - "medal": "Gold" - }, - { - "name": "Chen Aisen", - "gender": "M", - "height": "168", - "weight": "60", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 20, - "event": "Diving Men's Synchronized Platform", - "medal": "Gold" - }, - { - "name": "Chen Long", - "gender": "M", - "height": "188", - "weight": "81", - "sport": "Badminton", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Badminton Men's Singles", - "medal": "Gold" - }, - { - "name": "Chen Peina", - "gender": "F", - "height": "172", - "weight": "63", - "sport": "Sailing", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Sailing Women's Windsurfer", - "medal": "Silver" - }, - { - "name": "Chen Ruolin", - "gender": "F", - "height": "160", - "weight": "47", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Diving Women's Synchronized Platform", - "medal": "Gold" - }, - { - "name": "Cheng Xunzhao", - "gender": "M", - "height": "185", - "weight": "90", - "sport": "Judo", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Judo Men's Middleweight", - "medal": "Bronze" - }, - { - "name": "Cheong Jun Hoong", - "gender": "F", - "height": "150", - "weight": "48", - "sport": "Diving", - "team": "Malaysia", - "noc": "MAS", - "age": 26, - "event": "Diving Women's Synchronized Platform", - "medal": "Silver" - }, - { - "name": "Aleksey Borisovich Cheremisinov", - "gender": "M", - "height": "183", - "weight": "75", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 31, - "event": "Fencing Men's Foil, Team", - "medal": "Gold" - }, - { - "name": "Emilee Cherry", - "gender": "F", - "height": "168", - "weight": "70", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 23, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Vivian Jepkemoi Cheruiyot", - "gender": "F", - "height": "153", - "weight": "40", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 32, - "event": "Athletics Women's 5,000 metres", - "medal": "Gold" - }, - { - "name": "Vivian Jepkemoi Cheruiyot", - "gender": "F", - "height": "153", - "weight": "40", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 32, - "event": "Athletics Women's 10,000 metres", - "medal": "Silver" - }, - { - "name": "Vlada Aleksandrovna Chigiryova", - "gender": "F", - "height": "162", - "weight": "46", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Eilidh Child-Doyle", - "gender": "F", - "height": "170", - "weight": "60", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 29, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Choe Hyo-Sim", - "gender": "F", - "height": "159", - "weight": "63", - "sport": "Weightlifting", - "team": "North Korea", - "noc": "PRK", - "age": 22, - "event": "Weightlifting Women's Middleweight", - "medal": "Silver" - }, - { - "name": "Choi Mi-Sun", - "gender": "F", - "height": "168", - "weight": "53", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 20, - "event": "Archery Women's Team", - "medal": "Gold" - }, - { - "name": "Maialen Chourraut Yurramendi", - "gender": "F", - "height": "161", - "weight": "55", - "sport": "Canoeing", - "team": "Spain", - "noc": "ESP", - "age": 33, - "event": "Canoeing Women's Kayak Singles, Slalom", - "medal": "Gold" - }, - { - "name": "Micah Makanamaikalani Christenson", - "gender": "M", - "height": "198", - "weight": "86", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Mads Christiansen", - "gender": "M", - "height": "197", - "weight": "93", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 30, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Max Christiansen", - "gender": "M", - "height": "187", - "weight": "84", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 19, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Anton Mikhaylovich Chupkov", - "gender": "M", - "height": "188", - "weight": "71", - "sport": "Swimming", - "team": "Russia", - "noc": "RUS", - "age": 19, - "event": "Swimming Men's 200 metres Breaststroke", - "medal": "Bronze" - }, - { - "name": "Monika Ciaciuch", - "gender": "F", - "height": "182", - "weight": "74", - "sport": "Rowing", - "team": "Poland", - "noc": "POL", - "age": 24, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Bronze" - }, - { - "name": "Cheick Sallah Ciss Junior", - "gender": "M", - "height": "186", - "weight": "80", - "sport": "Taekwondo", - "team": "Cote d'Ivoire", - "noc": "CIV", - "age": 22, - "event": "Taekwondo Men's Welterweight", - "medal": "Gold" - }, - { - "name": "Souleymane Diop Cissokho", - "gender": "M", - "height": "179", - "weight": "69", - "sport": "Boxing", - "team": "France", - "noc": "FRA", - "age": 25, - "event": "Boxing Men's Welterweight", - "medal": "Bronze" - }, - { - "name": "Edward \"Ed\" Clancy", - "gender": "M", - "height": "185", - "weight": "79", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Gold" - }, - { - "name": "Caroline Archer \"KK\" Clark", - "gender": "F", - "height": "188", - "weight": "72", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Saskia Clark", - "gender": "F", - "height": "176", - "weight": "68", - "sport": "Sailing", - "team": "Great Britain", - "noc": "GBR", - "age": 36, - "event": "Sailing Women's Two Person Dinghy", - "medal": "Gold" - }, - { - "name": "Joseph \"Joe\" Clarke", - "gender": "M", - "height": "182", - "weight": "76", - "sport": "Canoeing", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Canoeing Men's Kayak Singles, Slalom", - "medal": "Gold" - }, - { - "name": "Vctor Claver Arocas", - "gender": "M", - "height": "206", - "weight": "107", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 27, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "William Bundu \"Will\" Claye", - "gender": "M", - "height": "181", - "weight": "72", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Athletics Men's Triple Jump", - "medal": "Silver" - }, - { - "name": "Kerron Stephon Clement", - "gender": "M", - "height": "188", - "weight": "86", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Men's 400 metres Hurdles", - "medal": "Gold" - }, - { - "name": "Kyle Clemons", - "gender": "M", - "height": "180", - "weight": "74", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "lodie Pascaline Clouvel", - "gender": "F", - "height": "182", - "weight": "69", - "sport": "Modern Pentathlon", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Modern Pentathlon Women's Individual", - "medal": "Silver" - }, - { - "name": "Emma Jane Coburn", - "gender": "F", - "height": "173", - "weight": "54", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Athletics Women's 3,000 metres Steeplechase", - "medal": "Bronze" - }, - { - "name": "Corey Cogdell-Unrein", - "gender": "F", - "height": "173", - "weight": "70", - "sport": "Shooting", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Shooting Women's Trap", - "medal": "Bronze" - }, - { - "name": "Roxana Gabriela Cogianu", - "gender": "F", - "height": "180", - "weight": "72", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 29, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Adelina Maria Cojocariu-Bogus", - "gender": "F", - "height": "186", - "weight": "75", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 27, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Massimo Colaci", - "gender": "M", - "height": "180", - "weight": "75", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 31, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Thibault Colard", - "gender": "M", - "height": "187", - "weight": "70", - "sport": "Rowing", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Bronze" - }, - { - "name": "Carlos Coloma Nicols", - "gender": "M", - "height": "171", - "weight": "65", - "sport": "Cycling", - "team": "Spain", - "noc": "ESP", - "age": 34, - "event": "Cycling Men's Mountainbike, Cross-team", - "medal": "Bronze" - }, - { - "name": "Robson Donato Conceio", - "gender": "M", - "height": "171", - "weight": "57", - "sport": "Boxing", - "team": "Brazil", - "noc": "BRA", - "age": 27, - "event": "Boxing Men's Lightweight", - "medal": "Gold" - }, - { - "name": "John \"Jack\" Conger", - "gender": "M", - "height": "193", - "weight": "80", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Sally Conway", - "gender": "F", - "height": "167", - "weight": "70", - "sport": "Judo", - "team": "Great Britain", - "noc": "GBR", - "age": 29, - "event": "Judo Women's Middleweight", - "medal": "Bronze" - }, - { - "name": "Tamsin Cook", - "gender": "F", - "height": "170", - "weight": "61", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 17, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Yasmani Copello Escobar", - "gender": "M", - "height": "191", - "weight": "85", - "sport": "Athletics", - "team": "Turkey", - "noc": "TUR", - "age": 29, - "event": "Athletics Men's 400 metres Hurdles", - "medal": "Bronze" - }, - { - "name": "Kevin Cordes", - "gender": "M", - "height": "196", - "weight": "88", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Tanguy Cosyns", - "gender": "M", - "height": "174", - "weight": "70", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 25, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Aleksandra Cotti", - "gender": "F", - "height": "167", - "weight": "65", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 27, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "DeMarcus Amir Cousins", - "gender": "M", - "height": "210", - "weight": "122", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "J'den Michael Tbory Cox", - "gender": "M", - "height": "180", - "weight": "86", - "sport": "Wrestling", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Wrestling Men's Light-Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Kameryn Louise \"Kami\" Craig", - "gender": "F", - "height": "181", - "weight": "88", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Sal Craviotto Rivero", - "gender": "M", - "height": "192", - "weight": "98", - "sport": "Canoeing", - "team": "Spain", - "noc": "ESP", - "age": 31, - "event": "Canoeing Men's Kayak Singles, 200 metres", - "medal": "Bronze" - }, - { - "name": "Sal Craviotto Rivero", - "gender": "M", - "height": "192", - "weight": "98", - "sport": "Canoeing", - "team": "Spain", - "noc": "ESP", - "age": 31, - "event": "Canoeing Men's Kayak Doubles, 200 metres", - "medal": "Gold" - }, - { - "name": "Samuel Thomas \"Sam\" Cross", - "gender": "M", - "height": "191", - "weight": "103", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Ryan Crouser", - "gender": "M", - "height": "201", - "weight": "125", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Athletics Men's Shot Put", - "medal": "Gold" - }, - { - "name": "Kimberley \"Kim\" Crow-Brennan", - "gender": "F", - "height": "188", - "weight": "74", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 30, - "event": "Rowing Women's Single Sculls", - "medal": "Gold" - }, - { - "name": "Anna Cruz Lebrato", - "gender": "F", - "height": "176", - "weight": "60", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 29, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Aleksandra Crvendaki", - "gender": "F", - "height": "187", - "weight": "76", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 20, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Lszl Cseh, Jr.", - "gender": "M", - "height": "188", - "weight": "83", - "sport": "Swimming", - "team": "Hungary", - "noc": "HUN", - "age": 30, - "event": "Swimming Men's 100 metres Butterfly", - "medal": "Silver" - }, - { - "name": "Tamara Csipes", - "gender": "F", - "height": "176", - "weight": "78", - "sport": "Canoeing", - "team": "Hungary", - "noc": "HUN", - "age": 26, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Gold" - }, - { - "name": "Milo uk", - "gender": "M", - "height": "191", - "weight": "91", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 25, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Chay Crista Kerio Cullen", - "gender": "F", - "height": "182", - "weight": "74", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 30, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Rsul unayev", - "gender": "M", - "height": "171", - "weight": "66", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 25, - "event": "Wrestling Men's Welterweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Michal D'Almeida", - "gender": "M", - "height": "176", - "weight": "80", - "sport": "Cycling", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Cycling Men's Team Sprint", - "medal": "Bronze" - }, - { - "name": "Sabrina D'Angelo", - "gender": "F", - "height": "173", - "weight": "71", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 23, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Mayra Aguiar da Silva", - "gender": "F", - "height": "177", - "weight": "78", - "sport": "Judo", - "team": "Brazil", - "noc": "BRA", - "age": 25, - "event": "Judo Women's Half-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Rafael Carlos da Silva", - "gender": "M", - "height": "203", - "weight": "160", - "sport": "Judo", - "team": "Brazil", - "noc": "BRA", - "age": 29, - "event": "Judo Men's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Ana Dabovi", - "gender": "F", - "height": "183", - "weight": "70", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 26, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Milica Dabovi", - "gender": "F", - "height": "173", - "weight": "63", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 34, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Sara Ilonka Dbritz", - "gender": "F", - "height": "171", - "weight": "59", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Lisa Karolina Viktoria Dahlkvist", - "gender": "F", - "height": "173", - "weight": "66", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 29, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Ro Masivesi Dakuwaqa", - "gender": "M", - "height": "190", - "weight": "105", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 22, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Thomas Robert \"Tom\" Daley", - "gender": "M", - "height": "177", - "weight": "74", - "sport": "Diving", - "team": "Great Britain", - "noc": "GBR", - "age": 22, - "event": "Diving Men's Synchronized Platform", - "medal": "Bronze" - }, - { - "name": "Francesca Dallap", - "gender": "F", - "height": "163", - "weight": "57", - "sport": "Diving", - "team": "Italy", - "noc": "ITA", - "age": 30, - "event": "Diving Women's Synchronized Springboard", - "medal": "Silver" - }, - { - "name": "Chloe Elysha Dalton", - "gender": "F", - "height": "180", - "weight": "72", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 23, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Blandine Dancette", - "gender": "F", - "height": "169", - "weight": "60", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Emmanuel Shinkut Daniel", - "gender": "M", - "height": "174", - "weight": "88", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 22, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Alexandra Mary L. \"Alex\" Danson", - "gender": "F", - "height": "167", - "weight": "56", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Hannah Darling", - "gender": "F", - "height": "174", - "weight": "72", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 20, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Lisa Darmanin", - "gender": "F", - "height": "168", - "weight": "65", - "sport": "Sailing", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Sailing Mixed Multihull", - "medal": "Silver" - }, - { - "name": "Tuyana Norpolovna Dashidorzhiyeva", - "gender": "F", - "height": "169", - "weight": "57", - "sport": "Archery", - "team": "Russia", - "noc": "RUS", - "age": 20, - "event": "Archery Women's Team", - "medal": "Silver" - }, - { - "name": "James Davies", - "gender": "M", - "height": "181", - "weight": "98", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Lucy Davis", - "gender": "F", - "height": "165", - "weight": "55", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Silver" - }, - { - "name": "Edward James Eddie Dawkins", - "gender": "M", - "height": "185", - "weight": "93", - "sport": "Cycling", - "team": "New Zealand", - "noc": "NZL", - "age": 27, - "event": "Cycling Men's Team Sprint", - "medal": "Silver" - }, - { - "name": "Christine Day", - "gender": "F", - "height": "168", - "weight": "51", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 29, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Eva Roma Maria de Goede", - "gender": "F", - "height": "170", - "weight": "61", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 27, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Andre De Grasse", - "gender": "M", - "height": "176", - "weight": "70", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 21, - "event": "Athletics Men's 100 metres", - "medal": "Bronze" - }, - { - "name": "Andre De Grasse", - "gender": "M", - "height": "176", - "weight": "70", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 21, - "event": "Athletics Men's 200 metres", - "medal": "Silver" - }, - { - "name": "Andre De Grasse", - "gender": "M", - "height": "176", - "weight": "70", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 21, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "Juan Leon de Jongh", - "gender": "M", - "height": "175", - "weight": "87", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 28, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Zoe Michaela de Toledo", - "gender": "F", - "height": "172", - "weight": "58", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 29, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Xan de Waard", - "gender": "F", - "height": "163", - "weight": "55", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 20, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Hlne Defrance", - "gender": "F", - "height": "179", - "weight": "66", - "sport": "Sailing", - "team": "France", - "noc": "FRA", - "age": 29, - "event": "Sailing Women's Two Person Dinghy", - "medal": "Bronze" - }, - { - "name": "Marco Del Lungo", - "gender": "M", - "height": "190", - "weight": "97", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 26, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Juan Martn del Potro", - "gender": "M", - "height": "198", - "weight": "97", - "sport": "Tennis", - "team": "Argentina", - "noc": "ARG", - "age": 27, - "event": "Tennis Men's Singles", - "medal": "Silver" - }, - { - "name": "Elena Delle Donne", - "gender": "F", - "height": "195", - "weight": "86", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Siraba Dembl", - "gender": "F", - "height": "172", - "weight": "64", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 30, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Mirela Krasimirova Demireva", - "gender": "F", - "height": "180", - "weight": "58", - "sport": "Athletics", - "team": "Bulgaria", - "noc": "BUL", - "age": 26, - "event": "Athletics Women's High Jump", - "medal": "Silver" - }, - { - "name": "Soner Demirta", - "gender": "M", - "height": "170", - "weight": "74", - "sport": "Wrestling", - "team": "Turkey", - "noc": "TUR", - "age": 25, - "event": "Wrestling Men's Middleweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Nicholas Charles \"Nick\" Dempsey", - "gender": "M", - "height": "180", - "weight": "71", - "sport": "Sailing", - "team": "Great Britain", - "noc": "GBR", - "age": 35, - "event": "Sailing Men's Windsurfer", - "medal": "Silver" - }, - { - "name": "Valentin Demyanenko", - "gender": "M", - "height": "193", - "weight": "93", - "sport": "Canoeing", - "team": "Azerbaijan", - "noc": "AZE", - "age": 32, - "event": "Canoeing Men's Canadian Singles, 200 metres", - "medal": "Silver" - }, - { - "name": "Felix Denayer", - "gender": "M", - "height": "190", - "weight": "85", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 26, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Deng Shudi", - "gender": "M", - "height": "163", - "weight": "58", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Gymnastics Men's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Deng Wei", - "gender": "F", - "height": "159", - "weight": "63", - "sport": "Weightlifting", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Weightlifting Women's Middleweight", - "medal": "Gold" - }, - { - "name": "Aleksey Alekseyevich Denisenko", - "gender": "M", - "height": "185", - "weight": "68", - "sport": "Taekwondo", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Taekwondo Men's Featherweight", - "medal": "Silver" - }, - { - "name": "Inna Vasilyevna Deriglazova", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 26, - "event": "Fencing Women's Foil, Individual", - "medal": "Gold" - }, - { - "name": "DeMar Darnell DeRozan", - "gender": "M", - "height": "201", - "weight": "99", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Gabriele Detti", - "gender": "M", - "height": "184", - "weight": "79", - "sport": "Swimming", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Swimming Men's 400 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Gabriele Detti", - "gender": "M", - "height": "184", - "weight": "79", - "sport": "Swimming", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Swimming Men's 1,500 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Daniel Deuer", - "gender": "M", - "height": "190", - "weight": "76", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 34, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Bronze" - }, - { - "name": "Jolien D'hoore", - "gender": "F", - "height": "176", - "weight": "64", - "sport": "Cycling", - "team": "Belgium", - "noc": "BEL", - "age": 26, - "event": "Cycling Women's Omnium", - "medal": "Bronze" - }, - { - "name": "Marco Di Costanzo", - "gender": "M", - "height": "184", - "weight": "87", - "sport": "Rowing", - "team": "Italy", - "noc": "ITA", - "age": 24, - "event": "Rowing Men's Coxless Pairs", - "medal": "Bronze" - }, - { - "name": "Elisa Di Francisca", - "gender": "F", - "height": "177", - "weight": "65", - "sport": "Fencing", - "team": "Italy", - "noc": "ITA", - "age": 33, - "event": "Fencing Women's Foil, Individual", - "medal": "Silver" - }, - { - "name": "Francesco Di Fulvio", - "gender": "M", - "height": "190", - "weight": "88", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 22, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Tania Di Mario", - "gender": "F", - "height": "168", - "weight": "62", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 37, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Emily Jane Diamond", - "gender": "F", - "height": "173", - "weight": "58", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Hidilyn Diaz", - "gender": "F", - "height": "149", - "weight": "53", - "sport": "Weightlifting", - "team": "Philippines", - "noc": "PHI", - "age": 25, - "event": "Weightlifting Women's Featherweight", - "medal": "Silver" - }, - { - "name": "Genzebe Dibaba Keneni", - "gender": "F", - "height": "168", - "weight": "52", - "sport": "Athletics", - "team": "Ethiopia", - "noc": "ETH", - "age": 25, - "event": "Athletics Women's 1,500 metres", - "medal": "Silver" - }, - { - "name": "Mare Dibaba Hurssa (-Ibrahimova-)", - "gender": "F", - "height": "156", - "weight": "45", - "sport": "Athletics", - "team": "Ethiopia", - "noc": "ETH", - "age": 26, - "event": "Athletics Women's Marathon", - "medal": "Bronze" - }, - { - "name": "Tirunesh Dibaba Keneni", - "gender": "F", - "height": "166", - "weight": "50", - "sport": "Athletics", - "team": "Ethiopia", - "noc": "ETH", - "age": 31, - "event": "Athletics Women's 10,000 metres", - "medal": "Bronze" - }, - { - "name": "Aurimas Didbalis", - "gender": "M", - "height": "172", - "weight": "94", - "sport": "Weightlifting", - "team": "Lithuania", - "noc": "LTU", - "age": 25, - "event": "Weightlifting Men's Middle-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Heidi Diethelm Gerber", - "gender": "F", - "height": "168", - "weight": "93", - "sport": "Shooting", - "team": "Switzerland", - "noc": "SUI", - "age": 47, - "event": "Shooting Women's Sporting Pistol, 25 metres", - "medal": "Bronze" - }, - { - "name": "Tina Dietze", - "gender": "F", - "height": "172", - "weight": "68", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Canoeing Women's Kayak Doubles, 500 metres", - "medal": "Silver" - }, - { - "name": "Tina Dietze", - "gender": "F", - "height": "172", - "weight": "68", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Silver" - }, - { - "name": "Ding Ning", - "gender": "F", - "height": "171", - "weight": "63", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Table Tennis Women's Singles", - "medal": "Gold" - }, - { - "name": "Ding Ning", - "gender": "F", - "height": "171", - "weight": "63", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Table Tennis Women's Team", - "medal": "Gold" - }, - { - "name": "Ding Xia", - "gender": "F", - "height": "180", - "weight": "67", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Loredana Dinu (Iordchioiu-)", - "gender": "F", - "height": "168", - "weight": "60", - "sport": "Fencing", - "team": "Romania", - "noc": "ROU", - "age": 32, - "event": "Fencing Women's epee, Team", - "medal": "Gold" - }, - { - "name": "Adrien Dipanda", - "gender": "M", - "height": "202", - "weight": "105", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Madeline Jane \"Maya\" DiRado", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Madeline Jane \"Maya\" DiRado", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Swimming Women's 200 metres Backstroke", - "medal": "Gold" - }, - { - "name": "Madeline Jane \"Maya\" DiRado", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Swimming Women's 200 metres Individual Medley", - "medal": "Bronze" - }, - { - "name": "Madeline Jane \"Maya\" DiRado", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Swimming Women's 400 metres Individual Medley", - "medal": "Silver" - }, - { - "name": "Carlien Clemens Dirkse van den Heuvel", - "gender": "F", - "height": "170", - "weight": "56", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 29, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Christian Dissinger", - "gender": "M", - "height": "203", - "weight": "105", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Denis Sergeyevich Dmitriyev", - "gender": "M", - "height": "177", - "weight": "90", - "sport": "Cycling", - "team": "Russia", - "noc": "RUS", - "age": 30, - "event": "Cycling Men's Sprint", - "medal": "Bronze" - }, - { - "name": "Darya Yevgenyevna Dmitriyeva", - "gender": "F", - "height": "178", - "weight": "74", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 20, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Sbastien Dockier", - "gender": "M", - "height": "175", - "weight": "74", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 26, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "John-John Dohmen", - "gender": "M", - "height": "174", - "weight": "69", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 28, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Slvia Domnguez Fernndez", - "gender": "F", - "height": "167", - "weight": "64", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 29, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Apisai Raviyawa Domolailai", - "gender": "M", - "height": "192", - "weight": "98", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 27, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Dong Bin", - "gender": "M", - "height": "180", - "weight": "74", - "sport": "Athletics", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Athletics Men's Triple Jump", - "medal": "Bronze" - }, - { - "name": "Dong Dong", - "gender": "M", - "height": "168", - "weight": "57", - "sport": "Trampolining", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Trampolining Men's Individual", - "medal": "Silver" - }, - { - "name": "Dorjnyambuugiin Otgondalai", - "gender": "M", - "height": "170", - "weight": "60", - "sport": "Boxing", - "team": "Mongolia", - "noc": "MGL", - "age": 28, - "event": "Boxing Men's Lightweight", - "medal": "Bronze" - }, - { - "name": "Dorjsurengiin Sumiya", - "gender": "F", - "height": "160", - "weight": "59", - "sport": "Judo", - "team": "Mongolia", - "noc": "MGL", - "age": 25, - "event": "Judo Women's Lightweight", - "medal": "Silver" - }, - { - "name": "Sam Dorman", - "gender": "M", - "height": "175", - "weight": "77", - "sport": "Diving", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Diving Men's Synchronized Springboard", - "medal": "Silver" - }, - { - "name": "Sara Dosho", - "gender": "F", - "height": "159", - "weight": "69", - "sport": "Wrestling", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Wrestling Women's Light-Heavyweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Josef Dostl", - "gender": "M", - "height": "202", - "weight": "115", - "sport": "Canoeing", - "team": "Czech Republic", - "noc": "CZE", - "age": 23, - "event": "Canoeing Men's Kayak Singles, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Josef Dostl", - "gender": "M", - "height": "202", - "weight": "115", - "sport": "Canoeing", - "team": "Czech Republic", - "noc": "CZE", - "age": 23, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Gabrielle Christina Victoria \"Gabby\" Douglas", - "gender": "F", - "height": "157", - "weight": "50", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Gymnastics Women's Team All-Around", - "medal": "Gold" - }, - { - "name": "Douglas dos Santos Justino de Melo", - "gender": "M", - "height": "173", - "weight": "69", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Owain Daniel John Doull", - "gender": "M", - "height": "181", - "weight": "73", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Gold" - }, - { - "name": "Felix Drahotta", - "gender": "M", - "height": "200", - "weight": "102", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Caeleb Remel Dressel", - "gender": "M", - "height": "191", - "weight": "86", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Caeleb Remel Dressel", - "gender": "M", - "height": "191", - "weight": "86", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Derek Drouin", - "gender": "M", - "height": "196", - "weight": "83", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 26, - "event": "Athletics Men's High Jump", - "medal": "Gold" - }, - { - "name": "Daniela Druncea", - "gender": "F", - "height": "150", - "weight": "50", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 25, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Paul Drux", - "gender": "M", - "height": "192", - "weight": "106", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Alexander Mah Owens Drysdale", - "gender": "M", - "height": "200", - "weight": "102", - "sport": "Rowing", - "team": "New Zealand", - "noc": "NZL", - "age": 37, - "event": "Rowing Men's Single Sculls", - "medal": "Gold" - }, - { - "name": "Du Li", - "gender": "F", - "height": "170", - "weight": "55", - "sport": "Shooting", - "team": "China", - "noc": "CHN", - "age": 34, - "event": "Shooting Women's Air Rifle, 10 metres", - "medal": "Silver" - }, - { - "name": "Du Li", - "gender": "F", - "height": "170", - "weight": "55", - "sport": "Shooting", - "team": "China", - "noc": "CHN", - "age": 34, - "event": "Shooting Women's Small-Bore Rifle, Three Positions, 50 metres", - "medal": "Bronze" - }, - { - "name": "Duan Jingli", - "gender": "F", - "height": "180", - "weight": "76", - "sport": "Rowing", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Rowing Women's Single Sculls", - "medal": "Bronze" - }, - { - "name": "Charlotte Susan Jane Dujardin", - "gender": "F", - "height": "170", - "weight": "57", - "sport": "Equestrianism", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Equestrianism Mixed Dressage, Individual", - "medal": "Gold" - }, - { - "name": "Charlotte Susan Jane Dujardin", - "gender": "F", - "height": "170", - "weight": "57", - "sport": "Equestrianism", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Silver" - }, - { - "name": "Tom Dumoulin", - "gender": "M", - "height": "186", - "weight": "70", - "sport": "Cycling", - "team": "Netherlands", - "noc": "NED", - "age": 25, - "event": "Cycling Men's Individual Time Trial", - "medal": "Silver" - }, - { - "name": "Vitaly Vladimirovich Dunaytsev", - "gender": "M", - "height": "174", - "weight": "64", - "sport": "Boxing", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Boxing Men's Light-Welterweight", - "medal": "Bronze" - }, - { - "name": "Fitzroy Junior Dunkley", - "gender": "M", - "height": "195", - "weight": "79", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 23, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Joshua Dunkley-Smith", - "gender": "M", - "height": "194", - "weight": "98", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 27, - "event": "Rowing Men's Coxless Fours", - "medal": "Silver" - }, - { - "name": "Kevin Wayne Durant", - "gender": "M", - "height": "206", - "weight": "105", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Scott David Durant", - "gender": "M", - "height": "196", - "weight": "96", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Hasanboy Dusmatov", - "gender": "M", - "height": "156", - "weight": "49", - "sport": "Boxing", - "team": "Uzbekistan", - "noc": "UZB", - "age": 23, - "event": "Boxing Men's Light-Flyweight", - "medal": "Gold" - }, - { - "name": "Phillip Peter Dutton", - "gender": "M", - "height": "168", - "weight": "68", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 52, - "event": "Equestrianism Mixed Three-Day Event, Individual", - "medal": "Bronze" - }, - { - "name": "Conor James Dwyer", - "gender": "M", - "height": "196", - "weight": "89", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Swimming Men's 200 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Conor James Dwyer", - "gender": "M", - "height": "196", - "weight": "89", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Yekaterina Vladimirovna Dyachenko", - "gender": "F", - "height": "167", - "weight": "53", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Fencing Women's Sabre, Team", - "medal": "Gold" - }, - { - "name": "Ivan Fyodorovich Dychko", - "gender": "M", - "height": "205", - "weight": "91", - "sport": "Boxing", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 25, - "event": "Boxing Men's Super-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Chlo Dygert (-Owen)", - "gender": "F", - "height": "176", - "weight": "66", - "sport": "Cycling", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Cycling Women's Team Pursuit", - "medal": "Silver" - }, - { - "name": "Ashton James Eaton", - "gender": "M", - "height": "186", - "weight": "81", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Athletics Men's Decathlon", - "medal": "Gold" - }, - { - "name": "Masashi Ebinuma", - "gender": "M", - "height": "170", - "weight": "66", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 26, - "event": "Judo Men's Half-Lightweight", - "medal": "Bronze" - }, - { - "name": "Jessica Jane \"Jess\" Eddie", - "gender": "F", - "height": "178", - "weight": "75", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "der Francis Carbonera", - "gender": "M", - "height": "205", - "weight": "107", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 32, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Alexander \"Alex\" Edmondson", - "gender": "M", - "height": "184", - "weight": "76", - "sport": "Cycling", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Silver" - }, - { - "name": "Batrice Edwige", - "gender": "F", - "height": "182", - "weight": "76", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Naito Ehara", - "gender": "M", - "height": "172", - "weight": "59", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 23, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Stefaniya Aleksandrovna Elfutina", - "gender": "F", - "height": "170", - "weight": "59", - "sport": "Sailing", - "team": "Russia", - "noc": "RUS", - "age": 19, - "event": "Sailing Women's Windsurfer", - "medal": "Bronze" - }, - { - "name": "Marcus John Ellis", - "gender": "M", - "height": "175", - "weight": "80", - "sport": "Badminton", - "team": "Great Britain", - "noc": "GBR", - "age": 26, - "event": "Badminton Men's Doubles", - "medal": "Bronze" - }, - { - "name": "Taylor Ellis-Watson", - "gender": "F", - "height": "183", - "weight": "65", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Brady Lee Ellison", - "gender": "M", - "height": "181", - "weight": "86", - "sport": "Archery", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Archery Men's Individual", - "medal": "Bronze" - }, - { - "name": "Brady Lee Ellison", - "gender": "M", - "height": "181", - "weight": "86", - "sport": "Archery", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Archery Men's Team", - "medal": "Silver" - }, - { - "name": "Amanda Elmore", - "gender": "F", - "height": "180", - "weight": "80", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Brittany Joyce Elmslie", - "gender": "F", - "height": "179", - "weight": "73", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Brittany Joyce Elmslie", - "gender": "F", - "height": "179", - "weight": "73", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Giulia Enrica Emmolo", - "gender": "F", - "height": "171", - "weight": "67", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 24, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Tnu Endrekson", - "gender": "M", - "height": "198", - "weight": "104", - "sport": "Rowing", - "team": "Estonia", - "noc": "EST", - "age": 37, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Bronze" - }, - { - "name": "Jessica Phyllis Ennis-Hill", - "gender": "F", - "height": "165", - "weight": "57", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 30, - "event": "Athletics Women's Heptathlon", - "medal": "Silver" - }, - { - "name": "Magdalena \"Magda\" Eriksson", - "gender": "F", - "height": "172", - "weight": "66", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 22, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Saturday Keigo Erimuya", - "gender": "M", - "height": "171", - "weight": "NA", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 18, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Anthony Lee Ervin", - "gender": "M", - "height": "191", - "weight": "80", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 35, - "event": "Swimming Men's 50 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Anthony Lee Ervin", - "gender": "M", - "height": "191", - "weight": "80", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 35, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Srgio \"Escadinha\" Dutra dos Santos", - "gender": "M", - "height": "184", - "weight": "78", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 40, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Mara del Rosario Espinoza Espinoza", - "gender": "F", - "height": "173", - "weight": "70", - "sport": "Taekwondo", - "team": "Mexico", - "noc": "MEX", - "age": 28, - "event": "Taekwondo Women's Heavyweight", - "medal": "Silver" - }, - { - "name": "Chloe Esposito", - "gender": "F", - "height": "168", - "weight": "55", - "sport": "Modern Pentathlon", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Modern Pentathlon Women's Individual", - "medal": "Gold" - }, - { - "name": "Oghenekaro Peter Etebo", - "gender": "M", - "height": "172", - "weight": "71", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 20, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Gemma Etheridge", - "gender": "F", - "height": "169", - "weight": "66", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 29, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Imoh Ezekiel", - "gender": "M", - "height": "171", - "weight": "80", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 22, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Ludovic Fabregas", - "gender": "M", - "height": "198", - "weight": "100", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 20, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Simone Facey", - "gender": "F", - "height": "162", - "weight": "53", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 31, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Fan Yilin", - "gender": "F", - "height": "148", - "weight": "37", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 16, - "event": "Gymnastics Women's Team All-Around", - "medal": "Bronze" - }, - { - "name": "ime Fantela", - "gender": "M", - "height": "183", - "weight": "67", - "sport": "Sailing", - "team": "Croatia", - "noc": "CRO", - "age": 30, - "event": "Sailing Men's Two Person Dinghy", - "medal": "Gold" - }, - { - "name": "Mohamed Muktar Jama \"Mo\" Farah", - "gender": "M", - "height": "175", - "weight": "58", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 33, - "event": "Athletics Men's 5,000 metres", - "medal": "Gold" - }, - { - "name": "Mohamed Muktar Jama \"Mo\" Farah", - "gender": "M", - "height": "175", - "weight": "58", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 33, - "event": "Athletics Men's 10,000 metres", - "medal": "Gold" - }, - { - "name": "Bianca Farella", - "gender": "F", - "height": "173", - "weight": "73", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Kent Farrington", - "gender": "M", - "height": "173", - "weight": "66", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 35, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Silver" - }, - { - "name": "Steffen Fth", - "gender": "M", - "height": "199", - "weight": "97", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Rachel Fattal", - "gender": "F", - "height": "173", - "weight": "65", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Krisztina Fazekas Zur", - "gender": "F", - "height": "172", - "weight": "64", - "sport": "Canoeing", - "team": "Hungary", - "noc": "HUN", - "age": 36, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Gold" - }, - { - "name": "James \"Jimmy\" Feigen", - "gender": "M", - "height": "196", - "weight": "98", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Felipe Anderson Perieira Gomes", - "gender": "M", - "height": "178", - "weight": "66", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 23, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Allyson Michelle Felix", - "gender": "F", - "height": "168", - "weight": "56", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Women's 400 metres", - "medal": "Silver" - }, - { - "name": "Allyson Michelle Felix", - "gender": "F", - "height": "168", - "weight": "56", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Allyson Michelle Felix", - "gender": "F", - "height": "168", - "weight": "56", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Feng Shanshan", - "gender": "F", - "height": "170", - "weight": "85", - "sport": "Golf", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Golf Women's Individual", - "medal": "Bronze" - }, - { - "name": "Rodolfo \"Rudy\" Fernndez Farrs", - "gender": "M", - "height": "196", - "weight": "84", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 31, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Rossella Fiamingo", - "gender": "F", - "height": "167", - "weight": "50", - "sport": "Fencing", - "team": "Italy", - "noc": "ITA", - "age": 25, - "event": "Fencing Women's epee, Individual", - "medal": "Silver" - }, - { - "name": "Marco Fichera", - "gender": "M", - "height": "180", - "weight": "74", - "sport": "Fencing", - "team": "Italy", - "noc": "ITA", - "age": 22, - "event": "Fencing Men's epee, Team", - "medal": "Silver" - }, - { - "name": "Connor Evan Fields", - "gender": "M", - "height": "183", - "weight": "88", - "sport": "Cycling", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Cycling Men's BMX", - "medal": "Gold" - }, - { - "name": "Pietro Figlioli", - "gender": "M", - "height": "191", - "weight": "98", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 32, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "scar Albeyro Figueroa Mosquera", - "gender": "M", - "height": "159", - "weight": "62", - "sport": "Weightlifting", - "team": "Colombia", - "noc": "COL", - "age": 33, - "event": "Weightlifting Men's Featherweight", - "medal": "Gold" - }, - { - "name": "Roseline Filion", - "gender": "F", - "height": "152", - "weight": "52", - "sport": "Diving", - "team": "Canada", - "noc": "CAN", - "age": 29, - "event": "Diving Women's Synchronized Platform", - "medal": "Bronze" - }, - { - "name": "Filip Filipovi", - "gender": "M", - "height": "196", - "weight": "101", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 29, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Yoel Segundo Finol Rivas", - "gender": "M", - "height": "168", - "weight": "52", - "sport": "Boxing", - "team": "Venezuela", - "noc": "VEN", - "age": 19, - "event": "Boxing Men's Flyweight", - "medal": "Bronze" - }, - { - "name": "Aria Fischer", - "gender": "F", - "height": "183", - "weight": "78", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 17, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Makenzie Fischer", - "gender": "F", - "height": "186", - "weight": "74", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "sa Nilla Maria Fischer", - "gender": "F", - "height": "176", - "weight": "68", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 32, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Theresa Matauaina Fitzpatrick", - "gender": "F", - "height": "168", - "weight": "75", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 21, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Jessie Alexandra Fleming", - "gender": "F", - "height": "164", - "weight": "55", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 18, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "David Florence", - "gender": "M", - "height": "188", - "weight": "76", - "sport": "Canoeing", - "team": "Great Britain", - "noc": "GBR", - "age": 33, - "event": "Canoeing Men's Canadian Doubles, Slalom", - "medal": "Silver" - }, - { - "name": "Casper Michael von Folsach", - "gender": "M", - "height": "191", - "weight": "82", - "sport": "Cycling", - "team": "Denmark", - "noc": "DEN", - "age": 23, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Bronze" - }, - { - "name": "Andrea Fondelli", - "gender": "M", - "height": "190", - "weight": "96", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 22, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Nouchka Fontijn", - "gender": "F", - "height": "180", - "weight": "75", - "sport": "Boxing", - "team": "Netherlands", - "noc": "NED", - "age": 28, - "event": "Boxing Women's Middleweight", - "medal": "Silver" - }, - { - "name": "Shashalee Forbes", - "gender": "F", - "height": "160", - "weight": "55", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 20, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Karsten Forsterling", - "gender": "M", - "height": "191", - "weight": "88", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 36, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Silver" - }, - { - "name": "Sylvia Shaqueria Fowles", - "gender": "F", - "height": "198", - "weight": "90", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Jessica Esther \"Jess\" Fox", - "gender": "F", - "height": "166", - "weight": "60", - "sport": "Canoeing", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Canoeing Women's Kayak Singles, Slalom", - "medal": "Bronze" - }, - { - "name": "Marit Malm Frafjord", - "gender": "F", - "height": "182", - "weight": "78", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 30, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Javon Francis", - "gender": "M", - "height": "183", - "weight": "68", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 21, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Phyllis Chanez Francis", - "gender": "F", - "height": "180", - "weight": "72", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Tanja Chiara Frank", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Sailing", - "team": "Austria", - "noc": "AUT", - "age": 23, - "event": "Sailing Mixed Multihull", - "medal": "Bronze" - }, - { - "name": "Melissa Jeanette \"Missy\" Franklin", - "gender": "F", - "height": "188", - "weight": "77", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Anna Jenny Eva Maria Fransson (Magnusson-)", - "gender": "F", - "height": "169", - "weight": "73", - "sport": "Wrestling", - "team": "Sweden", - "noc": "SWE", - "age": 29, - "event": "Wrestling Women's Light-Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Shelly-Ann Fraser-Pryce", - "gender": "F", - "height": "160", - "weight": "57", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 29, - "event": "Athletics Women's 100 metres", - "medal": "Bronze" - }, - { - "name": "Shelly-Ann Fraser-Pryce", - "gender": "F", - "height": "160", - "weight": "57", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 29, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Teresa Frassinetti", - "gender": "F", - "height": "178", - "weight": "75", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 30, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Carl Peder Fredricson", - "gender": "M", - "height": "189", - "weight": "80", - "sport": "Equestrianism", - "team": "Sweden", - "noc": "SWE", - "age": 44, - "event": "Equestrianism Mixed Jumping, Individual", - "medal": "Silver" - }, - { - "name": "Christopher Clive \"Chris\" Froome", - "gender": "M", - "height": "185", - "weight": "69", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Cycling Men's Individual Time Trial", - "medal": "Bronze" - }, - { - "name": "Fu Haifeng", - "gender": "M", - "height": "181", - "weight": "78", - "sport": "Badminton", - "team": "China-1", - "noc": "CHN", - "age": 32, - "event": "Badminton Men's Doubles", - "medal": "Gold" - }, - { - "name": "Fu Yuanhui", - "gender": "F", - "height": "179", - "weight": "63", - "sport": "Swimming", - "team": "China", - "noc": "CHN", - "age": 20, - "event": "Swimming Women's 100 metres Backstroke", - "medal": "Bronze" - }, - { - "name": "Florian Fuchs", - "gender": "M", - "height": "185", - "weight": "74", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Jakob Diemer Fuglsang", - "gender": "M", - "height": "183", - "weight": "69", - "sport": "Cycling", - "team": "Denmark", - "noc": "DEN", - "age": 31, - "event": "Cycling Men's Road Race, Individual", - "medal": "Silver" - }, - { - "name": "Ai Fukuhara", - "gender": "F", - "height": "156", - "weight": "48", - "sport": "Table Tennis", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Table Tennis Women's Team", - "medal": "Bronze" - }, - { - "name": "Magdalena Fularczyk-Kozowska", - "gender": "F", - "height": "173", - "weight": "70", - "sport": "Rowing", - "team": "Poland", - "noc": "POL", - "age": 29, - "event": "Rowing Women's Double Sculls", - "medal": "Gold" - }, - { - "name": "Moritz Frste", - "gender": "M", - "height": "190", - "weight": "89", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 31, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Gabriel Barbosa Almeida", - "gender": "M", - "height": "178", - "weight": "68", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 19, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Gabriel Fernando de Jesus", - "gender": "M", - "height": "175", - "weight": "68", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 19, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Otgontsetseg Galbadrakhyn", - "gender": "F", - "height": "170", - "weight": "63", - "sport": "Judo", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 24, - "event": "Judo Women's Extra-Lightweight", - "medal": "Bronze" - }, - { - "name": "Valentino Gallo", - "gender": "M", - "height": "192", - "weight": "95", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 31, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Jacqueline \"Jackie\" Galloway", - "gender": "F", - "height": "178", - "weight": "80", - "sport": "Taekwondo", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Taekwondo Women's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Dzhavid Shakirovich Gamzatov", - "gender": "M", - "height": "176", - "weight": "91", - "sport": "Wrestling", - "team": "Belarus", - "noc": "BLR", - "age": 26, - "event": "Wrestling Men's Light-Heavyweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Gao Lei", - "gender": "M", - "height": "170", - "weight": "64", - "sport": "Trampolining", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Trampolining Men's Individual", - "medal": "Bronze" - }, - { - "name": "Xavier Garca Gadea", - "gender": "M", - "height": "198", - "weight": "92", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 32, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Steven Gardiner", - "gender": "M", - "height": "193", - "weight": "94", - "sport": "Athletics", - "team": "Bahamas", - "noc": "BAH", - "age": 20, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "English Gardner", - "gender": "F", - "height": "168", - "weight": "55", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Denis Gargaud Chanut", - "gender": "M", - "height": "181", - "weight": "76", - "sport": "Canoeing", - "team": "France", - "noc": "FRA", - "age": 29, - "event": "Canoeing Men's Canadian Singles, Slalom", - "medal": "Gold" - }, - { - "name": "Arianna Garibotti", - "gender": "F", - "height": "169", - "weight": "64", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 26, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Daniele Garozzo", - "gender": "M", - "height": "177", - "weight": "65", - "sport": "Fencing", - "team": "Italy", - "noc": "ITA", - "age": 23, - "event": "Fencing Men's Foil, Individual", - "medal": "Gold" - }, - { - "name": "Enrico Garozzo", - "gender": "M", - "height": "190", - "weight": "70", - "sport": "Fencing", - "team": "Italy", - "noc": "ITA", - "age": 27, - "event": "Fencing Men's epee, Team", - "medal": "Silver" - }, - { - "name": "Zach Garrett", - "gender": "M", - "height": "178", - "weight": "64", - "sport": "Archery", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Archery Men's Team", - "medal": "Silver" - }, - { - "name": "Pau Gasol Sez", - "gender": "M", - "height": "215", - "weight": "115", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 36, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Justin Alexander Gatlin", - "gender": "M", - "height": "186", - "weight": "80", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 34, - "event": "Athletics Men's 100 metres", - "medal": "Silver" - }, - { - "name": "Artemi Gavezou Castro", - "gender": "F", - "height": "169", - "weight": "55", - "sport": "Rhythmic Gymnastics", - "team": "Spain", - "noc": "ESP", - "age": 22, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Silver" - }, - { - "name": "Yuliya Petrovna Gavrilova", - "gender": "F", - "height": "169", - "weight": "56", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Fencing Women's Sabre, Team", - "medal": "Gold" - }, - { - "name": "Fazliddin Khasanbayevich Gaybnazarov", - "gender": "M", - "height": "169", - "weight": "64", - "sport": "Boxing", - "team": "Uzbekistan", - "noc": "UZB", - "age": 25, - "event": "Boxing Men's Light-Welterweight", - "medal": "Gold" - }, - { - "name": "Ruth Marie Christelle Gbagbi", - "gender": "F", - "height": "176", - "weight": "65", - "sport": "Taekwondo", - "team": "Cote d'Ivoire", - "noc": "CIV", - "age": 22, - "event": "Taekwondo Women's Welterweight", - "medal": "Bronze" - }, - { - "name": "Hagos Gebrhiwet Berhe", - "gender": "M", - "height": "171", - "weight": "56", - "sport": "Athletics", - "team": "Ethiopia", - "noc": "ETH", - "age": 22, - "event": "Athletics Men's 5,000 metres", - "medal": "Bronze" - }, - { - "name": "Justin Gilberto Geduld", - "gender": "M", - "height": "175", - "weight": "78", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 22, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Aniuar Borisovich Geduyev", - "gender": "M", - "height": "173", - "weight": "74", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 29, - "event": "Wrestling Men's Middleweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Uwe Gensheimer", - "gender": "M", - "height": "188", - "weight": "88", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Paul George", - "gender": "M", - "height": "206", - "weight": "99", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Vincent Grard", - "gender": "M", - "height": "189", - "weight": "100", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 29, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Aleksandra Viktorovna Gerasimenya", - "gender": "F", - "height": "175", - "weight": "60", - "sport": "Swimming", - "team": "Belarus", - "noc": "BLR", - "age": 30, - "event": "Swimming Women's 50 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Yarden Gerbi", - "gender": "F", - "height": "169", - "weight": "63", - "sport": "Judo", - "team": "Israel", - "noc": "ISR", - "age": 27, - "event": "Judo Women's Half-Middleweight", - "medal": "Bronze" - }, - { - "name": "Komeil Nemat Ghasemi", - "gender": "M", - "height": "186", - "weight": "115", - "sport": "Wrestling", - "team": "Iran", - "noc": "IRI", - "age": 28, - "event": "Wrestling Men's Super-Heavyweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Simona Cristina Gherman (Alexandru-)", - "gender": "F", - "height": "170", - "weight": "58", - "sport": "Fencing", - "team": "Romania", - "noc": "ROU", - "age": 31, - "event": "Fencing Women's epee, Team", - "medal": "Gold" - }, - { - "name": "Simone Giannelli", - "gender": "M", - "height": "198", - "weight": "92", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 19, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Spyridon \"Spyros\" Gianniotis", - "gender": "M", - "height": "185", - "weight": "78", - "sport": "Swimming", - "team": "Greece", - "noc": "GRE", - "age": 36, - "event": "Swimming Men's 10 kilometres Open Water", - "medal": "Silver" - }, - { - "name": "Laura Gil Collado", - "gender": "F", - "height": "191", - "weight": "78", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 24, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Juan Ignacio Gilardi", - "gender": "M", - "height": "186", - "weight": "91", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 34, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Kaleigh Gilchrist", - "gender": "F", - "height": "176", - "weight": "77", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Fabien Pierre Aurlien Dominique Gilot", - "gender": "M", - "height": "193", - "weight": "85", - "sport": "Swimming", - "team": "France", - "noc": "FRA", - "age": 32, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Matthias Lukas Ginter", - "gender": "M", - "height": "190", - "weight": "88", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 22, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Cameron Girdlestone", - "gender": "M", - "height": "190", - "weight": "92", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 28, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Silver" - }, - { - "name": "Niccol Gitto", - "gender": "M", - "height": "190", - "weight": "90", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 29, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Odette Giuffrida", - "gender": "F", - "height": "160", - "weight": "52", - "sport": "Judo", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Judo Women's Half-Lightweight", - "medal": "Silver" - }, - { - "name": "Shakhram Dzhamshedovich Giyasov", - "gender": "M", - "height": "174", - "weight": "69", - "sport": "Boxing", - "team": "Uzbekistan", - "noc": "UZB", - "age": 23, - "event": "Boxing Men's Welterweight", - "medal": "Silver" - }, - { - "name": "Jasmin Glaesser", - "gender": "F", - "height": "167", - "weight": "58", - "sport": "Cycling", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Cycling Women's Team Pursuit", - "medal": "Bronze" - }, - { - "name": "Josip Glasnovi", - "gender": "M", - "height": "178", - "weight": "82", - "sport": "Shooting", - "team": "Croatia", - "noc": "CRO", - "age": 33, - "event": "Shooting Men's Trap", - "medal": "Gold" - }, - { - "name": "Alisha Rebecca Glass", - "gender": "F", - "height": "183", - "weight": "72", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Laura Glauser", - "gender": "F", - "height": "178", - "weight": "65", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 22, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Helen Rachel M. Glover", - "gender": "F", - "height": "177", - "weight": "67", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 30, - "event": "Rowing Women's Coxless Pairs", - "medal": "Gold" - }, - { - "name": "Nadezhda Sergeyevna Glyzina-Fedotova", - "gender": "F", - "height": "175", - "weight": "68", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Serge David Gnabry", - "gender": "M", - "height": "173", - "weight": "74", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Tessa Gobbo", - "gender": "F", - "height": "185", - "weight": "82", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "ivko Goci", - "gender": "M", - "height": "193", - "weight": "93", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 33, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Lena Goeling", - "gender": "F", - "height": "171", - "weight": "56", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 30, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Goh Liu Ying", - "gender": "F", - "height": "166", - "weight": "56", - "sport": "Badminton", - "team": "Malaysia", - "noc": "MAS", - "age": 27, - "event": "Badminton Mixed Doubles", - "medal": "Silver" - }, - { - "name": "Goh V Shem", - "gender": "M", - "height": "180", - "weight": "70", - "sport": "Badminton", - "team": "Malaysia", - "noc": "MAS", - "age": 27, - "event": "Badminton Men's Doubles", - "medal": "Silver" - }, - { - "name": "Vladislav Olegovich Goncharov", - "gender": "M", - "height": "173", - "weight": "66", - "sport": "Trampolining", - "team": "Belarus", - "noc": "BLR", - "age": 20, - "event": "Trampolining Men's Individual", - "medal": "Gold" - }, - { - "name": "Gong Jinjie", - "gender": "F", - "height": "165", - "weight": "65", - "sport": "Cycling", - "team": "China", - "noc": "CHN", - "age": 29, - "event": "Cycling Women's Team Sprint", - "medal": "Gold" - }, - { - "name": "Gong Xiangyu", - "gender": "F", - "height": "186", - "weight": "72", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 19, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Joel Gonzlez Bonilla", - "gender": "M", - "height": "185", - "weight": "68", - "sport": "Taekwondo", - "team": "Spain", - "noc": "ESP", - "age": 26, - "event": "Taekwondo Men's Featherweight", - "medal": "Bronze" - }, - { - "name": "Mara Guadalupe Gonzlez Romero", - "gender": "F", - "height": "162", - "weight": "47", - "sport": "Athletics", - "team": "Mexico", - "noc": "MEX", - "age": 27, - "event": "Athletics Women's 20 kilometres Walk", - "medal": "Silver" - }, - { - "name": "Daniel Goodfellow", - "gender": "M", - "height": "167", - "weight": "58", - "sport": "Diving", - "team": "Great Britain", - "noc": "GBR", - "age": 19, - "event": "Diving Men's Synchronized Platform", - "medal": "Bronze" - }, - { - "name": "Chrisann Gordon", - "gender": "F", - "height": "168", - "weight": "65", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 21, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Leon Goretzka", - "gender": "M", - "height": "189", - "weight": "79", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Karina Khavazhevna Goricheva", - "gender": "F", - "height": "160", - "weight": "63", - "sport": "Weightlifting", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 23, - "event": "Weightlifting Women's Middleweight", - "medal": "Bronze" - }, - { - "name": "Giulia Gorlero", - "gender": "F", - "height": "180", - "weight": "73", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 25, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Kennedy Goss", - "gender": "F", - "height": "173", - "weight": "74", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 19, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Sarah Goss", - "gender": "F", - "height": "176", - "weight": "73", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 23, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Matthew Anthony W. \"Matt\" Gotrel", - "gender": "M", - "height": "195", - "weight": "95", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Simon Gougnard", - "gender": "M", - "height": "187", - "weight": "84", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 25, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Martine Soffiatti Grael", - "gender": "F", - "height": "168", - "weight": "62", - "sport": "Sailing", - "team": "Brazil", - "noc": "BRA", - "age": 25, - "event": "Sailing Women's Skiff", - "medal": "Gold" - }, - { - "name": "Katherine Jane Grainger", - "gender": "F", - "height": "183", - "weight": "78", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 40, - "event": "Rowing Women's Double Sculls", - "medal": "Silver" - }, - { - "name": "Mats Grambusch", - "gender": "M", - "height": "177", - "weight": "74", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 23, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Tom Grambusch", - "gender": "M", - "height": "185", - "weight": "85", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 20, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Laura Graves", - "gender": "F", - "height": "173", - "weight": "55", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Bronze" - }, - { - "name": "Mathieu Grbille", - "gender": "M", - "height": "198", - "weight": "100", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Draymond Jamal Green", - "gender": "M", - "height": "200", - "weight": "104", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Ellia Green", - "gender": "F", - "height": "172", - "weight": "75", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 23, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Alexander John \"Alex\" Gregory", - "gender": "M", - "height": "198", - "weight": "97", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 32, - "event": "Rowing Men's Coxless Fours", - "medal": "Gold" - }, - { - "name": "Catherine Rose \"Katie\" Greves (-Solesbury)", - "gender": "F", - "height": "179", - "weight": "71", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 33, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Sam Griffiths", - "gender": "M", - "height": "171", - "weight": "73", - "sport": "Equestrianism", - "team": "Australia", - "noc": "AUS", - "age": 44, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Bronze" - }, - { - "name": "Kirill Akopovich Grigoryan", - "gender": "M", - "height": "179", - "weight": "88", - "sport": "Shooting", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Shooting Men's Small-Bore Rifle, Prone, 50 metres", - "medal": "Bronze" - }, - { - "name": "Kari Aalvik Grimsb", - "gender": "F", - "height": "180", - "weight": "80", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 31, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Brittney Yevette Griner", - "gender": "F", - "height": "203", - "weight": "94", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Anna Sergeyevna Grinyova", - "gender": "F", - "height": "185", - "weight": "87", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Mindaugas Grikonis", - "gender": "M", - "height": "190", - "weight": "92", - "sport": "Rowing", - "team": "Lithuania", - "noc": "LTU", - "age": 30, - "event": "Rowing Men's Double Sculls", - "medal": "Silver" - }, - { - "name": "Marcus Gro", - "gender": "M", - "height": "182", - "weight": "85", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Canoeing Men's Kayak Doubles, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Marcus Gro", - "gender": "M", - "height": "182", - "weight": "85", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Madeline Groves", - "gender": "F", - "height": "179", - "weight": "66", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 21, - "event": "Swimming Women's 200 metres Butterfly", - "medal": "Silver" - }, - { - "name": "Madeline Groves", - "gender": "F", - "height": "179", - "weight": "66", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 21, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Hans Gruhne", - "gender": "M", - "height": "193", - "weight": "92", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Gold" - }, - { - "name": "Gauthier Grumier", - "gender": "M", - "height": "188", - "weight": "83", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 32, - "event": "Fencing Men's epee, Individual", - "medal": "Bronze" - }, - { - "name": "Gauthier Grumier", - "gender": "M", - "height": "188", - "weight": "83", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 32, - "event": "Fencing Men's epee, Team", - "medal": "Gold" - }, - { - "name": "Gu Xiao", - "gender": "F", - "height": "174", - "weight": "60", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "Evandro Motta Guerra", - "gender": "M", - "height": "207", - "weight": "106", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 34, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Michal Yves Robert Guigou", - "gender": "M", - "height": "179", - "weight": "79", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 34, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Guo Li", - "gender": "F", - "height": "167", - "weight": "54", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "James George Guy", - "gender": "M", - "height": "187", - "weight": "83", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 20, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "James George Guy", - "gender": "M", - "height": "187", - "weight": "83", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 20, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Gwak Dong-Han", - "gender": "M", - "height": "183", - "weight": "90", - "sport": "Judo", - "team": "South Korea", - "noc": "KOR", - "age": 24, - "event": "Judo Men's Middleweight", - "medal": "Bronze" - }, - { - "name": "Mario-Elio Gyr", - "gender": "M", - "height": "187", - "weight": "76", - "sport": "Rowing", - "team": "Switzerland", - "noc": "SUI", - "age": 31, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Gold" - }, - { - "name": "Francis Townley Haas", - "gender": "M", - "height": "196", - "weight": "84", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Kai Hfner", - "gender": "M", - "height": "192", - "weight": "95", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Ryunosuke Haga", - "gender": "M", - "height": "186", - "weight": "100", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 25, - "event": "Judo Men's Half-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Kosuke Hagino", - "gender": "M", - "height": "177", - "weight": "71", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Kosuke Hagino", - "gender": "M", - "height": "177", - "weight": "71", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Swimming Men's 200 metres Individual Medley", - "medal": "Silver" - }, - { - "name": "Kosuke Hagino", - "gender": "M", - "height": "177", - "weight": "71", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Swimming Men's 400 metres Individual Medley", - "medal": "Gold" - }, - { - "name": "Lisa Hahn-Altenburg", - "gender": "F", - "height": "155", - "weight": "58", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Aika Hakoyama", - "gender": "F", - "height": "176", - "weight": "65", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 25, - "event": "Synchronized Swimming Women's Team", - "medal": "Bronze" - }, - { - "name": "Arman Hall", - "gender": "M", - "height": "183", - "weight": "75", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Fabian Hambchen", - "gender": "M", - "height": "164", - "weight": "62", - "sport": "Gymnastics", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Gymnastics Men's Horizontal Bar", - "medal": "Gold" - }, - { - "name": "Pauline Louisa Hammarlund", - "gender": "F", - "height": "172", - "weight": "65", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 22, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Sarah Kathryn Hammer (-Sparks)", - "gender": "F", - "height": "171", - "weight": "65", - "sport": "Cycling", - "team": "United States", - "noc": "USA", - "age": 32, - "event": "Cycling Women's Team Pursuit", - "medal": "Silver" - }, - { - "name": "Sarah Kathryn Hammer (-Sparks)", - "gender": "F", - "height": "171", - "weight": "65", - "sport": "Cycling", - "team": "United States", - "noc": "USA", - "age": 32, - "event": "Cycling Women's Omnium", - "medal": "Silver" - }, - { - "name": "Ying Han", - "gender": "F", - "height": "170", - "weight": "60", - "sport": "Table Tennis", - "team": "Germany", - "noc": "GER", - "age": 33, - "event": "Table Tennis Women's Team", - "medal": "Silver" - }, - { - "name": "Takuya Haneda", - "gender": "M", - "height": "175", - "weight": "70", - "sport": "Canoeing", - "team": "Japan", - "noc": "JPN", - "age": 29, - "event": "Canoeing Men's Canadian Singles, Slalom", - "medal": "Bronze" - }, - { - "name": "Martin Hner", - "gender": "M", - "height": "184", - "weight": "83", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Tawin Hanprab", - "gender": "M", - "height": "176", - "weight": "58", - "sport": "Taekwondo", - "team": "Thailand", - "noc": "THA", - "age": 18, - "event": "Taekwondo Men's Flyweight", - "medal": "Silver" - }, - { - "name": "Henrik Toft Hansen", - "gender": "M", - "height": "200", - "weight": "105", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 29, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Jena Mai Hansen", - "gender": "F", - "height": "166", - "weight": "60", - "sport": "Sailing", - "team": "Denmark", - "noc": "DEN", - "age": 27, - "event": "Sailing Women's Skiff", - "medal": "Bronze" - }, - { - "name": "Lasse Norman Hansen", - "gender": "M", - "height": "180", - "weight": "73", - "sport": "Cycling", - "team": "Denmark", - "noc": "DEN", - "age": 24, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Bronze" - }, - { - "name": "Lasse Norman Hansen", - "gender": "M", - "height": "180", - "weight": "73", - "sport": "Cycling", - "team": "Denmark", - "noc": "DEN", - "age": 24, - "event": "Cycling Men's Omnium", - "medal": "Bronze" - }, - { - "name": "Mikkel Hansen", - "gender": "M", - "height": "196", - "weight": "98", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 28, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Ren Toft Hansen", - "gender": "M", - "height": "200", - "weight": "105", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 31, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Hao Jialu", - "gender": "F", - "height": "176", - "weight": "66", - "sport": "Fencing", - "team": "China", - "noc": "CHN", - "age": 28, - "event": "Fencing Women's epee, Team", - "medal": "Silver" - }, - { - "name": "Hisayoshi Harasawa", - "gender": "M", - "height": "191", - "weight": "125", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 24, - "event": "Judo Men's Heavyweight", - "medal": "Silver" - }, - { - "name": "Christa Deanne Harmotto-Dietzen", - "gender": "F", - "height": "188", - "weight": "79", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Kayla Harrison", - "gender": "F", - "height": "173", - "weight": "74", - "sport": "Judo", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Judo Women's Half-Heavyweight", - "medal": "Gold" - }, - { - "name": "Christoph Harting", - "gender": "M", - "height": "207", - "weight": "120", - "sport": "Athletics", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Athletics Men's Discus Throw", - "medal": "Gold" - }, - { - "name": "Artem Harutyunyan", - "gender": "M", - "height": "172", - "weight": "64", - "sport": "Boxing", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Boxing Men's Light-Welterweight", - "medal": "Bronze" - }, - { - "name": "Natasha Monique Hastings", - "gender": "F", - "height": "173", - "weight": "68", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Franzisca Hauke", - "gender": "F", - "height": "172", - "weight": "63", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Tobias Constantin Hauke", - "gender": "M", - "height": "183", - "weight": "81", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Patrick Hausding", - "gender": "M", - "height": "180", - "weight": "77", - "sport": "Diving", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Diving Men's Springboard", - "medal": "Bronze" - }, - { - "name": "Daniel Havel", - "gender": "M", - "height": "178", - "weight": "79", - "sport": "Canoeing", - "team": "Czech Republic", - "noc": "CZE", - "age": 24, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Akeem Haynes", - "gender": "M", - "height": "170", - "weight": "73", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "He Zi", - "gender": "F", - "height": "159", - "weight": "51", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Diving Women's Springboard", - "medal": "Silver" - }, - { - "name": "Maaike Christiane Head", - "gender": "F", - "height": "173", - "weight": "59", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 32, - "event": "Rowing Women's Lightweight Double Sculls", - "medal": "Gold" - }, - { - "name": "Liam Nicholas Heath", - "gender": "M", - "height": "182", - "weight": "81", - "sport": "Canoeing", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Canoeing Men's Kayak Singles, 200 metres", - "medal": "Gold" - }, - { - "name": "Liam Nicholas Heath", - "gender": "M", - "height": "182", - "weight": "81", - "sport": "Canoeing", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Canoeing Men's Kayak Doubles, 200 metres", - "medal": "Silver" - }, - { - "name": "Erik Heil", - "gender": "M", - "height": "185", - "weight": "80", - "sport": "Sailing", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Sailing Men's Skiff", - "medal": "Bronze" - }, - { - "name": "Silvio Heinevetter", - "gender": "M", - "height": "194", - "weight": "99", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 31, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Ryan Held", - "gender": "M", - "height": "NA", - "weight": "NA", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Jeffrey \"Jeff\" Henderson", - "gender": "M", - "height": "183", - "weight": "86", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Athletics Men's Long Jump", - "medal": "Gold" - }, - { - "name": "Kaj Hendriks", - "gender": "M", - "height": "197", - "weight": "95", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 28, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Josephine Henning", - "gender": "F", - "height": "175", - "weight": "68", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Desiree Latifah N. Henry", - "gender": "F", - "height": "171", - "weight": "64", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 20, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "Michael David Hepburn", - "gender": "M", - "height": "186", - "weight": "77", - "sport": "Cycling", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Silver" - }, - { - "name": "Sabrina Hering", - "gender": "F", - "height": "167", - "weight": "70", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Silver" - }, - { - "name": "Ismael Marcelo Hernndez Uscanga", - "gender": "M", - "height": "178", - "weight": "64", - "sport": "Modern Pentathlon", - "team": "Mexico", - "noc": "MEX", - "age": 26, - "event": "Modern Pentathlon Men's Individual", - "medal": "Bronze" - }, - { - "name": "Lauren Zoe \"Laurie\" Hernandez", - "gender": "F", - "height": "152", - "weight": "49", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 16, - "event": "Gymnastics Women's Team All-Around", - "medal": "Gold" - }, - { - "name": "Lauren Zoe \"Laurie\" Hernandez", - "gender": "F", - "height": "152", - "weight": "49", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 16, - "event": "Gymnastics Women's Balance Beam", - "medal": "Silver" - }, - { - "name": "Nico Miguel Hernandez", - "gender": "M", - "height": "165", - "weight": "49", - "sport": "Boxing", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Boxing Men's Light-Flyweight", - "medal": "Bronze" - }, - { - "name": "Stefany del Carmen Hernndez Mendoza", - "gender": "F", - "height": "165", - "weight": "65", - "sport": "Cycling", - "team": "Venezuela", - "noc": "VEN", - "age": 25, - "event": "Cycling Women's BMX", - "medal": "Bronze" - }, - { - "name": "Guillermo Gustavo \"Willy\" Hernangmez Geuer", - "gender": "M", - "height": "210", - "weight": "115", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 22, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Camilla Herrem", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 29, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Timm Herzbruch", - "gender": "M", - "height": "180", - "weight": "76", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 19, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Carl Rupert Hester", - "gender": "M", - "height": "182", - "weight": "86", - "sport": "Equestrianism", - "team": "Great Britain", - "noc": "GBR", - "age": 49, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Silver" - }, - { - "name": "Rei Higuchi", - "gender": "M", - "height": "163", - "weight": "63", - "sport": "Wrestling", - "team": "Japan", - "noc": "JPN", - "age": 20, - "event": "Wrestling Men's Featherweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Alexander \"Alex\" Hill", - "gender": "M", - "height": "194", - "weight": "92", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 23, - "event": "Rowing Men's Coxless Fours", - "medal": "Silver" - }, - { - "name": "Kimberly \"Kim\" Hill", - "gender": "F", - "height": "193", - "weight": "72", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Phelan Peter Hill", - "gender": "M", - "height": "172", - "weight": "55", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 37, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Samantha \"Sami\" Hill", - "gender": "F", - "height": "183", - "weight": "89", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Madeline Clare \"Maddie\" Hinch", - "gender": "F", - "height": "168", - "weight": "62", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Philip Hindes", - "gender": "M", - "height": "178", - "weight": "82", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Cycling Men's Team Sprint", - "medal": "Gold" - }, - { - "name": "Martina Hingis (-Hutin)", - "gender": "F", - "height": "170", - "weight": "59", - "sport": "Tennis", - "team": "Switzerland", - "noc": "SUI", - "age": 35, - "event": "Tennis Women's Doubles", - "medal": "Silver" - }, - { - "name": "Sophie Hitchon", - "gender": "F", - "height": "170", - "weight": "75", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Athletics Women's Hammer Throw", - "medal": "Bronze" - }, - { - "name": "Michael \"Mike\" Hixon", - "gender": "M", - "height": "173", - "weight": "68", - "sport": "Diving", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Diving Men's Synchronized Springboard", - "medal": "Silver" - }, - { - "name": "Hong Xun Vinh", - "gender": "M", - "height": "175", - "weight": "75", - "sport": "Shooting", - "team": "Vietnam", - "noc": "VIE", - "age": 41, - "event": "Shooting Men's Air Pistol, 10 metres", - "medal": "Gold" - }, - { - "name": "Hong Xun Vinh", - "gender": "M", - "height": "175", - "weight": "75", - "sport": "Shooting", - "team": "Vietnam", - "noc": "VIE", - "age": 41, - "event": "Shooting Men's Free Pistol, 50 metres", - "medal": "Silver" - }, - { - "name": "Max Hoff", - "gender": "M", - "height": "197", - "weight": "95", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 33, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Victoria Frances \"Vicky\" Holland", - "gender": "F", - "height": "168", - "weight": "56", - "sport": "Triathlon", - "team": "Great Britain", - "noc": "GBR", - "age": 30, - "event": "Triathlon Women's Olympic Distance", - "medal": "Bronze" - }, - { - "name": "Maxwell Philip \"Max\" Holt", - "gender": "M", - "height": "208", - "weight": "90", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Daryl Homer", - "gender": "M", - "height": "173", - "weight": "74", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Fencing Men's Sabre, Individual", - "medal": "Silver" - }, - { - "name": "Ellen Marijn Hoog", - "gender": "F", - "height": "164", - "weight": "54", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 30, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Tamara Horacek", - "gender": "F", - "height": "179", - "weight": "80", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 20, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Timo Horn", - "gender": "M", - "height": "191", - "weight": "76", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 23, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Mackenzie \"Mack\" Horton", - "gender": "M", - "height": "190", - "weight": "88", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 20, - "event": "Swimming Men's 400 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Natsumi Hoshi", - "gender": "F", - "height": "164", - "weight": "56", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 25, - "event": "Swimming Women's 200 metres Butterfly", - "medal": "Bronze" - }, - { - "name": "Katinka Hossz", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Swimming", - "team": "Hungary", - "noc": "HUN", - "age": 27, - "event": "Swimming Women's 100 metres Backstroke", - "medal": "Gold" - }, - { - "name": "Katinka Hossz", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Swimming", - "team": "Hungary", - "noc": "HUN", - "age": 27, - "event": "Swimming Women's 200 metres Backstroke", - "medal": "Silver" - }, - { - "name": "Katinka Hossz", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Swimming", - "team": "Hungary", - "noc": "HUN", - "age": 27, - "event": "Swimming Women's 200 metres Individual Medley", - "medal": "Gold" - }, - { - "name": "Katinka Hossz", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Swimming", - "team": "Hungary", - "noc": "HUN", - "age": 27, - "event": "Swimming Women's 400 metres Individual Medley", - "medal": "Gold" - }, - { - "name": "Manon Houette", - "gender": "F", - "height": "168", - "weight": "69", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Franois Hougaard", - "gender": "M", - "height": "179", - "weight": "93", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 28, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Frances Julia Houghton", - "gender": "F", - "height": "193", - "weight": "80", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 35, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Pierre Houin", - "gender": "M", - "height": "182", - "weight": "74", - "sport": "Rowing", - "team": "France", - "noc": "FRA", - "age": 22, - "event": "Rowing Men's Lightweight Double Sculls", - "medal": "Gold" - }, - { - "name": "Richard Hounslow", - "gender": "M", - "height": "183", - "weight": "78", - "sport": "Canoeing", - "team": "Great Britain", - "noc": "GBR", - "age": 34, - "event": "Canoeing Men's Canadian Doubles, Slalom", - "medal": "Silver" - }, - { - "name": "Lucie Hradeck", - "gender": "F", - "height": "177", - "weight": "72", - "sport": "Tennis", - "team": "Czech Republic", - "noc": "CZE", - "age": 31, - "event": "Tennis Mixed Doubles", - "medal": "Bronze" - }, - { - "name": "Filip Hrgovi", - "gender": "M", - "height": "198", - "weight": "101", - "sport": "Boxing", - "team": "Croatia", - "noc": "CRO", - "age": 24, - "event": "Boxing Men's Super-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Hsu Shu-Ching", - "gender": "F", - "height": "160", - "weight": "53", - "sport": "Weightlifting", - "team": "Chinese Taipei", - "noc": "TPE", - "age": 25, - "event": "Weightlifting Women's Featherweight", - "medal": "Gold" - }, - { - "name": "Cbrayl Hsnov", - "gender": "M", - "height": "170", - "weight": "74", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 26, - "event": "Wrestling Men's Middleweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Hu Jianguan", - "gender": "M", - "height": "168", - "weight": "52", - "sport": "Boxing", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Boxing Men's Flyweight", - "medal": "Bronze" - }, - { - "name": "Huang Wenyi", - "gender": "F", - "height": "178", - "weight": "63", - "sport": "Rowing", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Rowing Women's Lightweight Double Sculls", - "medal": "Bronze" - }, - { - "name": "Huang Xuechen", - "gender": "F", - "height": "175", - "weight": "61", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Synchronized Swimming Women's Duet", - "medal": "Silver" - }, - { - "name": "Huang Xuechen", - "gender": "F", - "height": "175", - "weight": "61", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "Hui Ruoqi", - "gender": "F", - "height": "192", - "weight": "78", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Svenja Anette Huth", - "gender": "F", - "height": "163", - "weight": "54", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Diego Matias Hyplito", - "gender": "M", - "height": "170", - "weight": "68", - "sport": "Gymnastics", - "team": "Brazil", - "noc": "BRA", - "age": 30, - "event": "Gymnastics Men's Floor Exercise", - "medal": "Silver" - }, - { - "name": "Caterine Ibargn Mena", - "gender": "F", - "height": "185", - "weight": "70", - "sport": "Athletics", - "team": "Colombia", - "noc": "COL", - "age": 32, - "event": "Athletics Women's Triple Jump", - "medal": "Gold" - }, - { - "name": "Isidoro Ibarra", - "gender": "M", - "height": "175", - "weight": "75", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 23, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Pedro Ibarra", - "gender": "M", - "height": "174", - "weight": "75", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 30, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Magomed Idrisovich Ibragimov", - "gender": "M", - "height": "183", - "weight": "97", - "sport": "Wrestling", - "team": "Uzbekistan", - "noc": "UZB", - "age": 31, - "event": "Wrestling Men's Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Kaori Icho", - "gender": "F", - "height": "166", - "weight": "61", - "sport": "Wrestling", - "team": "Japan", - "noc": "JPN", - "age": 32, - "event": "Wrestling Women's Lightweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Mohamed Ihab Youssef Ahmed Mahmoud", - "gender": "M", - "height": "165", - "weight": "77", - "sport": "Weightlifting", - "team": "Egypt", - "noc": "EGY", - "age": 26, - "event": "Weightlifting Men's Middleweight", - "medal": "Bronze" - }, - { - "name": "Shota Iizuka", - "gender": "M", - "height": "185", - "weight": "80", - "sport": "Athletics", - "team": "Japan", - "noc": "JPN", - "age": 25, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Cenk ldem", - "gender": "M", - "height": "180", - "weight": "98", - "sport": "Wrestling", - "team": "Turkey", - "noc": "TUR", - "age": 30, - "event": "Wrestling Men's Heavyweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Yekaterina Fyodorovna Ilyina", - "gender": "F", - "height": "174", - "weight": "60", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Race Alick Reid Imboden", - "gender": "M", - "height": "185", - "weight": "75", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Fencing Men's Foil, Team", - "medal": "Bronze" - }, - { - "name": "Gza Imre", - "gender": "M", - "height": "184", - "weight": "75", - "sport": "Fencing", - "team": "Hungary", - "noc": "HUN", - "age": 41, - "event": "Fencing Men's epee, Individual", - "medal": "Silver" - }, - { - "name": "Gza Imre", - "gender": "M", - "height": "184", - "weight": "75", - "sport": "Fencing", - "team": "Hungary", - "noc": "HUN", - "age": 41, - "event": "Fencing Men's epee, Team", - "medal": "Bronze" - }, - { - "name": "Marco Innocenti", - "gender": "M", - "height": "170", - "weight": "97", - "sport": "Shooting", - "team": "Italy", - "noc": "ITA", - "age": 37, - "event": "Shooting Men's Double Trap", - "medal": "Silver" - }, - { - "name": "Yukiko Inui", - "gender": "F", - "height": "169", - "weight": "55", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 25, - "event": "Synchronized Swimming Women's Duet", - "medal": "Bronze" - }, - { - "name": "Yukiko Inui", - "gender": "F", - "height": "169", - "weight": "55", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 25, - "event": "Synchronized Swimming Women's Team", - "medal": "Bronze" - }, - { - "name": "Eko Yuli Irawan", - "gender": "M", - "height": "154", - "weight": "62", - "sport": "Weightlifting", - "team": "Indonesia", - "noc": "INA", - "age": 27, - "event": "Weightlifting Men's Featherweight", - "medal": "Silver" - }, - { - "name": "Kyrie Andrew Irving", - "gender": "M", - "height": "190", - "weight": "87", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Radik sayev", - "gender": "M", - "height": "200", - "weight": "93", - "sport": "Taekwondo", - "team": "Azerbaijan", - "noc": "AZE", - "age": 26, - "event": "Taekwondo Men's Heavyweight", - "medal": "Gold" - }, - { - "name": "Nataliya Sergeyevna Ishchenko", - "gender": "F", - "height": "177", - "weight": "60", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 30, - "event": "Synchronized Swimming Women's Duet", - "medal": "Gold" - }, - { - "name": "Nataliya Sergeyevna Ishchenko", - "gender": "F", - "height": "177", - "weight": "60", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 30, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Kasumi Ishikawa", - "gender": "F", - "height": "158", - "weight": "51", - "sport": "Table Tennis", - "team": "Japan", - "noc": "JPN", - "age": 23, - "event": "Table Tennis Women's Team", - "medal": "Bronze" - }, - { - "name": "Mandy Islacker", - "gender": "F", - "height": "164", - "weight": "55", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Daniar Ismailow", - "gender": "M", - "height": "173", - "weight": "69", - "sport": "Weightlifting", - "team": "Turkey", - "noc": "TUR", - "age": 24, - "event": "Weightlifting Men's Lightweight", - "medal": "Silver" - }, - { - "name": "Mima Ito", - "gender": "F", - "height": "150", - "weight": "45", - "sport": "Table Tennis", - "team": "Japan", - "noc": "JPN", - "age": 15, - "event": "Table Tennis Women's Team", - "medal": "Bronze" - }, - { - "name": "Yevgeniya Andreyevna Ivanova", - "gender": "F", - "height": "176", - "weight": "68", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 29, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Ja Dong-Min", - "gender": "M", - "height": "190", - "weight": "91", - "sport": "Taekwondo", - "team": "South Korea", - "noc": "KOR", - "age": 29, - "event": "Taekwondo Men's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Shericka Jackson", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 22, - "event": "Athletics Women's 400 metres", - "medal": "Bronze" - }, - { - "name": "Shericka Jackson", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 22, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Nicolas Jacobi", - "gender": "M", - "height": "193", - "weight": "95", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Connor Jaeger", - "gender": "M", - "height": "185", - "weight": "77", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Swimming Men's 1,500 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Thomas \"Tom\" Jaeschke", - "gender": "M", - "height": "198", - "weight": "91", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Evan Reese Jager", - "gender": "M", - "height": "188", - "weight": "65", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Athletics Men's 3,000 metres Steeplechase", - "medal": "Silver" - }, - { - "name": "Eva Sofia Jakobsson", - "gender": "F", - "height": "174", - "weight": "62", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 26, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Malte Jakschik", - "gender": "M", - "height": "194", - "weight": "93", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 23, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Nikola Jaki", - "gender": "M", - "height": "197", - "weight": "89", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 19, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Rebecca Angharad \"Becky\" James", - "gender": "F", - "height": "171", - "weight": "66", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Cycling Women's Sprint", - "medal": "Silver" - }, - { - "name": "Rebecca Angharad \"Becky\" James", - "gender": "F", - "height": "171", - "weight": "66", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Cycling Women's Keirin", - "medal": "Silver" - }, - { - "name": "Kirani James", - "gender": "M", - "height": "180", - "weight": "66", - "sport": "Athletics", - "team": "Grenada", - "noc": "GRN", - "age": 23, - "event": "Athletics Men's 400 metres", - "medal": "Silver" - }, - { - "name": "Andrei Jms", - "gender": "M", - "height": "184", - "weight": "90", - "sport": "Rowing", - "team": "Estonia", - "noc": "EST", - "age": 34, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Bronze" - }, - { - "name": "Inge Janssen", - "gender": "F", - "height": "182", - "weight": "74", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 27, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Silver" - }, - { - "name": "Daniel Jasinski", - "gender": "M", - "height": "207", - "weight": "120", - "sport": "Athletics", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Athletics Men's Discus Throw", - "medal": "Bronze" - }, - { - "name": "Ruth Jebet", - "gender": "F", - "height": "162", - "weight": "51", - "sport": "Athletics", - "team": "Bahrain", - "noc": "BRN", - "age": 19, - "event": "Athletics Women's 3,000 metres Steeplechase", - "medal": "Gold" - }, - { - "name": "Lindsay Jennerich", - "gender": "F", - "height": "165", - "weight": "59", - "sport": "Rowing", - "team": "Canada", - "noc": "CAN", - "age": 34, - "event": "Rowing Women's Lightweight Double Sculls", - "medal": "Silver" - }, - { - "name": "Henrik Mllgaard Jensen", - "gender": "M", - "height": "197", - "weight": "102", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 31, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Iain Jensen", - "gender": "M", - "height": "186", - "weight": "80", - "sport": "Sailing", - "team": "Australia", - "noc": "AUS", - "age": 28, - "event": "Sailing Men's Skiff", - "medal": "Silver" - }, - { - "name": "Jeong Bo-Kyeong", - "gender": "F", - "height": "153", - "weight": "51", - "sport": "Judo", - "team": "South Korea", - "noc": "KOR", - "age": 25, - "event": "Judo Women's Extra-Lightweight", - "medal": "Silver" - }, - { - "name": "Jeong Gyeong-Eun", - "gender": "F", - "height": "172", - "weight": "59", - "sport": "Badminton", - "team": "South Korea-1", - "noc": "KOR", - "age": 26, - "event": "Badminton Women's Doubles", - "medal": "Bronze" - }, - { - "name": "Daniel Jrent", - "gender": "M", - "height": "189", - "weight": "84", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 25, - "event": "Fencing Men's epee, Team", - "medal": "Gold" - }, - { - "name": "Jin Jong-O", - "gender": "M", - "height": "175", - "weight": "78", - "sport": "Shooting", - "team": "South Korea", - "noc": "KOR", - "age": 36, - "event": "Shooting Men's Free Pistol, 50 metres", - "medal": "Gold" - }, - { - "name": "Eric Johannesen", - "gender": "M", - "height": "193", - "weight": "100", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Emma Karolina Johansson", - "gender": "F", - "height": "168", - "weight": "54", - "sport": "Cycling", - "team": "Sweden", - "noc": "SWE", - "age": 32, - "event": "Cycling Women's Road Race, Individual", - "medal": "Silver" - }, - { - "name": "Ashleigh Johnson", - "gender": "F", - "height": "186", - "weight": "81", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Steele Alexander Johnson", - "gender": "M", - "height": "188", - "weight": "80", - "sport": "Diving", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Diving Men's Synchronized Platform", - "medal": "Silver" - }, - { - "name": "Steve Johnson", - "gender": "M", - "height": "188", - "weight": "86", - "sport": "Tennis", - "team": "United States-2", - "noc": "USA", - "age": 26, - "event": "Tennis Men's Doubles", - "medal": "Bronze" - }, - { - "name": "Nikola Joki", - "gender": "M", - "height": "209", - "weight": "115", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 21, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Maro Jokovi", - "gender": "M", - "height": "203", - "weight": "95", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 28, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Jade Louise Jones", - "gender": "F", - "height": "156", - "weight": "57", - "sport": "Taekwondo", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Taekwondo Women's Featherweight", - "medal": "Gold" - }, - { - "name": "Luuka Jones", - "gender": "F", - "height": "172", - "weight": "68", - "sport": "Canoeing", - "team": "New Zealand", - "noc": "NZL", - "age": 27, - "event": "Canoeing Women's Kayak Singles, Slalom", - "medal": "Silver" - }, - { - "name": "Kelly Maria Jonker", - "gender": "F", - "height": "159", - "weight": "59", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 26, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Hyland DeAndre Jordan, Jr.", - "gender": "M", - "height": "211", - "weight": "120", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Gwen Rosemary Jorgensen (-Lemieux)", - "gender": "F", - "height": "178", - "weight": "59", - "sport": "Triathlon", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Triathlon Women's Olympic Distance", - "medal": "Gold" - }, - { - "name": "Nevena Jovanovi", - "gender": "F", - "height": "179", - "weight": "72", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 26, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Stefan Jovi", - "gender": "M", - "height": "196", - "weight": "94", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 25, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Joseph \"Joe\" Joyce", - "gender": "M", - "height": "197", - "weight": "108", - "sport": "Boxing", - "team": "Great Britain", - "noc": "GBR", - "age": 30, - "event": "Boxing Men's Super-Heavyweight", - "medal": "Silver" - }, - { - "name": "Emma Aastrand Jrgensen", - "gender": "F", - "height": "169", - "weight": "70", - "sport": "Canoeing", - "team": "Denmark", - "noc": "DEN", - "age": 20, - "event": "Canoeing Women's Kayak Singles, 500 metres", - "medal": "Silver" - }, - { - "name": "Morten Jrgensen", - "gender": "M", - "height": "183", - "weight": "73", - "sport": "Rowing", - "team": "Denmark", - "noc": "DEN", - "age": 31, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Silver" - }, - { - "name": "Osmany Juantorena Portuondo", - "gender": "M", - "height": "200", - "weight": "85", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 30, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Kamilla Rytter Juhl", - "gender": "F", - "height": "183", - "weight": "71", - "sport": "Badminton", - "team": "Denmark", - "noc": "DEN", - "age": 32, - "event": "Badminton Women's Doubles", - "medal": "Silver" - }, - { - "name": "Michael Jung", - "gender": "M", - "height": "168", - "weight": "70", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 34, - "event": "Equestrianism Mixed Three-Day Event, Individual", - "medal": "Gold" - }, - { - "name": "Michael Jung", - "gender": "M", - "height": "168", - "weight": "70", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 34, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Silver" - }, - { - "name": "Henri Junghnel", - "gender": "M", - "height": "179", - "weight": "80", - "sport": "Shooting", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Shooting Men's Small-Bore Rifle, Prone, 50 metres", - "medal": "Gold" - }, - { - "name": "Pavlos Kagialis", - "gender": "M", - "height": "184", - "weight": "74", - "sport": "Sailing", - "team": "Greece", - "noc": "GRE", - "age": 32, - "event": "Sailing Men's Two Person Dinghy", - "medal": "Bronze" - }, - { - "name": "Nikola Kalini", - "gender": "M", - "height": "202", - "weight": "102", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 24, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Viktoriya Viktorovna Kalinina", - "gender": "F", - "height": "183", - "weight": "74", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Chase Tyler Kalisz", - "gender": "M", - "height": "193", - "weight": "86", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Swimming Men's 400 metres Individual Medley", - "medal": "Silver" - }, - { - "name": "Reneta Kamberova", - "gender": "F", - "height": "170", - "weight": "53", - "sport": "Rhythmic Gymnastics", - "team": "Bulgaria", - "noc": "BUL", - "age": 25, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Bronze" - }, - { - "name": "Sergey Igorevich Kamensky", - "gender": "M", - "height": "178", - "weight": "73", - "sport": "Shooting", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Shooting Men's Small-Bore Rifle, Three Positions, 50 metres", - "medal": "Silver" - }, - { - "name": "Jacob Robert \"Jake\" Linde-Kaminski ", - "gender": "M", - "height": "178", - "weight": "70", - "sport": "Archery", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Archery Men's Team", - "medal": "Silver" - }, - { - "name": "Rie Kaneto", - "gender": "F", - "height": "175", - "weight": "64", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Swimming Women's 200 metres Breaststroke", - "medal": "Gold" - }, - { - "name": "Boglrka Kaps", - "gender": "F", - "height": "168", - "weight": "54", - "sport": "Swimming", - "team": "Hungary", - "noc": "HUN", - "age": 23, - "event": "Swimming Women's 800 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Luka Karabatic", - "gender": "M", - "height": "202", - "weight": "108", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Nikola Karabatic", - "gender": "M", - "height": "194", - "weight": "104", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 32, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Elvina Khaydaryanovna Karimova", - "gender": "F", - "height": "166", - "weight": "62", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Anna Olegovna Karnaukh", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Monika Karsch", - "gender": "F", - "height": "158", - "weight": "55", - "sport": "Shooting", - "team": "Germany", - "noc": "GER", - "age": 33, - "event": "Shooting Women's Sporting Pistol, 25 metres", - "medal": "Silver" - }, - { - "name": "Ryohei Kato", - "gender": "M", - "height": "162", - "weight": "54", - "sport": "Gymnastics", - "team": "Japan", - "noc": "JPN", - "age": 22, - "event": "Gymnastics Men's Team All-Around", - "medal": "Gold" - }, - { - "name": "Peter Kauzer", - "gender": "M", - "height": "177", - "weight": "70", - "sport": "Canoeing", - "team": "Slovenia", - "noc": "SLO", - "age": 32, - "event": "Canoeing Men's Kayak Singles, Slalom", - "medal": "Silver" - }, - { - "name": "Risako Kawai", - "gender": "F", - "height": "160", - "weight": "61", - "sport": "Wrestling", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Wrestling Women's Middleweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Rza Kayaalp", - "gender": "M", - "height": "182", - "weight": "130", - "sport": "Wrestling", - "team": "Turkey", - "noc": "TUR", - "age": 26, - "event": "Wrestling Men's Super-Heavyweight, Greco-Roman", - "medal": "Silver" - }, - { - "name": "Lyubomira Kazanova", - "gender": "F", - "height": "177", - "weight": "56", - "sport": "Rhythmic Gymnastics", - "team": "Bulgaria", - "noc": "BUL", - "age": 20, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Bronze" - }, - { - "name": "Shaun Keeling", - "gender": "M", - "height": "196", - "weight": "94", - "sport": "Rowing", - "team": "South Africa", - "noc": "RSA", - "age": 29, - "event": "Rowing Men's Coxless Pairs", - "medal": "Silver" - }, - { - "name": "Maddison Keeney", - "gender": "F", - "height": "167", - "weight": "62", - "sport": "Diving", - "team": "Australia", - "noc": "AUS", - "age": 20, - "event": "Diving Women's Synchronized Springboard", - "medal": "Bronze" - }, - { - "name": "Marloes Keetels", - "gender": "F", - "height": "172", - "weight": "66", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 23, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Majlinda Kelmendi", - "gender": "F", - "height": "162", - "weight": "52", - "sport": "Judo", - "team": "Kosovo", - "noc": "KOS", - "age": 25, - "event": "Judo Women's Half-Lightweight", - "medal": "Gold" - }, - { - "name": "Tabea Kemme", - "gender": "F", - "height": "169", - "weight": "56", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Tams Kenderesi", - "gender": "M", - "height": "186", - "weight": "74", - "sport": "Swimming", - "team": "Hungary", - "noc": "HUN", - "age": 19, - "event": "Swimming Men's 200 metres Butterfly", - "medal": "Bronze" - }, - { - "name": "Sam Kendricks", - "gender": "M", - "height": "185", - "weight": "80", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Athletics Men's Pole Vault", - "medal": "Bronze" - }, - { - "name": "Jason Francis Kenny", - "gender": "M", - "height": "178", - "weight": "81", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Cycling Men's Sprint", - "medal": "Gold" - }, - { - "name": "Jason Francis Kenny", - "gender": "M", - "height": "178", - "weight": "81", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Cycling Men's Keirin", - "medal": "Gold" - }, - { - "name": "Jason Francis Kenny", - "gender": "M", - "height": "178", - "weight": "81", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Cycling Men's Team Sprint", - "medal": "Gold" - }, - { - "name": "Angelique Kerber", - "gender": "F", - "height": "173", - "weight": "68", - "sport": "Tennis", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Tennis Women's Singles", - "medal": "Silver" - }, - { - "name": "Isabel Kerschowski", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Khasan Magometovich Khalmurzayev", - "gender": "M", - "height": "182", - "weight": "81", - "sport": "Judo", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Judo Men's Half-Middleweight", - "medal": "Gold" - }, - { - "name": "Farkhad Ibragimovich Kharki", - "gender": "M", - "height": "160", - "weight": "62", - "sport": "Weightlifting", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 25, - "event": "Weightlifting Men's Featherweight", - "medal": "Bronze" - }, - { - "name": "Olha Hennadivna Kharlan", - "gender": "F", - "height": "172", - "weight": "68", - "sport": "Fencing", - "team": "Ukraine", - "noc": "UKR", - "age": 25, - "event": "Fencing Women's Sabre, Individual", - "medal": "Bronze" - }, - { - "name": "Olha Hennadivna Kharlan", - "gender": "F", - "height": "172", - "weight": "68", - "sport": "Fencing", - "team": "Ukraine", - "noc": "UKR", - "age": 25, - "event": "Fencing Women's Sabre, Team", - "medal": "Silver" - }, - { - "name": "Vladimer Khinchegashvili", - "gender": "M", - "height": "170", - "weight": "57", - "sport": "Wrestling", - "team": "Georgia", - "noc": "GEO", - "age": 25, - "event": "Wrestling Men's Featherweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Olga Sergeyevna Khudenko", - "gender": "F", - "height": "178", - "weight": "78", - "sport": "Canoeing", - "team": "Belarus", - "noc": "BLR", - "age": 24, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Bronze" - }, - { - "name": "Ki Bo-Bae", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 28, - "event": "Archery Women's Individual", - "medal": "Bronze" - }, - { - "name": "Ki Bo-Bae", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 28, - "event": "Archery Women's Team", - "medal": "Gold" - }, - { - "name": "Faith Chepngetich Kibiegon", - "gender": "F", - "height": "157", - "weight": "43", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 22, - "event": "Athletics Women's 1,500 metres", - "medal": "Gold" - }, - { - "name": "Kim Hyeon-Wu", - "gender": "M", - "height": "173", - "weight": "80", - "sport": "Wrestling", - "team": "South Korea", - "noc": "KOR", - "age": 27, - "event": "Wrestling Men's Middleweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Kim Jeong-Hwan", - "gender": "M", - "height": "178", - "weight": "66", - "sport": "Fencing", - "team": "South Korea", - "noc": "KOR", - "age": 32, - "event": "Fencing Men's Sabre, Individual", - "medal": "Bronze" - }, - { - "name": "Kim Jong-Hyeon", - "gender": "M", - "height": "170", - "weight": "73", - "sport": "Shooting", - "team": "South Korea", - "noc": "KOR", - "age": 31, - "event": "Shooting Men's Small-Bore Rifle, Prone, 50 metres", - "medal": "Silver" - }, - { - "name": "Kim Kuk-Hyang", - "gender": "F", - "height": "170", - "weight": "100", - "sport": "Weightlifting", - "team": "North Korea", - "noc": "PRK", - "age": 23, - "event": "Weightlifting Women's Super-Heavyweight", - "medal": "Silver" - }, - { - "name": "Kim So-Hui", - "gender": "F", - "height": "164", - "weight": "50", - "sport": "Taekwondo", - "team": "South Korea", - "noc": "KOR", - "age": 22, - "event": "Taekwondo Women's Flyweight", - "medal": "Gold" - }, - { - "name": "Kim Song-Guk", - "gender": "M", - "height": "167", - "weight": "75", - "sport": "Shooting", - "team": "North Korea", - "noc": "PRK", - "age": 30, - "event": "Shooting Men's Free Pistol, 50 metres", - "medal": "Bronze" - }, - { - "name": "Kim Song-I", - "gender": "F", - "height": "161", - "weight": "55", - "sport": "Table Tennis", - "team": "North Korea", - "noc": "PRK", - "age": 21, - "event": "Table Tennis Women's Singles", - "medal": "Bronze" - }, - { - "name": "Kim Tae-Hun", - "gender": "M", - "height": "182", - "weight": "59", - "sport": "Taekwondo", - "team": "South Korea", - "noc": "KOR", - "age": 21, - "event": "Taekwondo Men's Flyweight", - "medal": "Bronze" - }, - { - "name": "Kim Woo-Jin", - "gender": "M", - "height": "180", - "weight": "95", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 24, - "event": "Archery Men's Team", - "medal": "Gold" - }, - { - "name": "Lilly King", - "gender": "F", - "height": "175", - "weight": "70", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 100 metres Breaststroke", - "medal": "Gold" - }, - { - "name": "Lilly King", - "gender": "F", - "height": "175", - "weight": "70", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Eliud Kipchoge", - "gender": "M", - "height": "167", - "weight": "57", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 31, - "event": "Athletics Men's Marathon", - "medal": "Gold" - }, - { - "name": "Conseslus Kipruto", - "gender": "M", - "height": "167", - "weight": "58", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 21, - "event": "Athletics Men's 3,000 metres Steeplechase", - "medal": "Gold" - }, - { - "name": "Eunice Jepkirui Kirwa", - "gender": "F", - "height": "155", - "weight": "49", - "sport": "Athletics", - "team": "Bahrain", - "noc": "BRN", - "age": 32, - "event": "Athletics Women's Marathon", - "medal": "Silver" - }, - { - "name": "Yoshihide Kiryu", - "gender": "M", - "height": "175", - "weight": "68", - "sport": "Athletics", - "team": "Japan", - "noc": "JPN", - "age": 20, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Jennifer \"Jen\" Kish", - "gender": "F", - "height": "172", - "weight": "73", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 28, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Hyvin Kiyeng Jepkemoi", - "gender": "F", - "height": "162", - "weight": "42", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 24, - "event": "Athletics Women's 3,000 metres Steeplechase", - "medal": "Silver" - }, - { - "name": "Gauthier Klauss", - "gender": "M", - "height": "171", - "weight": "65", - "sport": "Canoeing", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Canoeing Men's Canadian Doubles, Slalom", - "medal": "Bronze" - }, - { - "name": "Ingrid Klimke (-Busacker)", - "gender": "F", - "height": "172", - "weight": "58", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 48, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Silver" - }, - { - "name": "Lukas Klostermann", - "gender": "M", - "height": "189", - "weight": "83", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 20, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Bo-Gyung \"Lydia\" Ko", - "gender": "F", - "height": "165", - "weight": "NA", - "sport": "Golf", - "team": "New Zealand", - "noc": "NZL", - "age": 19, - "event": "Golf Women's Individual", - "medal": "Silver" - }, - { - "name": "Yuki Kobori", - "gender": "M", - "height": "183", - "weight": "77", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 22, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Agnieszka Kobus", - "gender": "F", - "height": "177", - "weight": "68", - "sport": "Rowing", - "team": "Poland", - "noc": "POL", - "age": 25, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Bronze" - }, - { - "name": "Olga Aleksandrovna Kochneva", - "gender": "F", - "height": "168", - "weight": "58", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Fencing Women's epee, Team", - "medal": "Bronze" - }, - { - "name": "Madison Taylor Kocian", - "gender": "F", - "height": "157", - "weight": "46", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Gymnastics Women's Team All-Around", - "medal": "Gold" - }, - { - "name": "Madison Taylor Kocian", - "gender": "F", - "height": "157", - "weight": "46", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Gymnastics Women's Uneven Bars", - "medal": "Silver" - }, - { - "name": "Werner Kok", - "gender": "M", - "height": "180", - "weight": "91", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 23, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Sara Kolak", - "gender": "F", - "height": "170", - "weight": "74", - "sport": "Athletics", - "team": "Croatia", - "noc": "CRO", - "age": 21, - "event": "Athletics Women's Javelin Throw", - "medal": "Gold" - }, - { - "name": "Cheslin Kolbe", - "gender": "M", - "height": "179", - "weight": "89", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 22, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Svetlana Konstantinovna Kolesnichenko", - "gender": "F", - "height": "171", - "weight": "53", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Osea Kolinisau", - "gender": "M", - "height": "174", - "weight": "90", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 30, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Violetta Vitalyevna Kolobova", - "gender": "F", - "height": "176", - "weight": "64", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Fencing Women's epee, Team", - "medal": "Bronze" - }, - { - "name": "Alina Ivanivna Komashchuk", - "gender": "F", - "height": "169", - "weight": "75", - "sport": "Fencing", - "team": "Ukraine", - "noc": "UKR", - "age": 23, - "event": "Fencing Women's Sabre, Team", - "medal": "Silver" - }, - { - "name": "Ami Kondo", - "gender": "F", - "height": "156", - "weight": "48", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Judo Women's Extra-Lightweight", - "medal": "Bronze" - }, - { - "name": "Anna Korakaki", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Shooting", - "team": "Greece", - "noc": "GRE", - "age": 20, - "event": "Shooting Women's Air Pistol, 10 metres", - "medal": "Bronze" - }, - { - "name": "Anna Korakaki", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Shooting", - "team": "Greece", - "noc": "GRE", - "age": 20, - "event": "Shooting Women's Sporting Pistol, 25 metres", - "medal": "Gold" - }, - { - "name": "Joseph Mathias \"Joe\" Kovacs", - "gender": "M", - "height": "183", - "weight": "134", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Athletics Men's Shot Put", - "medal": "Silver" - }, - { - "name": "Danuta Kozk", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Canoeing", - "team": "Hungary", - "noc": "HUN", - "age": 29, - "event": "Canoeing Women's Kayak Singles, 500 metres", - "medal": "Gold" - }, - { - "name": "Danuta Kozk", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Canoeing", - "team": "Hungary", - "noc": "HUN", - "age": 29, - "event": "Canoeing Women's Kayak Doubles, 500 metres", - "medal": "Gold" - }, - { - "name": "Danuta Kozk", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Canoeing", - "team": "Hungary", - "noc": "HUN", - "age": 29, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Gold" - }, - { - "name": "Annike Berit Krahn", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 31, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Julia Krajewski", - "gender": "F", - "height": "168", - "weight": "65", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Silver" - }, - { - "name": "Ivan Krapi", - "gender": "M", - "height": "194", - "weight": "103", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 27, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Olena Vitalivna Kravatska", - "gender": "F", - "height": "176", - "weight": "66", - "sport": "Fencing", - "team": "Ukraine", - "noc": "UKR", - "age": 24, - "event": "Fencing Women's Sabre, Team", - "medal": "Silver" - }, - { - "name": "Jannick Green Krejberg", - "gender": "M", - "height": "195", - "weight": "95", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 27, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Steffi Kriegerstein", - "gender": "F", - "height": "178", - "weight": "70", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 23, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Silver" - }, - { - "name": "Veronica Egebakken Kristiansen", - "gender": "F", - "height": "175", - "weight": "68", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 26, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Sara Krnji", - "gender": "F", - "height": "193", - "weight": "83", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 25, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Luk Krplek", - "gender": "M", - "height": "197", - "weight": "105", - "sport": "Judo", - "team": "Czech Republic", - "noc": "CZE", - "age": 25, - "event": "Judo Men's Half-Heavyweight", - "medal": "Gold" - }, - { - "name": "Sinphet Kruaithong", - "gender": "M", - "height": "159", - "weight": "56", - "sport": "Weightlifting", - "team": "Thailand", - "noc": "THA", - "age": 20, - "event": "Weightlifting Men's Bantamweight", - "medal": "Bronze" - }, - { - "name": "Hannah Krger", - "gender": "F", - "height": "173", - "weight": "67", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Ku Bon-Chan", - "gender": "M", - "height": "181", - "weight": "84", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 23, - "event": "Archery Men's Individual", - "medal": "Gold" - }, - { - "name": "Ku Bon-Chan", - "gender": "M", - "height": "181", - "weight": "84", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 23, - "event": "Archery Men's Team", - "medal": "Gold" - }, - { - "name": "Matthew Gregory \"Matt\" Kuchar", - "gender": "M", - "height": "193", - "weight": "86", - "sport": "Golf", - "team": "United States", - "noc": "USA", - "age": 38, - "event": "Golf Men's Individual", - "medal": "Bronze" - }, - { - "name": "Denis Maksymilian Kudla", - "gender": "M", - "height": "184", - "weight": "90", - "sport": "Wrestling", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Wrestling Men's Light-Heavyweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Yana Alekseyevna Kudryavtseva", - "gender": "F", - "height": "170", - "weight": "47", - "sport": "Rhythmic Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 18, - "event": "Rhythmic Gymnastics Women's Individual", - "medal": "Silver" - }, - { - "name": "Andreas Kuffner", - "gender": "M", - "height": "196", - "weight": "94", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Julius Khn", - "gender": "M", - "height": "198", - "weight": "110", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 23, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Nikolay Yulyevich Kuksenkov", - "gender": "M", - "height": "172", - "weight": "65", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Gymnastics Men's Team All-Around", - "medal": "Silver" - }, - { - "name": "Jaroslav Kulhav", - "gender": "M", - "height": "188", - "weight": "77", - "sport": "Cycling", - "team": "Czech Republic", - "noc": "CZE", - "age": 31, - "event": "Cycling Men's Mountainbike, Cross-team", - "medal": "Silver" - }, - { - "name": "Serhiy Volodymyrovych Kulish", - "gender": "M", - "height": "176", - "weight": "64", - "sport": "Shooting", - "team": "Ukraine", - "noc": "UKR", - "age": 23, - "event": "Shooting Men's Air Rifle, 10 metres", - "medal": "Silver" - }, - { - "name": "Semi Kunabuli Kunatani", - "gender": "M", - "height": "192", - "weight": "98", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 25, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Kahena Kunze", - "gender": "F", - "height": "172", - "weight": "68", - "sport": "Sailing", - "team": "Brazil", - "noc": "BRA", - "age": 25, - "event": "Sailing Women's Skiff", - "medal": "Gold" - }, - { - "name": "Kuo Hsing-Chun", - "gender": "F", - "height": "157", - "weight": "58", - "sport": "Weightlifting", - "team": "Chinese Taipei", - "noc": "TPE", - "age": 22, - "event": "Weightlifting Women's Lightweight", - "medal": "Bronze" - }, - { - "name": "Amanda Maria Kurtovic", - "gender": "F", - "height": "175", - "weight": "71", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 25, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Polina Viktorovna Kuznetsova (Vyakhireva-)", - "gender": "F", - "height": "168", - "weight": "60", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 29, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Nataliya Yuryevna Kuzyutina", - "gender": "F", - "height": "160", - "weight": "52", - "sport": "Judo", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Judo Women's Half-Lightweight", - "medal": "Bronze" - }, - { - "name": "Petra Kvitov", - "gender": "F", - "height": "183", - "weight": "70", - "sport": "Tennis", - "team": "Czech Republic", - "noc": "CZE", - "age": 26, - "event": "Tennis Women's Singles", - "medal": "Bronze" - }, - { - "name": "Julio Csar La Cruz Peraza", - "gender": "M", - "height": "182", - "weight": "81", - "sport": "Boxing", - "team": "Cuba", - "noc": "CUB", - "age": 26, - "event": "Boxing Men's Light-Heavyweight", - "medal": "Gold" - }, - { - "name": "Stephanie Lynn Marie Labb", - "gender": "F", - "height": "178", - "weight": "53", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 29, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Alexandra Lacrabre", - "gender": "F", - "height": "177", - "weight": "73", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 29, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Karim Florent Laghouag", - "gender": "M", - "height": "177", - "weight": "70", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 40, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Gold" - }, - { - "name": "Eric Lamaze", - "gender": "M", - "height": "170", - "weight": "65", - "sport": "Equestrianism", - "team": "Canada", - "noc": "CAN", - "age": 48, - "event": "Equestrianism Mixed Jumping, Individual", - "medal": "Bronze" - }, - { - "name": "Niklas Landin Jacobsen", - "gender": "M", - "height": "201", - "weight": "102", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 27, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Laurisa Landre", - "gender": "F", - "height": "174", - "weight": "67", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 30, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Ghislaine Landry", - "gender": "F", - "height": "163", - "weight": "65", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 28, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Santiago Ral Lange Roberti", - "gender": "M", - "height": "184", - "weight": "73", - "sport": "Sailing", - "team": "Argentina", - "noc": "ARG", - "age": 54, - "event": "Sailing Mixed Multihull", - "medal": "Gold" - }, - { - "name": "Christopher Phillip \"Chris\" Langridge", - "gender": "M", - "height": "180", - "weight": "NA", - "sport": "Badminton", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Badminton Men's Doubles", - "medal": "Bronze" - }, - { - "name": "Matthew Keir \"Matt\" Langridge", - "gender": "M", - "height": "194", - "weight": "93", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 33, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Aurimas Lankas", - "gender": "M", - "height": "178", - "weight": "89", - "sport": "Canoeing", - "team": "Lithuania", - "noc": "LTU", - "age": 30, - "event": "Canoeing Men's Kayak Doubles, 200 metres", - "medal": "Bronze" - }, - { - "name": "Filippo Lanza", - "gender": "M", - "height": "198", - "weight": "98", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 25, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Yekaterina Alekseyevna Larionova", - "gender": "F", - "height": "158", - "weight": "63", - "sport": "Wrestling", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 22, - "event": "Wrestling Women's Middleweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Mitchell James \"Mitch\" Larkin", - "gender": "M", - "height": "187", - "weight": "72", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 23, - "event": "Swimming Men's 200 metres Backstroke", - "medal": "Silver" - }, - { - "name": "Mitchell James \"Mitch\" Larkin", - "gender": "M", - "height": "187", - "weight": "72", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 23, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Jacob Sgaard Larsen", - "gender": "M", - "height": "182", - "weight": "73", - "sport": "Rowing", - "team": "Denmark", - "noc": "DEN", - "age": 28, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Silver" - }, - { - "name": "Mads Mensah Larsen", - "gender": "M", - "height": "188", - "weight": "106", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 24, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Niklas Larsen", - "gender": "M", - "height": "180", - "weight": "74", - "sport": "Cycling", - "team": "Denmark", - "noc": "DEN", - "age": 19, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Bronze" - }, - { - "name": "Jordan Quinn Larson-Burbach", - "gender": "F", - "height": "188", - "weight": "75", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Simone Laudehr", - "gender": "F", - "height": "175", - "weight": "56", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 30, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Jack David Laugher", - "gender": "M", - "height": "166", - "weight": "65", - "sport": "Diving", - "team": "Great Britain", - "noc": "GBR", - "age": 21, - "event": "Diving Men's Springboard", - "medal": "Silver" - }, - { - "name": "Jack David Laugher", - "gender": "M", - "height": "166", - "weight": "65", - "sport": "Diving", - "team": "Great Britain", - "noc": "GBR", - "age": 21, - "event": "Diving Men's Synchronized Springboard", - "medal": "Gold" - }, - { - "name": "Renaud Lavillenie", - "gender": "M", - "height": "177", - "weight": "71", - "sport": "Athletics", - "team": "France", - "noc": "FRA", - "age": 29, - "event": "Athletics Men's Pole Vault", - "medal": "Silver" - }, - { - "name": "Ashley Lawrence", - "gender": "F", - "height": "163", - "weight": "59", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 21, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Kirsti Lay (-Giroux)", - "gender": "F", - "height": "173", - "weight": "65", - "sport": "Cycling", - "team": "Canada", - "noc": "CAN", - "age": 28, - "event": "Cycling Women's Team Pursuit", - "medal": "Bronze" - }, - { - "name": "Le Chien-Ying", - "gender": "F", - "height": "165", - "weight": "69", - "sport": "Archery", - "team": "Chinese Taipei", - "noc": "TPE", - "age": 26, - "event": "Archery Women's Team", - "medal": "Bronze" - }, - { - "name": "Chad Guy Bertrand le Clos", - "gender": "M", - "height": "190", - "weight": "83", - "sport": "Swimming", - "team": "South Africa", - "noc": "RSA", - "age": 24, - "event": "Swimming Men's 200 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Chad Guy Bertrand le Clos", - "gender": "M", - "height": "190", - "weight": "83", - "sport": "Swimming", - "team": "South Africa", - "noc": "RSA", - "age": 24, - "event": "Swimming Men's 100 metres Butterfly", - "medal": "Silver" - }, - { - "name": "Pierre Le Coq", - "gender": "M", - "height": "186", - "weight": "72", - "sport": "Sailing", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Sailing Men's Windsurfer", - "medal": "Bronze" - }, - { - "name": "Erwann Lucien douard Le Pchoux", - "gender": "M", - "height": "171", - "weight": "65", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 34, - "event": "Fencing Men's Foil, Team", - "medal": "Silver" - }, - { - "name": "Barbara Lechner-Engleder", - "gender": "F", - "height": "162", - "weight": "72", - "sport": "Shooting", - "team": "Germany", - "noc": "GER", - "age": 33, - "event": "Shooting Women's Small-Bore Rifle, Three Positions, 50 metres", - "medal": "Gold" - }, - { - "name": "Camille Lecointre", - "gender": "F", - "height": "159", - "weight": "56", - "sport": "Sailing", - "team": "France", - "noc": "FRA", - "age": 31, - "event": "Sailing Women's Two Person Dinghy", - "medal": "Bronze" - }, - { - "name": "Kathleen Genevieve \"Katie\" Ledecky", - "gender": "F", - "height": "183", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 200 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Kathleen Genevieve \"Katie\" Ledecky", - "gender": "F", - "height": "183", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 400 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Kathleen Genevieve \"Katie\" Ledecky", - "gender": "F", - "height": "183", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 800 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Kathleen Genevieve \"Katie\" Ledecky", - "gender": "F", - "height": "183", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Kathleen Genevieve \"Katie\" Ledecky", - "gender": "F", - "height": "183", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Lee Chong Wei", - "gender": "M", - "height": "170", - "weight": "68", - "sport": "Badminton", - "team": "Malaysia", - "noc": "MAS", - "age": 33, - "event": "Badminton Men's Singles", - "medal": "Silver" - }, - { - "name": "Lee Dae-Hun", - "gender": "M", - "height": "183", - "weight": "70", - "sport": "Taekwondo", - "team": "South Korea", - "noc": "KOR", - "age": 24, - "event": "Taekwondo Men's Featherweight", - "medal": "Bronze" - }, - { - "name": "David Cameron Lee", - "gender": "M", - "height": "203", - "weight": "105", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 34, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Lee Seung-Yun", - "gender": "M", - "height": "174", - "weight": "80", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 21, - "event": "Archery Men's Team", - "medal": "Gold" - }, - { - "name": "Zoe Samantha Lee", - "gender": "F", - "height": "176", - "weight": "70", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 30, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Enzo-Boris Lefort", - "gender": "M", - "height": "190", - "weight": "80", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Fencing Men's Foil, Team", - "medal": "Silver" - }, - { - "name": "Christophe Alexandre Christian Lematre", - "gender": "M", - "height": "190", - "weight": "74", - "sport": "Athletics", - "team": "France", - "noc": "FRA", - "age": 26, - "event": "Athletics Men's 200 metres", - "medal": "Bronze" - }, - { - "name": "Finn Lemke", - "gender": "M", - "height": "210", - "weight": "115", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Mathieu Lemoine", - "gender": "M", - "height": "176", - "weight": "70", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 32, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Gold" - }, - { - "name": "Pnlope Leprvost", - "gender": "F", - "height": "175", - "weight": "55", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 36, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Gold" - }, - { - "name": "Aleksandr Leonidovich Lesun", - "gender": "M", - "height": "185", - "weight": "74", - "sport": "Modern Pentathlon", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Modern Pentathlon Men's Individual", - "medal": "Gold" - }, - { - "name": "Joanna Leszczyska", - "gender": "F", - "height": "183", - "weight": "75", - "sport": "Rowing", - "team": "Poland", - "noc": "POL", - "age": 27, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Bronze" - }, - { - "name": "Melanie Leupolz", - "gender": "F", - "height": "173", - "weight": "52", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 22, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Laurien Leurink", - "gender": "F", - "height": "173", - "weight": "67", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 21, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Olga Sergeyevna Levina-Akopyan", - "gender": "F", - "height": "176", - "weight": "63", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 31, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Vasily Alekseyevich Levit", - "gender": "M", - "height": "185", - "weight": "91", - "sport": "Boxing", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 28, - "event": "Boxing Men's Heavyweight", - "medal": "Silver" - }, - { - "name": "Amandine Suzanne Monique Leynaud", - "gender": "F", - "height": "178", - "weight": "64", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 30, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Danell Johan Leyva Gonzalez", - "gender": "M", - "height": "170", - "weight": "68", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Gymnastics Men's Parallel Bars", - "medal": "Silver" - }, - { - "name": "Danell Johan Leyva Gonzalez", - "gender": "M", - "height": "170", - "weight": "68", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Gymnastics Men's Horizontal Bar", - "medal": "Silver" - }, - { - "name": "Li Dan", - "gender": "F", - "height": "155", - "weight": "47", - "sport": "Trampolining", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Trampolining Women's Individual", - "medal": "Bronze" - }, - { - "name": "Li Qian", - "gender": "F", - "height": "180", - "weight": "75", - "sport": "Boxing", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Boxing Women's Middleweight", - "medal": "Bronze" - }, - { - "name": "Li Xiaolu", - "gender": "F", - "height": "167", - "weight": "51", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "Li Xiaoxia", - "gender": "F", - "height": "174", - "weight": "65", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 28, - "event": "Table Tennis Women's Singles", - "medal": "Silver" - }, - { - "name": "Li Xiaoxia", - "gender": "F", - "height": "174", - "weight": "65", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 28, - "event": "Table Tennis Women's Team", - "medal": "Gold" - }, - { - "name": "Li Yuehong", - "gender": "M", - "height": "173", - "weight": "71", - "sport": "Shooting", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Shooting Men's Rapid-Fire Pistol, 25 metres", - "medal": "Bronze" - }, - { - "name": "Liang Xinping", - "gender": "F", - "height": "171", - "weight": "60", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 22, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "Tom Liebscher", - "gender": "M", - "height": "189", - "weight": "89", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 23, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Julia Lier", - "gender": "F", - "height": "183", - "weight": "78", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Gold" - }, - { - "name": "Elis Ligtlee", - "gender": "F", - "height": "185", - "weight": "90", - "sport": "Cycling", - "team": "Netherlands", - "noc": "NED", - "age": 22, - "event": "Cycling Women's Keirin", - "medal": "Gold" - }, - { - "name": "Feyisa Lilesa", - "gender": "M", - "height": "175", - "weight": "67", - "sport": "Athletics", - "team": "Ethiopia", - "noc": "ETH", - "age": 26, - "event": "Athletics Men's Marathon", - "medal": "Silver" - }, - { - "name": "Lin Chaopan", - "gender": "M", - "height": "163", - "weight": "60", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 20, - "event": "Gymnastics Men's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Lin Li", - "gender": "F", - "height": "171", - "weight": "70", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Lin Shih-Chia", - "gender": "F", - "height": "160", - "weight": "65", - "sport": "Archery", - "team": "Chinese Taipei", - "noc": "TPE", - "age": 23, - "event": "Archery Women's Team", - "medal": "Bronze" - }, - { - "name": "Lin Yue", - "gender": "M", - "height": "163", - "weight": "53", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Diving Men's Synchronized Platform", - "medal": "Gold" - }, - { - "name": "Rut Hedvig Lindahl", - "gender": "F", - "height": "179", - "weight": "74", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 33, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Oliver William Lindsay-Hague", - "gender": "M", - "height": "180", - "weight": "83", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Edward Theodore \"Ed\" Ling", - "gender": "M", - "height": "180", - "weight": "80", - "sport": "Shooting", - "team": "Great Britain", - "noc": "GBR", - "age": 33, - "event": "Shooting Men's Trap", - "medal": "Bronze" - }, - { - "name": "Tibor Linka", - "gender": "M", - "height": "199", - "weight": "95", - "sport": "Canoeing", - "team": "Slovakia", - "noc": "SVK", - "age": 21, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Varlam Lip'art'eliani", - "gender": "M", - "height": "187", - "weight": "94", - "sport": "Judo", - "team": "Georgia", - "noc": "GEO", - "age": 27, - "event": "Judo Men's Middleweight", - "medal": "Silver" - }, - { - "name": "Liu Hong", - "gender": "F", - "height": "160", - "weight": "50", - "sport": "Athletics", - "team": "China", - "noc": "CHN", - "age": 29, - "event": "Athletics Women's 20 kilometres Walk", - "medal": "Gold" - }, - { - "name": "Liu Huixia", - "gender": "F", - "height": "157", - "weight": "48", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 18, - "event": "Diving Women's Synchronized Platform", - "medal": "Gold" - }, - { - "name": "Liu Shiwen", - "gender": "F", - "height": "160", - "weight": "54", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Table Tennis Women's Team", - "medal": "Gold" - }, - { - "name": "Liu Xiaotong", - "gender": "F", - "height": "188", - "weight": "70", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Liu Yang", - "gender": "M", - "height": "162", - "weight": "61", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 21, - "event": "Gymnastics Men's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Hac liyev", - "gender": "M", - "height": "168", - "weight": "65", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 25, - "event": "Wrestling Men's Featherweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Carli Ellen Lloyd", - "gender": "F", - "height": "180", - "weight": "75", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Sergio Llull Meli", - "gender": "M", - "height": "192", - "weight": "91", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 28, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Ryan Steven Lochte", - "gender": "M", - "height": "188", - "weight": "88", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 32, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "William Lockwood", - "gender": "M", - "height": "191", - "weight": "88", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 28, - "event": "Rowing Men's Coxless Fours", - "medal": "Silver" - }, - { - "name": "Matteo Lodo", - "gender": "M", - "height": "196", - "weight": "90", - "sport": "Rowing", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Rowing Men's Coxless Fours", - "medal": "Bronze" - }, - { - "name": "Eleanor \"Elle\" Logan", - "gender": "F", - "height": "188", - "weight": "86", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Tatyana Yuryevna Logunova", - "gender": "F", - "height": "174", - "weight": "62", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 36, - "event": "Fencing Women's epee, Team", - "medal": "Bronze" - }, - { - "name": "Luka Lonar", - "gender": "M", - "height": "195", - "weight": "106", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 29, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Long Qingquan", - "gender": "M", - "height": "150", - "weight": "56", - "sport": "Weightlifting", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Weightlifting Men's Bantamweight", - "medal": "Gold" - }, - { - "name": "Elisa Longo Borghini", - "gender": "F", - "height": "170", - "weight": "59", - "sport": "Cycling", - "team": "Italy", - "noc": "ITA", - "age": 24, - "event": "Cycling Women's Road Race, Individual", - "medal": "Bronze" - }, - { - "name": "Arlen Lpez Cardona", - "gender": "M", - "height": "178", - "weight": "75", - "sport": "Boxing", - "team": "Cuba", - "noc": "CUB", - "age": 23, - "event": "Boxing Men's Middleweight", - "medal": "Gold" - }, - { - "name": "Elena Lpez Benaches", - "gender": "F", - "height": "169", - "weight": "56", - "sport": "Rhythmic Gymnastics", - "team": "Spain", - "noc": "ESP", - "age": 21, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Silver" - }, - { - "name": "Juan Martn Lpez", - "gender": "M", - "height": "178", - "weight": "74", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 31, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Marc Lpez i Tarrs", - "gender": "M", - "height": "175", - "weight": "71", - "sport": "Tennis", - "team": "Spain-2", - "noc": "ESP", - "age": 34, - "event": "Tennis Men's Doubles", - "medal": "Gold" - }, - { - "name": "Mijan Lpez Nez", - "gender": "M", - "height": "198", - "weight": "130", - "sport": "Wrestling", - "team": "Cuba", - "noc": "CUB", - "age": 33, - "event": "Wrestling Men's Super-Heavyweight, Greco-Roman", - "medal": "Gold" - }, - { - "name": "Nike Lorenz", - "gender": "F", - "height": "170", - "weight": "69", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 19, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Constantine Michael Louloudis", - "gender": "M", - "height": "190", - "weight": "92", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Rowing Men's Coxless Fours", - "medal": "Gold" - }, - { - "name": "Karsta Lowe", - "gender": "F", - "height": "193", - "weight": "82", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Kyle Lowry", - "gender": "M", - "height": "183", - "weight": "93", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Heidi Lke", - "gender": "F", - "height": "173", - "weight": "68", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 33, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Lu Xiaojun", - "gender": "M", - "height": "172", - "weight": "77", - "sport": "Weightlifting", - "team": "China", - "noc": "CHN", - "age": 32, - "event": "Weightlifting Men's Middleweight", - "medal": "Silver" - }, - { - "name": "Lu Xiuzhi", - "gender": "F", - "height": "160", - "weight": "45", - "sport": "Athletics", - "team": "China", - "noc": "CHN", - "age": 22, - "event": "Athletics Women's 20 kilometres Walk", - "medal": "Bronze" - }, - { - "name": "Luan Guilherme de Jesus Vieira", - "gender": "M", - "height": "180", - "weight": "71", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 23, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Luan Garcia Teixeira", - "gender": "M", - "height": "183", - "weight": "79", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 23, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Ricardo Samuel Lucarelli Santos de Souza", - "gender": "M", - "height": "195", - "weight": "79", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 24, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Jean-Michel Lucenay", - "gender": "M", - "height": "186", - "weight": "78", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 38, - "event": "Fencing Men's epee, Team", - "medal": "Gold" - }, - { - "name": "Robert Lcken", - "gender": "M", - "height": "199", - "weight": "95", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 31, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Laura Ludwig", - "gender": "F", - "height": "181", - "weight": "70", - "sport": "Beach Volleyball", - "team": "Germany-1", - "noc": "GER", - "age": 30, - "event": "Beach Volleyball Women's Beach Volleyball", - "medal": "Gold" - }, - { - "name": "Yasmany Daniel Lugo Cabrera", - "gender": "M", - "height": "190", - "weight": "98", - "sport": "Wrestling", - "team": "Cuba", - "noc": "CUB", - "age": 26, - "event": "Wrestling Men's Heavyweight, Greco-Roman", - "medal": "Silver" - }, - { - "name": "Luiz Felipe Marques Fonteles", - "gender": "M", - "height": "196", - "weight": "89", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 32, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Megan Lukan", - "gender": "F", - "height": "170", - "weight": "58", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Kristine Lunde-Borgersen", - "gender": "F", - "height": "181", - "weight": "67", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 36, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Daniele Lupo", - "gender": "M", - "height": "183", - "weight": "77", - "sport": "Beach Volleyball", - "team": "Italy-1", - "noc": "ITA", - "age": 25, - "event": "Beach Volleyball Men's Beach Volleyball", - "medal": "Silver" - }, - { - "name": "Lock Luypaert", - "gender": "M", - "height": "181", - "weight": "78", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 24, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Ma Long", - "gender": "M", - "height": "175", - "weight": "72", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Table Tennis Men's Singles", - "medal": "Gold" - }, - { - "name": "Ma Long", - "gender": "M", - "height": "175", - "weight": "72", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Table Tennis Men's Team", - "medal": "Gold" - }, - { - "name": "Marko Macan", - "gender": "M", - "height": "196", - "weight": "109", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 23, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Brittany MacLean", - "gender": "F", - "height": "172", - "weight": "70", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 22, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Rosannagh \"Rosie\" MacLennan", - "gender": "F", - "height": "158", - "weight": "54", - "sport": "Trampolining", - "team": "Canada", - "noc": "CAN", - "age": 27, - "event": "Trampolining Women's Individual", - "medal": "Gold" - }, - { - "name": "Hannah Louise Macleod", - "gender": "F", - "height": "172", - "weight": "67", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 32, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Milan Mavan", - "gender": "M", - "height": "205", - "weight": "107", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 26, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Natalia Madaj", - "gender": "F", - "height": "175", - "weight": "68", - "sport": "Rowing", - "team": "Poland", - "noc": "POL", - "age": 28, - "event": "Rowing Women's Double Sculls", - "medal": "Gold" - }, - { - "name": "Elizabeth \"Beezie\" Madden (Patton-)", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 52, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Silver" - }, - { - "name": "Tianna Madison-Bartoletta", - "gender": "F", - "height": "168", - "weight": "58", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Tianna Madison-Bartoletta", - "gender": "F", - "height": "168", - "weight": "58", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Women's Long Jump", - "medal": "Gold" - }, - { - "name": "Frederik Rodenberg Madsen", - "gender": "M", - "height": "187", - "weight": "73", - "sport": "Cycling", - "team": "Denmark", - "noc": "DEN", - "age": 18, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Bronze" - }, - { - "name": "Mark Overgaard Madsen", - "gender": "M", - "height": "177", - "weight": "80", - "sport": "Wrestling", - "team": "Denmark", - "noc": "DEN", - "age": 31, - "event": "Wrestling Men's Middleweight, Greco-Roman", - "medal": "Silver" - }, - { - "name": "Kingsley Madu", - "gender": "M", - "height": "171", - "weight": "79", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 20, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Mihaela Maevska", - "gender": "F", - "height": "172", - "weight": "54", - "sport": "Rhythmic Gymnastics", - "team": "Bulgaria", - "noc": "BUL", - "age": 25, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Bronze" - }, - { - "name": "James Magnussen", - "gender": "M", - "height": "198", - "weight": "94", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 25, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Kentin Mah", - "gender": "M", - "height": "186", - "weight": "83", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 25, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Leonie Rebekka Maier", - "gender": "F", - "height": "163", - "weight": "62", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 23, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Sandrine Mainville", - "gender": "F", - "height": "173", - "weight": "65", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Rafa Majka", - "gender": "M", - "height": "173", - "weight": "61", - "sport": "Cycling", - "team": "Poland", - "noc": "POL", - "age": 26, - "event": "Cycling Men's Road Race, Individual", - "medal": "Bronze" - }, - { - "name": "Yekaterina Valeryevna Makarova", - "gender": "F", - "height": "176", - "weight": "65", - "sport": "Tennis", - "team": "Russia-2", - "noc": "RUS", - "age": 28, - "event": "Tennis Women's Doubles", - "medal": "Gold" - }, - { - "name": "Taoufik Makhloufi", - "gender": "M", - "height": "170", - "weight": "67", - "sport": "Athletics", - "team": "Algeria", - "noc": "ALG", - "age": 28, - "event": "Athletics Men's 800 metres", - "medal": "Silver" - }, - { - "name": "Taoufik Makhloufi", - "gender": "M", - "height": "170", - "weight": "67", - "sport": "Athletics", - "team": "Algeria", - "noc": "ALG", - "age": 28, - "event": "Athletics Men's 1,500 metres", - "medal": "Silver" - }, - { - "name": "Anastasiya Ivanovna Maksimova", - "gender": "F", - "height": "170", - "weight": "50", - "sport": "Rhythmic Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Gold" - }, - { - "name": "Hedaya Ahmad Malak Wahba", - "gender": "F", - "height": "174", - "weight": "57", - "sport": "Taekwondo", - "team": "Egypt", - "noc": "EGY", - "age": 23, - "event": "Taekwondo Women's Featherweight", - "medal": "Bronze" - }, - { - "name": "Tijana Maleevi", - "gender": "F", - "height": "185", - "weight": "78", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 25, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Sakshi Malik", - "gender": "F", - "height": "162", - "weight": "58", - "sport": "Wrestling", - "team": "India", - "noc": "IND", - "age": 23, - "event": "Wrestling Women's Lightweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Alexandra Maria \"Alex\" Maloney", - "gender": "F", - "height": "158", - "weight": "56", - "sport": "Sailing", - "team": "New Zealand", - "noc": "NZL", - "age": 24, - "event": "Sailing Women's Skiff", - "medal": "Silver" - }, - { - "name": "Mariya Ruslanovna Mamoshuk", - "gender": "F", - "height": "163", - "weight": "65", - "sport": "Wrestling", - "team": "Belarus", - "noc": "BLR", - "age": 23, - "event": "Wrestling Women's Middleweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Margarita Abdullayevna Mamun", - "gender": "F", - "height": "170", - "weight": "50", - "sport": "Rhythmic Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 20, - "event": "Rhythmic Gymnastics Women's Individual", - "medal": "Gold" - }, - { - "name": "Florent Manaudou", - "gender": "M", - "height": "199", - "weight": "99", - "sport": "Swimming", - "team": "France", - "noc": "FRA", - "age": 25, - "event": "Swimming Men's 50 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Florent Manaudou", - "gender": "M", - "height": "199", - "weight": "99", - "sport": "Swimming", - "team": "France", - "noc": "FRA", - "age": 25, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Duan Mandi", - "gender": "M", - "height": "202", - "weight": "105", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 22, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Panagiotis Mantis", - "gender": "M", - "height": "180", - "weight": "65", - "sport": "Sailing", - "team": "Greece", - "noc": "GRE", - "age": 34, - "event": "Sailing Men's Two Person Dinghy", - "medal": "Bronze" - }, - { - "name": "Huriana Manuel", - "gender": "F", - "height": "166", - "weight": "65", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 29, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Simone Ashley Manuel", - "gender": "F", - "height": "178", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Swimming Women's 50 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Simone Ashley Manuel", - "gender": "F", - "height": "178", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Swimming Women's 100 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Simone Ashley Manuel", - "gender": "F", - "height": "178", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Simone Ashley Manuel", - "gender": "F", - "height": "178", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Luvo Manyonga", - "gender": "M", - "height": "NA", - "weight": "NA", - "sport": "Athletics", - "team": "South Africa", - "noc": "RSA", - "age": 25, - "event": "Athletics Men's Long Jump", - "medal": "Silver" - }, - { - "name": "Gyuzel Tagirovna Manyurova", - "gender": "F", - "height": "174", - "weight": "75", - "sport": "Wrestling", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 38, - "event": "Wrestling Women's Heavyweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Mao Yi", - "gender": "F", - "height": "151", - "weight": "35", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 16, - "event": "Gymnastics Women's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Katy Louise Marchant", - "gender": "F", - "height": "170", - "weight": "72", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Cycling Women's Sprint", - "medal": "Bronze" - }, - { - "name": "Igor Mareni", - "gender": "M", - "height": "173", - "weight": "70", - "sport": "Sailing", - "team": "Croatia", - "noc": "CRO", - "age": 30, - "event": "Sailing Men's Two Person Dinghy", - "medal": "Gold" - }, - { - "name": "Yekaterina Aleksandrovna Marennikova", - "gender": "F", - "height": "176", - "weight": "70", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 34, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Cyrille Maret", - "gender": "M", - "height": "189", - "weight": "108", - "sport": "Judo", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Judo Men's Half-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Melanie Margalis", - "gender": "F", - "height": "173", - "weight": "65", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Arthur Nory Oyakawa Mariano", - "gender": "M", - "height": "169", - "weight": "65", - "sport": "Gymnastics", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Gymnastics Men's Floor Exercise", - "medal": "Bronze" - }, - { - "name": "Carolina Mara Marn Marn", - "gender": "F", - "height": "172", - "weight": "65", - "sport": "Badminton", - "team": "Spain", - "noc": "ESP", - "age": 23, - "event": "Badminton Women's Singles", - "medal": "Gold" - }, - { - "name": "Stefan Markovi", - "gender": "M", - "height": "199", - "weight": "96", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 28, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Helen Louise Maroulis", - "gender": "F", - "height": "163", - "weight": "57", - "sport": "Wrestling", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Wrestling Women's Featherweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Dzsenifer Marozsn", - "gender": "F", - "height": "171", - "weight": "68", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Marcos \"Marquinhos\" Aos Corra", - "gender": "M", - "height": "185", - "weight": "75", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Damir Martin", - "gender": "M", - "height": "189", - "weight": "97", - "sport": "Rowing", - "team": "Croatia", - "noc": "CRO", - "age": 28, - "event": "Rowing Men's Single Sculls", - "medal": "Silver" - }, - { - "name": "Yurberjen Herney Martnez Rivas", - "gender": "M", - "height": "165", - "weight": "49", - "sport": "Boxing", - "team": "Colombia", - "noc": "COL", - "age": 24, - "event": "Boxing Men's Light-Flyweight", - "medal": "Silver" - }, - { - "name": "Simon Martirosyan", - "gender": "M", - "height": "181", - "weight": "105", - "sport": "Weightlifting", - "team": "Armenia", - "noc": "ARM", - "age": 19, - "event": "Weightlifting Men's Heavyweight", - "medal": "Silver" - }, - { - "name": "Anita Mrton", - "gender": "F", - "height": "172", - "weight": "95", - "sport": "Athletics", - "team": "Hungary", - "noc": "HUN", - "age": 27, - "event": "Athletics Women's Shot Put", - "medal": "Bronze" - }, - { - "name": "Kei Marumo", - "gender": "F", - "height": "160", - "weight": "50", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 24, - "event": "Synchronized Swimming Women's Team", - "medal": "Bronze" - }, - { - "name": "Vladimir Anatolyevich Maslennikov", - "gender": "M", - "height": "171", - "weight": "73", - "sport": "Shooting", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Shooting Men's Air Rifle, 10 metres", - "medal": "Bronze" - }, - { - "name": "Kylie Jacqueline Masse", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 20, - "event": "Swimming Women's 100 metres Backstroke", - "medal": "Bronze" - }, - { - "name": "Kelly Massey", - "gender": "F", - "height": "178", - "weight": "57", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Alexander Chen Massialas", - "gender": "M", - "height": "188", - "weight": "81", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Fencing Men's Foil, Individual", - "medal": "Silver" - }, - { - "name": "Alexander Chen Massialas", - "gender": "M", - "height": "188", - "weight": "81", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Fencing Men's Foil, Team", - "medal": "Bronze" - }, - { - "name": "Luca Masso", - "gender": "M", - "height": "186", - "weight": "82", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 22, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Viliame Sevaka Mata", - "gender": "M", - "height": "196", - "weight": "106", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 24, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Diana Beverly Matheson", - "gender": "F", - "height": "153", - "weight": "54", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 32, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Courtney Lynn Kaiulani Mathewson", - "gender": "F", - "height": "171", - "weight": "69", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Michael Walter Mathieu", - "gender": "M", - "height": "178", - "weight": "76", - "sport": "Athletics", - "team": "Bahamas", - "noc": "BAH", - "age": 32, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Takeshi Matsuda", - "gender": "M", - "height": "184", - "weight": "84", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 32, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Kaori Matsumoto", - "gender": "F", - "height": "163", - "weight": "57", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 28, - "event": "Judo Women's Lightweight", - "medal": "Bronze" - }, - { - "name": "Misaki Matsutomo", - "gender": "F", - "height": "160", - "weight": "50", - "sport": "Badminton", - "team": "Japan", - "noc": "JPN", - "age": 24, - "event": "Badminton Women's Doubles", - "medal": "Gold" - }, - { - "name": "Bethanie Lynn Mattek-Sands", - "gender": "F", - "height": "168", - "weight": "66", - "sport": "Tennis", - "team": "United States-2", - "noc": "USA", - "age": 31, - "event": "Tennis Mixed Doubles", - "medal": "Gold" - }, - { - "name": "Peter Matthews", - "gender": "M", - "height": "188", - "weight": "84", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 26, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Sofia Magdalena Mattsson", - "gender": "F", - "height": "164", - "weight": "56", - "sport": "Wrestling", - "team": "Sweden", - "noc": "SWE", - "age": 26, - "event": "Wrestling Women's Featherweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Marie Mvers", - "gender": "F", - "height": "170", - "weight": "67", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Philipp Max", - "gender": "M", - "height": "177", - "weight": "76", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 22, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Kvin Mayer", - "gender": "M", - "height": "186", - "weight": "77", - "sport": "Athletics", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Athletics Men's Decathlon", - "medal": "Silver" - }, - { - "name": "Agustn Alejandro Mazzilli", - "gender": "M", - "height": "173", - "weight": "77", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 27, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Piotr Maachowski", - "gender": "M", - "height": "193", - "weight": "130", - "sport": "Athletics", - "team": "Poland", - "noc": "POL", - "age": 33, - "event": "Athletics Men's Discus Throw", - "medal": "Silver" - }, - { - "name": "Kayla McAlister", - "gender": "F", - "height": "169", - "weight": "70", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 27, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Shona Clare McCallin", - "gender": "F", - "height": "165", - "weight": "69", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Eliza McCartney", - "gender": "F", - "height": "179", - "weight": "66", - "sport": "Athletics", - "team": "New Zealand", - "noc": "NZL", - "age": 19, - "event": "Athletics Women's Pole Vault", - "medal": "Bronze" - }, - { - "name": "Ruaridh Lawson McConnochie", - "gender": "M", - "height": "190", - "weight": "93", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Francena Lynette McCorory", - "gender": "F", - "height": "171", - "weight": "68", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Angel Lajuane McCoughtry", - "gender": "F", - "height": "185", - "weight": "70", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Rusheen McDonald", - "gender": "M", - "height": "175", - "weight": "81", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 23, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Cameron McEvoy", - "gender": "M", - "height": "185", - "weight": "70", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Cameron McEvoy", - "gender": "M", - "height": "185", - "weight": "70", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Emma McKeon", - "gender": "F", - "height": "180", - "weight": "60", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 200 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Emma McKeon", - "gender": "F", - "height": "180", - "weight": "60", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Emma McKeon", - "gender": "F", - "height": "180", - "weight": "60", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Emma McKeon", - "gender": "F", - "height": "180", - "weight": "60", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Taylor McKeown", - "gender": "F", - "height": "178", - "weight": "65", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 21, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Anneisha McLaughlin-Whilby", - "gender": "F", - "height": "170", - "weight": "65", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 30, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Omar McLeod", - "gender": "M", - "height": "180", - "weight": "NA", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 22, - "event": "Athletics Men's 110 metres Hurdles", - "medal": "Gold" - }, - { - "name": "Stephenie Ann McPherson", - "gender": "F", - "height": "173", - "weight": "57", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 27, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Tony McQuay", - "gender": "M", - "height": "181", - "weight": "72", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "James McRae", - "gender": "M", - "height": "193", - "weight": "93", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 29, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Silver" - }, - { - "name": "Anna Maree Devenish Meares", - "gender": "F", - "height": "165", - "weight": "70", - "sport": "Cycling", - "team": "Australia", - "noc": "AUS", - "age": 32, - "event": "Cycling Women's Keirin", - "medal": "Bronze" - }, - { - "name": "Christopher James \"Chris\" Mears", - "gender": "M", - "height": "172", - "weight": "70", - "sport": "Diving", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Diving Men's Synchronized Springboard", - "medal": "Gold" - }, - { - "name": "Molly Meech", - "gender": "F", - "height": "178", - "weight": "74", - "sport": "Sailing", - "team": "New Zealand", - "noc": "NZL", - "age": 23, - "event": "Sailing Women's Skiff", - "medal": "Silver" - }, - { - "name": "Sam Meech", - "gender": "M", - "height": "183", - "weight": "81", - "sport": "Sailing", - "team": "New Zealand", - "noc": "NZL", - "age": 25, - "event": "Sailing Men's One Person Dinghy", - "medal": "Bronze" - }, - { - "name": "Robert Meeuwsen", - "gender": "M", - "height": "207", - "weight": "92", - "sport": "Beach Volleyball", - "team": "Netherlands-1", - "noc": "NED", - "age": 28, - "event": "Beach Volleyball Men's Beach Volleyball", - "medal": "Bronze" - }, - { - "name": "Catherine Michelle \"Katie\" Meili", - "gender": "F", - "height": "170", - "weight": "61", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Swimming Women's 100 metres Breaststroke", - "medal": "Bronze" - }, - { - "name": "Catherine Michelle \"Katie\" Meili", - "gender": "F", - "height": "170", - "weight": "61", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Gerek Lin Meinhardt", - "gender": "M", - "height": "183", - "weight": "80", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Fencing Men's Foil, Team", - "medal": "Bronze" - }, - { - "name": "Mahiedine Mekhissi-Benabbad", - "gender": "M", - "height": "190", - "weight": "75", - "sport": "Athletics", - "team": "France", - "noc": "FRA", - "age": 31, - "event": "Athletics Men's 3,000 metres Steeplechase", - "medal": "Bronze" - }, - { - "name": "Bektemir Ruzmatzhonovich Melikuziyev", - "gender": "M", - "height": "177", - "weight": "75", - "sport": "Boxing", - "team": "Uzbekistan", - "noc": "UZB", - "age": 20, - "event": "Boxing Men's Middleweight", - "medal": "Silver" - }, - { - "name": "Angelina Romanovna Melnikova", - "gender": "F", - "height": "151", - "weight": "44", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 16, - "event": "Gymnastics Women's Team All-Around", - "medal": "Silver" - }, - { - "name": "Meng Suping", - "gender": "F", - "height": "173", - "weight": "123", - "sport": "Weightlifting", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Weightlifting Women's Super-Heavyweight", - "medal": "Gold" - }, - { - "name": "Joaqun Menini", - "gender": "M", - "height": "182", - "weight": "76", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 24, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Florin Mergea", - "gender": "M", - "height": "180", - "weight": "76", - "sport": "Tennis", - "team": "Romania", - "noc": "ROU", - "age": 31, - "event": "Tennis Men's Doubles", - "medal": "Silver" - }, - { - "name": "LaShawn Merritt", - "gender": "M", - "height": "191", - "weight": "86", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Men's 400 metres", - "medal": "Bronze" - }, - { - "name": "LaShawn Merritt", - "gender": "M", - "height": "191", - "weight": "86", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Mehdy Metella", - "gender": "M", - "height": "190", - "weight": "90", - "sport": "Swimming", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Maximilian Meyer", - "gender": "M", - "height": "173", - "weight": "60", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 20, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Boaz Cornelius Meylink", - "gender": "M", - "height": "195", - "weight": "93", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 32, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "William Meynard", - "gender": "M", - "height": "190", - "weight": "85", - "sport": "Swimming", - "team": "France", - "noc": "FRA", - "age": 29, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Meredith T. Michaels-Beerbaum", - "gender": "F", - "height": "162", - "weight": "51", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 46, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Bronze" - }, - { - "name": "Monika Ewa Michalik (Rogien-)", - "gender": "F", - "height": "167", - "weight": "63", - "sport": "Wrestling", - "team": "Poland", - "noc": "POL", - "age": 36, - "event": "Wrestling Women's Middleweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Clment Mignon", - "gender": "M", - "height": "187", - "weight": "75", - "sport": "Swimming", - "team": "France", - "noc": "FRA", - "age": 23, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Brankica Mihajlovi", - "gender": "F", - "height": "190", - "weight": "83", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 25, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "John Michael Nchekwube Obinna \"John Mikel Obi\" Mikel", - "gender": "M", - "height": "179", - "weight": "86", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 29, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Beata Mikoajczyk", - "gender": "F", - "height": "170", - "weight": "68", - "sport": "Canoeing", - "team": "Poland", - "noc": "POL", - "age": 30, - "event": "Canoeing Women's Kayak Doubles, 500 metres", - "medal": "Bronze" - }, - { - "name": "Cody Miller", - "gender": "M", - "height": "180", - "weight": "80", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Swimming Men's 100 metres Breaststroke", - "medal": "Bronze" - }, - { - "name": "Cody Miller", - "gender": "M", - "height": "180", - "weight": "80", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Shaunae Miller (-Uibo)", - "gender": "F", - "height": "185", - "weight": "69", - "sport": "Athletics", - "team": "Bahamas", - "noc": "BAH", - "age": 22, - "event": "Athletics Women's 400 metres", - "medal": "Gold" - }, - { - "name": "Hannah Louise Mills", - "gender": "F", - "height": "157", - "weight": "50", - "sport": "Sailing", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Sailing Women's Two Person Dinghy", - "medal": "Gold" - }, - { - "name": "Stephen Milne", - "gender": "M", - "height": "185", - "weight": "76", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 22, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Jelena Milovanovi", - "gender": "F", - "height": "190", - "weight": "84", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 27, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Gor Minasyan", - "gender": "M", - "height": "180", - "weight": "140", - "sport": "Weightlifting", - "team": "Armenia", - "noc": "ARM", - "age": 21, - "event": "Weightlifting Men's Super-Heavyweight", - "medal": "Silver" - }, - { - "name": "Jevaughn Minzie", - "gender": "M", - "height": "178", - "weight": "85", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 21, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Nikola Miroti Stajovi", - "gender": "M", - "height": "208", - "weight": "100", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 25, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Taras Viktorovych Mishchuk", - "gender": "M", - "height": "187", - "weight": "85", - "sport": "Canoeing", - "team": "Ukraine", - "noc": "UKR", - "age": 21, - "event": "Canoeing Men's Canadian Doubles, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Ethan Mitchell", - "gender": "M", - "height": "180", - "weight": "83", - "sport": "Cycling", - "team": "New Zealand", - "noc": "NZL", - "age": 25, - "event": "Cycling Men's Team Sprint", - "medal": "Silver" - }, - { - "name": "Tom Mitchell", - "gender": "M", - "height": "178", - "weight": "85", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Branislav Mitrovi", - "gender": "M", - "height": "201", - "weight": "100", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 31, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Stefan Mitrovi", - "gender": "M", - "height": "195", - "weight": "91", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 28, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Risako Mitsui", - "gender": "F", - "height": "168", - "weight": "57", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 22, - "event": "Synchronized Swimming Women's Duet", - "medal": "Bronze" - }, - { - "name": "Risako Mitsui", - "gender": "F", - "height": "168", - "weight": "57", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 22, - "event": "Synchronized Swimming Women's Team", - "medal": "Bronze" - }, - { - "name": "Anja Mittag", - "gender": "F", - "height": "168", - "weight": "58", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 31, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Hiromi Miyake", - "gender": "F", - "height": "145", - "weight": "48", - "sport": "Weightlifting", - "team": "Japan", - "noc": "JPN", - "age": 30, - "event": "Weightlifting Women's Flyweight", - "medal": "Bronze" - }, - { - "name": "Jun Mizutani", - "gender": "M", - "height": "172", - "weight": "63", - "sport": "Table Tennis", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Table Tennis Men's Singles", - "medal": "Bronze" - }, - { - "name": "Jun Mizutani", - "gender": "M", - "height": "172", - "weight": "63", - "sport": "Table Tennis", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Table Tennis Men's Team", - "medal": "Silver" - }, - { - "name": "Lourdes Mohedano Snchez de Mora", - "gender": "F", - "height": "173", - "weight": "53", - "sport": "Rhythmic Gymnastics", - "team": "Spain", - "noc": "ESP", - "age": 21, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Silver" - }, - { - "name": "Kayla Moleschi", - "gender": "F", - "height": "159", - "weight": "65", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 25, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Mari Kristine Sbstad Molid", - "gender": "F", - "height": "178", - "weight": "73", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 25, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Telma Alexandra Pinto Monteiro", - "gender": "F", - "height": "161", - "weight": "57", - "sport": "Judo", - "team": "Portugal", - "noc": "POR", - "age": 30, - "event": "Judo Women's Lightweight", - "medal": "Bronze" - }, - { - "name": "Domenico Montrone", - "gender": "M", - "height": "189", - "weight": "97", - "sport": "Rowing", - "team": "Italy", - "noc": "ITA", - "age": 30, - "event": "Rowing Men's Coxless Fours", - "medal": "Bronze" - }, - { - "name": "Maya April Moore", - "gender": "F", - "height": "183", - "weight": "79", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Sohrab Moradi", - "gender": "M", - "height": "170", - "weight": "97", - "sport": "Weightlifting", - "team": "Iran", - "noc": "IRI", - "age": 27, - "event": "Weightlifting Men's Middle-Heavyweight", - "medal": "Gold" - }, - { - "name": "David Morgan", - "gender": "M", - "height": "184", - "weight": "82", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Sandi Morris", - "gender": "F", - "height": "173", - "weight": "62", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Athletics Women's Pole Vault", - "medal": "Silver" - }, - { - "name": "Casper Ulrich Mortensen", - "gender": "M", - "height": "190", - "weight": "88", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 26, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Lus Javier Mosquera Lozano", - "gender": "M", - "height": "165", - "weight": "64", - "sport": "Weightlifting", - "team": "Colombia", - "noc": "COL", - "age": 21, - "event": "Weightlifting Men's Lightweight", - "medal": "Bronze" - }, - { - "name": "Estelle Mossely", - "gender": "F", - "height": "168", - "weight": "60", - "sport": "Boxing", - "team": "France", - "noc": "FRA", - "age": 23, - "event": "Boxing Women's Lightweight", - "medal": "Gold" - }, - { - "name": "Nora Mrk", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 25, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Beslan Zaudinovich Mudranov", - "gender": "M", - "height": "166", - "weight": "60", - "sport": "Judo", - "team": "Russia", - "noc": "RUS", - "age": 30, - "event": "Judo Men's Extra-Lightweight", - "medal": "Gold" - }, - { - "name": "Dalilah Muhammad", - "gender": "F", - "height": "173", - "weight": "55", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Athletics Women's 400 metres Hurdles", - "medal": "Gold" - }, - { - "name": "Ibtihaj Muhammad", - "gender": "F", - "height": "170", - "weight": "68", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Fencing Women's Sabre, Team", - "medal": "Bronze" - }, - { - "name": "Lutalo Massop-Muhammad", - "gender": "M", - "height": "191", - "weight": "80", - "sport": "Taekwondo", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Taekwondo Men's Welterweight", - "medal": "Silver" - }, - { - "name": "Usman Edu Muhammed", - "gender": "M", - "height": "169", - "weight": "78", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 22, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Julia Mller", - "gender": "F", - "height": "170", - "weight": "71", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 30, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Mathias Mller", - "gender": "M", - "height": "187", - "weight": "80", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Janne Mller-Wieland", - "gender": "F", - "height": "175", - "weight": "69", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Maximilian Munski", - "gender": "M", - "height": "195", - "weight": "96", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Annalise Murphy", - "gender": "F", - "height": "184", - "weight": "72", - "sport": "Sailing", - "team": "Ireland", - "noc": "IRL", - "age": 26, - "event": "Sailing Women's One Person Dinghy", - "medal": "Silver" - }, - { - "name": "Clayton Murphy", - "gender": "M", - "height": "180", - "weight": "68", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Athletics Men's 800 metres", - "medal": "Bronze" - }, - { - "name": "Kelly Murphy", - "gender": "F", - "height": "188", - "weight": "77", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Ryan Murphy", - "gender": "M", - "height": "191", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Men's 100 metres Backstroke", - "medal": "Gold" - }, - { - "name": "Ryan Murphy", - "gender": "M", - "height": "191", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Men's 200 metres Backstroke", - "medal": "Gold" - }, - { - "name": "Ryan Murphy", - "gender": "M", - "height": "191", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Andrew Barron \"Andy\" Murray", - "gender": "M", - "height": "190", - "weight": "83", - "sport": "Tennis", - "team": "Great Britain", - "noc": "GBR", - "age": 29, - "event": "Tennis Men's Singles", - "medal": "Gold" - }, - { - "name": "Eric Gordon Murray", - "gender": "M", - "height": "195", - "weight": "98", - "sport": "Rowing", - "team": "New Zealand", - "noc": "NZL", - "age": 34, - "event": "Rowing Men's Coxless Pairs", - "medal": "Gold" - }, - { - "name": "Meghan Musnicki", - "gender": "F", - "height": "183", - "weight": "73", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 33, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Madeline \"Maddie\" Musselman", - "gender": "F", - "height": "181", - "weight": "65", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 18, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Aliya Farkhatovna Mustafina", - "gender": "F", - "height": "162", - "weight": "48", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Gymnastics Women's Individual All-Around", - "medal": "Bronze" - }, - { - "name": "Aliya Farkhatovna Mustafina", - "gender": "F", - "height": "162", - "weight": "48", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Gymnastics Women's Team All-Around", - "medal": "Silver" - }, - { - "name": "Aliya Farkhatovna Mustafina", - "gender": "F", - "height": "162", - "weight": "48", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Gymnastics Women's Uneven Bars", - "medal": "Gold" - }, - { - "name": "Denis Myk", - "gender": "M", - "height": "189", - "weight": "90", - "sport": "Canoeing", - "team": "Slovakia", - "noc": "SVK", - "age": 20, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Rafael Nadal Parera", - "gender": "M", - "height": "185", - "weight": "80", - "sport": "Tennis", - "team": "Spain-2", - "noc": "ESP", - "age": 30, - "event": "Tennis Men's Doubles", - "medal": "Gold" - }, - { - "name": "Alexander Michael \"Alex\" Naddour", - "gender": "M", - "height": "170", - "weight": "70", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Gymnastics Men's Pommelled Horse", - "medal": "Bronze" - }, - { - "name": "Takanori Nagase", - "gender": "M", - "height": "181", - "weight": "81", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 22, - "event": "Judo Men's Half-Middleweight", - "medal": "Bronze" - }, - { - "name": "Nikita Vladimirovich Nagorny", - "gender": "M", - "height": "166", - "weight": "67", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 19, - "event": "Gymnastics Men's Team All-Around", - "medal": "Silver" - }, - { - "name": "Karolina Naja", - "gender": "F", - "height": "165", - "weight": "63", - "sport": "Canoeing", - "team": "Poland", - "noc": "POL", - "age": 26, - "event": "Canoeing Women's Kayak Doubles, 500 metres", - "medal": "Bronze" - }, - { - "name": "Kanami Nakamaki", - "gender": "F", - "height": "167", - "weight": "58", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 24, - "event": "Synchronized Swimming Women's Team", - "medal": "Bronze" - }, - { - "name": "Mai Nakamura", - "gender": "F", - "height": "163", - "weight": "56", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Synchronized Swimming Women's Team", - "medal": "Bronze" - }, - { - "name": "Misato Nakamura", - "gender": "F", - "height": "157", - "weight": "52", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Judo Women's Half-Lightweight", - "medal": "Bronze" - }, - { - "name": "Leone Nakarawa", - "gender": "M", - "height": "198", - "weight": "109", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 28, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Daniel Narcisse", - "gender": "M", - "height": "189", - "weight": "93", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 36, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "George Christopher Nash", - "gender": "M", - "height": "195", - "weight": "96", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 26, - "event": "Rowing Men's Coxless Fours", - "medal": "Gold" - }, - { - "name": "Tyla Nathan-Wong", - "gender": "F", - "height": "163", - "weight": "58", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 22, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Lilyana Natsir", - "gender": "F", - "height": "169", - "weight": "62", - "sport": "Badminton", - "team": "Indonesia-1", - "noc": "INA", - "age": 30, - "event": "Badminton Mixed Doubles", - "medal": "Gold" - }, - { - "name": "Darya Sergeyevna Naumova", - "gender": "F", - "height": "165", - "weight": "76", - "sport": "Weightlifting", - "team": "Belarus", - "noc": "BLR", - "age": 20, - "event": "Weightlifting Women's Heavyweight", - "medal": "Silver" - }, - { - "name": "Juan Carlos Navarro Feijoo", - "gender": "M", - "height": "193", - "weight": "82", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 36, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Ikhtiyor Karimovich Navruzov", - "gender": "M", - "height": "165", - "weight": "65", - "sport": "Wrestling", - "team": "Uzbekistan", - "noc": "UZB", - "age": 27, - "event": "Wrestling Men's Welterweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Tsvetelina Biserova Naydenova", - "gender": "F", - "height": "168", - "weight": "49", - "sport": "Rhythmic Gymnastics", - "team": "Bulgaria", - "noc": "BUL", - "age": 22, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Bronze" - }, - { - "name": "Dilshod Nazarov", - "gender": "M", - "height": "187", - "weight": "120", - "sport": "Athletics", - "team": "Tajikistan", - "noc": "TJK", - "age": 34, - "event": "Athletics Men's Hammer Throw", - "medal": "Gold" - }, - { - "name": "Astou Barro Ndour Gueye", - "gender": "F", - "height": "195", - "weight": "68", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 21, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Lia Neal", - "gender": "F", - "height": "178", - "weight": "75", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Leah Neale", - "gender": "F", - "height": "173", - "weight": "66", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 21, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Nemanja Nedovi", - "gender": "M", - "height": "191", - "weight": "90", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 25, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Daryll Saskia Neita", - "gender": "F", - "height": "172", - "weight": "61", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 19, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "Kiley Neushul", - "gender": "F", - "height": "173", - "weight": "65", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Stephen Newbold", - "gender": "M", - "height": "191", - "weight": "82", - "sport": "Athletics", - "team": "Bahamas", - "noc": "BAH", - "age": 21, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Neymar da Silva Santos Jnior", - "gender": "M", - "height": "174", - "weight": "64", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 24, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Timothey N'Guessan", - "gender": "M", - "height": "186", - "weight": "105", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 23, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Haby Niar", - "gender": "F", - "height": "176", - "weight": "66", - "sport": "Taekwondo", - "team": "France", - "noc": "FRA", - "age": 23, - "event": "Taekwondo Women's Welterweight", - "medal": "Silver" - }, - { - "name": "Laura Nicholls Gonzlez", - "gender": "F", - "height": "190", - "weight": "90", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 27, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Paolo Nicolai", - "gender": "M", - "height": "203", - "weight": "91", - "sport": "Beach Volleyball", - "team": "Italy-1", - "noc": "ITA", - "age": 27, - "event": "Beach Volleyball Men's Beach Volleyball", - "medal": "Silver" - }, - { - "name": "Astier Nicolas", - "gender": "M", - "height": "180", - "weight": "70", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Equestrianism Mixed Three-Day Event, Individual", - "medal": "Silver" - }, - { - "name": "Astier Nicolas", - "gender": "M", - "height": "180", - "weight": "70", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Gold" - }, - { - "name": "Michael Damgaard Nielsen", - "gender": "M", - "height": "192", - "weight": "92", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 26, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Mie stergaard Nielsen", - "gender": "F", - "height": "184", - "weight": "67", - "sport": "Swimming", - "team": "Denmark", - "noc": "DEN", - "age": 19, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Simon Niepmann", - "gender": "M", - "height": "180", - "weight": "71", - "sport": "Rowing", - "team": "Switzerland", - "noc": "SUI", - "age": 31, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Gold" - }, - { - "name": "Slobodan Niki", - "gender": "M", - "height": "197", - "weight": "106", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 33, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Vladimir Olegovich Nikitin", - "gender": "M", - "height": "165", - "weight": "56", - "sport": "Boxing", - "team": "Russia", - "noc": "RUS", - "age": 26, - "event": "Boxing Men's Bantamweight", - "medal": "Bronze" - }, - { - "name": "Jelena Nikoli", - "gender": "F", - "height": "194", - "weight": "79", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 34, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Gnonsiane Niombla", - "gender": "F", - "height": "172", - "weight": "69", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 26, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Kei Nishikori", - "gender": "M", - "height": "178", - "weight": "74", - "sport": "Tennis", - "team": "Japan", - "noc": "JPN", - "age": 26, - "event": "Tennis Men's Singles", - "medal": "Bronze" - }, - { - "name": "Koki Niwa", - "gender": "M", - "height": "162", - "weight": "51", - "sport": "Table Tennis", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Table Tennis Men's Team", - "medal": "Silver" - }, - { - "name": "Adilbek Sabitovich Niyazymbetov", - "gender": "M", - "height": "180", - "weight": "81", - "sport": "Boxing", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 27, - "event": "Boxing Men's Light-Heavyweight", - "medal": "Silver" - }, - { - "name": "Francine Niyonsaba", - "gender": "F", - "height": "166", - "weight": "60", - "sport": "Athletics", - "team": "Burundi", - "noc": "BDI", - "age": 23, - "event": "Athletics Women's 800 metres", - "medal": "Silver" - }, - { - "name": "Alessandro Nora", - "gender": "M", - "height": "191", - "weight": "85", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 29, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Daniel James \"Dan\" Norton", - "gender": "M", - "height": "180", - "weight": "85", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Oktawia Nowacka", - "gender": "F", - "height": "180", - "weight": "60", - "sport": "Modern Pentathlon", - "team": "Poland", - "noc": "POL", - "age": 25, - "event": "Modern Pentathlon Women's Individual", - "medal": "Bronze" - }, - { - "name": "Wojciech Nowicki", - "gender": "M", - "height": "196", - "weight": "128", - "sport": "Athletics", - "team": "Poland", - "noc": "POL", - "age": 27, - "event": "Athletics Men's Hammer Throw", - "medal": "Bronze" - }, - { - "name": "Jesper Nddesbo", - "gender": "M", - "height": "199", - "weight": "100", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 35, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Ruslan Nurudinov", - "gender": "M", - "height": "183", - "weight": "109", - "sport": "Weightlifting", - "team": "Uzbekistan", - "noc": "UZB", - "age": 24, - "event": "Weightlifting Men's Heavyweight", - "medal": "Gold" - }, - { - "name": "Guy Olivier Nyokas", - "gender": "M", - "height": "189", - "weight": "86", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 30, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Estelle Nze Minko", - "gender": "F", - "height": "178", - "weight": "67", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Patricia Obee", - "gender": "F", - "height": "165", - "weight": "60", - "sport": "Rowing", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Rowing Women's Lightweight Double Sculls", - "medal": "Silver" - }, - { - "name": "Hellen Onsando Obiri", - "gender": "F", - "height": "160", - "weight": "50", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 26, - "event": "Athletics Women's 5,000 metres", - "medal": "Silver" - }, - { - "name": "Siobhan-Marie O'Connor", - "gender": "F", - "height": "173", - "weight": "60", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 20, - "event": "Swimming Women's 200 metres Individual Medley", - "medal": "Silver" - }, - { - "name": "Hannes Ocik", - "gender": "M", - "height": "191", - "weight": "93", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Gary O'Donovan", - "gender": "M", - "height": "172", - "weight": "70", - "sport": "Rowing", - "team": "Ireland", - "noc": "IRL", - "age": 23, - "event": "Rowing Men's Lightweight Double Sculls", - "medal": "Silver" - }, - { - "name": "Paul O'Donovan", - "gender": "M", - "height": "177", - "weight": "70", - "sport": "Rowing", - "team": "Ireland", - "noc": "IRL", - "age": 22, - "event": "Rowing Men's Lightweight Double Sculls", - "medal": "Silver" - }, - { - "name": "Stine Bredal Oftedal", - "gender": "F", - "height": "168", - "weight": "65", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 24, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Maja Ognjenovi", - "gender": "F", - "height": "183", - "weight": "67", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 31, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Oh Hye-Ri", - "gender": "F", - "height": "182", - "weight": "69", - "sport": "Taekwondo", - "team": "South Korea", - "noc": "KOR", - "age": 28, - "event": "Taekwondo Women's Welterweight", - "medal": "Gold" - }, - { - "name": "Christine Ijeoma Chika Ohuruogu", - "gender": "F", - "height": "172", - "weight": "70", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 32, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Poliana Okimoto-Cintra", - "gender": "F", - "height": "165", - "weight": "52", - "sport": "Swimming", - "team": "Brazil", - "noc": "BRA", - "age": 33, - "event": "Swimming Women's 10 kilometres Open Water", - "medal": "Bronze" - }, - { - "name": "Courtney Okolo", - "gender": "F", - "height": "173", - "weight": "59", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Nozomi Okuhara", - "gender": "F", - "height": "156", - "weight": "51", - "sport": "Badminton", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Badminton Women's Singles", - "medal": "Bronze" - }, - { - "name": "Pia-Sophie Oldhafer", - "gender": "F", - "height": "166", - "weight": "55", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Penelope \"Penny\" Oleksiak", - "gender": "F", - "height": "185", - "weight": "68", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 16, - "event": "Swimming Women's 100 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Penelope \"Penny\" Oleksiak", - "gender": "F", - "height": "185", - "weight": "68", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 16, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Penelope \"Penny\" Oleksiak", - "gender": "F", - "height": "185", - "weight": "68", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 16, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Penelope \"Penny\" Oleksiak", - "gender": "F", - "height": "185", - "weight": "68", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 16, - "event": "Swimming Women's 100 metres Butterfly", - "medal": "Silver" - }, - { - "name": "Marc-Antoine Olivier", - "gender": "M", - "height": "183", - "weight": "64", - "sport": "Swimming", - "team": "France", - "noc": "FRA", - "age": 20, - "event": "Swimming Men's 10 kilometres Open Water", - "medal": "Bronze" - }, - { - "name": "Morten Olsen", - "gender": "M", - "height": "184", - "weight": "95", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 31, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Om Yun-Chol", - "gender": "M", - "height": "151", - "weight": "56", - "sport": "Weightlifting", - "team": "North Korea", - "noc": "PRK", - "age": 24, - "event": "Weightlifting Men's Bantamweight", - "medal": "Silver" - }, - { - "name": "Kano Omata", - "gender": "F", - "height": "160", - "weight": "48", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 20, - "event": "Synchronized Swimming Women's Team", - "medal": "Bronze" - }, - { - "name": "Thierry Omeyer", - "gender": "M", - "height": "192", - "weight": "93", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 39, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Shohei Ono", - "gender": "M", - "height": "170", - "weight": "73", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 24, - "event": "Judo Men's Lightweight", - "medal": "Gold" - }, - { - "name": "Nwanyika Jenete C. \"Anyika\" Onuora", - "gender": "F", - "height": "178", - "weight": "76", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Laura Oprea", - "gender": "F", - "height": "186", - "weight": "75", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 22, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Orlando Ortega Alejo", - "gender": "M", - "height": "182", - "weight": "77", - "sport": "Athletics", - "team": "Spain", - "noc": "ESP", - "age": 25, - "event": "Athletics Men's 110 metres Hurdles", - "medal": "Silver" - }, - { - "name": "Idalys Ortz Bocourt", - "gender": "F", - "height": "180", - "weight": "95", - "sport": "Judo", - "team": "Cuba", - "noc": "CUB", - "age": 26, - "event": "Judo Women's Heavyweight", - "medal": "Silver" - }, - { - "name": "Ignacio Ortz", - "gender": "M", - "height": "180", - "weight": "76", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 29, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Rstm Orucov", - "gender": "M", - "height": "179", - "weight": "73", - "sport": "Judo", - "team": "Azerbaijan", - "noc": "AZE", - "age": 24, - "event": "Judo Men's Lightweight", - "medal": "Silver" - }, - { - "name": "Selin Oruz", - "gender": "F", - "height": "172", - "weight": "60", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 19, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Timur Oruz", - "gender": "M", - "height": "186", - "weight": "87", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Inna Volodymyrivna Osypenko-Radomska", - "gender": "F", - "height": "166", - "weight": "63", - "sport": "Canoeing", - "team": "Azerbaijan", - "noc": "AZE", - "age": 33, - "event": "Canoeing Women's Kayak Singles, 200 metres", - "medal": "Bronze" - }, - { - "name": "Shinobu Ota", - "gender": "M", - "height": "165", - "weight": "65", - "sport": "Wrestling", - "team": "Japan", - "noc": "JPN", - "age": 22, - "event": "Wrestling Men's Featherweight, Greco-Roman", - "medal": "Silver" - }, - { - "name": "Katharina Otte", - "gender": "F", - "height": "170", - "weight": "63", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Jeanette Ottesen Gray", - "gender": "F", - "height": "178", - "weight": "70", - "sport": "Swimming", - "team": "Denmark", - "noc": "DEN", - "age": 28, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Oussama Al-Oueslati", - "gender": "M", - "height": "199", - "weight": "80", - "sport": "Taekwondo", - "team": "Tunisia", - "noc": "TUN", - "age": 20, - "event": "Taekwondo Men's Welterweight", - "medal": "Bronze" - }, - { - "name": "Sofiane Oumiha", - "gender": "M", - "height": "174", - "weight": "60", - "sport": "Boxing", - "team": "France", - "noc": "FRA", - "age": 21, - "event": "Boxing Men's Lightweight", - "medal": "Silver" - }, - { - "name": "Sarah Ourahmoune", - "gender": "F", - "height": "158", - "weight": "51", - "sport": "Boxing", - "team": "France", - "noc": "FRA", - "age": 34, - "event": "Boxing Women's Flyweight", - "medal": "Silver" - }, - { - "name": "Nathan Outteridge", - "gender": "M", - "height": "179", - "weight": "75", - "sport": "Sailing", - "team": "Australia", - "noc": "AUS", - "age": 30, - "event": "Sailing Men's Skiff", - "medal": "Silver" - }, - { - "name": "Emily Overholt", - "gender": "F", - "height": "170", - "weight": "55", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 18, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Dimitrij Ovtcharov", - "gender": "M", - "height": "186", - "weight": "78", - "sport": "Table Tennis", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Table Tennis Men's Team", - "medal": "Bronze" - }, - { - "name": "Lily Isabelle Owsley", - "gender": "F", - "height": "170", - "weight": "70", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 21, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Jake Packard", - "gender": "M", - "height": "195", - "weight": "68", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Bryony Kate Frances Page", - "gender": "F", - "height": "172", - "weight": "60", - "sport": "Trampolining", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Trampolining Women's Individual", - "medal": "Silver" - }, - { - "name": "Danielle Nicole Page", - "gender": "F", - "height": "188", - "weight": "77", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 29, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Caleb Paine", - "gender": "M", - "height": "191", - "weight": "98", - "sport": "Sailing", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Sailing Men's One Person Heavyweight Dinghy", - "medal": "Bronze" - }, - { - "name": "Mariana Pajn Londoo", - "gender": "F", - "height": "158", - "weight": "50", - "sport": "Cycling", - "team": "Colombia", - "noc": "COL", - "age": 24, - "event": "Cycling Women's BMX", - "medal": "Gold" - }, - { - "name": "Laia Palau Alts", - "gender": "F", - "height": "181", - "weight": "69", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 36, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Gregorio Paltrinieri", - "gender": "M", - "height": "191", - "weight": "72", - "sport": "Swimming", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Swimming Men's 1,500 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Pan Feihong", - "gender": "F", - "height": "173", - "weight": "57", - "sport": "Rowing", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Rowing Women's Lightweight Double Sculls", - "medal": "Bronze" - }, - { - "name": "Pang Wei", - "gender": "M", - "height": "178", - "weight": "77", - "sport": "Shooting", - "team": "China", - "noc": "CHN", - "age": 30, - "event": "Shooting Men's Air Pistol, 10 metres", - "medal": "Bronze" - }, - { - "name": "Yekaterina Andreyevna Pantyulina-Lisunova", - "gender": "F", - "height": "175", - "weight": "64", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 26, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Karen Paquin", - "gender": "F", - "height": "172", - "weight": "70", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 29, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Matas Enrique Paredes", - "gender": "M", - "height": "176", - "weight": "74", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 34, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Paula Beln Pareto", - "gender": "F", - "height": "150", - "weight": "48", - "sport": "Judo", - "team": "Argentina", - "noc": "ARG", - "age": 30, - "event": "Judo Women's Extra-Lightweight", - "medal": "Gold" - }, - { - "name": "Park In-Bee", - "gender": "F", - "height": "168", - "weight": "65", - "sport": "Golf", - "team": "South Korea", - "noc": "KOR", - "age": 28, - "event": "Golf Women's Individual", - "medal": "Gold" - }, - { - "name": "Park Sang-Young", - "gender": "M", - "height": "177", - "weight": "73", - "sport": "Fencing", - "team": "South Korea", - "noc": "KOR", - "age": 20, - "event": "Fencing Men's epee, Individual", - "medal": "Gold" - }, - { - "name": "Shannon Parry", - "gender": "F", - "height": "170", - "weight": "70", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 26, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Mara Lucila Pascua Surez", - "gender": "F", - "height": "196", - "weight": "93", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 33, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Mariya Valeryevna Paseka", - "gender": "F", - "height": "161", - "weight": "48", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Gymnastics Women's Team All-Around", - "medal": "Silver" - }, - { - "name": "Mariya Valeryevna Paseka", - "gender": "F", - "height": "161", - "weight": "48", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Gymnastics Women's Horse Vault", - "medal": "Silver" - }, - { - "name": "Aleksandra Vyacheslavovna Patskevich", - "gender": "F", - "height": "169", - "weight": "69", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Ilse Paulis", - "gender": "F", - "height": "174", - "weight": "57", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 23, - "event": "Rowing Women's Lightweight Double Sculls", - "medal": "Gold" - }, - { - "name": "Maartje Yvonne Helene Paumen", - "gender": "F", - "height": "176", - "weight": "66", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 30, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Josip Pavi", - "gender": "M", - "height": "195", - "weight": "90", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 34, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Adam George Peaty", - "gender": "M", - "height": "191", - "weight": "86", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 21, - "event": "Swimming Men's 100 metres Breaststroke", - "medal": "Gold" - }, - { - "name": "Adam George Peaty", - "gender": "M", - "height": "191", - "weight": "86", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 21, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Matthieu Patrick Franois Peche", - "gender": "M", - "height": "175", - "weight": "75", - "sport": "Canoeing", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Canoeing Men's Canadian Doubles, Slalom", - "medal": "Bronze" - }, - { - "name": "Christinna Pedersen", - "gender": "F", - "height": "178", - "weight": "68", - "sport": "Badminton", - "team": "Denmark", - "noc": "DEN", - "age": 30, - "event": "Badminton Women's Doubles", - "medal": "Silver" - }, - { - "name": "Rikke Mller Pedersen", - "gender": "F", - "height": "174", - "weight": "61", - "sport": "Swimming", - "team": "Denmark", - "noc": "DEN", - "age": 27, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Gonzalo Peillat", - "gender": "M", - "height": "177", - "weight": "82", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 23, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Hendrik Pekeler", - "gender": "M", - "height": "203", - "weight": "103", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Evania Pelite", - "gender": "F", - "height": "169", - "weight": "67", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 21, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Giovanni Pellielo", - "gender": "M", - "height": "173", - "weight": "93", - "sport": "Shooting", - "team": "Italy", - "noc": "ITA", - "age": 46, - "event": "Shooting Men's Trap", - "medal": "Silver" - }, - { - "name": "Catharine Pendrel", - "gender": "F", - "height": "166", - "weight": "50", - "sport": "Cycling", - "team": "Canada", - "noc": "CAN", - "age": 35, - "event": "Cycling Women's Mountainbike, Cross-team", - "medal": "Bronze" - }, - { - "name": "Sandra Perkovi", - "gender": "F", - "height": "183", - "weight": "85", - "sport": "Athletics", - "team": "Croatia", - "noc": "CRO", - "age": 26, - "event": "Athletics Women's Discus Throw", - "medal": "Gold" - }, - { - "name": "Kseniya Vitalyevna Perova", - "gender": "F", - "height": "169", - "weight": "77", - "sport": "Archery", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Archery Women's Team", - "medal": "Silver" - }, - { - "name": "Kasey Perry-Glass", - "gender": "F", - "height": "163", - "weight": "59", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Bronze" - }, - { - "name": "Franois Pervis", - "gender": "M", - "height": "180", - "weight": "88", - "sport": "Cycling", - "team": "France", - "noc": "FRA", - "age": 31, - "event": "Cycling Men's Team Sprint", - "medal": "Bronze" - }, - { - "name": "Babett Peter", - "gender": "F", - "height": "172", - "weight": "64", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Steffen Peters", - "gender": "M", - "height": "173", - "weight": "68", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 51, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Bronze" - }, - { - "name": "Nils Petersen", - "gender": "M", - "height": "188", - "weight": "80", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Antonio Petkovi", - "gender": "M", - "height": "190", - "weight": "90", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 30, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Geno Petriashvili", - "gender": "M", - "height": "198", - "weight": "125", - "sport": "Wrestling", - "team": "Georgia", - "noc": "GEO", - "age": 22, - "event": "Wrestling Men's Super-Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Mihaela Petril", - "gender": "F", - "height": "190", - "weight": "74", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 25, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Eleftherios Petrounias", - "gender": "M", - "height": "164", - "weight": "62", - "sport": "Gymnastics", - "team": "Greece", - "noc": "GRE", - "age": 25, - "event": "Gymnastics Men's Rings", - "medal": "Gold" - }, - { - "name": "Mayya Andreyevna Petrova (Kaverina-)", - "gender": "F", - "height": "178", - "weight": "71", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 34, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Sonja Petrovi", - "gender": "F", - "height": "188", - "weight": "77", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 27, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Michael Fred Phelps, II", - "gender": "M", - "height": "193", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Michael Fred Phelps, II", - "gender": "M", - "height": "193", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Michael Fred Phelps, II", - "gender": "M", - "height": "193", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Swimming Men's 100 metres Butterfly", - "medal": "Silver" - }, - { - "name": "Michael Fred Phelps, II", - "gender": "M", - "height": "193", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Swimming Men's 200 metres Butterfly", - "medal": "Gold" - }, - { - "name": "Michael Fred Phelps, II", - "gender": "M", - "height": "193", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Swimming Men's 200 metres Individual Medley", - "medal": "Gold" - }, - { - "name": "Michael Fred Phelps, II", - "gender": "M", - "height": "193", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Asha Solette Philip", - "gender": "F", - "height": "164", - "weight": "67", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "Matteo Piano", - "gender": "M", - "height": "208", - "weight": "102", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 25, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Charline Picon", - "gender": "F", - "height": "169", - "weight": "57", - "sport": "Sailing", - "team": "France", - "noc": "FRA", - "age": 31, - "event": "Sailing Women's Windsurfer", - "medal": "Gold" - }, - { - "name": "Luisito Pi", - "gender": "M", - "height": "183", - "weight": "57", - "sport": "Taekwondo", - "team": "Dominican Republic", - "noc": "DOM", - "age": 22, - "event": "Taekwondo Men's Flyweight", - "medal": "Bronze" - }, - { - "name": "Ccile Pieper", - "gender": "F", - "height": "166", - "weight": "56", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Blake Pieroni", - "gender": "M", - "height": "188", - "weight": "86", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Duko Pijetlovi", - "gender": "M", - "height": "197", - "weight": "97", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 31, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Gojko Pijetlovi", - "gender": "M", - "height": "194", - "weight": "92", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 32, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Allison Marie Pineau", - "gender": "F", - "height": "181", - "weight": "66", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Paolo Pizzo", - "gender": "M", - "height": "180", - "weight": "70", - "sport": "Fencing", - "team": "Italy", - "noc": "ITA", - "age": 33, - "event": "Fencing Men's epee, Team", - "medal": "Silver" - }, - { - "name": "Thomas Plel", - "gender": "M", - "height": "181", - "weight": "80", - "sport": "Sailing", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Sailing Men's Skiff", - "medal": "Bronze" - }, - { - "name": "David Edward Plummer", - "gender": "M", - "height": "191", - "weight": "95", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Swimming Men's 100 metres Backstroke", - "medal": "Bronze" - }, - { - "name": "David Edward Plummer", - "gender": "M", - "height": "191", - "weight": "95", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Amanda Polk", - "gender": "F", - "height": "180", - "weight": "84", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Marina Viktorovna Poltoran-Litvinchuk", - "gender": "F", - "height": "178", - "weight": "68", - "sport": "Canoeing", - "team": "Belarus", - "noc": "BLR", - "age": 28, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Bronze" - }, - { - "name": "Francesca Pomeri", - "gender": "F", - "height": "174", - "weight": "76", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 23, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Simona Pop (Deac-)", - "gender": "F", - "height": "178", - "weight": "62", - "sport": "Fencing", - "team": "Romania", - "noc": "ROU", - "age": 27, - "event": "Fencing Women's epee, Team", - "medal": "Gold" - }, - { - "name": "Iuliana Popa", - "gender": "F", - "height": "185", - "weight": "72", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 20, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Nadezhda Mikhaylovna Popok-Lepeshko", - "gender": "F", - "height": "172", - "weight": "67", - "sport": "Canoeing", - "team": "Belarus", - "noc": "BLR", - "age": 27, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Bronze" - }, - { - "name": "Silvija Popovi", - "gender": "F", - "height": "178", - "weight": "65", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 30, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Alexandra Popp", - "gender": "F", - "height": "174", - "weight": "65", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Valentin Porte", - "gender": "M", - "height": "190", - "weight": "92", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 25, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Alise Rose Post", - "gender": "F", - "height": "158", - "weight": "58", - "sport": "Cycling", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Cycling Women's BMX", - "medal": "Silver" - }, - { - "name": "Mira Potkonen", - "gender": "F", - "height": "165", - "weight": "60", - "sport": "Boxing", - "team": "Finland", - "noc": "FIN", - "age": 35, - "event": "Boxing Women's Lightweight", - "medal": "Bronze" - }, - { - "name": "Alec Potts", - "gender": "M", - "height": "185", - "weight": "77", - "sport": "Archery", - "team": "Australia", - "noc": "AUS", - "age": 20, - "event": "Archery Men's Team", - "medal": "Bronze" - }, - { - "name": "Asafa Kehine Powell", - "gender": "M", - "height": "191", - "weight": "93", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 33, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Olivia Elizabeth \"Polly\" Powrie", - "gender": "F", - "height": "173", - "weight": "70", - "sport": "Sailing", - "team": "New Zealand", - "noc": "NZL", - "age": 28, - "event": "Sailing Women's Two Person Dinghy", - "medal": "Silver" - }, - { - "name": "Josh Prenot", - "gender": "M", - "height": "180", - "weight": "76", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Swimming Men's 200 metres Breaststroke", - "medal": "Silver" - }, - { - "name": "Christian Presciutti", - "gender": "M", - "height": "184", - "weight": "87", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 33, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Nicholas Presciutti", - "gender": "M", - "height": "189", - "weight": "93", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 22, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "William Reid Priddy", - "gender": "M", - "height": "194", - "weight": "89", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 38, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Nichelle Prince", - "gender": "F", - "height": "163", - "weight": "65", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 21, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Andrija Prlainovi", - "gender": "M", - "height": "200", - "weight": "106", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 29, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Yekaterina Valeryevna Prokofyeva", - "gender": "F", - "height": "176", - "weight": "70", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Yelena Gennadyevna Prokofyeva", - "gender": "F", - "height": "171", - "weight": "54", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Grischa Prmel", - "gender": "M", - "height": "182", - "weight": "78", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Marie Prouvensier", - "gender": "F", - "height": "165", - "weight": "52", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 22, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Ji Prskavec", - "gender": "M", - "height": "173", - "weight": "69", - "sport": "Canoeing", - "team": "Czech Republic", - "noc": "CZE", - "age": 23, - "event": "Canoeing Men's Kayak Singles, Slalom", - "medal": "Bronze" - }, - { - "name": "Monica Puig Marchn", - "gender": "F", - "height": "170", - "weight": "64", - "sport": "Tennis", - "team": "Puerto Rico", - "noc": "PUR", - "age": 22, - "event": "Tennis Women's Singles", - "medal": "Gold" - }, - { - "name": "Elmar Qasmov", - "gender": "M", - "height": "188", - "weight": "100", - "sport": "Judo", - "team": "Azerbaijan", - "noc": "AZE", - "age": 25, - "event": "Judo Men's Half-Heavyweight", - "medal": "Silver" - }, - { - "name": "Xetaq Qazyumov", - "gender": "M", - "height": "180", - "weight": "97", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 33, - "event": "Wrestling Men's Heavyweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Qin Kai", - "gender": "M", - "height": "170", - "weight": "65", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 30, - "event": "Diving Men's Synchronized Springboard", - "medal": "Bronze" - }, - { - "name": "Rasmus Christian Quaade", - "gender": "M", - "height": "187", - "weight": "78", - "sport": "Cycling", - "team": "Denmark", - "noc": "DEN", - "age": 26, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Bronze" - }, - { - "name": "Elisa Queirolo", - "gender": "F", - "height": "168", - "weight": "61", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 25, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Isaquias Queiroz dos Santos", - "gender": "M", - "height": "175", - "weight": "85", - "sport": "Canoeing", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Canoeing Men's Canadian Singles, 200 metres", - "medal": "Bronze" - }, - { - "name": "Isaquias Queiroz dos Santos", - "gender": "M", - "height": "175", - "weight": "85", - "sport": "Canoeing", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Canoeing Men's Canadian Singles, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Isaquias Queiroz dos Santos", - "gender": "M", - "height": "175", - "weight": "85", - "sport": "Canoeing", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Canoeing Men's Canadian Doubles, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Samantha Ann \"Sam\" Quek", - "gender": "F", - "height": "169", - "weight": "62", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Alejandra Quereda Flores", - "gender": "F", - "height": "175", - "weight": "55", - "sport": "Rhythmic Gymnastics", - "team": "Spain", - "noc": "ESP", - "age": 24, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Silver" - }, - { - "name": "Laura Quevedo Caizares", - "gender": "F", - "height": "185", - "weight": "74", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 20, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Rebecca Quinn", - "gender": "F", - "height": "176", - "weight": "66", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 20, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Jean Quiquampoix", - "gender": "M", - "height": "189", - "weight": "85", - "sport": "Shooting", - "team": "France", - "noc": "FRA", - "age": 20, - "event": "Shooting Men's Rapid-Fire Pistol, 25 metres", - "medal": "Silver" - }, - { - "name": "Alicia Quirk", - "gender": "F", - "height": "173", - "weight": "64", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Mohammed Rabii", - "gender": "M", - "height": "180", - "weight": "69", - "sport": "Boxing", - "team": "Morocco", - "noc": "MAR", - "age": 23, - "event": "Boxing Men's Welterweight", - "medal": "Bronze" - }, - { - "name": "Federica Radicchi", - "gender": "F", - "height": "170", - "weight": "70", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 27, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Tamara Radoaj", - "gender": "F", - "height": "170", - "weight": "60", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 28, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Miroslav Raduljica", - "gender": "M", - "height": "213", - "weight": "130", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 28, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Rafael Alcntara do Nascimento", - "gender": "M", - "height": "172", - "weight": "65", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 23, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Hassan Sabzali Rahimi", - "gender": "M", - "height": "165", - "weight": "62", - "sport": "Wrestling", - "team": "Iran", - "noc": "IRI", - "age": 27, - "event": "Wrestling Men's Featherweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Guillaume Louis Benoit Raineau", - "gender": "M", - "height": "187", - "weight": "71", - "sport": "Rowing", - "team": "France", - "noc": "FRA", - "age": 30, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Bronze" - }, - { - "name": "Alexandra Rose \"Aly\" Raisman", - "gender": "F", - "height": "157", - "weight": "52", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Gymnastics Women's Individual All-Around", - "medal": "Silver" - }, - { - "name": "Alexandra Rose \"Aly\" Raisman", - "gender": "F", - "height": "157", - "weight": "52", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Gymnastics Women's Team All-Around", - "medal": "Gold" - }, - { - "name": "Alexandra Rose \"Aly\" Raisman", - "gender": "F", - "height": "157", - "weight": "52", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Gymnastics Women's Floor Exercise", - "medal": "Silver" - }, - { - "name": "Allar Raja", - "gender": "M", - "height": "190", - "weight": "95", - "sport": "Rowing", - "team": "Estonia", - "noc": "EST", - "age": 33, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Bronze" - }, - { - "name": "Nidzhat Aliyevich Rakhimov", - "gender": "M", - "height": "176", - "weight": "77", - "sport": "Weightlifting", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 22, - "event": "Weightlifting Men's Middleweight", - "medal": "Gold" - }, - { - "name": "Rajeev Ram", - "gender": "M", - "height": "193", - "weight": "84", - "sport": "Tennis", - "team": "United States-1", - "noc": "USA", - "age": 32, - "event": "Tennis Mixed Doubles", - "medal": "Silver" - }, - { - "name": "Edvinas Ramanauskas", - "gender": "M", - "height": "184", - "weight": "90", - "sport": "Canoeing", - "team": "Lithuania", - "noc": "LTU", - "age": 30, - "event": "Canoeing Men's Kayak Doubles, 200 metres", - "medal": "Bronze" - }, - { - "name": "Carlos Alberto Ramrez Yepes", - "gender": "M", - "height": "178", - "weight": "65", - "sport": "Cycling", - "team": "Colombia", - "noc": "COL", - "age": 22, - "event": "Cycling Men's BMX", - "medal": "Bronze" - }, - { - "name": "Robeisy Eloy Ramrez Carrazana", - "gender": "M", - "height": "165", - "weight": "56", - "sport": "Boxing", - "team": "Cuba", - "noc": "CUB", - "age": 22, - "event": "Boxing Men's Bantamweight", - "medal": "Gold" - }, - { - "name": "Soslan Lyudvikovich Ramonov", - "gender": "M", - "height": "170", - "weight": "65", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Wrestling Men's Welterweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Thomas Matthew \"Tom\" Ransley", - "gender": "M", - "height": "198", - "weight": "101", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 30, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Sava Ranelovi", - "gender": "M", - "height": "193", - "weight": "98", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 23, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Milena Rai", - "gender": "F", - "height": "191", - "weight": "72", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 25, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Hedvig Lrke Berg Rasmussen", - "gender": "F", - "height": "187", - "weight": "79", - "sport": "Rowing", - "team": "Denmark", - "noc": "DEN", - "age": 22, - "event": "Rowing Women's Coxless Pairs", - "medal": "Bronze" - }, - { - "name": "Ronald Rauhe", - "gender": "M", - "height": "179", - "weight": "82", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 34, - "event": "Canoeing Men's Kayak Singles, 200 metres", - "medal": "Bronze" - }, - { - "name": "Vatemo Ravouvou", - "gender": "M", - "height": "171", - "weight": "81", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 26, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Savenaca Rawaca", - "gender": "M", - "height": "189", - "weight": "105", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 24, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Alexis Raynaud", - "gender": "M", - "height": "172", - "weight": "78", - "sport": "Shooting", - "team": "France", - "noc": "FRA", - "age": 21, - "event": "Shooting Men's Small-Bore Rifle, Three Positions, 50 metres", - "medal": "Bronze" - }, - { - "name": "Andrs Rdli", - "gender": "M", - "height": "193", - "weight": "83", - "sport": "Fencing", - "team": "Hungary", - "noc": "HUN", - "age": 32, - "event": "Fencing Men's epee, Team", - "medal": "Bronze" - }, - { - "name": "Peter \"Pete\" Reed", - "gender": "M", - "height": "197", - "weight": "100", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 35, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Brittney Davon Reese", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Athletics Women's Long Jump", - "medal": "Silver" - }, - { - "name": "Emily Regan", - "gender": "F", - "height": "188", - "weight": "81", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Tobias Reichmann", - "gender": "M", - "height": "188", - "weight": "87", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Maximilian Reinelt", - "gender": "M", - "height": "195", - "weight": "98", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Christian Reitz", - "gender": "M", - "height": "183", - "weight": "93", - "sport": "Shooting", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Shooting Men's Rapid-Fire Pistol, 25 metres", - "medal": "Gold" - }, - { - "name": "Ren Cancan", - "gender": "F", - "height": "167", - "weight": "51", - "sport": "Boxing", - "team": "China", - "noc": "CHN", - "age": 28, - "event": "Boxing Women's Flyweight", - "medal": "Bronze" - }, - { - "name": "Ren Qian", - "gender": "F", - "height": "162", - "weight": "49", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 15, - "event": "Diving Women's Platform", - "medal": "Gold" - }, - { - "name": "Renato Soares de Oliveira Augusto", - "gender": "M", - "height": "186", - "weight": "90", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 28, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Max Rendschmidt", - "gender": "M", - "height": "186", - "weight": "90", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 22, - "event": "Canoeing Men's Kayak Doubles, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Max Rendschmidt", - "gender": "M", - "height": "186", - "weight": "90", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 22, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Robert Peter \"Robbie\" Renwick", - "gender": "M", - "height": "184", - "weight": "80", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Lucas Martn Rey", - "gender": "M", - "height": "177", - "weight": "74", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 33, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Matas Rey", - "gender": "M", - "height": "178", - "weight": "72", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 31, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Felipe Reyes Cabaas", - "gender": "M", - "height": "205", - "weight": "109", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 36, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Kristina Joana Reynolds", - "gender": "F", - "height": "181", - "weight": "71", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 32, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Ghasem Gholamreza Rezaei", - "gender": "M", - "height": "185", - "weight": "100", - "sport": "Wrestling", - "team": "Iran", - "noc": "IRI", - "age": 30, - "event": "Wrestling Men's Heavyweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Kimberly Susan \"Kim\" Rhode (-Harryman)", - "gender": "F", - "height": "163", - "weight": "82", - "sport": "Shooting", - "team": "United States", - "noc": "USA", - "age": 37, - "event": "Shooting Women's Skeet", - "medal": "Bronze" - }, - { - "name": "Ri Se-Gwang", - "gender": "M", - "height": "155", - "weight": "54", - "sport": "Gymnastics", - "team": "North Korea", - "noc": "PRK", - "age": 31, - "event": "Gymnastics Men's Horse Vault", - "medal": "Gold" - }, - { - "name": "Helen Richardson-Walsh", - "gender": "F", - "height": "165", - "weight": "55", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 34, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Kathrin Louise \"Kate\" Richardson-Walsh", - "gender": "F", - "height": "171", - "weight": "66", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 36, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Linn-Kristin Ullevoldster Riegelhuth Koren", - "gender": "F", - "height": "175", - "weight": "66", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 32, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Rim Jong-Sim", - "gender": "F", - "height": "162", - "weight": "75", - "sport": "Weightlifting", - "team": "North Korea", - "noc": "PRK", - "age": 23, - "event": "Weightlifting Women's Heavyweight", - "medal": "Gold" - }, - { - "name": "Anne-Marie Rindom", - "gender": "F", - "height": "170", - "weight": "68", - "sport": "Sailing", - "team": "Denmark", - "noc": "DEN", - "age": 25, - "event": "Sailing Women's One Person Dinghy", - "medal": "Bronze" - }, - { - "name": "Teddy Pierre-Marie Riner", - "gender": "M", - "height": "203", - "weight": "139", - "sport": "Judo", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Judo Men's Heavyweight", - "medal": "Gold" - }, - { - "name": "Pandelela Rinong anak Pamg", - "gender": "F", - "height": "159", - "weight": "55", - "sport": "Diving", - "team": "Malaysia", - "noc": "MAS", - "age": 23, - "event": "Diving Women's Synchronized Platform", - "medal": "Silver" - }, - { - "name": "Jenny Rissveds", - "gender": "F", - "height": "165", - "weight": "55", - "sport": "Cycling", - "team": "Sweden", - "noc": "SWE", - "age": 22, - "event": "Cycling Women's Mountainbike, Cross-team", - "medal": "Gold" - }, - { - "name": "Saulius Ritter", - "gender": "M", - "height": "202", - "weight": "110", - "sport": "Rowing", - "team": "Lithuania", - "noc": "LTU", - "age": 27, - "event": "Rowing Men's Double Sculls", - "medal": "Silver" - }, - { - "name": "Hanna Serhivna Rizatdinova", - "gender": "F", - "height": "173", - "weight": "49", - "sport": "Rhythmic Gymnastics", - "team": "Ukraine", - "noc": "UKR", - "age": 23, - "event": "Rhythmic Gymnastics Women's Individual", - "medal": "Bronze" - }, - { - "name": "Mlina Robert-Michon", - "gender": "F", - "height": "180", - "weight": "85", - "sport": "Athletics", - "team": "France", - "noc": "FRA", - "age": 37, - "event": "Athletics Women's Discus Throw", - "medal": "Silver" - }, - { - "name": "Gil Roberts", - "gender": "M", - "height": "188", - "weight": "82", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "James Roberts", - "gender": "M", - "height": "194", - "weight": "90", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 25, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Mark Robertson", - "gender": "M", - "height": "189", - "weight": "96", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Kelsey Robinson", - "gender": "F", - "height": "188", - "weight": "70", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Sarah Elizabeth Robles", - "gender": "F", - "height": "178", - "weight": "141", - "sport": "Weightlifting", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Weightlifting Women's Super-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Brendon Rodney", - "gender": "M", - "height": "195", - "weight": "80", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "Rodrigo Caio Coquette Russo", - "gender": "M", - "height": "182", - "weight": "70", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Rodrigo Dourado Cunha", - "gender": "M", - "height": "186", - "weight": "79", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Leonor Rodrguez Manso", - "gender": "F", - "height": "180", - "weight": "72", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 24, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Misael Uziel Rodrguez Olivas", - "gender": "M", - "height": "178", - "weight": "75", - "sport": "Boxing", - "team": "Mexico", - "noc": "MEX", - "age": 22, - "event": "Boxing Men's Middleweight", - "medal": "Bronze" - }, - { - "name": "Sergio Rodrguez Gmez", - "gender": "M", - "height": "191", - "weight": "80", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 30, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "James Rodwell", - "gender": "M", - "height": "195", - "weight": "105", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Boudewijn Rell", - "gender": "M", - "height": "195", - "weight": "100", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 27, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Thomas Rhler", - "gender": "M", - "height": "192", - "weight": "92", - "sport": "Athletics", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Athletics Men's Javelin Throw", - "medal": "Gold" - }, - { - "name": "Yulimar del Valle Rojas Rodrguez", - "gender": "F", - "height": "192", - "weight": "72", - "sport": "Athletics", - "team": "Venezuela", - "noc": "VEN", - "age": 20, - "event": "Athletics Women's Triple Jump", - "medal": "Silver" - }, - { - "name": "Fridolina Rolf", - "gender": "F", - "height": "178", - "weight": "74", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 22, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Brianna Rollins", - "gender": "F", - "height": "165", - "weight": "59", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Athletics Women's 100 metres Hurdles", - "medal": "Gold" - }, - { - "name": "Svetlana Alekseyevna Romashina", - "gender": "F", - "height": "173", - "weight": "57", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 26, - "event": "Synchronized Swimming Women's Duet", - "medal": "Gold" - }, - { - "name": "Svetlana Alekseyevna Romashina", - "gender": "F", - "height": "173", - "weight": "57", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 26, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Leticia Romero Gonzlez", - "gender": "F", - "height": "177", - "weight": "62", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 21, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Natalie Rooney", - "gender": "F", - "height": "181", - "weight": "95", - "sport": "Shooting", - "team": "New Zealand", - "noc": "NZL", - "age": 28, - "event": "Shooting Women's Trap", - "medal": "Silver" - }, - { - "name": "Deanne Rose", - "gender": "F", - "height": "160", - "weight": "62", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 17, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Justin Peter Rose", - "gender": "M", - "height": "191", - "weight": "NA", - "sport": "Golf", - "team": "Great Britain", - "noc": "GBR", - "age": 36, - "event": "Golf Men's Individual", - "medal": "Gold" - }, - { - "name": "Shane Rose", - "gender": "M", - "height": "181", - "weight": "80", - "sport": "Equestrianism", - "team": "Australia", - "noc": "AUS", - "age": 43, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Bronze" - }, - { - "name": "April Elizabeth Ross", - "gender": "F", - "height": "185", - "weight": "75", - "sport": "Beach Volleyball", - "team": "United States-1", - "noc": "USA", - "age": 34, - "event": "Beach Volleyball Women's Beach Volleyball", - "medal": "Bronze" - }, - { - "name": "Gabriele Rossetti", - "gender": "M", - "height": "176", - "weight": "65", - "sport": "Shooting", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Shooting Men's Skeet", - "medal": "Gold" - }, - { - "name": "Lucas Rafael Rossi", - "gender": "M", - "height": "188", - "weight": "88", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 31, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Salvatore Rossini", - "gender": "M", - "height": "185", - "weight": "82", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 30, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Kianoush Rostami", - "gender": "M", - "height": "177", - "weight": "85", - "sport": "Weightlifting", - "team": "Iran", - "noc": "IRI", - "age": 25, - "event": "Weightlifting Men's Light-Heavyweight", - "medal": "Gold" - }, - { - "name": "Snke Rothenberger", - "gender": "M", - "height": "193", - "weight": "73", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Gold" - }, - { - "name": "Joanna Katie Rowsell Shand", - "gender": "F", - "height": "180", - "weight": "69", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Cycling Women's Team Pursuit", - "medal": "Gold" - }, - { - "name": "Philippe Rozier", - "gender": "M", - "height": "173", - "weight": "63", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 53, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Gold" - }, - { - "name": "Elin Ingrid Johanna Rubensson", - "gender": "F", - "height": "166", - "weight": "59", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 23, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Ricard \"Ricky\" Rubio Vives", - "gender": "M", - "height": "193", - "weight": "82", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 25, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Taylor Madison Ruck", - "gender": "F", - "height": "180", - "weight": "60", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 16, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Taylor Madison Ruck", - "gender": "F", - "height": "180", - "weight": "60", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 16, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "David Lekuta Rudisha", - "gender": "M", - "height": "190", - "weight": "76", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 27, - "event": "Athletics Men's 800 metres", - "medal": "Gold" - }, - { - "name": "Christopher Rhr", - "gender": "M", - "height": "180", - "weight": "77", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 22, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Cierra Runge", - "gender": "F", - "height": "193", - "weight": "85", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Galen Rupp", - "gender": "M", - "height": "181", - "weight": "61", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Men's Marathon", - "medal": "Bronze" - }, - { - "name": "Aaron Russell", - "gender": "M", - "height": "206", - "weight": "93", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Alonzo Russell", - "gender": "M", - "height": "174", - "weight": "68", - "sport": "Athletics", - "team": "Bahamas", - "noc": "BAH", - "age": 24, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Kelly Russell", - "gender": "F", - "height": "178", - "weight": "83", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 29, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Gregory James \"Greg\" Rutherford", - "gender": "M", - "height": "188", - "weight": "92", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 29, - "event": "Athletics Men's Long Jump", - "medal": "Bronze" - }, - { - "name": "William \"Will\" Ryan", - "gender": "M", - "height": "193", - "weight": "75", - "sport": "Sailing", - "team": "Australia", - "noc": "AUS", - "age": 27, - "event": "Sailing Men's Two Person Dinghy", - "medal": "Silver" - }, - { - "name": "Yevgeny Mikhaylovich Rylov", - "gender": "M", - "height": "184", - "weight": "69", - "sport": "Swimming", - "team": "Russia", - "noc": "RUS", - "age": 19, - "event": "Swimming Men's 200 metres Backstroke", - "medal": "Bronze" - }, - { - "name": "Olga Sergeyevna Rypakova (Alekseyeva-)", - "gender": "F", - "height": "183", - "weight": "62", - "sport": "Athletics", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 31, - "event": "Athletics Women's Triple Jump", - "medal": "Bronze" - }, - { - "name": "Lucas Saatkamp", - "gender": "M", - "height": "209", - "weight": "101", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 30, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Abdul-Rashid Bulayevich Sadulayev", - "gender": "M", - "height": "177", - "weight": "86", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 20, - "event": "Wrestling Men's Light-Heavyweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Lucie afov", - "gender": "F", - "height": "177", - "weight": "65", - "sport": "Tennis", - "team": "Czech Republic-1", - "noc": "CZE", - "age": 29, - "event": "Tennis Women's Doubles", - "medal": "Bronze" - }, - { - "name": "Timur Marselevich Safin", - "gender": "M", - "height": "182", - "weight": "82", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 23, - "event": "Fencing Men's Foil, Individual", - "medal": "Bronze" - }, - { - "name": "Timur Marselevich Safin", - "gender": "M", - "height": "182", - "weight": "82", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 23, - "event": "Fencing Men's Foil, Team", - "medal": "Gold" - }, - { - "name": "Dylan Michael Sage", - "gender": "M", - "height": "188", - "weight": "96", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 24, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Kamran ahsuvarl", - "gender": "M", - "height": "180", - "weight": "75", - "sport": "Boxing", - "team": "Azerbaijan", - "noc": "AZE", - "age": 23, - "event": "Boxing Men's Middleweight", - "medal": "Bronze" - }, - { - "name": "Ibragim Magomed-Saidovich Saidov", - "gender": "M", - "height": "180", - "weight": "125", - "sport": "Wrestling", - "team": "Belarus", - "noc": "BLR", - "age": 31, - "event": "Wrestling Men's Super-Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Masato Sakai", - "gender": "M", - "height": "181", - "weight": "77", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Swimming Men's 200 metres Butterfly", - "medal": "Silver" - }, - { - "name": "Juan Manuel Saladino", - "gender": "M", - "height": "174", - "weight": "73", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 28, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Popoola Sodiq Saliu", - "gender": "M", - "height": "170", - "weight": "51", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 21, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Katja Steen Salskov-Iversen", - "gender": "F", - "height": "173", - "weight": "70", - "sport": "Sailing", - "team": "Denmark", - "noc": "DEN", - "age": 21, - "event": "Sailing Women's Skiff", - "medal": "Bronze" - }, - { - "name": "Sara Ahmed Samir", - "gender": "F", - "height": "155", - "weight": "58", - "sport": "Weightlifting", - "team": "Egypt", - "noc": "EGY", - "age": 18, - "event": "Weightlifting Women's Light-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Jessica Eva Katarina Samuelsson", - "gender": "F", - "height": "166", - "weight": "59", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 24, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Germn Sal Snchez Snchez", - "gender": "M", - "height": "165", - "weight": "50", - "sport": "Diving", - "team": "Mexico", - "noc": "MEX", - "age": 24, - "event": "Diving Men's Platform", - "medal": "Silver" - }, - { - "name": "Taylor Sander", - "gender": "M", - "height": "193", - "weight": "86", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Andrea Santarelli", - "gender": "M", - "height": "184", - "weight": "76", - "sport": "Fencing", - "team": "Italy", - "noc": "ITA", - "age": 23, - "event": "Fencing Men's epee, Team", - "medal": "Silver" - }, - { - "name": "Albert Saritov", - "gender": "M", - "height": "188", - "weight": "100", - "sport": "Wrestling", - "team": "Romania", - "noc": "ROU", - "age": 31, - "event": "Wrestling Men's Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Or Sasson", - "gender": "M", - "height": "193", - "weight": "120", - "sport": "Judo", - "team": "Israel", - "noc": "ISR", - "age": 25, - "event": "Judo Men's Heavyweight", - "medal": "Bronze" - }, - { - "name": "William Spencer \"Will\" Satch", - "gender": "M", - "height": "198", - "weight": "100", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Martin Sauer", - "gender": "M", - "height": "169", - "weight": "55", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 33, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Katerine Savard", - "gender": "F", - "height": "167", - "weight": "54", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 23, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Erislandy Savn Cotilla", - "gender": "M", - "height": "192", - "weight": "91", - "sport": "Boxing", - "team": "Cuba", - "noc": "CUB", - "age": 26, - "event": "Boxing Men's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Mohamed Karim \"Moe\" Sbihi", - "gender": "M", - "height": "202", - "weight": "110", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Rowing Men's Coxless Fours", - "medal": "Gold" - }, - { - "name": "Sophie Celina Scheder", - "gender": "F", - "height": "167", - "weight": "56", - "sport": "Gymnastics", - "team": "Germany", - "noc": "GER", - "age": 19, - "event": "Gymnastics Women's Uneven Bars", - "medal": "Bronze" - }, - { - "name": "Charlotta Eva \"Lotta\" Schelin", - "gender": "F", - "height": "179", - "weight": "64", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 32, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Dafne Schippers", - "gender": "F", - "height": "179", - "weight": "70", - "sport": "Athletics", - "team": "Netherlands", - "noc": "NED", - "age": 24, - "event": "Athletics Women's 200 metres", - "medal": "Silver" - }, - { - "name": "Lauren Schmetterling", - "gender": "F", - "height": "180", - "weight": "77", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Lisa Schmidla", - "gender": "F", - "height": "173", - "weight": "76", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Gold" - }, - { - "name": "Bruno Oscar Schmidt", - "gender": "M", - "height": "185", - "weight": "87", - "sport": "Beach Volleyball", - "team": "Brazil-1", - "noc": "BRA", - "age": 29, - "event": "Beach Volleyball Men's Beach Volleyball", - "medal": "Gold" - }, - { - "name": "Richard Schmidt", - "gender": "M", - "height": "191", - "weight": "87", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Sophie Diana Schmidt", - "gender": "F", - "height": "172", - "weight": "71", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 28, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Allison Rodgers Schmitt", - "gender": "F", - "height": "185", - "weight": "75", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Allison Rodgers Schmitt", - "gender": "F", - "height": "185", - "weight": "75", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Dorothee Schneider (-Krumhoff)", - "gender": "F", - "height": "169", - "weight": "63", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 47, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Gold" - }, - { - "name": "Henri Schoeman", - "gender": "M", - "height": "170", - "weight": "59", - "sport": "Triathlon", - "team": "South Africa", - "noc": "RSA", - "age": 24, - "event": "Triathlon Men's Olympic Distance", - "medal": "Bronze" - }, - { - "name": "Jonathan Michael \"Jon\" Schofield", - "gender": "M", - "height": "182", - "weight": "80", - "sport": "Canoeing", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Canoeing Men's Kayak Doubles, 200 metres", - "medal": "Silver" - }, - { - "name": "Lauritz Schoof", - "gender": "M", - "height": "195", - "weight": "98", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Gold" - }, - { - "name": "Joseph Isaac Schooling", - "gender": "M", - "height": "184", - "weight": "74", - "sport": "Swimming", - "team": "Singapore", - "noc": "SGP", - "age": 21, - "event": "Swimming Men's 100 metres Butterfly", - "medal": "Gold" - }, - { - "name": "Olivia Alma Charlotta Schough", - "gender": "F", - "height": "172", - "weight": "60", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 25, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Anne Schrder", - "gender": "F", - "height": "170", - "weight": "58", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Almuth Schult", - "gender": "F", - "height": "180", - "weight": "71", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Karl Schulze", - "gender": "M", - "height": "190", - "weight": "100", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Gold" - }, - { - "name": "Simon Schrch", - "gender": "M", - "height": "186", - "weight": "75", - "sport": "Rowing", - "team": "Switzerland", - "noc": "SUI", - "age": 25, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Gold" - }, - { - "name": "Nino Schurter", - "gender": "M", - "height": "173", - "weight": "68", - "sport": "Cycling", - "team": "Switzerland", - "noc": "SUI", - "age": 30, - "event": "Cycling Men's Mountainbike, Cross-team", - "medal": "Gold" - }, - { - "name": "Lisa Schtze", - "gender": "F", - "height": "172", - "weight": "61", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 19, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Callum Scotson", - "gender": "M", - "height": "184", - "weight": "77", - "sport": "Cycling", - "team": "Australia", - "noc": "AUS", - "age": 19, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Silver" - }, - { - "name": "Desiree Rose Marie Scott", - "gender": "F", - "height": "160", - "weight": "62", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 29, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Duncan William MacNaughton Scott", - "gender": "M", - "height": "190", - "weight": "72", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 19, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Duncan William MacNaughton Scott", - "gender": "M", - "height": "190", - "weight": "72", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 19, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Giles Lyndon Scott", - "gender": "M", - "height": "197", - "weight": "95", - "sport": "Sailing", - "team": "Great Britain", - "noc": "GBR", - "age": 29, - "event": "Sailing Men's One Person Heavyweight Dinghy", - "medal": "Gold" - }, - { - "name": "Stephen \"Steve\" Scott", - "gender": "M", - "height": "172", - "weight": "84", - "sport": "Shooting", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Shooting Men's Double Trap", - "medal": "Bronze" - }, - { - "name": "Rebecca Scown", - "gender": "F", - "height": "178", - "weight": "70", - "sport": "Rowing", - "team": "New Zealand", - "noc": "NZL", - "age": 32, - "event": "Rowing Women's Coxless Pairs", - "medal": "Silver" - }, - { - "name": "Anna Sergeyevna Sedoykina", - "gender": "F", - "height": "184", - "weight": "74", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 32, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Emily Jane Seebohm", - "gender": "F", - "height": "180", - "weight": "70", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Sara Caroline Seger", - "gender": "F", - "height": "176", - "weight": "62", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 31, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Melissa Seidemann", - "gender": "F", - "height": "183", - "weight": "104", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Davie Selke", - "gender": "M", - "height": "192", - "weight": "82", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Linda Birgitta Sembrant", - "gender": "F", - "height": "175", - "weight": "67", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 29, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Mokgadi Caster Semenya", - "gender": "F", - "height": "178", - "weight": "70", - "sport": "Athletics", - "team": "South Africa", - "noc": "RSA", - "age": 25, - "event": "Athletics Women's 800 metres", - "medal": "Gold" - }, - { - "name": "Sergey Viktorovich Semyonov", - "gender": "M", - "height": "187", - "weight": "130", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 20, - "event": "Wrestling Men's Super-Heavyweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Anna Sergeyevna Sen", - "gender": "F", - "height": "186", - "weight": "81", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Seabelo Mohanoe Senatla", - "gender": "M", - "height": "177", - "weight": "82", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 23, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Anelo etka", - "gender": "M", - "height": "186", - "weight": "87", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 30, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Daiya Seto", - "gender": "M", - "height": "174", - "weight": "72", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 22, - "event": "Swimming Men's 400 metres Individual Medley", - "medal": "Bronze" - }, - { - "name": "Torul sgrov", - "gender": "M", - "height": "170", - "weight": "65", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 23, - "event": "Wrestling Men's Welterweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Dariga Shakimova", - "gender": "F", - "height": "172", - "weight": "75", - "sport": "Boxing", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 27, - "event": "Boxing Women's Middleweight", - "medal": "Bronze" - }, - { - "name": "Xiaona Shan", - "gender": "F", - "height": "165", - "weight": "54", - "sport": "Table Tennis", - "team": "Germany", - "noc": "GER", - "age": 33, - "event": "Table Tennis Women's Team", - "medal": "Silver" - }, - { - "name": "Shang Chunsong", - "gender": "F", - "height": "143", - "weight": "34", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 20, - "event": "Gymnastics Women's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Lasha Shavdatuashvili", - "gender": "M", - "height": "170", - "weight": "75", - "sport": "Judo", - "team": "Georgia", - "noc": "GEO", - "age": 24, - "event": "Judo Men's Lightweight", - "medal": "Bronze" - }, - { - "name": "Abdullahi Shehu", - "gender": "M", - "height": "170", - "weight": "72", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 23, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Shi Jinglin", - "gender": "F", - "height": "175", - "weight": "68", - "sport": "Swimming", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Swimming Women's 200 metres Breaststroke", - "medal": "Bronze" - }, - { - "name": "Shi Tingmao", - "gender": "F", - "height": "159", - "weight": "52", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Diving Women's Springboard", - "medal": "Gold" - }, - { - "name": "Shi Tingmao", - "gender": "F", - "height": "159", - "weight": "52", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Diving Women's Synchronized Springboard", - "medal": "Gold" - }, - { - "name": "Shi Zhiyong", - "gender": "M", - "height": "168", - "weight": "70", - "sport": "Weightlifting", - "team": "China", - "noc": "CHN", - "age": 22, - "event": "Weightlifting Men's Lightweight", - "medal": "Gold" - }, - { - "name": "Claressa Maria Shields", - "gender": "F", - "height": "175", - "weight": "75", - "sport": "Boxing", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Boxing Women's Middleweight", - "medal": "Gold" - }, - { - "name": "Thomas Allen \"Tom\" Shields", - "gender": "M", - "height": "193", - "weight": "86", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Shin Seung-Chan", - "gender": "F", - "height": "173", - "weight": "70", - "sport": "Badminton", - "team": "South Korea-1", - "noc": "KOR", - "age": 21, - "event": "Badminton Women's Doubles", - "medal": "Bronze" - }, - { - "name": "Kenzo Shirai", - "gender": "M", - "height": "162", - "weight": "51", - "sport": "Gymnastics", - "team": "Japan", - "noc": "JPN", - "age": 19, - "event": "Gymnastics Men's Team All-Around", - "medal": "Gold" - }, - { - "name": "Kenzo Shirai", - "gender": "M", - "height": "162", - "weight": "51", - "sport": "Gymnastics", - "team": "Japan", - "noc": "JPN", - "age": 19, - "event": "Gymnastics Men's Horse Vault", - "medal": "Bronze" - }, - { - "name": "Alla Anatolyevna Shishkina", - "gender": "F", - "height": "170", - "weight": "54", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Darya Mikhaylovna Shmelyova", - "gender": "F", - "height": "164", - "weight": "64", - "sport": "Cycling", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Cycling Women's Team Sprint", - "medal": "Silver" - }, - { - "name": "Erik Thomas Shoji", - "gender": "M", - "height": "183", - "weight": "73", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Kawika Shoji", - "gender": "M", - "height": "191", - "weight": "88", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Ilya Anatolyevich Shtokalov", - "gender": "M", - "height": "185", - "weight": "95", - "sport": "Canoeing", - "team": "Russia", - "noc": "RUS", - "age": 29, - "event": "Canoeing Men's Canadian Singles, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Mariya Vladimirovna Shurochkina", - "gender": "F", - "height": "164", - "weight": "48", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Lyubov Andreyevna Shutova", - "gender": "F", - "height": "177", - "weight": "64", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 33, - "event": "Fencing Women's epee, Team", - "medal": "Bronze" - }, - { - "name": "Si Yajie", - "gender": "F", - "height": "164", - "weight": "57", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 17, - "event": "Diving Women's Platform", - "medal": "Silver" - }, - { - "name": "Olivier Floris Johannes Siegelaar", - "gender": "M", - "height": "197", - "weight": "100", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 29, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Erlon de Souza Silva", - "gender": "M", - "height": "175", - "weight": "78", - "sport": "Canoeing", - "team": "Brazil", - "noc": "BRA", - "age": 25, - "event": "Canoeing Men's Canadian Doubles, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Rafaela Lopes Silva", - "gender": "F", - "height": "169", - "weight": "57", - "sport": "Judo", - "team": "Brazil", - "noc": "BRA", - "age": 24, - "event": "Judo Women's Lightweight", - "medal": "Gold" - }, - { - "name": "Anastasiya Dmitriyevna Simanovich", - "gender": "F", - "height": "174", - "weight": "69", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Georgia Simmerling", - "gender": "F", - "height": "172", - "weight": "67", - "sport": "Cycling", - "team": "Canada", - "noc": "CAN", - "age": 27, - "event": "Cycling Women's Team Pursuit", - "medal": "Bronze" - }, - { - "name": "Kerry Simmonds", - "gender": "F", - "height": "183", - "weight": "82", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Marko Simonovi", - "gender": "M", - "height": "203", - "weight": "96", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 30, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Seth Muenfuh Sincere", - "gender": "M", - "height": "170", - "weight": "77", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 18, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Christine Margaret Sinclair", - "gender": "F", - "height": "176", - "weight": "75", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 33, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Pusarla Venkata \"P. V.\" Sindhu", - "gender": "F", - "height": "179", - "weight": "65", - "sport": "Badminton", - "team": "India", - "noc": "IND", - "age": 21, - "event": "Badminton Women's Singles", - "medal": "Silver" - }, - { - "name": "Nataliya Siniin", - "gender": "F", - "height": "160", - "weight": "58", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 31, - "event": "Wrestling Women's Featherweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Martin Sinkovi", - "gender": "M", - "height": "188", - "weight": "95", - "sport": "Rowing", - "team": "Croatia", - "noc": "CRO", - "age": 26, - "event": "Rowing Men's Double Sculls", - "medal": "Gold" - }, - { - "name": "Valent Sinkovi", - "gender": "M", - "height": "187", - "weight": "93", - "sport": "Rowing", - "team": "Croatia", - "noc": "CRO", - "age": 28, - "event": "Rowing Men's Double Sculls", - "medal": "Gold" - }, - { - "name": "Maicon de Andrade Siqueira", - "gender": "M", - "height": "190", - "weight": "90", - "sport": "Taekwondo", - "team": "Brazil", - "noc": "BRA", - "age": 23, - "event": "Taekwondo Men's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Pimsiri Sirikaew", - "gender": "F", - "height": "152", - "weight": "58", - "sport": "Weightlifting", - "team": "Thailand", - "noc": "THA", - "age": 26, - "event": "Weightlifting Women's Lightweight", - "medal": "Silver" - }, - { - "name": "Sarah Frederica Sjstrm", - "gender": "F", - "height": "182", - "weight": "76", - "sport": "Swimming", - "team": "Sweden", - "noc": "SWE", - "age": 22, - "event": "Swimming Women's 100 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Sarah Frederica Sjstrm", - "gender": "F", - "height": "182", - "weight": "76", - "sport": "Swimming", - "team": "Sweden", - "noc": "SWE", - "age": 22, - "event": "Swimming Women's 200 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Sarah Frederica Sjstrm", - "gender": "F", - "height": "182", - "weight": "76", - "sport": "Swimming", - "team": "Sweden", - "noc": "SWE", - "age": 22, - "event": "Swimming Women's 100 metres Butterfly", - "medal": "Gold" - }, - { - "name": "Ladislav kantr", - "gender": "M", - "height": "189", - "weight": "80", - "sport": "Canoeing", - "team": "Slovakia", - "noc": "SVK", - "age": 33, - "event": "Canoeing Men's Canadian Doubles, Slalom", - "medal": "Gold" - }, - { - "name": "Peter kantr", - "gender": "M", - "height": "182", - "weight": "78", - "sport": "Canoeing", - "team": "Slovakia", - "noc": "SVK", - "age": 34, - "event": "Canoeing Men's Canadian Doubles, Slalom", - "medal": "Gold" - }, - { - "name": "Nicholas David \"Nick\" Skelton", - "gender": "M", - "height": "175", - "weight": "76", - "sport": "Equestrianism", - "team": "Great Britain", - "noc": "GBR", - "age": 58, - "event": "Equestrianism Mixed Jumping, Individual", - "medal": "Gold" - }, - { - "name": "Callum Skinner", - "gender": "M", - "height": "187", - "weight": "93", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Cycling Men's Sprint", - "medal": "Silver" - }, - { - "name": "Callum Skinner", - "gender": "M", - "height": "187", - "weight": "93", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Cycling Men's Team Sprint", - "medal": "Gold" - }, - { - "name": "Catherine Skinner", - "gender": "F", - "height": "172", - "weight": "80", - "sport": "Shooting", - "team": "Australia", - "noc": "AUS", - "age": 26, - "event": "Shooting Women's Trap", - "medal": "Gold" - }, - { - "name": "Sara Slott-Bruun Petersen", - "gender": "F", - "height": "171", - "weight": "57", - "sport": "Athletics", - "team": "Denmark", - "noc": "DEN", - "age": 29, - "event": "Athletics Women's 400 metres Hurdles", - "medal": "Silver" - }, - { - "name": "Yeldos Bakhtybayevich Smetov", - "gender": "M", - "height": "167", - "weight": "60", - "sport": "Judo", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 23, - "event": "Judo Men's Extra-Lightweight", - "medal": "Silver" - }, - { - "name": "Anabelle Smith", - "gender": "F", - "height": "168", - "weight": "55", - "sport": "Diving", - "team": "Australia", - "noc": "AUS", - "age": 23, - "event": "Diving Women's Synchronized Springboard", - "medal": "Bronze" - }, - { - "name": "Clark Smith", - "gender": "M", - "height": "206", - "weight": "90", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "David Michael Smith", - "gender": "M", - "height": "201", - "weight": "86", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Albertus Stephanus \"Kwagga\" Smith", - "gender": "M", - "height": "180", - "weight": "90", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 23, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Leah Smith", - "gender": "F", - "height": "178", - "weight": "67", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Women's 400 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Leah Smith", - "gender": "F", - "height": "178", - "weight": "67", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Louis Antoine Smith", - "gender": "M", - "height": "184", - "weight": "76", - "sport": "Gymnastics", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Gymnastics Men's Pommelled Horse", - "medal": "Silver" - }, - { - "name": "Olivia Smoliga", - "gender": "F", - "height": "188", - "weight": "72", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Katelin Snyder (-Guregian)", - "gender": "F", - "height": "163", - "weight": "50", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Kyle Frederick Snyder", - "gender": "M", - "height": "180", - "weight": "102", - "sport": "Wrestling", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Wrestling Men's Heavyweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Philippus Albertus Borman \"Philip\" Snyman", - "gender": "M", - "height": "188", - "weight": "95", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 29, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Rishod Rashidovich Sobirov", - "gender": "M", - "height": "168", - "weight": "66", - "sport": "Judo", - "team": "Uzbekistan", - "noc": "UZB", - "age": 29, - "event": "Judo Men's Half-Lightweight", - "medal": "Bronze" - }, - { - "name": "Yevgeniya Viktorovna Soboleva-Khokhriakova", - "gender": "F", - "height": "180", - "weight": "75", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Jack Sock", - "gender": "M", - "height": "191", - "weight": "84", - "sport": "Tennis", - "team": "United States-2", - "noc": "USA", - "age": 23, - "event": "Tennis Mixed Doubles", - "medal": "Gold" - }, - { - "name": "Jack Sock", - "gender": "M", - "height": "191", - "weight": "84", - "sport": "Tennis", - "team": "United States-2", - "noc": "USA", - "age": 23, - "event": "Tennis Men's Doubles", - "medal": "Bronze" - }, - { - "name": "Sanna Charlotte Solberg", - "gender": "F", - "height": "178", - "weight": "70", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 26, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Franck Robert Bernard Solforosi", - "gender": "M", - "height": "184", - "weight": "70", - "sport": "Rowing", - "team": "France", - "noc": "FRA", - "age": 31, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Bronze" - }, - { - "name": "Petrissa Solja", - "gender": "F", - "height": "168", - "weight": "67", - "sport": "Table Tennis", - "team": "Germany", - "noc": "GER", - "age": 22, - "event": "Table Tennis Women's Team", - "medal": "Silver" - }, - { - "name": "Joyce Sombroek", - "gender": "F", - "height": "179", - "weight": "64", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 25, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Pter Somfai", - "gender": "M", - "height": "188", - "weight": "85", - "sport": "Fencing", - "team": "Hungary", - "noc": "HUN", - "age": 36, - "event": "Fencing Men's epee, Team", - "medal": "Bronze" - }, - { - "name": "Cdric Sorhaindo", - "gender": "M", - "height": "192", - "weight": "110", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 32, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Lorenzo Sotomayor Collazo", - "gender": "M", - "height": "185", - "weight": "64", - "sport": "Boxing", - "team": "Azerbaijan", - "noc": "AZE", - "age": 31, - "event": "Boxing Men's Light-Welterweight", - "medal": "Silver" - }, - { - "name": "Daniele Pasquale Sottile", - "gender": "M", - "height": "186", - "weight": "73", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 36, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Douglas Correia de Souza", - "gender": "M", - "height": "199", - "weight": "75", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 20, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Maurcio Luiz de Souza", - "gender": "M", - "height": "209", - "weight": "93", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 27, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Kasper Sndergaard Sarup", - "gender": "M", - "height": "195", - "weight": "95", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 35, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Ivana panovi", - "gender": "F", - "height": "176", - "weight": "65", - "sport": "Athletics", - "team": "Serbia", - "noc": "SRB", - "age": 26, - "event": "Athletics Women's Long Jump", - "medal": "Bronze" - }, - { - "name": "Roscko Shane Specman", - "gender": "M", - "height": "174", - "weight": "81", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 27, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Ashley Spencer", - "gender": "F", - "height": "178", - "weight": "59", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Athletics Women's 400 metres Hurdles", - "medal": "Bronze" - }, - { - "name": "Darya Sergeyevna Spiridonova", - "gender": "F", - "height": "156", - "weight": "45", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 18, - "event": "Gymnastics Women's Team All-Around", - "medal": "Silver" - }, - { - "name": "Nicola Spirig Hug", - "gender": "F", - "height": "166", - "weight": "54", - "sport": "Triathlon", - "team": "Switzerland", - "noc": "SUI", - "age": 34, - "event": "Triathlon Women's Olympic Distance", - "medal": "Silver" - }, - { - "name": "Barbora potkov", - "gender": "F", - "height": "182", - "weight": "80", - "sport": "Athletics", - "team": "Czech Republic", - "noc": "CZE", - "age": 35, - "event": "Athletics Women's Javelin Throw", - "medal": "Bronze" - }, - { - "name": "Maria Springwald", - "gender": "F", - "height": "174", - "weight": "69", - "sport": "Rowing", - "team": "Poland", - "noc": "POL", - "age": 25, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Bronze" - }, - { - "name": "Annika Sprink", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 20, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Sukanya Srisurat", - "gender": "F", - "height": "155", - "weight": "58", - "sport": "Weightlifting", - "team": "Thailand", - "noc": "THA", - "age": 21, - "event": "Weightlifting Women's Lightweight", - "medal": "Gold" - }, - { - "name": "rif rifov", - "gender": "M", - "height": "180", - "weight": "97", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 27, - "event": "Wrestling Men's Light-Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Sabah riti", - "gender": "M", - "height": "192", - "weight": "130", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 27, - "event": "Wrestling Men's Super-Heavyweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Mariya Stadnik", - "gender": "F", - "height": "157", - "weight": "48", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 28, - "event": "Wrestling Women's Flyweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Dragana Stankovi", - "gender": "F", - "height": "195", - "weight": "73", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 21, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Heather Mary Stanning", - "gender": "F", - "height": "181", - "weight": "72", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Rowing Women's Coxless Pairs", - "medal": "Gold" - }, - { - "name": "Charlotte Stapenhorst", - "gender": "F", - "height": "168", - "weight": "68", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Kevin Staut", - "gender": "M", - "height": "182", - "weight": "70", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 35, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Gold" - }, - { - "name": "Ashley Steacy", - "gender": "F", - "height": "158", - "weight": "64", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 29, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Davor tefanek", - "gender": "M", - "height": "170", - "weight": "66", - "sport": "Wrestling", - "team": "Serbia", - "noc": "SRB", - "age": 30, - "event": "Wrestling Men's Welterweight, Greco-Roman", - "medal": "Gold" - }, - { - "name": "Aikaterini \"Ekaterini\" Stefanidi", - "gender": "F", - "height": "173", - "weight": "59", - "sport": "Athletics", - "team": "Greece", - "noc": "GRE", - "age": 26, - "event": "Athletics Women's Pole Vault", - "medal": "Gold" - }, - { - "name": "Margaret Ann \"Maggie\" Steffens", - "gender": "F", - "height": "173", - "weight": "74", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Bastian Steger", - "gender": "M", - "height": "170", - "weight": "65", - "sport": "Table Tennis", - "team": "Germany", - "noc": "GER", - "age": 35, - "event": "Table Tennis Men's Team", - "medal": "Bronze" - }, - { - "name": "Giulia Steingruber", - "gender": "F", - "height": "160", - "weight": "56", - "sport": "Gymnastics", - "team": "Switzerland", - "noc": "SUI", - "age": 22, - "event": "Gymnastics Women's Horse Vault", - "medal": "Bronze" - }, - { - "name": "Henrik Olof Stenson", - "gender": "M", - "height": "188", - "weight": "86", - "sport": "Golf", - "team": "Sweden", - "noc": "SWE", - "age": 40, - "event": "Golf Men's Individual", - "medal": "Silver" - }, - { - "name": "Radek tpnek", - "gender": "M", - "height": "186", - "weight": "79", - "sport": "Tennis", - "team": "Czech Republic", - "noc": "CZE", - "age": 37, - "event": "Tennis Mixed Doubles", - "medal": "Bronze" - }, - { - "name": "Inna Yakovlevna Stepanova", - "gender": "F", - "height": "176", - "weight": "63", - "sport": "Archery", - "team": "Russia", - "noc": "RUS", - "age": 26, - "event": "Archery Women's Team", - "medal": "Silver" - }, - { - "name": "Jan trba", - "gender": "M", - "height": "183", - "weight": "85", - "sport": "Canoeing", - "team": "Czech Republic", - "noc": "CZE", - "age": 35, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Jovana Stevanovi", - "gender": "F", - "height": "192", - "weight": "72", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 24, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Travis Stevens", - "gender": "M", - "height": "181", - "weight": "80", - "sport": "Judo", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Judo Men's Half-Middleweight", - "medal": "Silver" - }, - { - "name": "Shakur Stevenson", - "gender": "M", - "height": "173", - "weight": "56", - "sport": "Boxing", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Boxing Men's Bantamweight", - "medal": "Silver" - }, - { - "name": "Breanna Mackenzie Stewart", - "gender": "F", - "height": "193", - "weight": "79", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Vladimir timac", - "gender": "M", - "height": "211", - "weight": "112", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 28, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Toni Stipanovi", - "gender": "M", - "height": "178", - "weight": "81", - "sport": "Sailing", - "team": "Croatia", - "noc": "CRO", - "age": 30, - "event": "Sailing Men's One Person Dinghy", - "medal": "Silver" - }, - { - "name": "Emmanuel Stockbroekx", - "gender": "M", - "height": "189", - "weight": "88", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 22, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Genevra \"Gevvie\" Stone", - "gender": "F", - "height": "183", - "weight": "71", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Rowing Women's Single Sculls", - "medal": "Silver" - }, - { - "name": "Are Weierholt Strandli", - "gender": "M", - "height": "181", - "weight": "69", - "sport": "Rowing", - "team": "Norway", - "noc": "NOR", - "age": 27, - "event": "Rowing Men's Lightweight Double Sculls", - "medal": "Bronze" - }, - { - "name": "Jrmy Stravius", - "gender": "M", - "height": "190", - "weight": "86", - "sport": "Swimming", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Vadim Nikolayevich Streltsov", - "gender": "M", - "height": "170", - "weight": "94", - "sport": "Weightlifting", - "team": "Belarus", - "noc": "BLR", - "age": 30, - "event": "Weightlifting Men's Middle-Heavyweight", - "medal": "Silver" - }, - { - "name": "Ivan Alekseyevich Stretovich", - "gender": "M", - "height": "170", - "weight": "59", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 19, - "event": "Gymnastics Men's Team All-Around", - "medal": "Silver" - }, - { - "name": "Martin Strobel", - "gender": "M", - "height": "189", - "weight": "90", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 30, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Ioana Strungaru (Crciun-)", - "gender": "F", - "height": "180", - "weight": "77", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 27, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Barbora Strcov (-Zhlavov)", - "gender": "F", - "height": "164", - "weight": "60", - "sport": "Tennis", - "team": "Czech Republic-1", - "noc": "CZE", - "age": 30, - "event": "Tennis Women's Doubles", - "medal": "Bronze" - }, - { - "name": "Marina Vladimirovna Sudakova (Yartseva-)", - "gender": "F", - "height": "165", - "weight": "66", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Sandro Sukno", - "gender": "M", - "height": "200", - "weight": "93", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 26, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Niklas Sle", - "gender": "M", - "height": "195", - "weight": "95", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 20, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Jemima Jelagat Sumgong", - "gender": "F", - "height": "160", - "weight": "45", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 31, - "event": "Athletics Women's Marathon", - "medal": "Gold" - }, - { - "name": "Sun Wenyan", - "gender": "F", - "height": "170", - "weight": "58", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Synchronized Swimming Women's Duet", - "medal": "Silver" - }, - { - "name": "Sun Wenyan", - "gender": "F", - "height": "170", - "weight": "58", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "Sun Yanan", - "gender": "F", - "height": "161", - "weight": "51", - "sport": "Wrestling", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Wrestling Women's Flyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Sun Yang", - "gender": "M", - "height": "198", - "weight": "89", - "sport": "Swimming", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Swimming Men's 200 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Sun Yang", - "gender": "M", - "height": "198", - "weight": "89", - "sport": "Swimming", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Swimming Men's 400 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Sun Yiwen", - "gender": "F", - "height": "177", - "weight": "63", - "sport": "Fencing", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Fencing Women's epee, Individual", - "medal": "Bronze" - }, - { - "name": "Sun Yiwen", - "gender": "F", - "height": "177", - "weight": "63", - "sport": "Fencing", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Fencing Women's epee, Team", - "medal": "Silver" - }, - { - "name": "Sun Yujie", - "gender": "F", - "height": "185", - "weight": "78", - "sport": "Fencing", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Fencing Women's epee, Team", - "medal": "Silver" - }, - { - "name": "Lasse Jemon Svan Hansen", - "gender": "M", - "height": "185", - "weight": "85", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 32, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Erik Marcus Svensson", - "gender": "M", - "height": "176", - "weight": "68", - "sport": "Shooting", - "team": "Sweden", - "noc": "SWE", - "age": 26, - "event": "Shooting Men's Skeet", - "medal": "Silver" - }, - { - "name": "Polly Ann M. Swann", - "gender": "F", - "height": "185", - "weight": "76", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Ondej Synek", - "gender": "M", - "height": "199", - "weight": "105", - "sport": "Rowing", - "team": "Czech Republic", - "noc": "CZE", - "age": 33, - "event": "Rowing Men's Single Sculls", - "medal": "Bronze" - }, - { - "name": "Elmira Anuarbekovna Syzdykova", - "gender": "F", - "height": "172", - "weight": "69", - "sport": "Wrestling", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 24, - "event": "Wrestling Women's Light-Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Gabriella Timea Szab", - "gender": "F", - "height": "170", - "weight": "62", - "sport": "Canoeing", - "team": "Hungary", - "noc": "HUN", - "age": 29, - "event": "Canoeing Women's Kayak Doubles, 500 metres", - "medal": "Gold" - }, - { - "name": "Gabriella Timea Szab", - "gender": "F", - "height": "170", - "weight": "62", - "sport": "Canoeing", - "team": "Hungary", - "noc": "HUN", - "age": 29, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Gold" - }, - { - "name": "Emese Judit Szsz", - "gender": "F", - "height": "176", - "weight": "71", - "sport": "Fencing", - "team": "Hungary", - "noc": "HUN", - "age": 33, - "event": "Fencing Women's epee, Individual", - "medal": "Gold" - }, - { - "name": "ron Szilgyi", - "gender": "M", - "height": "180", - "weight": "78", - "sport": "Fencing", - "team": "Hungary", - "noc": "HUN", - "age": 26, - "event": "Fencing Men's Sabre, Individual", - "medal": "Gold" - }, - { - "name": "Chiara Tabani", - "gender": "F", - "height": "176", - "weight": "72", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Haruka Tachimoto", - "gender": "F", - "height": "168", - "weight": "70", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 26, - "event": "Judo Women's Middleweight", - "medal": "Gold" - }, - { - "name": "Kaspar Taimsoo", - "gender": "M", - "height": "194", - "weight": "95", - "sport": "Rowing", - "team": "Estonia", - "noc": "EST", - "age": 29, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Bronze" - }, - { - "name": "Ayaka Takahashi", - "gender": "F", - "height": "165", - "weight": "60", - "sport": "Badminton", - "team": "Japan", - "noc": "JPN", - "age": 26, - "event": "Badminton Women's Doubles", - "medal": "Gold" - }, - { - "name": "Naohisa Takato", - "gender": "M", - "height": "160", - "weight": "60", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 23, - "event": "Judo Men's Extra-Lightweight", - "medal": "Bronze" - }, - { - "name": "Lasha Talakhadze", - "gender": "M", - "height": "197", - "weight": "160", - "sport": "Weightlifting", - "team": "Georgia", - "noc": "GEO", - "age": 22, - "event": "Weightlifting Men's Super-Heavyweight", - "medal": "Gold" - }, - { - "name": "Kitione Taliga", - "gender": "M", - "height": "186", - "weight": "87", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 23, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Jared Tallent", - "gender": "M", - "height": "178", - "weight": "58", - "sport": "Athletics", - "team": "Australia", - "noc": "AUS", - "age": 31, - "event": "Athletics Men's 50 kilometres Walk", - "medal": "Silver" - }, - { - "name": "Lachlan Tame", - "gender": "M", - "height": "176", - "weight": "80", - "sport": "Canoeing", - "team": "Australia", - "noc": "AUS", - "age": 27, - "event": "Canoeing Men's Kayak Doubles, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Tan Jiaxin", - "gender": "F", - "height": "148", - "weight": "36", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 19, - "event": "Gymnastics Women's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Tan Wee Kiong", - "gender": "M", - "height": "177", - "weight": "77", - "sport": "Badminton", - "team": "Malaysia", - "noc": "MAS", - "age": 27, - "event": "Badminton Men's Doubles", - "medal": "Silver" - }, - { - "name": "Tan Ya-Ting", - "gender": "F", - "height": "158", - "weight": "53", - "sport": "Archery", - "team": "Chinese Taipei", - "noc": "TPE", - "age": 22, - "event": "Archery Women's Team", - "medal": "Bronze" - }, - { - "name": "Yusuke Tanaka", - "gender": "M", - "height": "166", - "weight": "58", - "sport": "Gymnastics", - "team": "Japan", - "noc": "JPN", - "age": 26, - "event": "Gymnastics Men's Team All-Around", - "medal": "Gold" - }, - { - "name": "Sopita Tanasan", - "gender": "F", - "height": "154", - "weight": "48", - "sport": "Weightlifting", - "team": "Thailand", - "noc": "THA", - "age": 21, - "event": "Weightlifting Women's Flyweight", - "medal": "Gold" - }, - { - "name": "Melissa Palma Julie Tancredi", - "gender": "F", - "height": "177", - "weight": "73", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 34, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Tang Mengni", - "gender": "F", - "height": "169", - "weight": "59", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 22, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "Paul Kipngetich Tanui", - "gender": "M", - "height": "168", - "weight": "47", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 25, - "event": "Athletics Men's 10,000 metres", - "medal": "Silver" - }, - { - "name": "Juraj Tarr", - "gender": "M", - "height": "190", - "weight": "88", - "sport": "Canoeing", - "team": "Slovakia", - "noc": "SVK", - "age": 37, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Elmurat Zulypkarovich Tasmuradov", - "gender": "M", - "height": "160", - "weight": "59", - "sport": "Wrestling", - "team": "Uzbekistan", - "noc": "UZB", - "age": 24, - "event": "Wrestling Men's Featherweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Nur Tatar", - "gender": "F", - "height": "173", - "weight": "67", - "sport": "Taekwondo", - "team": "Turkey", - "noc": "TUR", - "age": 23, - "event": "Taekwondo Women's Welterweight", - "medal": "Bronze" - }, - { - "name": "Anastasiya Alekseyevna Tatareva", - "gender": "F", - "height": "165", - "weight": "44", - "sport": "Rhythmic Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 19, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Gold" - }, - { - "name": "Diana Lurena Taurasi", - "gender": "F", - "height": "183", - "weight": "70", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 34, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Christian Taylor", - "gender": "M", - "height": "188", - "weight": "81", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Athletics Men's Triple Jump", - "medal": "Gold" - }, - { - "name": "Audrey Tcheumo", - "gender": "F", - "height": "177", - "weight": "78", - "sport": "Judo", - "team": "France", - "noc": "FRA", - "age": 26, - "event": "Judo Women's Half-Heavyweight", - "medal": "Silver" - }, - { - "name": "Terina Lily Te Tamaki", - "gender": "F", - "height": "165", - "weight": "67", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 19, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Laura Teani", - "gender": "F", - "height": "175", - "weight": "75", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 25, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Horia Tecu", - "gender": "M", - "height": "192", - "weight": "90", - "sport": "Tennis", - "team": "Romania", - "noc": "ROU", - "age": 31, - "event": "Tennis Men's Doubles", - "medal": "Silver" - }, - { - "name": "Stefano Tempesti", - "gender": "M", - "height": "205", - "weight": "100", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 37, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Milo Teodosi", - "gender": "M", - "height": "195", - "weight": "90", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 29, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Jana Teschke", - "gender": "F", - "height": "168", - "weight": "56", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Brianne Theisen-Eaton", - "gender": "F", - "height": "175", - "weight": "64", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 27, - "event": "Athletics Women's Heptathlon", - "medal": "Bronze" - }, - { - "name": "Thiago Maia Alencar", - "gender": "M", - "height": "178", - "weight": "64", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 19, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Nafissatou \"Nafi\" Thiam", - "gender": "F", - "height": "184", - "weight": "69", - "sport": "Athletics", - "team": "Belgium", - "noc": "BEL", - "age": 21, - "event": "Athletics Women's Heptathlon", - "medal": "Gold" - }, - { - "name": "Annekatrin Thiele", - "gender": "F", - "height": "173", - "weight": "68", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 31, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Gold" - }, - { - "name": "Courtney Lynn Thompson", - "gender": "F", - "height": "170", - "weight": "66", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Elaine Thompson", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 24, - "event": "Athletics Women's 100 metres", - "medal": "Gold" - }, - { - "name": "Elaine Thompson", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 24, - "event": "Athletics Women's 200 metres", - "medal": "Gold" - }, - { - "name": "Elaine Thompson", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 24, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Klay Alexander Thompson", - "gender": "M", - "height": "200", - "weight": "97", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Victoria Thornley", - "gender": "F", - "height": "193", - "weight": "76", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Rowing Women's Double Sculls", - "medal": "Silver" - }, - { - "name": "Virginia \"Ginny\" Thrasher", - "gender": "F", - "height": "155", - "weight": "55", - "sport": "Shooting", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Shooting Women's Air Rifle, 10 metres", - "medal": "Gold" - }, - { - "name": "Tian Tao", - "gender": "M", - "height": "172", - "weight": "85", - "sport": "Weightlifting", - "team": "China", - "noc": "CHN", - "age": 22, - "event": "Weightlifting Men's Light-Heavyweight", - "medal": "Silver" - }, - { - "name": "Ivan Grigoryevich Tikhon", - "gender": "M", - "height": "186", - "weight": "110", - "sport": "Athletics", - "team": "Belarus", - "noc": "BLR", - "age": 40, - "event": "Athletics Men's Hammer Throw", - "medal": "Silver" - }, - { - "name": "Pieter Timmers", - "gender": "M", - "height": "200", - "weight": "89", - "sport": "Swimming", - "team": "Belgium", - "noc": "BEL", - "age": 28, - "event": "Swimming Men's 100 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Anna Viktorovna Timofeyeva", - "gender": "F", - "height": "178", - "weight": "86", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 29, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Amy Tinkler", - "gender": "F", - "height": "152", - "weight": "47", - "sport": "Gymnastics", - "team": "Great Britain", - "noc": "GBR", - "age": 16, - "event": "Gymnastics Women's Floor Exercise", - "medal": "Bronze" - }, - { - "name": "Stuart Brian Tinney", - "gender": "M", - "height": "180", - "weight": "71", - "sport": "Equestrianism", - "team": "Australia", - "noc": "AUS", - "age": 51, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Bronze" - }, - { - "name": "Yevgeny Andreyevich Tishchenko", - "gender": "M", - "height": "196", - "weight": "91", - "sport": "Boxing", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Boxing Men's Heavyweight", - "medal": "Gold" - }, - { - "name": "Margarita Grigoryevna Tishkevich-Makhneva", - "gender": "F", - "height": "181", - "weight": "67", - "sport": "Canoeing", - "team": "Belarus", - "noc": "BLR", - "age": 24, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Bronze" - }, - { - "name": "Hristiana Todorova", - "gender": "F", - "height": "173", - "weight": "52", - "sport": "Rhythmic Gymnastics", - "team": "Bulgaria", - "noc": "BUL", - "age": 21, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Bronze" - }, - { - "name": "Tamirat Tola Abera", - "gender": "M", - "height": "181", - "weight": "59", - "sport": "Athletics", - "team": "Ethiopia", - "noc": "ETH", - "age": 24, - "event": "Athletics Men's 10,000 metres", - "medal": "Bronze" - }, - { - "name": "Jeremy Toljan", - "gender": "M", - "height": "182", - "weight": "72", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Mariya Yuryevna Tolkachova", - "gender": "F", - "height": "176", - "weight": "53", - "sport": "Rhythmic Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 18, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Gold" - }, - { - "name": "Sergiu Toma", - "gender": "M", - "height": "180", - "weight": "81", - "sport": "Judo", - "team": "United Arab Emirates", - "noc": "UAE", - "age": 29, - "event": "Judo Men's Half-Middleweight", - "medal": "Bronze" - }, - { - "name": "Marko Tomievi", - "gender": "M", - "height": "174", - "weight": "80", - "sport": "Canoeing", - "team": "Serbia", - "noc": "SRB", - "age": 26, - "event": "Canoeing Men's Kayak Doubles, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Emma Kate Tonegato", - "gender": "F", - "height": "165", - "weight": "63", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 21, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Jean-Paul Tony Helissey", - "gender": "M", - "height": "177", - "weight": "77", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 26, - "event": "Fencing Men's Foil, Team", - "medal": "Silver" - }, - { - "name": "Gelena Dmitriyevna Topilina", - "gender": "F", - "height": "175", - "weight": "56", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Cristian Isaac Toro Carballo", - "gender": "M", - "height": "188", - "weight": "90", - "sport": "Canoeing", - "team": "Spain", - "noc": "ESP", - "age": 24, - "event": "Canoeing Men's Kayak Doubles, 200 metres", - "medal": "Gold" - }, - { - "name": "Alba Torrens Salom", - "gender": "F", - "height": "195", - "weight": "80", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 26, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Eri Tosaka", - "gender": "F", - "height": "152", - "weight": "48", - "sport": "Wrestling", - "team": "Japan", - "noc": "JPN", - "age": 22, - "event": "Wrestling Women's Flyweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Matej Tth", - "gender": "M", - "height": "185", - "weight": "73", - "sport": "Athletics", - "team": "Slovakia", - "noc": "SVK", - "age": 33, - "event": "Athletics Men's 50 kilometres Walk", - "medal": "Gold" - }, - { - "name": "Susannah Townsend", - "gender": "F", - "height": "168", - "weight": "61", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Lucas Tramr", - "gender": "M", - "height": "183", - "weight": "75", - "sport": "Rowing", - "team": "Switzerland", - "noc": "SUI", - "age": 26, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Gold" - }, - { - "name": "Luk Trefil", - "gender": "M", - "height": "187", - "weight": "90", - "sport": "Canoeing", - "team": "Czech Republic", - "noc": "CZE", - "age": 27, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Andrew \"Andy\" Triggs Hodge", - "gender": "M", - "height": "192", - "weight": "97", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 37, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Moritz Trompertz", - "gender": "M", - "height": "180", - "weight": "76", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 20, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "William Troost-Ekong", - "gender": "M", - "height": "175", - "weight": "74", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 22, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Laura Rebecca Trott (-Kenny)", - "gender": "F", - "height": "164", - "weight": "56", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Cycling Women's Team Pursuit", - "medal": "Gold" - }, - { - "name": "Laura Rebecca Trott (-Kenny)", - "gender": "F", - "height": "164", - "weight": "56", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Cycling Women's Omnium", - "medal": "Gold" - }, - { - "name": "Murphy Edward Troy", - "gender": "M", - "height": "203", - "weight": "107", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Tina Trstenjak", - "gender": "F", - "height": "162", - "weight": "65", - "sport": "Judo", - "team": "Slovenia", - "noc": "SLO", - "age": 25, - "event": "Judo Women's Half-Middleweight", - "medal": "Gold" - }, - { - "name": "Jrme Truyens", - "gender": "M", - "height": "178", - "weight": "70", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 28, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Olaf Karl Tufte", - "gender": "M", - "height": "193", - "weight": "94", - "sport": "Rowing", - "team": "Norway", - "noc": "NOR", - "age": 40, - "event": "Rowing Men's Double Sculls", - "medal": "Bronze" - }, - { - "name": "Ruby Tui", - "gender": "F", - "height": "177", - "weight": "71", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 24, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Josua Tuisova Ratulevu", - "gender": "M", - "height": "180", - "weight": "108", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 22, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Blair Tuke", - "gender": "M", - "height": "181", - "weight": "78", - "sport": "Sailing", - "team": "New Zealand", - "noc": "NZL", - "age": 27, - "event": "Sailing Men's Skiff", - "medal": "Gold" - }, - { - "name": "Rustam Tulaganov", - "gender": "M", - "height": "186", - "weight": "91", - "sport": "Boxing", - "team": "Uzbekistan", - "noc": "UZB", - "age": 24, - "event": "Boxing Men's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Boniface Mucheru Tumuti", - "gender": "M", - "height": "175", - "weight": "72", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 24, - "event": "Athletics Men's 400 metres Hurdles", - "medal": "Silver" - }, - { - "name": "Irak'li Turmanidze", - "gender": "M", - "height": "182", - "weight": "130", - "sport": "Weightlifting", - "team": "Georgia", - "noc": "GEO", - "age": 31, - "event": "Weightlifting Men's Super-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Amy Turner", - "gender": "F", - "height": "168", - "weight": "64", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 32, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Seda Gurgenovna Tutkhalyan", - "gender": "F", - "height": "146", - "weight": "43", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 17, - "event": "Gymnastics Women's Team All-Around", - "medal": "Silver" - }, - { - "name": "Seremaia \"Jerry\" Tuwai Vunisa", - "gender": "M", - "height": "174", - "weight": "81", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 27, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Georgina Sophie \"Georgie\" Twigg", - "gender": "F", - "height": "170", - "weight": "62", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Ryan Tyack", - "gender": "M", - "height": "186", - "weight": "102", - "sport": "Archery", - "team": "Australia", - "noc": "AUS", - "age": 25, - "event": "Archery Men's Team", - "medal": "Bronze" - }, - { - "name": "Pavlo Yuriyovych Tymoshchenko", - "gender": "M", - "height": "192", - "weight": "78", - "sport": "Modern Pentathlon", - "team": "Ukraine", - "noc": "UKR", - "age": 29, - "event": "Modern Pentathlon Men's Individual", - "medal": "Silver" - }, - { - "name": "Kohei Uchimura", - "gender": "M", - "height": "160", - "weight": "54", - "sport": "Gymnastics", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Gymnastics Men's Individual All-Around", - "medal": "Gold" - }, - { - "name": "Kohei Uchimura", - "gender": "M", - "height": "160", - "weight": "54", - "sport": "Gymnastics", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Gymnastics Men's Team All-Around", - "medal": "Gold" - }, - { - "name": "Ndifreke Effiong Udo", - "gender": "M", - "height": "173", - "weight": "78", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 17, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Dirk Uittenbogaard", - "gender": "M", - "height": "199", - "weight": "93", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 26, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Denis Ulanov", - "gender": "M", - "height": "175", - "weight": "85", - "sport": "Weightlifting", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 22, - "event": "Weightlifting Men's Light-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Aminu Umar", - "gender": "M", - "height": "172", - "weight": "72", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 21, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Sadiq Umar", - "gender": "M", - "height": "172", - "weight": "75", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 19, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Lisa Unruh", - "gender": "F", - "height": "180", - "weight": "68", - "sport": "Archery", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Archery Women's Individual", - "medal": "Silver" - }, - { - "name": "Laura Emma Unsworth", - "gender": "F", - "height": "157", - "weight": "55", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Diyorbek Urozboyev", - "gender": "M", - "height": "172", - "weight": "60", - "sport": "Judo", - "team": "Uzbekistan", - "noc": "UZB", - "age": 22, - "event": "Judo Men's Extra-Lightweight", - "medal": "Bronze" - }, - { - "name": "Anna Vladimirovna Ustyukhina", - "gender": "F", - "height": "177", - "weight": "70", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Milda Valiukait", - "gender": "F", - "height": "176", - "weight": "66", - "sport": "Rowing", - "team": "Lithuania", - "noc": "LTU", - "age": 22, - "event": "Rowing Women's Double Sculls", - "medal": "Bronze" - }, - { - "name": "Ingrit Lorena Valencia Victoria", - "gender": "F", - "height": "160", - "weight": "50", - "sport": "Boxing", - "team": "Colombia", - "noc": "COL", - "age": 27, - "event": "Boxing Women's Flyweight", - "medal": "Bronze" - }, - { - "name": "Jennifer Valente", - "gender": "F", - "height": "176", - "weight": "74", - "sport": "Cycling", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Cycling Women's Team Pursuit", - "medal": "Silver" - }, - { - "name": "Lidia Valentn Prez", - "gender": "F", - "height": "169", - "weight": "75", - "sport": "Weightlifting", - "team": "Spain", - "noc": "ESP", - "age": 31, - "event": "Weightlifting Women's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Jean-Charles Valladont", - "gender": "M", - "height": "180", - "weight": "83", - "sport": "Archery", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Archery Men's Individual", - "medal": "Silver" - }, - { - "name": "Thibaut Vallette", - "gender": "M", - "height": "171", - "weight": "60", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 42, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Gold" - }, - { - "name": "Naomi Frances van As", - "gender": "F", - "height": "179", - "weight": "63", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 33, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Florent Van Aubel", - "gender": "M", - "height": "178", - "weight": "73", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 24, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Greg Van Avermaet", - "gender": "M", - "height": "181", - "weight": "74", - "sport": "Cycling", - "team": "Belgium", - "noc": "BEL", - "age": 31, - "event": "Cycling Men's Road Race, Individual", - "medal": "Gold" - }, - { - "name": "Anna van der Breggen", - "gender": "F", - "height": "167", - "weight": "56", - "sport": "Cycling", - "team": "Netherlands", - "noc": "NED", - "age": 26, - "event": "Cycling Women's Road Race, Individual", - "medal": "Gold" - }, - { - "name": "Anna van der Breggen", - "gender": "F", - "height": "167", - "weight": "56", - "sport": "Cycling", - "team": "Netherlands", - "noc": "NED", - "age": 26, - "event": "Cycling Women's Individual Time Trial", - "medal": "Bronze" - }, - { - "name": "Cameron van der Burgh", - "gender": "M", - "height": "185", - "weight": "85", - "sport": "Swimming", - "team": "South Africa", - "noc": "RSA", - "age": 28, - "event": "Swimming Men's 100 metres Breaststroke", - "medal": "Silver" - }, - { - "name": "Arthur Van Doren", - "gender": "M", - "height": "178", - "weight": "74", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 21, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Anicka van Emden", - "gender": "F", - "height": "169", - "weight": "63", - "sport": "Judo", - "team": "Netherlands", - "noc": "NED", - "age": 29, - "event": "Judo Women's Half-Middleweight", - "medal": "Bronze" - }, - { - "name": "Margot van Geffen", - "gender": "F", - "height": "172", - "weight": "63", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 26, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Jelle van Gorkom", - "gender": "M", - "height": "187", - "weight": "93", - "sport": "Cycling", - "team": "Netherlands", - "noc": "NED", - "age": 25, - "event": "Cycling Men's BMX", - "medal": "Silver" - }, - { - "name": "Chantal Jean Van Landeghem", - "gender": "F", - "height": "180", - "weight": "77", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Caia Jaqueline van Maasakker", - "gender": "F", - "height": "180", - "weight": "69", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 27, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Kitty van Male", - "gender": "F", - "height": "170", - "weight": "63", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 28, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Wayde van Niekerk", - "gender": "M", - "height": "183", - "weight": "70", - "sport": "Athletics", - "team": "South Africa", - "noc": "RSA", - "age": 24, - "event": "Athletics Men's 400 metres", - "medal": "Gold" - }, - { - "name": "Dorian Benno Eric van Rijsselberge", - "gender": "M", - "height": "189", - "weight": "75", - "sport": "Sailing", - "team": "Netherlands", - "noc": "NED", - "age": 27, - "event": "Sailing Men's Windsurfer", - "medal": "Gold" - }, - { - "name": "Sharon van Rouwendaal", - "gender": "F", - "height": "173", - "weight": "65", - "sport": "Swimming", - "team": "Netherlands", - "noc": "NED", - "age": 22, - "event": "Swimming Women's 10 kilometres Open Water", - "medal": "Gold" - }, - { - "name": "Elliot Van Strydonck", - "gender": "M", - "height": "185", - "weight": "75", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 28, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Dirk Van Tichelt", - "gender": "M", - "height": "173", - "weight": "73", - "sport": "Judo", - "team": "Belgium", - "noc": "BEL", - "age": 32, - "event": "Judo Men's Lightweight", - "medal": "Bronze" - }, - { - "name": "Vincent Vanasch", - "gender": "M", - "height": "180", - "weight": "78", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 28, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Jan Vandrey", - "gender": "M", - "height": "188", - "weight": "88", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Canoeing Men's Canadian Doubles, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Laura Vargas Koch", - "gender": "F", - "height": "173", - "weight": "70", - "sport": "Judo", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Judo Women's Middleweight", - "medal": "Bronze" - }, - { - "name": "Anamari \"Ana\" Velenek", - "gender": "F", - "height": "178", - "weight": "78", - "sport": "Judo", - "team": "Slovenia", - "noc": "SLO", - "age": 25, - "event": "Judo Women's Half-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Sofiya Aleksandrovna Velikaya", - "gender": "F", - "height": "175", - "weight": "70", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 31, - "event": "Fencing Women's Sabre, Individual", - "medal": "Silver" - }, - { - "name": "Sofiya Aleksandrovna Velikaya", - "gender": "F", - "height": "175", - "weight": "70", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 31, - "event": "Fencing Women's Sabre, Team", - "medal": "Gold" - }, - { - "name": "Stefana Veljkovi", - "gender": "F", - "height": "190", - "weight": "76", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 26, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Alessandro Velotto", - "gender": "M", - "height": "186", - "weight": "85", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "David Verburg", - "gender": "M", - "height": "173", - "weight": "70", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Jasa Veremalua", - "gender": "M", - "height": "195", - "weight": "98", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 28, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Oleh Yuriyovych Verniaiev", - "gender": "M", - "height": "161", - "weight": "55", - "sport": "Gymnastics", - "team": "Ukraine", - "noc": "UKR", - "age": 22, - "event": "Gymnastics Men's Individual All-Around", - "medal": "Silver" - }, - { - "name": "Oleh Yuriyovych Verniaiev", - "gender": "M", - "height": "161", - "weight": "55", - "sport": "Gymnastics", - "team": "Ukraine", - "noc": "UKR", - "age": 22, - "event": "Gymnastics Men's Parallel Bars", - "medal": "Gold" - }, - { - "name": "Maria Verschoor", - "gender": "F", - "height": "164", - "weight": "58", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 22, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Pieter Gilles \"Mechiel\" Versluis", - "gender": "M", - "height": "197", - "weight": "95", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 29, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Yelena Sergeyevna Vesnina", - "gender": "F", - "height": "180", - "weight": "60", - "sport": "Tennis", - "team": "Russia-2", - "noc": "RUS", - "age": 30, - "event": "Tennis Women's Doubles", - "medal": "Gold" - }, - { - "name": "Luca Vettori", - "gender": "M", - "height": "200", - "weight": "95", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 25, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Giuseppe Vicino", - "gender": "M", - "height": "195", - "weight": "95", - "sport": "Rowing", - "team": "Italy", - "noc": "ITA", - "age": 23, - "event": "Rowing Men's Coxless Fours", - "medal": "Bronze" - }, - { - "name": "Lucas Martn Vila", - "gender": "M", - "height": "172", - "weight": "75", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 29, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Sunette Stella Viljoen", - "gender": "F", - "height": "170", - "weight": "72", - "sport": "Athletics", - "team": "South Africa", - "noc": "RSA", - "age": 32, - "event": "Athletics Women's Javelin Throw", - "medal": "Silver" - }, - { - "name": "Samisoni Viriviri", - "gender": "M", - "height": "186", - "weight": "88", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 28, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Donata Vitartait", - "gender": "F", - "height": "170", - "weight": "62", - "sport": "Rowing", - "team": "Lithuania", - "noc": "LTU", - "age": 27, - "event": "Rowing Women's Double Sculls", - "medal": "Bronze" - }, - { - "name": "Juan Manuel Vivaldi", - "gender": "M", - "height": "180", - "weight": "80", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 37, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Elia Viviani", - "gender": "M", - "height": "177", - "weight": "70", - "sport": "Cycling", - "team": "Italy", - "noc": "ITA", - "age": 27, - "event": "Cycling Men's Omnium", - "medal": "Gold" - }, - { - "name": "Blanka Vlai", - "gender": "F", - "height": "193", - "weight": "71", - "sport": "Athletics", - "team": "Croatia", - "noc": "CRO", - "age": 32, - "event": "Athletics Women's High Jump", - "medal": "Bronze" - }, - { - "name": "Roman Andreyevich Vlasov", - "gender": "M", - "height": "175", - "weight": "75", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Wrestling Men's Middleweight, Greco-Roman", - "medal": "Gold" - }, - { - "name": "Erik Vlek", - "gender": "M", - "height": "189", - "weight": "89", - "sport": "Canoeing", - "team": "Slovakia", - "noc": "SVK", - "age": 34, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Kristina Vogel", - "gender": "F", - "height": "160", - "weight": "66", - "sport": "Cycling", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Cycling Women's Sprint", - "medal": "Gold" - }, - { - "name": "Kristina Vogel", - "gender": "F", - "height": "160", - "weight": "66", - "sport": "Cycling", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Cycling Women's Team Sprint", - "medal": "Bronze" - }, - { - "name": "Dana Whitney Vollmer (-Grant)", - "gender": "F", - "height": "185", - "weight": "68", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Dana Whitney Vollmer (-Grant)", - "gender": "F", - "height": "185", - "weight": "68", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Swimming Women's 100 metres Butterfly", - "medal": "Bronze" - }, - { - "name": "Dana Whitney Vollmer (-Grant)", - "gender": "F", - "height": "185", - "weight": "68", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Nataliya Vitalyevna Vorobyova", - "gender": "F", - "height": "174", - "weight": "69", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Wrestling Women's Light-Heavyweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Olena Oleksandrivna Voronina", - "gender": "F", - "height": "165", - "weight": "65", - "sport": "Fencing", - "team": "Ukraine", - "noc": "UKR", - "age": 26, - "event": "Fencing Women's Sabre, Team", - "medal": "Silver" - }, - { - "name": "Anastasiya Sergeyevna Voynova", - "gender": "F", - "height": "162", - "weight": "62", - "sport": "Cycling", - "team": "Russia", - "noc": "RUS", - "age": 23, - "event": "Cycling Women's Team Sprint", - "medal": "Silver" - }, - { - "name": "Anna Viktorovna Vyakhireva", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Walace Souza Silva", - "gender": "M", - "height": "188", - "weight": "75", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 21, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Keshorn Walcott", - "gender": "M", - "height": "183", - "weight": "90", - "sport": "Athletics", - "team": "Trinidad and Tobago", - "noc": "TTO", - "age": 23, - "event": "Athletics Men's Javelin Throw", - "medal": "Bronze" - }, - { - "name": "Marta Walczykiewicz", - "gender": "F", - "height": "165", - "weight": "63", - "sport": "Canoeing", - "team": "Poland", - "noc": "POL", - "age": 29, - "event": "Canoeing Women's Kayak Singles, 200 metres", - "medal": "Silver" - }, - { - "name": "Bianca Michaela Walkden", - "gender": "F", - "height": "182", - "weight": "74", - "sport": "Taekwondo", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Taekwondo Women's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Kira Walkenhorst", - "gender": "F", - "height": "184", - "weight": "75", - "sport": "Beach Volleyball", - "team": "Germany-1", - "noc": "GER", - "age": 25, - "event": "Beach Volleyball Women's Beach Volleyball", - "medal": "Gold" - }, - { - "name": "Christopher James \"Chris\" Walker-Hebborn", - "gender": "M", - "height": "184", - "weight": "84", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 26, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Wallace Leandro de Souza", - "gender": "M", - "height": "198", - "weight": "87", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 29, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Daniel \"Dan\" Wallace", - "gender": "M", - "height": "188", - "weight": "80", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Kenneth Maxwell \"Ken\" Wallace", - "gender": "M", - "height": "190", - "weight": "90", - "sport": "Canoeing", - "team": "Australia", - "noc": "AUS", - "age": 33, - "event": "Canoeing Men's Kayak Doubles, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Tomas \"Tom\" Walsh", - "gender": "M", - "height": "185", - "weight": "120", - "sport": "Athletics", - "team": "New Zealand", - "noc": "NZL", - "age": 24, - "event": "Athletics Men's Shot Put", - "medal": "Bronze" - }, - { - "name": "Kerri Lee Walsh Jennings", - "gender": "F", - "height": "191", - "weight": "73", - "sport": "Beach Volleyball", - "team": "United States-1", - "noc": "USA", - "age": 37, - "event": "Beach Volleyball Women's Beach Volleyball", - "medal": "Bronze" - }, - { - "name": "Marcus Cooper Walz", - "gender": "M", - "height": "184", - "weight": "82", - "sport": "Canoeing", - "team": "Spain", - "noc": "ESP", - "age": 21, - "event": "Canoeing Men's Kayak Singles, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Margaret Nyairera Wambui", - "gender": "F", - "height": "NA", - "weight": "66", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 20, - "event": "Athletics Women's 800 metres", - "medal": "Bronze" - }, - { - "name": "Wang Shun", - "gender": "M", - "height": "191", - "weight": "74", - "sport": "Swimming", - "team": "China", - "noc": "CHN", - "age": 22, - "event": "Swimming Men's 200 metres Individual Medley", - "medal": "Bronze" - }, - { - "name": "Wang Yan", - "gender": "F", - "height": "140", - "weight": "33", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 16, - "event": "Gymnastics Women's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Wang Zhen", - "gender": "M", - "height": "180", - "weight": "62", - "sport": "Athletics", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Athletics Men's 20 kilometres Walk", - "medal": "Gold" - }, - { - "name": "McLain Ward", - "gender": "M", - "height": "176", - "weight": "70", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 40, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Silver" - }, - { - "name": "Damian Warner", - "gender": "M", - "height": "185", - "weight": "83", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 26, - "event": "Athletics Men's Decathlon", - "medal": "Bronze" - }, - { - "name": "Natasha Watcham-Roy", - "gender": "F", - "height": "170", - "weight": "67", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Jason Waterhouse", - "gender": "M", - "height": "185", - "weight": "75", - "sport": "Sailing", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Sailing Mixed Multihull", - "medal": "Silver" - }, - { - "name": "Marcus China Watson", - "gender": "M", - "height": "177", - "weight": "88", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Hollie Webb", - "gender": "F", - "height": "165", - "weight": "65", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Franziska Weber", - "gender": "F", - "height": "176", - "weight": "70", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Canoeing Women's Kayak Doubles, 500 metres", - "medal": "Silver" - }, - { - "name": "Franziska Weber", - "gender": "F", - "height": "176", - "weight": "70", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Silver" - }, - { - "name": "Sam Webster", - "gender": "M", - "height": "183", - "weight": "80", - "sport": "Cycling", - "team": "New Zealand", - "noc": "NZL", - "age": 25, - "event": "Cycling Men's Team Sprint", - "medal": "Silver" - }, - { - "name": "Ferry Weertman", - "gender": "M", - "height": "189", - "weight": "86", - "sport": "Swimming", - "team": "Netherlands", - "noc": "NED", - "age": 24, - "event": "Swimming Men's 10 kilometres Open Water", - "medal": "Gold" - }, - { - "name": "Wei Qiuyue", - "gender": "F", - "height": "182", - "weight": "65", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Steffen Weinhold", - "gender": "M", - "height": "191", - "weight": "94", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 30, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Amanda Jo Weir (-Davis)", - "gender": "F", - "height": "188", - "weight": "77", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Abbey Weitzeil", - "gender": "F", - "height": "178", - "weight": "68", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Abbey Weitzeil", - "gender": "F", - "height": "178", - "weight": "68", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Niklas Wellen", - "gender": "M", - "height": "185", - "weight": "77", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Sam Welsford", - "gender": "M", - "height": "179", - "weight": "82", - "sport": "Cycling", - "team": "Australia", - "noc": "AUS", - "age": 20, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Silver" - }, - { - "name": "Miriam Welte", - "gender": "F", - "height": "171", - "weight": "67", - "sport": "Cycling", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Cycling Women's Team Sprint", - "medal": "Bronze" - }, - { - "name": "Lidewij Marsia Maria Welten", - "gender": "F", - "height": "170", - "weight": "64", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 26, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Phillipp Wende", - "gender": "M", - "height": "199", - "weight": "90", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 31, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Gold" - }, - { - "name": "Isabelle Regina Werth", - "gender": "F", - "height": "169", - "weight": "66", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 47, - "event": "Equestrianism Mixed Dressage, Individual", - "medal": "Silver" - }, - { - "name": "Isabelle Regina Werth", - "gender": "F", - "height": "169", - "weight": "66", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 47, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Gold" - }, - { - "name": "Christopher Wesley", - "gender": "M", - "height": "192", - "weight": "88", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Sanne Wevers", - "gender": "F", - "height": "156", - "weight": "46", - "sport": "Gymnastics", - "team": "Netherlands", - "noc": "NED", - "age": 24, - "event": "Gymnastics Women's Balance Beam", - "medal": "Gold" - }, - { - "name": "Wverton Pereira da Silva", - "gender": "M", - "height": "189", - "weight": "86", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 28, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Lindsay Marie Whalen", - "gender": "F", - "height": "175", - "weight": "72", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 34, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Nicola White", - "gender": "F", - "height": "172", - "weight": "65", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Max Antony Whitlock", - "gender": "M", - "height": "167", - "weight": "56", - "sport": "Gymnastics", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Gymnastics Men's Individual All-Around", - "medal": "Bronze" - }, - { - "name": "Max Antony Whitlock", - "gender": "M", - "height": "167", - "weight": "56", - "sport": "Gymnastics", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Gymnastics Men's Floor Exercise", - "medal": "Gold" - }, - { - "name": "Max Antony Whitlock", - "gender": "M", - "height": "167", - "weight": "56", - "sport": "Gymnastics", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Gymnastics Men's Pommelled Horse", - "medal": "Gold" - }, - { - "name": "Erica Elizabeth Wiebe", - "gender": "F", - "height": "175", - "weight": "75", - "sport": "Wrestling", - "team": "Canada", - "noc": "CAN", - "age": 27, - "event": "Wrestling Women's Heavyweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Fabian Wiede", - "gender": "M", - "height": "194", - "weight": "94", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 22, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Patrick Wiencek", - "gender": "M", - "height": "200", - "weight": "110", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Peter Noel Jan Wiersum", - "gender": "M", - "height": "173", - "weight": "55", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 31, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Tone Wieten", - "gender": "M", - "height": "201", - "weight": "102", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 22, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Bradley Marc Wiggins", - "gender": "M", - "height": "190", - "weight": "82", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 36, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Gold" - }, - { - "name": "Rhian Emilie Wilkinson", - "gender": "F", - "height": "166", - "weight": "66", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 34, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "William de Asevedo Furtado", - "gender": "M", - "height": "176", - "weight": "65", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 21, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Charity Williams", - "gender": "F", - "height": "162", - "weight": "68", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 19, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Christania Williams", - "gender": "F", - "height": "165", - "weight": "63", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 21, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Michelle Williams (-Toro)", - "gender": "F", - "height": "175", - "weight": "67", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 25, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Niall Williams", - "gender": "F", - "height": "173", - "weight": "74", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 28, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Sharni Williams", - "gender": "F", - "height": "167", - "weight": "79", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 28, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Venus Ebony Starr Williams", - "gender": "F", - "height": "185", - "weight": "75", - "sport": "Tennis", - "team": "United States-1", - "noc": "USA", - "age": 36, - "event": "Tennis Mixed Doubles", - "medal": "Silver" - }, - { - "name": "Novlene Hilaire Williams-Mills", - "gender": "F", - "height": "168", - "weight": "57", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 34, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Nicholas Ian \"Nick\" Willis", - "gender": "M", - "height": "183", - "weight": "68", - "sport": "Athletics", - "team": "New Zealand", - "noc": "NZL", - "age": 33, - "event": "Athletics Men's 1,500 metres", - "medal": "Bronze" - }, - { - "name": "Madison \"Madi\" Wilson", - "gender": "F", - "height": "179", - "weight": "61", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Madison \"Madi\" Wilson", - "gender": "F", - "height": "179", - "weight": "61", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Melanie Kate Wilson", - "gender": "F", - "height": "184", - "weight": "75", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 32, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Nile Wilson", - "gender": "M", - "height": "166", - "weight": "60", - "sport": "Gymnastics", - "team": "Great Britain", - "noc": "GBR", - "age": 20, - "event": "Gymnastics Men's Horizontal Bar", - "medal": "Bronze" - }, - { - "name": "Spencer James W. Wilton", - "gender": "M", - "height": "183", - "weight": "83", - "sport": "Equestrianism", - "team": "Great Britain", - "noc": "GBR", - "age": 43, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Silver" - }, - { - "name": "Kasper Winther Jrgensen", - "gender": "M", - "height": "182", - "weight": "73", - "sport": "Rowing", - "team": "Denmark", - "noc": "DEN", - "age": 31, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Silver" - }, - { - "name": "Anita Wodarczyk", - "gender": "F", - "height": "178", - "weight": "95", - "sport": "Athletics", - "team": "Poland", - "noc": "POL", - "age": 30, - "event": "Athletics Women's Hammer Throw", - "medal": "Gold" - }, - { - "name": "Maja Martyna Woszczowska", - "gender": "F", - "height": "170", - "weight": "54", - "sport": "Cycling", - "team": "Poland", - "noc": "POL", - "age": 32, - "event": "Cycling Women's Mountainbike, Cross-team", - "medal": "Silver" - }, - { - "name": "Andreas Wolff", - "gender": "M", - "height": "198", - "weight": "110", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Panipak Wongpattanakit", - "gender": "F", - "height": "173", - "weight": "49", - "sport": "Taekwondo", - "team": "Thailand", - "noc": "THA", - "age": 18, - "event": "Taekwondo Women's Flyweight", - "medal": "Bronze" - }, - { - "name": "Portia Woodman", - "gender": "F", - "height": "169", - "weight": "74", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 25, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Kelsi Worrell", - "gender": "F", - "height": "180", - "weight": "75", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Taylor Worth", - "gender": "M", - "height": "174", - "weight": "60", - "sport": "Archery", - "team": "Australia", - "noc": "AUS", - "age": 25, - "event": "Archery Men's Team", - "medal": "Bronze" - }, - { - "name": "Dagmara Wozniak (Woniak-)", - "gender": "F", - "height": "173", - "weight": "81", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Fencing Women's Sabre, Team", - "medal": "Bronze" - }, - { - "name": "Felipe Almeida Wu", - "gender": "M", - "height": "169", - "weight": "69", - "sport": "Shooting", - "team": "Brazil", - "noc": "BRA", - "age": 24, - "event": "Shooting Men's Air Pistol, 10 metres", - "medal": "Silver" - }, - { - "name": "Wu Minxia", - "gender": "F", - "height": "167", - "weight": "52", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 30, - "event": "Diving Women's Synchronized Springboard", - "medal": "Gold" - }, - { - "name": "Marta Xargay Casademont", - "gender": "F", - "height": "180", - "weight": "71", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 25, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Xiang Yanmei", - "gender": "F", - "height": "163", - "weight": "69", - "sport": "Weightlifting", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Weightlifting Women's Light-Heavyweight", - "medal": "Gold" - }, - { - "name": "Xu Anqi", - "gender": "F", - "height": "182", - "weight": "76", - "sport": "Fencing", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Fencing Women's epee, Team", - "medal": "Silver" - }, - { - "name": "Xu Jiayu", - "gender": "M", - "height": "187", - "weight": "78", - "sport": "Swimming", - "team": "China", - "noc": "CHN", - "age": 20, - "event": "Swimming Men's 100 metres Backstroke", - "medal": "Silver" - }, - { - "name": "Xu Xin", - "gender": "M", - "height": "180", - "weight": "67", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Table Tennis Men's Team", - "medal": "Gold" - }, - { - "name": "Xu Yunli", - "gender": "F", - "height": "195", - "weight": "75", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 29, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Kanae Yamabe", - "gender": "F", - "height": "172", - "weight": "108", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 25, - "event": "Judo Women's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Ryota Yamagata", - "gender": "M", - "height": "177", - "weight": "70", - "sport": "Athletics", - "team": "Japan", - "noc": "JPN", - "age": 24, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Koji Yamamuro", - "gender": "M", - "height": "159", - "weight": "58", - "sport": "Gymnastics", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Gymnastics Men's Team All-Around", - "medal": "Gold" - }, - { - "name": "Yan Ni", - "gender": "F", - "height": "192", - "weight": "74", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 29, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Dmytro Mykolaiovych Yanchuk", - "gender": "M", - "height": "184", - "weight": "75", - "sport": "Canoeing", - "team": "Ukraine", - "noc": "UKR", - "age": 23, - "event": "Canoeing Men's Canadian Doubles, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Yang Fangxu", - "gender": "F", - "height": "190", - "weight": "71", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 21, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Elitsa Atanasova Yankova", - "gender": "F", - "height": "151", - "weight": "48", - "sport": "Wrestling", - "team": "Bulgaria", - "noc": "BUL", - "age": 21, - "event": "Wrestling Women's Flyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Selim Yaar", - "gender": "M", - "height": "179", - "weight": "86", - "sport": "Wrestling", - "team": "Turkey", - "noc": "TUR", - "age": 26, - "event": "Wrestling Men's Light-Heavyweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Hassan Aliazam Yazdanicharati", - "gender": "M", - "height": "181", - "weight": "74", - "sport": "Wrestling", - "team": "Iran", - "noc": "IRI", - "age": 21, - "event": "Wrestling Men's Middleweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Yuliya Andreyevna Yefimova", - "gender": "F", - "height": "178", - "weight": "64", - "sport": "Swimming", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Swimming Women's 100 metres Breaststroke", - "medal": "Silver" - }, - { - "name": "Yuliya Andreyevna Yefimova", - "gender": "F", - "height": "178", - "weight": "64", - "sport": "Swimming", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Swimming Women's 200 metres Breaststroke", - "medal": "Silver" - }, - { - "name": "Julius Kiplagat Yego", - "gender": "M", - "height": "175", - "weight": "94", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 27, - "event": "Athletics Men's Javelin Throw", - "medal": "Silver" - }, - { - "name": "Yana Karapetovna Yegoryan", - "gender": "F", - "height": "175", - "weight": "64", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Fencing Women's Sabre, Individual", - "medal": "Gold" - }, - { - "name": "Yana Karapetovna Yegoryan", - "gender": "F", - "height": "175", - "weight": "64", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Fencing Women's Sabre, Team", - "medal": "Gold" - }, - { - "name": "Daniyar Maratovich Yeleusinov", - "gender": "M", - "height": "178", - "weight": "64", - "sport": "Boxing", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 25, - "event": "Boxing Men's Welterweight", - "medal": "Gold" - }, - { - "name": "Tatyana Vladimirova Yerokhina", - "gender": "F", - "height": "185", - "weight": "73", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 31, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Yi Siling", - "gender": "F", - "height": "165", - "weight": "51", - "sport": "Shooting", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Shooting Women's Air Rifle, 10 metres", - "medal": "Bronze" - }, - { - "name": "Yin Chengxin", - "gender": "F", - "height": "170", - "weight": "58", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 21, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "Yin Junhua", - "gender": "F", - "height": "167", - "weight": "60", - "sport": "Boxing", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Boxing Women's Lightweight", - "medal": "Silver" - }, - { - "name": "Tony Victor James Yoka", - "gender": "M", - "height": "200", - "weight": "105", - "sport": "Boxing", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Boxing Men's Super-Heavyweight", - "medal": "Gold" - }, - { - "name": "Yoon Jin-Hee", - "gender": "F", - "height": "158", - "weight": "53", - "sport": "Weightlifting", - "team": "South Korea", - "noc": "KOR", - "age": 29, - "event": "Weightlifting Women's Featherweight", - "medal": "Bronze" - }, - { - "name": "Kurumi Yoshida", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 24, - "event": "Synchronized Swimming Women's Team", - "medal": "Bronze" - }, - { - "name": "Saori Yoshida", - "gender": "F", - "height": "157", - "weight": "55", - "sport": "Wrestling", - "team": "Japan", - "noc": "JPN", - "age": 33, - "event": "Wrestling Women's Featherweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Maharu Yoshimura", - "gender": "M", - "height": "177", - "weight": "61", - "sport": "Table Tennis", - "team": "Japan", - "noc": "JPN", - "age": 23, - "event": "Table Tennis Men's Team", - "medal": "Silver" - }, - { - "name": "You Hao", - "gender": "M", - "height": "162", - "weight": "60", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Gymnastics Men's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Yu Song", - "gender": "F", - "height": "182", - "weight": "128", - "sport": "Judo", - "team": "China", - "noc": "CHN", - "age": 29, - "event": "Judo Women's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Yuan Xinyue", - "gender": "F", - "height": "201", - "weight": "78", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 19, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Grce Zaadi Deuna", - "gender": "F", - "height": "171", - "weight": "66", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 23, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Olga Sergeyevna Zabelinskaya (Sukhoruchenkova-)", - "gender": "F", - "height": "175", - "weight": "61", - "sport": "Cycling", - "team": "Russia", - "noc": "RUS", - "age": 36, - "event": "Cycling Women's Individual Time Trial", - "medal": "Silver" - }, - { - "name": "Shelina Laura Zadorsky", - "gender": "F", - "height": "172", - "weight": "67", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 23, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Mariel Leigh Zagunis", - "gender": "F", - "height": "173", - "weight": "72", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Fencing Women's Sabre, Team", - "medal": "Bronze" - }, - { - "name": "Thomas Zajac", - "gender": "M", - "height": "180", - "weight": "77", - "sport": "Sailing", - "team": "Austria", - "noc": "AUT", - "age": 30, - "event": "Sailing Mixed Multihull", - "medal": "Bronze" - }, - { - "name": "Arthur Nabarrete Zanetti", - "gender": "M", - "height": "156", - "weight": "61", - "sport": "Gymnastics", - "team": "Brazil", - "noc": "BRA", - "age": 26, - "event": "Gymnastics Men's Rings", - "medal": "Silver" - }, - { - "name": "Aleksandr Sergeyevich Zaychikov", - "gender": "M", - "height": "180", - "weight": "105", - "sport": "Weightlifting", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 23, - "event": "Weightlifting Men's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Ivan Zaytsev", - "gender": "M", - "height": "204", - "weight": "100", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 27, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Vasilij bogar", - "gender": "M", - "height": "189", - "weight": "98", - "sport": "Sailing", - "team": "Slovenia", - "noc": "SLO", - "age": 40, - "event": "Sailing Men's One Person Heavyweight Dinghy", - "medal": "Silver" - }, - { - "name": "Jos Carlos Cracco Neto", - "gender": "M", - "height": "170", - "weight": "69", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Zeng Zhen", - "gender": "F", - "height": "170", - "weight": "61", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 22, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "Zhang Binbin", - "gender": "F", - "height": "164", - "weight": "55", - "sport": "Shooting", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Shooting Women's Small-Bore Rifle, Three Positions, 50 metres", - "medal": "Silver" - }, - { - "name": "Zhang Changning", - "gender": "F", - "height": "193", - "weight": "79", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 20, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Zhang Chenglong", - "gender": "M", - "height": "173", - "weight": "65", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Gymnastics Men's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Zhang Fengliu", - "gender": "F", - "height": "172", - "weight": "77", - "sport": "Wrestling", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Wrestling Women's Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Zhang Jike", - "gender": "M", - "height": "178", - "weight": "70", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 28, - "event": "Table Tennis Men's Singles", - "medal": "Silver" - }, - { - "name": "Zhang Jike", - "gender": "M", - "height": "178", - "weight": "70", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 28, - "event": "Table Tennis Men's Team", - "medal": "Gold" - }, - { - "name": "Zhang Mengxue", - "gender": "F", - "height": "162", - "weight": "70", - "sport": "Shooting", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Shooting Women's Air Pistol, 10 metres", - "medal": "Gold" - }, - { - "name": "Zhang Nan", - "gender": "M", - "height": "183", - "weight": "75", - "sport": "Badminton", - "team": "China-1", - "noc": "CHN", - "age": 26, - "event": "Badminton Mixed Doubles", - "medal": "Bronze" - }, - { - "name": "Zhang Nan", - "gender": "M", - "height": "183", - "weight": "75", - "sport": "Badminton", - "team": "China-1", - "noc": "CHN", - "age": 26, - "event": "Badminton Men's Doubles", - "medal": "Gold" - }, - { - "name": "Zhang Wenxiu", - "gender": "F", - "height": "183", - "weight": "105", - "sport": "Athletics", - "team": "China", - "noc": "CHN", - "age": 30, - "event": "Athletics Women's Hammer Throw", - "medal": "Silver" - }, - { - "name": "Zhao Shuai", - "gender": "M", - "height": "188", - "weight": "63", - "sport": "Taekwondo", - "team": "China", - "noc": "CHN", - "age": 20, - "event": "Taekwondo Men's Flyweight", - "medal": "Gold" - }, - { - "name": "Zhao Yunlei", - "gender": "F", - "height": "173", - "weight": "60", - "sport": "Badminton", - "team": "China-1", - "noc": "CHN", - "age": 29, - "event": "Badminton Mixed Doubles", - "medal": "Bronze" - }, - { - "name": "Zhazira Abdrakhmanovna Zhapparkul", - "gender": "F", - "height": "155", - "weight": "69", - "sport": "Weightlifting", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 22, - "event": "Weightlifting Women's Light-Heavyweight", - "medal": "Silver" - }, - { - "name": "Zheng Shuyin", - "gender": "F", - "height": "188", - "weight": "75", - "sport": "Taekwondo", - "team": "China", - "noc": "CHN", - "age": 22, - "event": "Taekwondo Women's Heavyweight", - "medal": "Gold" - }, - { - "name": "Viktoriya Yuryevna Zhilinskayte", - "gender": "F", - "height": "188", - "weight": "80", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Valeriya Sergeyevna Zholobova-Koblova", - "gender": "F", - "height": "164", - "weight": "58", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 23, - "event": "Wrestling Women's Lightweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Zhong Tianshi", - "gender": "F", - "height": "168", - "weight": "62", - "sport": "Cycling", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Cycling Women's Team Sprint", - "medal": "Gold" - }, - { - "name": "Zhu Ting", - "gender": "F", - "height": "198", - "weight": "78", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 21, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Bojana ivkovi", - "gender": "F", - "height": "186", - "weight": "72", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 28, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Shakhobiddin Shokirovich Zoirov", - "gender": "M", - "height": "169", - "weight": "52", - "sport": "Boxing", - "team": "Uzbekistan", - "noc": "UZB", - "age": 23, - "event": "Boxing Men's Flyweight", - "medal": "Gold" - }, - { - "name": "Milenko Zori", - "gender": "M", - "height": "179", - "weight": "73", - "sport": "Canoeing", - "team": "Serbia", - "noc": "SRB", - "age": 27, - "event": "Canoeing Men's Kayak Doubles, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Martin Zwicker", - "gender": "M", - "height": "175", - "weight": "64", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - } - ] -} diff --git a/src/data/athletes/athletes.json b/src/data/athletes/athletes.json deleted file mode 100644 index 8c28a93e..00000000 --- a/src/data/athletes/athletes.json +++ /dev/null @@ -1,24284 +0,0 @@ -{ - "games": "Olympic Games", - "year": 2016, - "season": "summer", - "city": "Rio de Janeiro", - "athletes": [ - { - "name": "Giovanni Abagnale", - "gender": "M", - "height": "198", - "weight": "90", - "sport": "Rowing", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Rowing Men's Coxless Pairs", - "medal": "Bronze" - }, - { - "name": "Patimat Abakarova", - "gender": "F", - "height": "165", - "weight": "49", - "sport": "Taekwondo", - "team": "Azerbaijan", - "noc": "AZE", - "age": 21, - "event": "Taekwondo Women's Flyweight", - "medal": "Bronze" - }, - { - "name": "Luc Abalo", - "gender": "M", - "height": "182", - "weight": "86", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 31, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Saeid Morad Abdevali", - "gender": "M", - "height": "170", - "weight": "80", - "sport": "Wrestling", - "team": "Iran", - "noc": "IRI", - "age": 26, - "event": "Wrestling Men's Middleweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Denis Mikhaylovich Ablyazin", - "gender": "M", - "height": "161", - "weight": "62", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Gymnastics Men's Team All-Around", - "medal": "Silver" - }, - { - "name": "Denis Mikhaylovich Ablyazin", - "gender": "M", - "height": "161", - "weight": "62", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Gymnastics Men's Horse Vault", - "medal": "Silver" - }, - { - "name": "Denis Mikhaylovich Ablyazin", - "gender": "M", - "height": "161", - "weight": "62", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Gymnastics Men's Rings", - "medal": "Bronze" - }, - { - "name": "Matthew \"Matt\" Abood", - "gender": "M", - "height": "197", - "weight": "92", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 30, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Alejandro \"lex\" Abrines Redondo", - "gender": "M", - "height": "198", - "weight": "93", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 23, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Ahmad Abughaush", - "gender": "M", - "height": "178", - "weight": "68", - "sport": "Taekwondo", - "team": "Jordan", - "noc": "JOR", - "age": 20, - "event": "Taekwondo Men's Featherweight", - "medal": "Gold" - }, - { - "name": "Chantal Achterberg", - "gender": "F", - "height": "172", - "weight": "72", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 31, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Silver" - }, - { - "name": "Nicola Virginia Adams", - "gender": "F", - "height": "164", - "weight": "51", - "sport": "Boxing", - "team": "Great Britain", - "noc": "GBR", - "age": 33, - "event": "Boxing Women's Flyweight", - "medal": "Gold" - }, - { - "name": "Rachael Alexis Adams", - "gender": "F", - "height": "188", - "weight": "81", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Valerie Kasanita Adams-Vili (-Price)", - "gender": "F", - "height": "193", - "weight": "120", - "sport": "Athletics", - "team": "New Zealand", - "noc": "NZL", - "age": 31, - "event": "Athletics Women's Shot Put", - "medal": "Silver" - }, - { - "name": "Nathan Ghar-Jun Adrian", - "gender": "M", - "height": "198", - "weight": "100", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Swimming Men's 50 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Nathan Ghar-Jun Adrian", - "gender": "M", - "height": "198", - "weight": "100", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Swimming Men's 100 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Nathan Ghar-Jun Adrian", - "gender": "M", - "height": "198", - "weight": "100", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Nathan Ghar-Jun Adrian", - "gender": "M", - "height": "198", - "weight": "100", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Cecil Sebastian Afrika", - "gender": "M", - "height": "175", - "weight": "75", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 28, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Timothy Ernest Victor Kwizera \"Tim\" Agaba", - "gender": "M", - "height": "193", - "weight": "104", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 27, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Clarisse Agbegnenou", - "gender": "F", - "height": "164", - "weight": "66", - "sport": "Judo", - "team": "France", - "noc": "FRA", - "age": 23, - "event": "Judo Women's Half-Middleweight", - "medal": "Silver" - }, - { - "name": "Sandra Aguilar Navarro", - "gender": "F", - "height": "167", - "weight": "50", - "sport": "Rhythmic Gymnastics", - "team": "Spain", - "noc": "ESP", - "age": 23, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Silver" - }, - { - "name": "Sri Wahyuni Agustiani", - "gender": "F", - "height": "147", - "weight": "47", - "sport": "Weightlifting", - "team": "Indonesia", - "noc": "INA", - "age": 21, - "event": "Weightlifting Women's Flyweight", - "medal": "Silver" - }, - { - "name": "Christian Ahlmann", - "gender": "M", - "height": "189", - "weight": "80", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 41, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Bronze" - }, - { - "name": "Tontowi Ahmad", - "gender": "M", - "height": "179", - "weight": "72", - "sport": "Badminton", - "team": "Indonesia-1", - "noc": "INA", - "age": 29, - "event": "Badminton Mixed Doubles", - "medal": "Gold" - }, - { - "name": "Matteo Aicardi", - "gender": "M", - "height": "192", - "weight": "102", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 30, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Rosaria Aiello", - "gender": "F", - "height": "172", - "weight": "74", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 27, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Oluwafemi \"Junior\" Ajayi", - "gender": "M", - "height": "172", - "weight": "79", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 20, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Mobolade Abimbola Ajomale", - "gender": "M", - "height": "180", - "weight": "62", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 20, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "Taha Akgl", - "gender": "M", - "height": "192", - "weight": "125", - "sport": "Wrestling", - "team": "Turkey", - "noc": "TUR", - "age": 25, - "event": "Wrestling Men's Super-Heavyweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Murodzhon Kakharovich Akhmadaliyev", - "gender": "M", - "height": "165", - "weight": "56", - "sport": "Boxing", - "team": "Uzbekistan", - "noc": "UZB", - "age": 21, - "event": "Boxing Men's Bantamweight", - "medal": "Bronze" - }, - { - "name": "Artur Kamilevich Akhmatkhuzin", - "gender": "M", - "height": "187", - "weight": "79", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Fencing Men's Foil, Team", - "medal": "Gold" - }, - { - "name": "Morolake Akinosun", - "gender": "F", - "height": "163", - "weight": "61", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Foluke Antinuke Akinradewo", - "gender": "F", - "height": "191", - "weight": "79", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Daniel Akpeyi", - "gender": "M", - "height": "187", - "weight": "80", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 30, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Monica Aksamit", - "gender": "F", - "height": "183", - "weight": "74", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Fencing Women's Sabre, Team", - "medal": "Bronze" - }, - { - "name": "Fehaid Al-Deehani", - "gender": "M", - "height": "178", - "weight": "95", - "sport": "Shooting", - "team": "Individual Olympic Athletes", - "noc": "IOA", - "age": 49, - "event": "Shooting Men's Double Trap", - "medal": "Gold" - }, - { - "name": "Abdullah Al-Rashidi", - "gender": "M", - "height": "183", - "weight": "83", - "sport": "Shooting", - "team": "Individual Olympic Athletes", - "noc": "IOA", - "age": 52, - "event": "Shooting Men's Skeet", - "medal": "Bronze" - }, - { - "name": "Jo Qesem Ayela Aleh", - "gender": "F", - "height": "171", - "weight": "58", - "sport": "Sailing", - "team": "New Zealand", - "noc": "NZL", - "age": 30, - "event": "Sailing Women's Two Person Dinghy", - "medal": "Silver" - }, - { - "name": "Artur Aleksanyan", - "gender": "M", - "height": "190", - "weight": "98", - "sport": "Wrestling", - "team": "Armenia", - "noc": "ARM", - "age": 24, - "event": "Wrestling Men's Heavyweight, Greco-Roman", - "medal": "Gold" - }, - { - "name": "Milan Aleksi", - "gender": "M", - "height": "193", - "weight": "96", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 30, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Abdoul Razak Issoufou Alfaga", - "gender": "M", - "height": "207", - "weight": "90", - "sport": "Taekwondo", - "team": "Niger", - "noc": "NIG", - "age": 21, - "event": "Taekwondo Men's Heavyweight", - "medal": "Silver" - }, - { - "name": "Nia Sifaatihii Ali", - "gender": "F", - "height": "170", - "weight": "65", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Athletics Women's 100 metres Hurdles", - "medal": "Silver" - }, - { - "name": "Alison Conte Cerutti", - "gender": "M", - "height": "203", - "weight": "106", - "sport": "Beach Volleyball", - "team": "Brazil-1", - "noc": "BRA", - "age": 30, - "event": "Beach Volleyball Men's Beach Volleyball", - "medal": "Gold" - }, - { - "name": "Kimia Alizadeh Zenoorin", - "gender": "F", - "height": "185", - "weight": "57", - "sport": "Taekwondo", - "team": "Iran", - "noc": "IRI", - "age": 18, - "event": "Taekwondo Women's Featherweight", - "medal": "Bronze" - }, - { - "name": "Nathon Allen", - "gender": "M", - "height": "178", - "weight": "NA", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 20, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Ida Alstad", - "gender": "F", - "height": "172", - "weight": "60", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 31, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Lzaro Jorge lvarez Estrada", - "gender": "M", - "height": "173", - "weight": "60", - "sport": "Boxing", - "team": "Cuba", - "noc": "CUB", - "age": 25, - "event": "Boxing Men's Lightweight", - "medal": "Bronze" - }, - { - "name": "Yuri Alvear Orjuela", - "gender": "F", - "height": "176", - "weight": "70", - "sport": "Judo", - "team": "Colombia", - "noc": "COL", - "age": 30, - "event": "Judo Women's Middleweight", - "medal": "Silver" - }, - { - "name": "Marwa Al-Amri", - "gender": "F", - "height": "160", - "weight": "58", - "sport": "Wrestling", - "team": "Tunisia", - "noc": "TUN", - "age": 27, - "event": "Wrestling Women's Lightweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Stanley Amuzie", - "gender": "M", - "height": "171", - "weight": "85", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 20, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "An Ba-Ul", - "gender": "M", - "height": "169", - "weight": "66", - "sport": "Judo", - "team": "South Korea", - "noc": "KOR", - "age": 22, - "event": "Judo Men's Half-Lightweight", - "medal": "Silver" - }, - { - "name": "milie Andol", - "gender": "F", - "height": "170", - "weight": "97", - "sport": "Judo", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Judo Women's Heavyweight", - "medal": "Gold" - }, - { - "name": "Anne Dsane Andersen", - "gender": "F", - "height": "183", - "weight": "86", - "sport": "Rowing", - "team": "Denmark", - "noc": "DEN", - "age": 23, - "event": "Rowing Women's Coxless Pairs", - "medal": "Bronze" - }, - { - "name": "Matthew John \"Matt\" Anderson", - "gender": "M", - "height": "202", - "weight": "100", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Jonna Andersson", - "gender": "F", - "height": "167", - "weight": "61", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 23, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Roman Sergeyevich Anoshkin", - "gender": "M", - "height": "192", - "weight": "95", - "sport": "Canoeing", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Canoeing Men's Kayak Singles, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Giselle Anne Ansley", - "gender": "F", - "height": "176", - "weight": "73", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Carmelo Kyan Anthony", - "gender": "M", - "height": "203", - "weight": "109", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 32, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Oleg Antonov", - "gender": "M", - "height": "198", - "weight": "88", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 28, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Emilia Elisabeth Appelqvist", - "gender": "F", - "height": "168", - "weight": "65", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 26, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Hirooki Arai", - "gender": "M", - "height": "180", - "weight": "62", - "sport": "Athletics", - "team": "Japan", - "noc": "JPN", - "age": 28, - "event": "Athletics Men's 50 kilometres Walk", - "medal": "Bronze" - }, - { - "name": "Katie Louise Archibald", - "gender": "F", - "height": "178", - "weight": "70", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 22, - "event": "Cycling Women's Team Pursuit", - "medal": "Gold" - }, - { - "name": "Joahnys Oscar Argilagos Prez", - "gender": "M", - "height": "152", - "weight": "49", - "sport": "Boxing", - "team": "Cuba", - "noc": "CUB", - "age": 19, - "event": "Boxing Men's Light-Flyweight", - "medal": "Bronze" - }, - { - "name": "William Peixoto Arjona", - "gender": "M", - "height": "186", - "weight": "78", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 37, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Kristin Ann Armstrong (-Savola)", - "gender": "F", - "height": "173", - "weight": "58", - "sport": "Cycling", - "team": "United States", - "noc": "USA", - "age": 42, - "event": "Cycling Women's Individual Time Trial", - "medal": "Gold" - }, - { - "name": "Emilie Hegh Arntzen", - "gender": "F", - "height": "183", - "weight": "78", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 22, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Migran Arutyunyan", - "gender": "M", - "height": "166", - "weight": "67", - "sport": "Wrestling", - "team": "Armenia", - "noc": "ARM", - "age": 27, - "event": "Wrestling Men's Welterweight, Greco-Roman", - "medal": "Silver" - }, - { - "name": "Geraldina Rachel \"Dina\" Asher-Smith", - "gender": "F", - "height": "164", - "weight": "55", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 20, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "Nickel Ashmeade", - "gender": "M", - "height": "183", - "weight": "77", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 26, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Jessica Ashwood", - "gender": "F", - "height": "173", - "weight": "64", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 23, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Kosovare \"Kosse\" Asllani", - "gender": "F", - "height": "166", - "weight": "56", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 27, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Sandra Auffarth", - "gender": "F", - "height": "170", - "weight": "57", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Silver" - }, - { - "name": "Seimone Delicia Augustus", - "gender": "F", - "height": "183", - "weight": "74", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 32, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Mohd Azizulhasni Awang", - "gender": "M", - "height": "166", - "weight": "69", - "sport": "Cycling", - "team": "Malaysia", - "noc": "MAS", - "age": 28, - "event": "Cycling Men's Keirin", - "medal": "Bronze" - }, - { - "name": "Viktor Axelsen", - "gender": "M", - "height": "194", - "weight": "88", - "sport": "Badminton", - "team": "Denmark", - "noc": "DEN", - "age": 22, - "event": "Badminton Men's Singles", - "medal": "Bronze" - }, - { - "name": "Almaz Ayana Eba", - "gender": "F", - "height": "166", - "weight": "47", - "sport": "Athletics", - "team": "Ethiopia", - "noc": "ETH", - "age": 24, - "event": "Athletics Women's 5,000 metres", - "medal": "Bronze" - }, - { - "name": "Almaz Ayana Eba", - "gender": "F", - "height": "166", - "weight": "47", - "sport": "Athletics", - "team": "Ethiopia", - "noc": "ETH", - "age": 24, - "event": "Athletics Women's 10,000 metres", - "medal": "Gold" - }, - { - "name": "Camille Anas Ayglon-Saurina", - "gender": "F", - "height": "180", - "weight": "66", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 31, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Jrmie Azou", - "gender": "M", - "height": "178", - "weight": "71", - "sport": "Rowing", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Rowing Men's Lightweight Double Sculls", - "medal": "Gold" - }, - { - "name": "Okechukwu Godson Azubuike", - "gender": "M", - "height": "170", - "weight": "68", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 19, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Diana Bacosi", - "gender": "F", - "height": "175", - "weight": "85", - "sport": "Shooting", - "team": "Italy", - "noc": "ITA", - "age": 33, - "event": "Shooting Women's Skeet", - "medal": "Gold" - }, - { - "name": "Timea Bacsinszky", - "gender": "F", - "height": "170", - "weight": "62", - "sport": "Tennis", - "team": "Switzerland", - "noc": "SUI", - "age": 27, - "event": "Tennis Women's Doubles", - "medal": "Silver" - }, - { - "name": "Kemar Bailey-Cole", - "gender": "M", - "height": "193", - "weight": "84", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 24, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Kathleen Baker", - "gender": "F", - "height": "173", - "weight": "68", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 100 metres Backstroke", - "medal": "Silver" - }, - { - "name": "Kathleen Baker", - "gender": "F", - "height": "173", - "weight": "68", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Mashu Baker", - "gender": "M", - "height": "178", - "weight": "90", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Judo Men's Middleweight", - "medal": "Gold" - }, - { - "name": "Shakira Baker", - "gender": "F", - "height": "172", - "weight": "89", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 24, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Dmitry Igorevich Balandin", - "gender": "M", - "height": "195", - "weight": "85", - "sport": "Swimming", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 21, - "event": "Swimming Men's 200 metres Breaststroke", - "medal": "Gold" - }, - { - "name": "Kayla Banwarth", - "gender": "F", - "height": "178", - "weight": "70", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Carina Br", - "gender": "F", - "height": "185", - "weight": "75", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Gold" - }, - { - "name": "Brbara Seixas de Freitas", - "gender": "F", - "height": "178", - "weight": "67", - "sport": "Beach Volleyball", - "team": "Brazil-1", - "noc": "BRA", - "age": 29, - "event": "Beach Volleyball Women's Beach Volleyball", - "medal": "Silver" - }, - { - "name": "Elinor Jane Barker", - "gender": "F", - "height": "168", - "weight": "56", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 21, - "event": "Cycling Women's Team Pursuit", - "medal": "Gold" - }, - { - "name": "Harrison Bryce Jordan Barnes", - "gender": "M", - "height": "203", - "weight": "102", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Thomas Gabriel Jrmie Baroukh", - "gender": "M", - "height": "183", - "weight": "70", - "sport": "Rowing", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Bronze" - }, - { - "name": "Bronte Amelia Arnold Barratt", - "gender": "F", - "height": "171", - "weight": "59", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 27, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Jennifer Mae \"Jenny\" Barringer-Simpson", - "gender": "F", - "height": "166", - "weight": "53", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Athletics Women's 1,500 metres", - "medal": "Bronze" - }, - { - "name": "Mutaz Essa Barshim", - "gender": "M", - "height": "190", - "weight": "65", - "sport": "Athletics", - "team": "Qatar", - "noc": "QAT", - "age": 25, - "event": "Athletics Men's High Jump", - "medal": "Silver" - }, - { - "name": "Jacob Jepsen Barse", - "gender": "M", - "height": "188", - "weight": "73", - "sport": "Rowing", - "team": "Denmark", - "noc": "DEN", - "age": 27, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Silver" - }, - { - "name": "Saskia Bartusiak", - "gender": "F", - "height": "170", - "weight": "60", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 33, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Dimitri David Bascou", - "gender": "M", - "height": "181", - "weight": "80", - "sport": "Athletics", - "team": "France", - "noc": "FRA", - "age": 29, - "event": "Athletics Men's 110 metres Hurdles", - "medal": "Bronze" - }, - { - "name": "Fabio Basile", - "gender": "M", - "height": "160", - "weight": "66", - "sport": "Judo", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Judo Men's Half-Lightweight", - "medal": "Gold" - }, - { - "name": "Vitalina Igorevna Batsarashkina", - "gender": "F", - "height": "162", - "weight": "60", - "sport": "Shooting", - "team": "Russia", - "noc": "RUS", - "age": 19, - "event": "Shooting Women's Air Pistol, 10 metres", - "medal": "Silver" - }, - { - "name": "Mathieu Albert Daniel Bauderlique", - "gender": "M", - "height": "185", - "weight": "81", - "sport": "Boxing", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Boxing Men's Light-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Robert Bauer", - "gender": "M", - "height": "183", - "weight": "76", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Grgory Benot Baug", - "gender": "M", - "height": "181", - "weight": "100", - "sport": "Cycling", - "team": "France", - "noc": "FRA", - "age": 31, - "event": "Cycling Men's Team Sprint", - "medal": "Bronze" - }, - { - "name": "Maxime Eugne Ren Beaumont", - "gender": "M", - "height": "191", - "weight": "94", - "sport": "Canoeing", - "team": "France", - "noc": "FRA", - "age": 34, - "event": "Canoeing Men's Kayak Singles, 200 metres", - "medal": "Silver" - }, - { - "name": "Nicole Elise Beck", - "gender": "F", - "height": "168", - "weight": "66", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 28, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Janine Elizabeth Beckie", - "gender": "F", - "height": "173", - "weight": "63", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 21, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "gatha Bednarczuk Rippel", - "gender": "F", - "height": "182", - "weight": "70", - "sport": "Beach Volleyball", - "team": "Brazil-1", - "noc": "BRA", - "age": 33, - "event": "Beach Volleyball Women's Beach Volleyball", - "medal": "Silver" - }, - { - "name": "Ludger Beerbaum", - "gender": "M", - "height": "190", - "weight": "85", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 52, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Bronze" - }, - { - "name": "Genevieve \"Gen\" Behrent", - "gender": "F", - "height": "183", - "weight": "73", - "sport": "Rowing", - "team": "New Zealand", - "noc": "NZL", - "age": 25, - "event": "Rowing Women's Coxless Pairs", - "medal": "Silver" - }, - { - "name": "Melanie Behringer", - "gender": "F", - "height": "172", - "weight": "71", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 30, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Milad Beigi Hareqani", - "gender": "M", - "height": "197", - "weight": "80", - "sport": "Taekwondo", - "team": "Azerbaijan", - "noc": "AZE", - "age": 25, - "event": "Taekwondo Men's Welterweight", - "medal": "Bronze" - }, - { - "name": "Ruth Beita Vila", - "gender": "F", - "height": "191", - "weight": "72", - "sport": "Athletics", - "team": "Spain", - "noc": "ESP", - "age": 37, - "event": "Athletics Women's High Jump", - "medal": "Gold" - }, - { - "name": "Jose Blanger", - "gender": "F", - "height": "163", - "weight": "63", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 30, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Mathew Belcher", - "gender": "M", - "height": "173", - "weight": "62", - "sport": "Sailing", - "team": "Australia", - "noc": "AUS", - "age": 33, - "event": "Sailing Men's Two Person Dinghy", - "medal": "Silver" - }, - { - "name": "Zhan Vensanovych Beleniuk", - "gender": "M", - "height": "178", - "weight": "85", - "sport": "Wrestling", - "team": "Ukraine", - "noc": "UKR", - "age": 25, - "event": "Wrestling Men's Light-Heavyweight, Greco-Roman", - "medal": "Silver" - }, - { - "name": "Mireia Belmonte Garca", - "gender": "F", - "height": "170", - "weight": "59", - "sport": "Swimming", - "team": "Spain", - "noc": "ESP", - "age": 25, - "event": "Swimming Women's 200 metres Butterfly", - "medal": "Gold" - }, - { - "name": "Mireia Belmonte Garca", - "gender": "F", - "height": "170", - "weight": "59", - "sport": "Swimming", - "team": "Spain", - "noc": "ESP", - "age": 25, - "event": "Swimming Women's 400 metres Individual Medley", - "medal": "Bronze" - }, - { - "name": "Alexander Belonogoff", - "gender": "M", - "height": "187", - "weight": "90", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 26, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Silver" - }, - { - "name": "Olga Konstantinovna Belova-Gorbunova", - "gender": "F", - "height": "169", - "weight": "60", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Anastasiya Yevgenyevna Belyakova", - "gender": "F", - "height": "173", - "weight": "60", - "sport": "Boxing", - "team": "Russia", - "noc": "RUS", - "age": 23, - "event": "Boxing Women's Lightweight", - "medal": "Bronze" - }, - { - "name": "David Sagitovich Belyavsky", - "gender": "M", - "height": "165", - "weight": "55", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Gymnastics Men's Team All-Around", - "medal": "Silver" - }, - { - "name": "David Sagitovich Belyavsky", - "gender": "M", - "height": "165", - "weight": "55", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Gymnastics Men's Parallel Bars", - "medal": "Bronze" - }, - { - "name": "Lars Bender", - "gender": "M", - "height": "184", - "weight": "80", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Sven Bender", - "gender": "M", - "height": "185", - "weight": "80", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Meaghan Benfeito", - "gender": "F", - "height": "155", - "weight": "48", - "sport": "Diving", - "team": "Canada", - "noc": "CAN", - "age": 27, - "event": "Diving Women's Platform", - "medal": "Bronze" - }, - { - "name": "Meaghan Benfeito", - "gender": "F", - "height": "155", - "weight": "48", - "sport": "Diving", - "team": "Canada", - "noc": "CAN", - "age": 27, - "event": "Diving Women's Synchronized Platform", - "medal": "Bronze" - }, - { - "name": "Brittany \"Britt\" Benn", - "gender": "F", - "height": "165", - "weight": "68", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 27, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Karen Bennett", - "gender": "F", - "height": "179", - "weight": "75", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Mark Stewart Bennett", - "gender": "M", - "height": "183", - "weight": "89", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Paul Bennett", - "gender": "M", - "height": "207", - "weight": "100", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Joseph \"Gunnar\" Bentz", - "gender": "M", - "height": "196", - "weight": "84", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Matej Beu", - "gender": "M", - "height": "196", - "weight": "83", - "sport": "Canoeing", - "team": "Slovakia", - "noc": "SVK", - "age": 28, - "event": "Canoeing Men's Canadian Singles, Slalom", - "medal": "Silver" - }, - { - "name": "Mdlina Bere", - "gender": "F", - "height": "186", - "weight": "75", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 23, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Stig Andr Berge", - "gender": "M", - "height": "167", - "weight": "60", - "sport": "Wrestling", - "team": "Norway", - "noc": "NOR", - "age": 33, - "event": "Wrestling Men's Featherweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Emma Sofia Berglund", - "gender": "F", - "height": "171", - "weight": "64", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 27, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Nicole Beukers", - "gender": "F", - "height": "170", - "weight": "66", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 25, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Silver" - }, - { - "name": "Allison Beveridge", - "gender": "F", - "height": "169", - "weight": "62", - "sport": "Cycling", - "team": "Canada", - "noc": "CAN", - "age": 23, - "event": "Cycling Women's Team Pursuit", - "medal": "Bronze" - }, - { - "name": "Roberta Bianconi", - "gender": "F", - "height": "176", - "weight": "76", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 27, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Daniel \"Dan\" Bibby", - "gender": "M", - "height": "176", - "weight": "86", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Fiona Clare Bigwood", - "gender": "F", - "height": "173", - "weight": "75", - "sport": "Equestrianism", - "team": "Great Britain", - "noc": "GBR", - "age": 40, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Silver" - }, - { - "name": "Marko Bija", - "gender": "M", - "height": "201", - "weight": "85", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 25, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Simone Arianne Biles", - "gender": "F", - "height": "143", - "weight": "47", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Gymnastics Women's Individual All-Around", - "medal": "Gold" - }, - { - "name": "Simone Arianne Biles", - "gender": "F", - "height": "143", - "weight": "47", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Gymnastics Women's Team All-Around", - "medal": "Gold" - }, - { - "name": "Simone Arianne Biles", - "gender": "F", - "height": "143", - "weight": "47", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Gymnastics Women's Floor Exercise", - "medal": "Gold" - }, - { - "name": "Simone Arianne Biles", - "gender": "F", - "height": "143", - "weight": "47", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Gymnastics Women's Horse Vault", - "medal": "Gold" - }, - { - "name": "Simone Arianne Biles", - "gender": "F", - "height": "143", - "weight": "47", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Gymnastics Women's Balance Beam", - "medal": "Bronze" - }, - { - "name": "Emanuele Birarelli", - "gender": "M", - "height": "202", - "weight": "95", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 35, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Stefan Birevi", - "gender": "M", - "height": "210", - "weight": "104", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 26, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Suzanne Brigit \"Sue\" Bird", - "gender": "F", - "height": "175", - "weight": "66", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 35, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Dane Alex Bird-Smith", - "gender": "M", - "height": "187", - "weight": "72", - "sport": "Athletics", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Athletics Men's 20 kilometres Walk", - "medal": "Bronze" - }, - { - "name": "Vera Leonidovna Biryukova", - "gender": "F", - "height": "168", - "weight": "47", - "sport": "Rhythmic Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 18, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Gold" - }, - { - "name": "Emma Stina Blackstenius", - "gender": "F", - "height": "173", - "weight": "69", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 20, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Yohan Blake", - "gender": "M", - "height": "180", - "weight": "80", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 26, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Irina Valeryevna Bliznova", - "gender": "F", - "height": "182", - "weight": "68", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 29, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Anastasiya Ilyinichna Bliznyuk", - "gender": "F", - "height": "173", - "weight": "51", - "sport": "Rhythmic Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Gold" - }, - { - "name": "Pernille Blume", - "gender": "F", - "height": "170", - "weight": "58", - "sport": "Swimming", - "team": "Denmark", - "noc": "DEN", - "age": 22, - "event": "Swimming Women's 50 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Pernille Blume", - "gender": "F", - "height": "170", - "weight": "58", - "sport": "Swimming", - "team": "Denmark", - "noc": "DEN", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Jack Bobridge", - "gender": "M", - "height": "180", - "weight": "65", - "sport": "Cycling", - "team": "Australia", - "noc": "AUS", - "age": 27, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Silver" - }, - { - "name": "Vladlena Eduardovna Bobrovnikova", - "gender": "F", - "height": "180", - "weight": "72", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Gauthier Boccard", - "gender": "M", - "height": "186", - "weight": "79", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 24, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Gbor Gyula Boczk", - "gender": "M", - "height": "192", - "weight": "89", - "sport": "Fencing", - "team": "Hungary", - "noc": "HUN", - "age": 39, - "event": "Fencing Men's epee, Team", - "medal": "Bronze" - }, - { - "name": "Michal Alexandre Bodegas", - "gender": "M", - "height": "192", - "weight": "102", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 29, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Bogdan Bogdanovi", - "gender": "M", - "height": "197", - "weight": "99", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 23, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Tijana Bogdanovi", - "gender": "F", - "height": "172", - "weight": "52", - "sport": "Taekwondo", - "team": "Serbia", - "noc": "SRB", - "age": 18, - "event": "Taekwondo Women's Flyweight", - "medal": "Silver" - }, - { - "name": "Andreea Boghian", - "gender": "F", - "height": "186", - "weight": "78", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 24, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Shmagi Bolkvadze", - "gender": "M", - "height": "170", - "weight": "66", - "sport": "Wrestling", - "team": "Georgia", - "noc": "GEO", - "age": 22, - "event": "Wrestling Men's Welterweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Timo Boll", - "gender": "M", - "height": "181", - "weight": "74", - "sport": "Table Tennis", - "team": "Germany", - "noc": "GER", - "age": 35, - "event": "Table Tennis Men's Team", - "medal": "Bronze" - }, - { - "name": "Usain St. Leo Bolt", - "gender": "M", - "height": "196", - "weight": "95", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 29, - "event": "Athletics Men's 100 metres", - "medal": "Gold" - }, - { - "name": "Usain St. Leo Bolt", - "gender": "M", - "height": "196", - "weight": "95", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 29, - "event": "Athletics Men's 200 metres", - "medal": "Gold" - }, - { - "name": "Usain St. Leo Bolt", - "gender": "M", - "height": "196", - "weight": "95", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 29, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Hamish Byron Bond", - "gender": "M", - "height": "189", - "weight": "89", - "sport": "Rowing", - "team": "New Zealand", - "noc": "NZL", - "age": 30, - "event": "Rowing Men's Coxless Pairs", - "medal": "Gold" - }, - { - "name": "Bohdan Viktorovych Bondarenko", - "gender": "M", - "height": "198", - "weight": "77", - "sport": "Athletics", - "team": "Ukraine", - "noc": "UKR", - "age": 26, - "event": "Athletics Men's High Jump", - "medal": "Bronze" - }, - { - "name": "Tom Boon", - "gender": "M", - "height": "184", - "weight": "81", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 26, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Joshua \"Josh\" Booth", - "gender": "M", - "height": "190", - "weight": "93", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 25, - "event": "Rowing Men's Coxless Fours", - "medal": "Silver" - }, - { - "name": "Kjetil Borch", - "gender": "M", - "height": "193", - "weight": "84", - "sport": "Rowing", - "team": "Norway", - "noc": "NOR", - "age": 26, - "event": "Rowing Men's Double Sculls", - "medal": "Bronze" - }, - { - "name": "Yannick Philippe Andr Borel", - "gender": "M", - "height": "197", - "weight": "100", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Fencing Men's epee, Team", - "medal": "Gold" - }, - { - "name": "Maurcio Borges Almeida Silva", - "gender": "M", - "height": "199", - "weight": "99", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 27, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Mariya Olegovna Borisova", - "gender": "F", - "height": "184", - "weight": "95", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 19, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Ismael Borrero Molina", - "gender": "M", - "height": "160", - "weight": "59", - "sport": "Wrestling", - "team": "Cuba", - "noc": "CUB", - "age": 24, - "event": "Wrestling Men's Featherweight, Greco-Roman", - "medal": "Gold" - }, - { - "name": "Willemijn Bos", - "gender": "F", - "height": "181", - "weight": "69", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 28, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Tijana Bokovi", - "gender": "F", - "height": "193", - "weight": "82", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 19, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Roger-Yves Bost", - "gender": "M", - "height": "176", - "weight": "80", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 50, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Gold" - }, - { - "name": "Ins Boubakri", - "gender": "F", - "height": "167", - "weight": "56", - "sport": "Fencing", - "team": "Tunisia", - "noc": "TUN", - "age": 27, - "event": "Fencing Women's Foil, Individual", - "medal": "Bronze" - }, - { - "name": "David Alasdair Boudia", - "gender": "M", - "height": "175", - "weight": "73", - "sport": "Diving", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Diving Men's Platform", - "medal": "Bronze" - }, - { - "name": "David Alasdair Boudia", - "gender": "M", - "height": "175", - "weight": "73", - "sport": "Diving", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Diving Men's Synchronized Platform", - "medal": "Silver" - }, - { - "name": "Carline Bouw", - "gender": "F", - "height": "184", - "weight": "72", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 31, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Silver" - }, - { - "name": "Marit Bouwmeester", - "gender": "F", - "height": "177", - "weight": "68", - "sport": "Sailing", - "team": "Netherlands", - "noc": "NED", - "age": 28, - "event": "Sailing Women's One Person Dinghy", - "medal": "Gold" - }, - { - "name": "Frentorish \"Tori\" Bowie", - "gender": "F", - "height": "175", - "weight": "58", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Athletics Women's 100 metres", - "medal": "Silver" - }, - { - "name": "Frentorish \"Tori\" Bowie", - "gender": "F", - "height": "175", - "weight": "58", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Athletics Women's 200 metres", - "medal": "Bronze" - }, - { - "name": "Frentorish \"Tori\" Bowie", - "gender": "F", - "height": "175", - "weight": "58", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Jovana Brakoevi-Kancian", - "gender": "F", - "height": "196", - "weight": "82", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 28, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Julian Brandt", - "gender": "M", - "height": "183", - "weight": "83", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 20, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Ana Maria Florentina Brnz-Popescu", - "gender": "F", - "height": "175", - "weight": "64", - "sport": "Fencing", - "team": "Romania", - "noc": "ROU", - "age": 31, - "event": "Fencing Women's epee, Team", - "medal": "Gold" - }, - { - "name": "Sophie Charlotte Bray", - "gender": "F", - "height": "164", - "weight": "58", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 26, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Thiago Braz da Silva", - "gender": "M", - "height": "183", - "weight": "75", - "sport": "Athletics", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Athletics Men's Pole Vault", - "medal": "Gold" - }, - { - "name": "Kelly Brazier", - "gender": "F", - "height": "171", - "weight": "70", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 26, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Sebastian Brendel", - "gender": "M", - "height": "192", - "weight": "92", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Canoeing Men's Canadian Singles, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Sebastian Brendel", - "gender": "M", - "height": "192", - "weight": "92", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Canoeing Men's Canadian Doubles, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Thomas Briels", - "gender": "M", - "height": "172", - "weight": "71", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 28, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Lawrence Brittain", - "gender": "M", - "height": "187", - "weight": "94", - "sport": "Rowing", - "team": "South Africa", - "noc": "RSA", - "age": 25, - "event": "Rowing Men's Coxless Pairs", - "medal": "Silver" - }, - { - "name": "Allison M. Brock", - "gender": "F", - "height": "168", - "weight": "59", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 36, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Bronze" - }, - { - "name": "Kristina Brring-Sprehe", - "gender": "F", - "height": "168", - "weight": "54", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Equestrianism Mixed Dressage, Individual", - "medal": "Bronze" - }, - { - "name": "Kristina Brring-Sprehe", - "gender": "F", - "height": "168", - "weight": "54", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Gold" - }, - { - "name": "Gayle Broughton", - "gender": "F", - "height": "174", - "weight": "70", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 20, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Alexander Brouwer", - "gender": "M", - "height": "198", - "weight": "88", - "sport": "Beach Volleyball", - "team": "Netherlands-1", - "noc": "NED", - "age": 26, - "event": "Beach Volleyball Men's Beach Volleyball", - "medal": "Bronze" - }, - { - "name": "Aaron Brown", - "gender": "M", - "height": "198", - "weight": "79", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "Christopher Deon \"Chris\" Brown", - "gender": "M", - "height": "178", - "weight": "75", - "sport": "Athletics", - "team": "Bahamas", - "noc": "BAH", - "age": 37, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Kyle Gie Brown", - "gender": "M", - "height": "182", - "weight": "92", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 29, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Laura Brown", - "gender": "F", - "height": "167", - "weight": "61", - "sport": "Cycling", - "team": "Canada", - "noc": "CAN", - "age": 29, - "event": "Cycling Women's Team Pursuit", - "medal": "Bronze" - }, - { - "name": "Alistair Edward Brownlee", - "gender": "M", - "height": "184", - "weight": "70", - "sport": "Triathlon", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Triathlon Men's Olympic Distance", - "medal": "Gold" - }, - { - "name": "Jonathan Callum \"Jonny\" Brownlee", - "gender": "M", - "height": "181", - "weight": "70", - "sport": "Triathlon", - "team": "Great Britain", - "noc": "GBR", - "age": 26, - "event": "Triathlon Men's Olympic Distance", - "medal": "Silver" - }, - { - "name": "Kristoffer Brun", - "gender": "M", - "height": "175", - "weight": "70", - "sport": "Rowing", - "team": "Norway", - "noc": "NOR", - "age": 28, - "event": "Rowing Men's Lightweight Double Sculls", - "medal": "Bronze" - }, - { - "name": "Manuel Brunet", - "gender": "M", - "height": "179", - "weight": "79", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 30, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Rachele Bruni", - "gender": "F", - "height": "170", - "weight": "59", - "sport": "Swimming", - "team": "Italy", - "noc": "ITA", - "age": 25, - "event": "Swimming Women's 10 kilometres Open Water", - "medal": "Silver" - }, - { - "name": "Bruno \"Bruninho\" Mossa de Rezende", - "gender": "M", - "height": "190", - "weight": "76", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 30, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Joshua Buatsi", - "gender": "M", - "height": "185", - "weight": "81", - "sport": "Boxing", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Boxing Men's Light-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Kadeisha Buchanan", - "gender": "F", - "height": "170", - "weight": "65", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 20, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Matthijs Bchli", - "gender": "M", - "height": "188", - "weight": "90", - "sport": "Cycling", - "team": "Netherlands", - "noc": "NED", - "age": 23, - "event": "Cycling Men's Keirin", - "medal": "Silver" - }, - { - "name": "Luka Buki", - "gender": "M", - "height": "195", - "weight": "90", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 22, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Yekaterina Borisovna Bukina", - "gender": "F", - "height": "174", - "weight": "75", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 29, - "event": "Wrestling Women's Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Chlo Bulleux", - "gender": "F", - "height": "172", - "weight": "65", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Phil Burgess", - "gender": "M", - "height": "180", - "weight": "92", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Damir Buri", - "gender": "M", - "height": "205", - "weight": "115", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 35, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Steven James Burke", - "gender": "M", - "height": "183", - "weight": "78", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Gold" - }, - { - "name": "Peter Burling", - "gender": "M", - "height": "186", - "weight": "82", - "sport": "Sailing", - "team": "New Zealand", - "noc": "NZL", - "age": 25, - "event": "Sailing Men's Skiff", - "medal": "Gold" - }, - { - "name": "Christopher Burton", - "gender": "M", - "height": "180", - "weight": "70", - "sport": "Equestrianism", - "team": "Australia", - "noc": "AUS", - "age": 34, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Bronze" - }, - { - "name": "Tom Burton", - "gender": "M", - "height": "180", - "weight": "81", - "sport": "Sailing", - "team": "Australia", - "noc": "AUS", - "age": 26, - "event": "Sailing Men's One Person Dinghy", - "medal": "Gold" - }, - { - "name": "Bianka Bua", - "gender": "F", - "height": "187", - "weight": "74", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 22, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Andro Bulje", - "gender": "M", - "height": "200", - "weight": "115", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 30, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Simone Buti", - "gender": "M", - "height": "206", - "weight": "100", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 32, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Jimmy Butler III", - "gender": "M", - "height": "201", - "weight": "99", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Linus Butt", - "gender": "M", - "height": "186", - "weight": "83", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Dajana Butulija", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 30, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Denia Caballero Ponce", - "gender": "F", - "height": "175", - "weight": "70", - "sport": "Athletics", - "team": "Cuba", - "noc": "CUB", - "age": 26, - "event": "Athletics Women's Discus Throw", - "medal": "Bronze" - }, - { - "name": "Jrmy Cadot", - "gender": "M", - "height": "185", - "weight": "78", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 29, - "event": "Fencing Men's Foil, Team", - "medal": "Silver" - }, - { - "name": "Tania Cagnotto (-Parolin)", - "gender": "F", - "height": "160", - "weight": "54", - "sport": "Diving", - "team": "Italy", - "noc": "ITA", - "age": 31, - "event": "Diving Women's Springboard", - "medal": "Bronze" - }, - { - "name": "Tania Cagnotto (-Parolin)", - "gender": "F", - "height": "160", - "weight": "54", - "sport": "Diving", - "team": "Italy", - "noc": "ITA", - "age": 31, - "event": "Diving Women's Synchronized Springboard", - "medal": "Silver" - }, - { - "name": "Cai Zelin", - "gender": "M", - "height": "175", - "weight": "55", - "sport": "Athletics", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Athletics Men's 20 kilometres Walk", - "medal": "Silver" - }, - { - "name": "Chiara Cainero", - "gender": "F", - "height": "171", - "weight": "81", - "sport": "Shooting", - "team": "Italy", - "noc": "ITA", - "age": 38, - "event": "Shooting Women's Skeet", - "medal": "Silver" - }, - { - "name": "Jos Manuel Caldern Borrallo", - "gender": "M", - "height": "191", - "weight": "90", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 34, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Hilary Caldwell", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 25, - "event": "Swimming Women's 200 metres Backstroke", - "medal": "Bronze" - }, - { - "name": "Facundo Callioni", - "gender": "M", - "height": "183", - "weight": "77", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 30, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Eva Calvo Gmez", - "gender": "F", - "height": "176", - "weight": "57", - "sport": "Taekwondo", - "team": "Spain", - "noc": "ESP", - "age": 25, - "event": "Taekwondo Women's Featherweight", - "medal": "Silver" - }, - { - "name": "Asuka Antonio \"Aska\" Cambridge", - "gender": "M", - "height": "179", - "weight": "74", - "sport": "Athletics", - "team": "Japan", - "noc": "JPN", - "age": 23, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Bronte Campbell", - "gender": "F", - "height": "179", - "weight": "58", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Cate Natalie Campbell", - "gender": "F", - "height": "186", - "weight": "67", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Cate Natalie Campbell", - "gender": "F", - "height": "186", - "weight": "67", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Veronica Angella Campbell-Brown", - "gender": "F", - "height": "168", - "weight": "58", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 34, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Niccol Campriani", - "gender": "M", - "height": "177", - "weight": "80", - "sport": "Shooting", - "team": "Italy", - "noc": "ITA", - "age": 28, - "event": "Shooting Men's Air Rifle, 10 metres", - "medal": "Gold" - }, - { - "name": "Niccol Campriani", - "gender": "M", - "height": "177", - "weight": "80", - "sport": "Shooting", - "team": "Italy", - "noc": "ITA", - "age": 28, - "event": "Shooting Men's Small-Bore Rifle, Three Positions, 50 metres", - "medal": "Gold" - }, - { - "name": "Fabian Cancellara", - "gender": "M", - "height": "186", - "weight": "81", - "sport": "Cycling", - "team": "Switzerland", - "noc": "SUI", - "age": 35, - "event": "Cycling Men's Individual Time Trial", - "medal": "Gold" - }, - { - "name": "Cao Yuan", - "gender": "M", - "height": "160", - "weight": "42", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 21, - "event": "Diving Men's Springboard", - "medal": "Gold" - }, - { - "name": "Cao Yuan", - "gender": "M", - "height": "160", - "weight": "42", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 21, - "event": "Diving Men's Synchronized Springboard", - "medal": "Bronze" - }, - { - "name": "Jazmin Roxy \"Jazz\" Carlin", - "gender": "F", - "height": "175", - "weight": "57", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Swimming Women's 400 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Jazmin Roxy \"Jazz\" Carlin", - "gender": "F", - "height": "175", - "weight": "57", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Swimming Women's 800 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Olivia Frances Carnegie-Brown", - "gender": "F", - "height": "181", - "weight": "73", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Cecilia Carranza Saroli", - "gender": "F", - "height": "164", - "weight": "63", - "sport": "Sailing", - "team": "Argentina", - "noc": "ARG", - "age": 29, - "event": "Sailing Mixed Multihull", - "medal": "Gold" - }, - { - "name": "Lisa Carrington", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Canoeing", - "team": "New Zealand", - "noc": "NZL", - "age": 27, - "event": "Canoeing Women's Kayak Singles, 200 metres", - "medal": "Gold" - }, - { - "name": "Lisa Carrington", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Canoeing", - "team": "New Zealand", - "noc": "NZL", - "age": 27, - "event": "Canoeing Women's Kayak Singles, 500 metres", - "medal": "Bronze" - }, - { - "name": "Michelle Denee Carter", - "gender": "F", - "height": "176", - "weight": "136", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Women's Shot Put", - "medal": "Gold" - }, - { - "name": "Charlotte Caslick", - "gender": "F", - "height": "172", - "weight": "65", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 21, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Matteo Castaldo", - "gender": "M", - "height": "188", - "weight": "86", - "sport": "Rowing", - "team": "Italy", - "noc": "ITA", - "age": 30, - "event": "Rowing Men's Coxless Fours", - "medal": "Bronze" - }, - { - "name": "Kristi Castlin", - "gender": "F", - "height": "170", - "weight": "60", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Athletics Women's 100 metres Hurdles", - "medal": "Bronze" - }, - { - "name": "Tamika Devonne Catchings", - "gender": "F", - "height": "185", - "weight": "77", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 37, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Kelly Catlin", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Cycling", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Cycling Women's Team Pursuit", - "medal": "Silver" - }, - { - "name": "Mark Simon Cavendish", - "gender": "M", - "height": "175", - "weight": "70", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Cycling Men's Omnium", - "medal": "Silver" - }, - { - "name": "Saa ao", - "gender": "F", - "height": "178", - "weight": "72", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 27, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Matthew Gerald \"Matt\" Centrowitz, Jr.", - "gender": "M", - "height": "176", - "weight": "65", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Athletics Men's 1,500 metres", - "medal": "Gold" - }, - { - "name": "Davit Gochayevich Chakvetadze", - "gender": "M", - "height": "174", - "weight": "85", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 23, - "event": "Wrestling Men's Light-Heavyweight, Greco-Roman", - "medal": "Gold" - }, - { - "name": "Kyle Chalmers", - "gender": "M", - "height": "193", - "weight": "90", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 18, - "event": "Swimming Men's 100 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Kyle Chalmers", - "gender": "M", - "height": "193", - "weight": "90", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 18, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Kyle Chalmers", - "gender": "M", - "height": "193", - "weight": "90", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 18, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Frank Chamizo Marquez", - "gender": "M", - "height": "172", - "weight": "65", - "sport": "Wrestling", - "team": "Italy", - "noc": "ITA", - "age": 24, - "event": "Wrestling Men's Welterweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Miles Cleveland Chamley-Watson", - "gender": "M", - "height": "193", - "weight": "80", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Fencing Men's Foil, Team", - "medal": "Bronze" - }, - { - "name": "Chan Peng Soon", - "gender": "M", - "height": "175", - "weight": "68", - "sport": "Badminton", - "team": "Malaysia", - "noc": "MAS", - "age": 28, - "event": "Badminton Mixed Doubles", - "medal": "Silver" - }, - { - "name": "Chang Hye-Jin", - "gender": "F", - "height": "158", - "weight": "50", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 29, - "event": "Archery Women's Individual", - "medal": "Gold" - }, - { - "name": "Chang Hye-Jin", - "gender": "F", - "height": "158", - "weight": "50", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 29, - "event": "Archery Women's Team", - "medal": "Gold" - }, - { - "name": "Allysha Chapman", - "gender": "F", - "height": "160", - "weight": "56", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 27, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Tina Alexandria Charles", - "gender": "F", - "height": "193", - "weight": "88", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Cdric Charlier", - "gender": "M", - "height": "181", - "weight": "81", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 28, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Yuriy Volodymyrovych Cheban", - "gender": "M", - "height": "185", - "weight": "93", - "sport": "Canoeing", - "team": "Ukraine", - "noc": "UKR", - "age": 30, - "event": "Canoeing Men's Canadian Singles, 200 metres", - "medal": "Gold" - }, - { - "name": "Paul Kipkemboi Chelimo", - "gender": "M", - "height": "175", - "weight": "57", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Athletics Men's 5,000 metres", - "medal": "Silver" - }, - { - "name": "Chen Aisen", - "gender": "M", - "height": "168", - "weight": "60", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 20, - "event": "Diving Men's Platform", - "medal": "Gold" - }, - { - "name": "Chen Aisen", - "gender": "M", - "height": "168", - "weight": "60", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 20, - "event": "Diving Men's Synchronized Platform", - "medal": "Gold" - }, - { - "name": "Chen Long", - "gender": "M", - "height": "188", - "weight": "81", - "sport": "Badminton", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Badminton Men's Singles", - "medal": "Gold" - }, - { - "name": "Chen Peina", - "gender": "F", - "height": "172", - "weight": "63", - "sport": "Sailing", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Sailing Women's Windsurfer", - "medal": "Silver" - }, - { - "name": "Chen Ruolin", - "gender": "F", - "height": "160", - "weight": "47", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Diving Women's Synchronized Platform", - "medal": "Gold" - }, - { - "name": "Cheng Xunzhao", - "gender": "M", - "height": "185", - "weight": "90", - "sport": "Judo", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Judo Men's Middleweight", - "medal": "Bronze" - }, - { - "name": "Cheong Jun Hoong", - "gender": "F", - "height": "150", - "weight": "48", - "sport": "Diving", - "team": "Malaysia", - "noc": "MAS", - "age": 26, - "event": "Diving Women's Synchronized Platform", - "medal": "Silver" - }, - { - "name": "Aleksey Borisovich Cheremisinov", - "gender": "M", - "height": "183", - "weight": "75", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 31, - "event": "Fencing Men's Foil, Team", - "medal": "Gold" - }, - { - "name": "Emilee Cherry", - "gender": "F", - "height": "168", - "weight": "70", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 23, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Vivian Jepkemoi Cheruiyot", - "gender": "F", - "height": "153", - "weight": "40", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 32, - "event": "Athletics Women's 5,000 metres", - "medal": "Gold" - }, - { - "name": "Vivian Jepkemoi Cheruiyot", - "gender": "F", - "height": "153", - "weight": "40", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 32, - "event": "Athletics Women's 10,000 metres", - "medal": "Silver" - }, - { - "name": "Vlada Aleksandrovna Chigiryova", - "gender": "F", - "height": "162", - "weight": "46", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Eilidh Child-Doyle", - "gender": "F", - "height": "170", - "weight": "60", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 29, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Choe Hyo-Sim", - "gender": "F", - "height": "159", - "weight": "63", - "sport": "Weightlifting", - "team": "North Korea", - "noc": "PRK", - "age": 22, - "event": "Weightlifting Women's Middleweight", - "medal": "Silver" - }, - { - "name": "Choi Mi-Sun", - "gender": "F", - "height": "168", - "weight": "53", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 20, - "event": "Archery Women's Team", - "medal": "Gold" - }, - { - "name": "Maialen Chourraut Yurramendi", - "gender": "F", - "height": "161", - "weight": "55", - "sport": "Canoeing", - "team": "Spain", - "noc": "ESP", - "age": 33, - "event": "Canoeing Women's Kayak Singles, Slalom", - "medal": "Gold" - }, - { - "name": "Micah Makanamaikalani Christenson", - "gender": "M", - "height": "198", - "weight": "86", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Mads Christiansen", - "gender": "M", - "height": "197", - "weight": "93", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 30, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Max Christiansen", - "gender": "M", - "height": "187", - "weight": "84", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 19, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Anton Mikhaylovich Chupkov", - "gender": "M", - "height": "188", - "weight": "71", - "sport": "Swimming", - "team": "Russia", - "noc": "RUS", - "age": 19, - "event": "Swimming Men's 200 metres Breaststroke", - "medal": "Bronze" - }, - { - "name": "Monika Ciaciuch", - "gender": "F", - "height": "182", - "weight": "74", - "sport": "Rowing", - "team": "Poland", - "noc": "POL", - "age": 24, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Bronze" - }, - { - "name": "Cheick Sallah Ciss Junior", - "gender": "M", - "height": "186", - "weight": "80", - "sport": "Taekwondo", - "team": "Cote d'Ivoire", - "noc": "CIV", - "age": 22, - "event": "Taekwondo Men's Welterweight", - "medal": "Gold" - }, - { - "name": "Souleymane Diop Cissokho", - "gender": "M", - "height": "179", - "weight": "69", - "sport": "Boxing", - "team": "France", - "noc": "FRA", - "age": 25, - "event": "Boxing Men's Welterweight", - "medal": "Bronze" - }, - { - "name": "Edward \"Ed\" Clancy", - "gender": "M", - "height": "185", - "weight": "79", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Gold" - }, - { - "name": "Caroline Archer \"KK\" Clark", - "gender": "F", - "height": "188", - "weight": "72", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Saskia Clark", - "gender": "F", - "height": "176", - "weight": "68", - "sport": "Sailing", - "team": "Great Britain", - "noc": "GBR", - "age": 36, - "event": "Sailing Women's Two Person Dinghy", - "medal": "Gold" - }, - { - "name": "Joseph \"Joe\" Clarke", - "gender": "M", - "height": "182", - "weight": "76", - "sport": "Canoeing", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Canoeing Men's Kayak Singles, Slalom", - "medal": "Gold" - }, - { - "name": "Vctor Claver Arocas", - "gender": "M", - "height": "206", - "weight": "107", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 27, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "William Bundu \"Will\" Claye", - "gender": "M", - "height": "181", - "weight": "72", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Athletics Men's Triple Jump", - "medal": "Silver" - }, - { - "name": "Kerron Stephon Clement", - "gender": "M", - "height": "188", - "weight": "86", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Men's 400 metres Hurdles", - "medal": "Gold" - }, - { - "name": "Kyle Clemons", - "gender": "M", - "height": "180", - "weight": "74", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "lodie Pascaline Clouvel", - "gender": "F", - "height": "182", - "weight": "69", - "sport": "Modern Pentathlon", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Modern Pentathlon Women's Individual", - "medal": "Silver" - }, - { - "name": "Emma Jane Coburn", - "gender": "F", - "height": "173", - "weight": "54", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Athletics Women's 3,000 metres Steeplechase", - "medal": "Bronze" - }, - { - "name": "Corey Cogdell-Unrein", - "gender": "F", - "height": "173", - "weight": "70", - "sport": "Shooting", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Shooting Women's Trap", - "medal": "Bronze" - }, - { - "name": "Roxana Gabriela Cogianu", - "gender": "F", - "height": "180", - "weight": "72", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 29, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Adelina Maria Cojocariu-Bogus", - "gender": "F", - "height": "186", - "weight": "75", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 27, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Massimo Colaci", - "gender": "M", - "height": "180", - "weight": "75", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 31, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Thibault Colard", - "gender": "M", - "height": "187", - "weight": "70", - "sport": "Rowing", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Bronze" - }, - { - "name": "Carlos Coloma Nicols", - "gender": "M", - "height": "171", - "weight": "65", - "sport": "Cycling", - "team": "Spain", - "noc": "ESP", - "age": 34, - "event": "Cycling Men's Mountainbike, Cross-team", - "medal": "Bronze" - }, - { - "name": "Robson Donato Conceio", - "gender": "M", - "height": "171", - "weight": "57", - "sport": "Boxing", - "team": "Brazil", - "noc": "BRA", - "age": 27, - "event": "Boxing Men's Lightweight", - "medal": "Gold" - }, - { - "name": "John \"Jack\" Conger", - "gender": "M", - "height": "193", - "weight": "80", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Sally Conway", - "gender": "F", - "height": "167", - "weight": "70", - "sport": "Judo", - "team": "Great Britain", - "noc": "GBR", - "age": 29, - "event": "Judo Women's Middleweight", - "medal": "Bronze" - }, - { - "name": "Tamsin Cook", - "gender": "F", - "height": "170", - "weight": "61", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 17, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Yasmani Copello Escobar", - "gender": "M", - "height": "191", - "weight": "85", - "sport": "Athletics", - "team": "Turkey", - "noc": "TUR", - "age": 29, - "event": "Athletics Men's 400 metres Hurdles", - "medal": "Bronze" - }, - { - "name": "Kevin Cordes", - "gender": "M", - "height": "196", - "weight": "88", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Tanguy Cosyns", - "gender": "M", - "height": "174", - "weight": "70", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 25, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Aleksandra Cotti", - "gender": "F", - "height": "167", - "weight": "65", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 27, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "DeMarcus Amir Cousins", - "gender": "M", - "height": "210", - "weight": "122", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "J'den Michael Tbory Cox", - "gender": "M", - "height": "180", - "weight": "86", - "sport": "Wrestling", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Wrestling Men's Light-Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Kameryn Louise \"Kami\" Craig", - "gender": "F", - "height": "181", - "weight": "88", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Sal Craviotto Rivero", - "gender": "M", - "height": "192", - "weight": "98", - "sport": "Canoeing", - "team": "Spain", - "noc": "ESP", - "age": 31, - "event": "Canoeing Men's Kayak Singles, 200 metres", - "medal": "Bronze" - }, - { - "name": "Sal Craviotto Rivero", - "gender": "M", - "height": "192", - "weight": "98", - "sport": "Canoeing", - "team": "Spain", - "noc": "ESP", - "age": 31, - "event": "Canoeing Men's Kayak Doubles, 200 metres", - "medal": "Gold" - }, - { - "name": "Samuel Thomas \"Sam\" Cross", - "gender": "M", - "height": "191", - "weight": "103", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Ryan Crouser", - "gender": "M", - "height": "201", - "weight": "125", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Athletics Men's Shot Put", - "medal": "Gold" - }, - { - "name": "Kimberley \"Kim\" Crow-Brennan", - "gender": "F", - "height": "188", - "weight": "74", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 30, - "event": "Rowing Women's Single Sculls", - "medal": "Gold" - }, - { - "name": "Anna Cruz Lebrato", - "gender": "F", - "height": "176", - "weight": "60", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 29, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Aleksandra Crvendaki", - "gender": "F", - "height": "187", - "weight": "76", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 20, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Lszl Cseh, Jr.", - "gender": "M", - "height": "188", - "weight": "83", - "sport": "Swimming", - "team": "Hungary", - "noc": "HUN", - "age": 30, - "event": "Swimming Men's 100 metres Butterfly", - "medal": "Silver" - }, - { - "name": "Tamara Csipes", - "gender": "F", - "height": "176", - "weight": "78", - "sport": "Canoeing", - "team": "Hungary", - "noc": "HUN", - "age": 26, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Gold" - }, - { - "name": "Milo uk", - "gender": "M", - "height": "191", - "weight": "91", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 25, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Chay Crista Kerio Cullen", - "gender": "F", - "height": "182", - "weight": "74", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 30, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Rsul unayev", - "gender": "M", - "height": "171", - "weight": "66", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 25, - "event": "Wrestling Men's Welterweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Michal D'Almeida", - "gender": "M", - "height": "176", - "weight": "80", - "sport": "Cycling", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Cycling Men's Team Sprint", - "medal": "Bronze" - }, - { - "name": "Sabrina D'Angelo", - "gender": "F", - "height": "173", - "weight": "71", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 23, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Mayra Aguiar da Silva", - "gender": "F", - "height": "177", - "weight": "78", - "sport": "Judo", - "team": "Brazil", - "noc": "BRA", - "age": 25, - "event": "Judo Women's Half-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Rafael Carlos da Silva", - "gender": "M", - "height": "203", - "weight": "160", - "sport": "Judo", - "team": "Brazil", - "noc": "BRA", - "age": 29, - "event": "Judo Men's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Ana Dabovi", - "gender": "F", - "height": "183", - "weight": "70", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 26, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Milica Dabovi", - "gender": "F", - "height": "173", - "weight": "63", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 34, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Sara Ilonka Dbritz", - "gender": "F", - "height": "171", - "weight": "59", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Lisa Karolina Viktoria Dahlkvist", - "gender": "F", - "height": "173", - "weight": "66", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 29, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Ro Masivesi Dakuwaqa", - "gender": "M", - "height": "190", - "weight": "105", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 22, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Thomas Robert \"Tom\" Daley", - "gender": "M", - "height": "177", - "weight": "74", - "sport": "Diving", - "team": "Great Britain", - "noc": "GBR", - "age": 22, - "event": "Diving Men's Synchronized Platform", - "medal": "Bronze" - }, - { - "name": "Francesca Dallap", - "gender": "F", - "height": "163", - "weight": "57", - "sport": "Diving", - "team": "Italy", - "noc": "ITA", - "age": 30, - "event": "Diving Women's Synchronized Springboard", - "medal": "Silver" - }, - { - "name": "Chloe Elysha Dalton", - "gender": "F", - "height": "180", - "weight": "72", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 23, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Blandine Dancette", - "gender": "F", - "height": "169", - "weight": "60", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Emmanuel Shinkut Daniel", - "gender": "M", - "height": "174", - "weight": "88", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 22, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Alexandra Mary L. \"Alex\" Danson", - "gender": "F", - "height": "167", - "weight": "56", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Hannah Darling", - "gender": "F", - "height": "174", - "weight": "72", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 20, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Lisa Darmanin", - "gender": "F", - "height": "168", - "weight": "65", - "sport": "Sailing", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Sailing Mixed Multihull", - "medal": "Silver" - }, - { - "name": "Tuyana Norpolovna Dashidorzhiyeva", - "gender": "F", - "height": "169", - "weight": "57", - "sport": "Archery", - "team": "Russia", - "noc": "RUS", - "age": 20, - "event": "Archery Women's Team", - "medal": "Silver" - }, - { - "name": "James Davies", - "gender": "M", - "height": "181", - "weight": "98", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Lucy Davis", - "gender": "F", - "height": "165", - "weight": "55", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Silver" - }, - { - "name": "Edward James Eddie Dawkins", - "gender": "M", - "height": "185", - "weight": "93", - "sport": "Cycling", - "team": "New Zealand", - "noc": "NZL", - "age": 27, - "event": "Cycling Men's Team Sprint", - "medal": "Silver" - }, - { - "name": "Christine Day", - "gender": "F", - "height": "168", - "weight": "51", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 29, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Eva Roma Maria de Goede", - "gender": "F", - "height": "170", - "weight": "61", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 27, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Andre De Grasse", - "gender": "M", - "height": "176", - "weight": "70", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 21, - "event": "Athletics Men's 100 metres", - "medal": "Bronze" - }, - { - "name": "Andre De Grasse", - "gender": "M", - "height": "176", - "weight": "70", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 21, - "event": "Athletics Men's 200 metres", - "medal": "Silver" - }, - { - "name": "Andre De Grasse", - "gender": "M", - "height": "176", - "weight": "70", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 21, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "Juan Leon de Jongh", - "gender": "M", - "height": "175", - "weight": "87", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 28, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Zoe Michaela de Toledo", - "gender": "F", - "height": "172", - "weight": "58", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 29, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Xan de Waard", - "gender": "F", - "height": "163", - "weight": "55", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 20, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Hlne Defrance", - "gender": "F", - "height": "179", - "weight": "66", - "sport": "Sailing", - "team": "France", - "noc": "FRA", - "age": 29, - "event": "Sailing Women's Two Person Dinghy", - "medal": "Bronze" - }, - { - "name": "Marco Del Lungo", - "gender": "M", - "height": "190", - "weight": "97", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 26, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Juan Martn del Potro", - "gender": "M", - "height": "198", - "weight": "97", - "sport": "Tennis", - "team": "Argentina", - "noc": "ARG", - "age": 27, - "event": "Tennis Men's Singles", - "medal": "Silver" - }, - { - "name": "Elena Delle Donne", - "gender": "F", - "height": "195", - "weight": "86", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Siraba Dembl", - "gender": "F", - "height": "172", - "weight": "64", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 30, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Mirela Krasimirova Demireva", - "gender": "F", - "height": "180", - "weight": "58", - "sport": "Athletics", - "team": "Bulgaria", - "noc": "BUL", - "age": 26, - "event": "Athletics Women's High Jump", - "medal": "Silver" - }, - { - "name": "Soner Demirta", - "gender": "M", - "height": "170", - "weight": "74", - "sport": "Wrestling", - "team": "Turkey", - "noc": "TUR", - "age": 25, - "event": "Wrestling Men's Middleweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Nicholas Charles \"Nick\" Dempsey", - "gender": "M", - "height": "180", - "weight": "71", - "sport": "Sailing", - "team": "Great Britain", - "noc": "GBR", - "age": 35, - "event": "Sailing Men's Windsurfer", - "medal": "Silver" - }, - { - "name": "Valentin Demyanenko", - "gender": "M", - "height": "193", - "weight": "93", - "sport": "Canoeing", - "team": "Azerbaijan", - "noc": "AZE", - "age": 32, - "event": "Canoeing Men's Canadian Singles, 200 metres", - "medal": "Silver" - }, - { - "name": "Felix Denayer", - "gender": "M", - "height": "190", - "weight": "85", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 26, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Deng Shudi", - "gender": "M", - "height": "163", - "weight": "58", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Gymnastics Men's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Deng Wei", - "gender": "F", - "height": "159", - "weight": "63", - "sport": "Weightlifting", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Weightlifting Women's Middleweight", - "medal": "Gold" - }, - { - "name": "Aleksey Alekseyevich Denisenko", - "gender": "M", - "height": "185", - "weight": "68", - "sport": "Taekwondo", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Taekwondo Men's Featherweight", - "medal": "Silver" - }, - { - "name": "Inna Vasilyevna Deriglazova", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 26, - "event": "Fencing Women's Foil, Individual", - "medal": "Gold" - }, - { - "name": "DeMar Darnell DeRozan", - "gender": "M", - "height": "201", - "weight": "99", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Gabriele Detti", - "gender": "M", - "height": "184", - "weight": "79", - "sport": "Swimming", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Swimming Men's 400 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Gabriele Detti", - "gender": "M", - "height": "184", - "weight": "79", - "sport": "Swimming", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Swimming Men's 1,500 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Daniel Deuer", - "gender": "M", - "height": "190", - "weight": "76", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 34, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Bronze" - }, - { - "name": "Jolien D'hoore", - "gender": "F", - "height": "176", - "weight": "64", - "sport": "Cycling", - "team": "Belgium", - "noc": "BEL", - "age": 26, - "event": "Cycling Women's Omnium", - "medal": "Bronze" - }, - { - "name": "Marco Di Costanzo", - "gender": "M", - "height": "184", - "weight": "87", - "sport": "Rowing", - "team": "Italy", - "noc": "ITA", - "age": 24, - "event": "Rowing Men's Coxless Pairs", - "medal": "Bronze" - }, - { - "name": "Elisa Di Francisca", - "gender": "F", - "height": "177", - "weight": "65", - "sport": "Fencing", - "team": "Italy", - "noc": "ITA", - "age": 33, - "event": "Fencing Women's Foil, Individual", - "medal": "Silver" - }, - { - "name": "Francesco Di Fulvio", - "gender": "M", - "height": "190", - "weight": "88", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 22, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Tania Di Mario", - "gender": "F", - "height": "168", - "weight": "62", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 37, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Emily Jane Diamond", - "gender": "F", - "height": "173", - "weight": "58", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Hidilyn Diaz", - "gender": "F", - "height": "149", - "weight": "53", - "sport": "Weightlifting", - "team": "Philippines", - "noc": "PHI", - "age": 25, - "event": "Weightlifting Women's Featherweight", - "medal": "Silver" - }, - { - "name": "Genzebe Dibaba Keneni", - "gender": "F", - "height": "168", - "weight": "52", - "sport": "Athletics", - "team": "Ethiopia", - "noc": "ETH", - "age": 25, - "event": "Athletics Women's 1,500 metres", - "medal": "Silver" - }, - { - "name": "Mare Dibaba Hurssa (-Ibrahimova-)", - "gender": "F", - "height": "156", - "weight": "45", - "sport": "Athletics", - "team": "Ethiopia", - "noc": "ETH", - "age": 26, - "event": "Athletics Women's Marathon", - "medal": "Bronze" - }, - { - "name": "Tirunesh Dibaba Keneni", - "gender": "F", - "height": "166", - "weight": "50", - "sport": "Athletics", - "team": "Ethiopia", - "noc": "ETH", - "age": 31, - "event": "Athletics Women's 10,000 metres", - "medal": "Bronze" - }, - { - "name": "Aurimas Didbalis", - "gender": "M", - "height": "172", - "weight": "94", - "sport": "Weightlifting", - "team": "Lithuania", - "noc": "LTU", - "age": 25, - "event": "Weightlifting Men's Middle-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Heidi Diethelm Gerber", - "gender": "F", - "height": "168", - "weight": "93", - "sport": "Shooting", - "team": "Switzerland", - "noc": "SUI", - "age": 47, - "event": "Shooting Women's Sporting Pistol, 25 metres", - "medal": "Bronze" - }, - { - "name": "Tina Dietze", - "gender": "F", - "height": "172", - "weight": "68", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Canoeing Women's Kayak Doubles, 500 metres", - "medal": "Silver" - }, - { - "name": "Tina Dietze", - "gender": "F", - "height": "172", - "weight": "68", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Silver" - }, - { - "name": "Ding Ning", - "gender": "F", - "height": "171", - "weight": "63", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Table Tennis Women's Singles", - "medal": "Gold" - }, - { - "name": "Ding Ning", - "gender": "F", - "height": "171", - "weight": "63", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Table Tennis Women's Team", - "medal": "Gold" - }, - { - "name": "Ding Xia", - "gender": "F", - "height": "180", - "weight": "67", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Loredana Dinu (Iordchioiu-)", - "gender": "F", - "height": "168", - "weight": "60", - "sport": "Fencing", - "team": "Romania", - "noc": "ROU", - "age": 32, - "event": "Fencing Women's epee, Team", - "medal": "Gold" - }, - { - "name": "Adrien Dipanda", - "gender": "M", - "height": "202", - "weight": "105", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Madeline Jane \"Maya\" DiRado", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Madeline Jane \"Maya\" DiRado", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Swimming Women's 200 metres Backstroke", - "medal": "Gold" - }, - { - "name": "Madeline Jane \"Maya\" DiRado", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Swimming Women's 200 metres Individual Medley", - "medal": "Bronze" - }, - { - "name": "Madeline Jane \"Maya\" DiRado", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Swimming Women's 400 metres Individual Medley", - "medal": "Silver" - }, - { - "name": "Carlien Clemens Dirkse van den Heuvel", - "gender": "F", - "height": "170", - "weight": "56", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 29, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Christian Dissinger", - "gender": "M", - "height": "203", - "weight": "105", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Denis Sergeyevich Dmitriyev", - "gender": "M", - "height": "177", - "weight": "90", - "sport": "Cycling", - "team": "Russia", - "noc": "RUS", - "age": 30, - "event": "Cycling Men's Sprint", - "medal": "Bronze" - }, - { - "name": "Darya Yevgenyevna Dmitriyeva", - "gender": "F", - "height": "178", - "weight": "74", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 20, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Sbastien Dockier", - "gender": "M", - "height": "175", - "weight": "74", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 26, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "John-John Dohmen", - "gender": "M", - "height": "174", - "weight": "69", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 28, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Slvia Domnguez Fernndez", - "gender": "F", - "height": "167", - "weight": "64", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 29, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Apisai Raviyawa Domolailai", - "gender": "M", - "height": "192", - "weight": "98", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 27, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Dong Bin", - "gender": "M", - "height": "180", - "weight": "74", - "sport": "Athletics", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Athletics Men's Triple Jump", - "medal": "Bronze" - }, - { - "name": "Dong Dong", - "gender": "M", - "height": "168", - "weight": "57", - "sport": "Trampolining", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Trampolining Men's Individual", - "medal": "Silver" - }, - { - "name": "Dorjnyambuugiin Otgondalai", - "gender": "M", - "height": "170", - "weight": "60", - "sport": "Boxing", - "team": "Mongolia", - "noc": "MGL", - "age": 28, - "event": "Boxing Men's Lightweight", - "medal": "Bronze" - }, - { - "name": "Dorjsurengiin Sumiya", - "gender": "F", - "height": "160", - "weight": "59", - "sport": "Judo", - "team": "Mongolia", - "noc": "MGL", - "age": 25, - "event": "Judo Women's Lightweight", - "medal": "Silver" - }, - { - "name": "Sam Dorman", - "gender": "M", - "height": "175", - "weight": "77", - "sport": "Diving", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Diving Men's Synchronized Springboard", - "medal": "Silver" - }, - { - "name": "Sara Dosho", - "gender": "F", - "height": "159", - "weight": "69", - "sport": "Wrestling", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Wrestling Women's Light-Heavyweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Josef Dostl", - "gender": "M", - "height": "202", - "weight": "115", - "sport": "Canoeing", - "team": "Czech Republic", - "noc": "CZE", - "age": 23, - "event": "Canoeing Men's Kayak Singles, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Josef Dostl", - "gender": "M", - "height": "202", - "weight": "115", - "sport": "Canoeing", - "team": "Czech Republic", - "noc": "CZE", - "age": 23, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Gabrielle Christina Victoria \"Gabby\" Douglas", - "gender": "F", - "height": "157", - "weight": "50", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Gymnastics Women's Team All-Around", - "medal": "Gold" - }, - { - "name": "Douglas dos Santos Justino de Melo", - "gender": "M", - "height": "173", - "weight": "69", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Owain Daniel John Doull", - "gender": "M", - "height": "181", - "weight": "73", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Gold" - }, - { - "name": "Felix Drahotta", - "gender": "M", - "height": "200", - "weight": "102", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Caeleb Remel Dressel", - "gender": "M", - "height": "191", - "weight": "86", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Caeleb Remel Dressel", - "gender": "M", - "height": "191", - "weight": "86", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Derek Drouin", - "gender": "M", - "height": "196", - "weight": "83", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 26, - "event": "Athletics Men's High Jump", - "medal": "Gold" - }, - { - "name": "Daniela Druncea", - "gender": "F", - "height": "150", - "weight": "50", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 25, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Paul Drux", - "gender": "M", - "height": "192", - "weight": "106", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Alexander Mah Owens Drysdale", - "gender": "M", - "height": "200", - "weight": "102", - "sport": "Rowing", - "team": "New Zealand", - "noc": "NZL", - "age": 37, - "event": "Rowing Men's Single Sculls", - "medal": "Gold" - }, - { - "name": "Du Li", - "gender": "F", - "height": "170", - "weight": "55", - "sport": "Shooting", - "team": "China", - "noc": "CHN", - "age": 34, - "event": "Shooting Women's Air Rifle, 10 metres", - "medal": "Silver" - }, - { - "name": "Du Li", - "gender": "F", - "height": "170", - "weight": "55", - "sport": "Shooting", - "team": "China", - "noc": "CHN", - "age": 34, - "event": "Shooting Women's Small-Bore Rifle, Three Positions, 50 metres", - "medal": "Bronze" - }, - { - "name": "Duan Jingli", - "gender": "F", - "height": "180", - "weight": "76", - "sport": "Rowing", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Rowing Women's Single Sculls", - "medal": "Bronze" - }, - { - "name": "Charlotte Susan Jane Dujardin", - "gender": "F", - "height": "170", - "weight": "57", - "sport": "Equestrianism", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Equestrianism Mixed Dressage, Individual", - "medal": "Gold" - }, - { - "name": "Charlotte Susan Jane Dujardin", - "gender": "F", - "height": "170", - "weight": "57", - "sport": "Equestrianism", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Silver" - }, - { - "name": "Tom Dumoulin", - "gender": "M", - "height": "186", - "weight": "70", - "sport": "Cycling", - "team": "Netherlands", - "noc": "NED", - "age": 25, - "event": "Cycling Men's Individual Time Trial", - "medal": "Silver" - }, - { - "name": "Vitaly Vladimirovich Dunaytsev", - "gender": "M", - "height": "174", - "weight": "64", - "sport": "Boxing", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Boxing Men's Light-Welterweight", - "medal": "Bronze" - }, - { - "name": "Fitzroy Junior Dunkley", - "gender": "M", - "height": "195", - "weight": "79", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 23, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Joshua Dunkley-Smith", - "gender": "M", - "height": "194", - "weight": "98", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 27, - "event": "Rowing Men's Coxless Fours", - "medal": "Silver" - }, - { - "name": "Kevin Wayne Durant", - "gender": "M", - "height": "206", - "weight": "105", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Scott David Durant", - "gender": "M", - "height": "196", - "weight": "96", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Hasanboy Dusmatov", - "gender": "M", - "height": "156", - "weight": "49", - "sport": "Boxing", - "team": "Uzbekistan", - "noc": "UZB", - "age": 23, - "event": "Boxing Men's Light-Flyweight", - "medal": "Gold" - }, - { - "name": "Phillip Peter Dutton", - "gender": "M", - "height": "168", - "weight": "68", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 52, - "event": "Equestrianism Mixed Three-Day Event, Individual", - "medal": "Bronze" - }, - { - "name": "Conor James Dwyer", - "gender": "M", - "height": "196", - "weight": "89", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Swimming Men's 200 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Conor James Dwyer", - "gender": "M", - "height": "196", - "weight": "89", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Yekaterina Vladimirovna Dyachenko", - "gender": "F", - "height": "167", - "weight": "53", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Fencing Women's Sabre, Team", - "medal": "Gold" - }, - { - "name": "Ivan Fyodorovich Dychko", - "gender": "M", - "height": "205", - "weight": "91", - "sport": "Boxing", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 25, - "event": "Boxing Men's Super-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Chlo Dygert (-Owen)", - "gender": "F", - "height": "176", - "weight": "66", - "sport": "Cycling", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Cycling Women's Team Pursuit", - "medal": "Silver" - }, - { - "name": "Ashton James Eaton", - "gender": "M", - "height": "186", - "weight": "81", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Athletics Men's Decathlon", - "medal": "Gold" - }, - { - "name": "Masashi Ebinuma", - "gender": "M", - "height": "170", - "weight": "66", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 26, - "event": "Judo Men's Half-Lightweight", - "medal": "Bronze" - }, - { - "name": "Jessica Jane \"Jess\" Eddie", - "gender": "F", - "height": "178", - "weight": "75", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "der Francis Carbonera", - "gender": "M", - "height": "205", - "weight": "107", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 32, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Alexander \"Alex\" Edmondson", - "gender": "M", - "height": "184", - "weight": "76", - "sport": "Cycling", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Silver" - }, - { - "name": "Batrice Edwige", - "gender": "F", - "height": "182", - "weight": "76", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Naito Ehara", - "gender": "M", - "height": "172", - "weight": "59", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 23, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Stefaniya Aleksandrovna Elfutina", - "gender": "F", - "height": "170", - "weight": "59", - "sport": "Sailing", - "team": "Russia", - "noc": "RUS", - "age": 19, - "event": "Sailing Women's Windsurfer", - "medal": "Bronze" - }, - { - "name": "Marcus John Ellis", - "gender": "M", - "height": "175", - "weight": "80", - "sport": "Badminton", - "team": "Great Britain", - "noc": "GBR", - "age": 26, - "event": "Badminton Men's Doubles", - "medal": "Bronze" - }, - { - "name": "Taylor Ellis-Watson", - "gender": "F", - "height": "183", - "weight": "65", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Brady Lee Ellison", - "gender": "M", - "height": "181", - "weight": "86", - "sport": "Archery", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Archery Men's Individual", - "medal": "Bronze" - }, - { - "name": "Brady Lee Ellison", - "gender": "M", - "height": "181", - "weight": "86", - "sport": "Archery", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Archery Men's Team", - "medal": "Silver" - }, - { - "name": "Amanda Elmore", - "gender": "F", - "height": "180", - "weight": "80", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Brittany Joyce Elmslie", - "gender": "F", - "height": "179", - "weight": "73", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Brittany Joyce Elmslie", - "gender": "F", - "height": "179", - "weight": "73", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Giulia Enrica Emmolo", - "gender": "F", - "height": "171", - "weight": "67", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 24, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Tnu Endrekson", - "gender": "M", - "height": "198", - "weight": "104", - "sport": "Rowing", - "team": "Estonia", - "noc": "EST", - "age": 37, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Bronze" - }, - { - "name": "Jessica Phyllis Ennis-Hill", - "gender": "F", - "height": "165", - "weight": "57", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 30, - "event": "Athletics Women's Heptathlon", - "medal": "Silver" - }, - { - "name": "Magdalena \"Magda\" Eriksson", - "gender": "F", - "height": "172", - "weight": "66", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 22, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Saturday Keigo Erimuya", - "gender": "M", - "height": "171", - "weight": "NA", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 18, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Anthony Lee Ervin", - "gender": "M", - "height": "191", - "weight": "80", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 35, - "event": "Swimming Men's 50 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Anthony Lee Ervin", - "gender": "M", - "height": "191", - "weight": "80", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 35, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Srgio \"Escadinha\" Dutra dos Santos", - "gender": "M", - "height": "184", - "weight": "78", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 40, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Mara del Rosario Espinoza Espinoza", - "gender": "F", - "height": "173", - "weight": "70", - "sport": "Taekwondo", - "team": "Mexico", - "noc": "MEX", - "age": 28, - "event": "Taekwondo Women's Heavyweight", - "medal": "Silver" - }, - { - "name": "Chloe Esposito", - "gender": "F", - "height": "168", - "weight": "55", - "sport": "Modern Pentathlon", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Modern Pentathlon Women's Individual", - "medal": "Gold" - }, - { - "name": "Oghenekaro Peter Etebo", - "gender": "M", - "height": "172", - "weight": "71", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 20, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Gemma Etheridge", - "gender": "F", - "height": "169", - "weight": "66", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 29, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Imoh Ezekiel", - "gender": "M", - "height": "171", - "weight": "80", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 22, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Ludovic Fabregas", - "gender": "M", - "height": "198", - "weight": "100", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 20, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Simone Facey", - "gender": "F", - "height": "162", - "weight": "53", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 31, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Fan Yilin", - "gender": "F", - "height": "148", - "weight": "37", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 16, - "event": "Gymnastics Women's Team All-Around", - "medal": "Bronze" - }, - { - "name": "ime Fantela", - "gender": "M", - "height": "183", - "weight": "67", - "sport": "Sailing", - "team": "Croatia", - "noc": "CRO", - "age": 30, - "event": "Sailing Men's Two Person Dinghy", - "medal": "Gold" - }, - { - "name": "Mohamed Muktar Jama \"Mo\" Farah", - "gender": "M", - "height": "175", - "weight": "58", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 33, - "event": "Athletics Men's 5,000 metres", - "medal": "Gold" - }, - { - "name": "Mohamed Muktar Jama \"Mo\" Farah", - "gender": "M", - "height": "175", - "weight": "58", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 33, - "event": "Athletics Men's 10,000 metres", - "medal": "Gold" - }, - { - "name": "Bianca Farella", - "gender": "F", - "height": "173", - "weight": "73", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Kent Farrington", - "gender": "M", - "height": "173", - "weight": "66", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 35, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Silver" - }, - { - "name": "Steffen Fth", - "gender": "M", - "height": "199", - "weight": "97", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Rachel Fattal", - "gender": "F", - "height": "173", - "weight": "65", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Krisztina Fazekas Zur", - "gender": "F", - "height": "172", - "weight": "64", - "sport": "Canoeing", - "team": "Hungary", - "noc": "HUN", - "age": 36, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Gold" - }, - { - "name": "James \"Jimmy\" Feigen", - "gender": "M", - "height": "196", - "weight": "98", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Felipe Anderson Perieira Gomes", - "gender": "M", - "height": "178", - "weight": "66", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 23, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Allyson Michelle Felix", - "gender": "F", - "height": "168", - "weight": "56", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Women's 400 metres", - "medal": "Silver" - }, - { - "name": "Allyson Michelle Felix", - "gender": "F", - "height": "168", - "weight": "56", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Allyson Michelle Felix", - "gender": "F", - "height": "168", - "weight": "56", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Feng Shanshan", - "gender": "F", - "height": "170", - "weight": "85", - "sport": "Golf", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Golf Women's Individual", - "medal": "Bronze" - }, - { - "name": "Rodolfo \"Rudy\" Fernndez Farrs", - "gender": "M", - "height": "196", - "weight": "84", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 31, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Rossella Fiamingo", - "gender": "F", - "height": "167", - "weight": "50", - "sport": "Fencing", - "team": "Italy", - "noc": "ITA", - "age": 25, - "event": "Fencing Women's epee, Individual", - "medal": "Silver" - }, - { - "name": "Marco Fichera", - "gender": "M", - "height": "180", - "weight": "74", - "sport": "Fencing", - "team": "Italy", - "noc": "ITA", - "age": 22, - "event": "Fencing Men's epee, Team", - "medal": "Silver" - }, - { - "name": "Connor Evan Fields", - "gender": "M", - "height": "183", - "weight": "88", - "sport": "Cycling", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Cycling Men's BMX", - "medal": "Gold" - }, - { - "name": "Pietro Figlioli", - "gender": "M", - "height": "191", - "weight": "98", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 32, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "scar Albeyro Figueroa Mosquera", - "gender": "M", - "height": "159", - "weight": "62", - "sport": "Weightlifting", - "team": "Colombia", - "noc": "COL", - "age": 33, - "event": "Weightlifting Men's Featherweight", - "medal": "Gold" - }, - { - "name": "Roseline Filion", - "gender": "F", - "height": "152", - "weight": "52", - "sport": "Diving", - "team": "Canada", - "noc": "CAN", - "age": 29, - "event": "Diving Women's Synchronized Platform", - "medal": "Bronze" - }, - { - "name": "Filip Filipovi", - "gender": "M", - "height": "196", - "weight": "101", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 29, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Yoel Segundo Finol Rivas", - "gender": "M", - "height": "168", - "weight": "52", - "sport": "Boxing", - "team": "Venezuela", - "noc": "VEN", - "age": 19, - "event": "Boxing Men's Flyweight", - "medal": "Bronze" - }, - { - "name": "Aria Fischer", - "gender": "F", - "height": "183", - "weight": "78", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 17, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Makenzie Fischer", - "gender": "F", - "height": "186", - "weight": "74", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "sa Nilla Maria Fischer", - "gender": "F", - "height": "176", - "weight": "68", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 32, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Theresa Matauaina Fitzpatrick", - "gender": "F", - "height": "168", - "weight": "75", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 21, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Jessie Alexandra Fleming", - "gender": "F", - "height": "164", - "weight": "55", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 18, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "David Florence", - "gender": "M", - "height": "188", - "weight": "76", - "sport": "Canoeing", - "team": "Great Britain", - "noc": "GBR", - "age": 33, - "event": "Canoeing Men's Canadian Doubles, Slalom", - "medal": "Silver" - }, - { - "name": "Casper Michael von Folsach", - "gender": "M", - "height": "191", - "weight": "82", - "sport": "Cycling", - "team": "Denmark", - "noc": "DEN", - "age": 23, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Bronze" - }, - { - "name": "Andrea Fondelli", - "gender": "M", - "height": "190", - "weight": "96", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 22, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Nouchka Fontijn", - "gender": "F", - "height": "180", - "weight": "75", - "sport": "Boxing", - "team": "Netherlands", - "noc": "NED", - "age": 28, - "event": "Boxing Women's Middleweight", - "medal": "Silver" - }, - { - "name": "Shashalee Forbes", - "gender": "F", - "height": "160", - "weight": "55", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 20, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Karsten Forsterling", - "gender": "M", - "height": "191", - "weight": "88", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 36, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Silver" - }, - { - "name": "Sylvia Shaqueria Fowles", - "gender": "F", - "height": "198", - "weight": "90", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Jessica Esther \"Jess\" Fox", - "gender": "F", - "height": "166", - "weight": "60", - "sport": "Canoeing", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Canoeing Women's Kayak Singles, Slalom", - "medal": "Bronze" - }, - { - "name": "Marit Malm Frafjord", - "gender": "F", - "height": "182", - "weight": "78", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 30, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Javon Francis", - "gender": "M", - "height": "183", - "weight": "68", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 21, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Phyllis Chanez Francis", - "gender": "F", - "height": "180", - "weight": "72", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Tanja Chiara Frank", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Sailing", - "team": "Austria", - "noc": "AUT", - "age": 23, - "event": "Sailing Mixed Multihull", - "medal": "Bronze" - }, - { - "name": "Melissa Jeanette \"Missy\" Franklin", - "gender": "F", - "height": "188", - "weight": "77", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Anna Jenny Eva Maria Fransson (Magnusson-)", - "gender": "F", - "height": "169", - "weight": "73", - "sport": "Wrestling", - "team": "Sweden", - "noc": "SWE", - "age": 29, - "event": "Wrestling Women's Light-Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Shelly-Ann Fraser-Pryce", - "gender": "F", - "height": "160", - "weight": "57", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 29, - "event": "Athletics Women's 100 metres", - "medal": "Bronze" - }, - { - "name": "Shelly-Ann Fraser-Pryce", - "gender": "F", - "height": "160", - "weight": "57", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 29, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Teresa Frassinetti", - "gender": "F", - "height": "178", - "weight": "75", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 30, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Carl Peder Fredricson", - "gender": "M", - "height": "189", - "weight": "80", - "sport": "Equestrianism", - "team": "Sweden", - "noc": "SWE", - "age": 44, - "event": "Equestrianism Mixed Jumping, Individual", - "medal": "Silver" - }, - { - "name": "Christopher Clive \"Chris\" Froome", - "gender": "M", - "height": "185", - "weight": "69", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Cycling Men's Individual Time Trial", - "medal": "Bronze" - }, - { - "name": "Fu Haifeng", - "gender": "M", - "height": "181", - "weight": "78", - "sport": "Badminton", - "team": "China-1", - "noc": "CHN", - "age": 32, - "event": "Badminton Men's Doubles", - "medal": "Gold" - }, - { - "name": "Fu Yuanhui", - "gender": "F", - "height": "179", - "weight": "63", - "sport": "Swimming", - "team": "China", - "noc": "CHN", - "age": 20, - "event": "Swimming Women's 100 metres Backstroke", - "medal": "Bronze" - }, - { - "name": "Florian Fuchs", - "gender": "M", - "height": "185", - "weight": "74", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Jakob Diemer Fuglsang", - "gender": "M", - "height": "183", - "weight": "69", - "sport": "Cycling", - "team": "Denmark", - "noc": "DEN", - "age": 31, - "event": "Cycling Men's Road Race, Individual", - "medal": "Silver" - }, - { - "name": "Ai Fukuhara", - "gender": "F", - "height": "156", - "weight": "48", - "sport": "Table Tennis", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Table Tennis Women's Team", - "medal": "Bronze" - }, - { - "name": "Magdalena Fularczyk-Kozowska", - "gender": "F", - "height": "173", - "weight": "70", - "sport": "Rowing", - "team": "Poland", - "noc": "POL", - "age": 29, - "event": "Rowing Women's Double Sculls", - "medal": "Gold" - }, - { - "name": "Moritz Frste", - "gender": "M", - "height": "190", - "weight": "89", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 31, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Gabriel Barbosa Almeida", - "gender": "M", - "height": "178", - "weight": "68", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 19, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Gabriel Fernando de Jesus", - "gender": "M", - "height": "175", - "weight": "68", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 19, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Otgontsetseg Galbadrakhyn", - "gender": "F", - "height": "170", - "weight": "63", - "sport": "Judo", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 24, - "event": "Judo Women's Extra-Lightweight", - "medal": "Bronze" - }, - { - "name": "Valentino Gallo", - "gender": "M", - "height": "192", - "weight": "95", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 31, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Jacqueline \"Jackie\" Galloway", - "gender": "F", - "height": "178", - "weight": "80", - "sport": "Taekwondo", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Taekwondo Women's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Dzhavid Shakirovich Gamzatov", - "gender": "M", - "height": "176", - "weight": "91", - "sport": "Wrestling", - "team": "Belarus", - "noc": "BLR", - "age": 26, - "event": "Wrestling Men's Light-Heavyweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Gao Lei", - "gender": "M", - "height": "170", - "weight": "64", - "sport": "Trampolining", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Trampolining Men's Individual", - "medal": "Bronze" - }, - { - "name": "Xavier Garca Gadea", - "gender": "M", - "height": "198", - "weight": "92", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 32, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Steven Gardiner", - "gender": "M", - "height": "193", - "weight": "94", - "sport": "Athletics", - "team": "Bahamas", - "noc": "BAH", - "age": 20, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "English Gardner", - "gender": "F", - "height": "168", - "weight": "55", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Denis Gargaud Chanut", - "gender": "M", - "height": "181", - "weight": "76", - "sport": "Canoeing", - "team": "France", - "noc": "FRA", - "age": 29, - "event": "Canoeing Men's Canadian Singles, Slalom", - "medal": "Gold" - }, - { - "name": "Arianna Garibotti", - "gender": "F", - "height": "169", - "weight": "64", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 26, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Daniele Garozzo", - "gender": "M", - "height": "177", - "weight": "65", - "sport": "Fencing", - "team": "Italy", - "noc": "ITA", - "age": 23, - "event": "Fencing Men's Foil, Individual", - "medal": "Gold" - }, - { - "name": "Enrico Garozzo", - "gender": "M", - "height": "190", - "weight": "70", - "sport": "Fencing", - "team": "Italy", - "noc": "ITA", - "age": 27, - "event": "Fencing Men's epee, Team", - "medal": "Silver" - }, - { - "name": "Zach Garrett", - "gender": "M", - "height": "178", - "weight": "64", - "sport": "Archery", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Archery Men's Team", - "medal": "Silver" - }, - { - "name": "Pau Gasol Sez", - "gender": "M", - "height": "215", - "weight": "115", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 36, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Justin Alexander Gatlin", - "gender": "M", - "height": "186", - "weight": "80", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 34, - "event": "Athletics Men's 100 metres", - "medal": "Silver" - }, - { - "name": "Artemi Gavezou Castro", - "gender": "F", - "height": "169", - "weight": "55", - "sport": "Rhythmic Gymnastics", - "team": "Spain", - "noc": "ESP", - "age": 22, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Silver" - }, - { - "name": "Yuliya Petrovna Gavrilova", - "gender": "F", - "height": "169", - "weight": "56", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Fencing Women's Sabre, Team", - "medal": "Gold" - }, - { - "name": "Fazliddin Khasanbayevich Gaybnazarov", - "gender": "M", - "height": "169", - "weight": "64", - "sport": "Boxing", - "team": "Uzbekistan", - "noc": "UZB", - "age": 25, - "event": "Boxing Men's Light-Welterweight", - "medal": "Gold" - }, - { - "name": "Ruth Marie Christelle Gbagbi", - "gender": "F", - "height": "176", - "weight": "65", - "sport": "Taekwondo", - "team": "Cote d'Ivoire", - "noc": "CIV", - "age": 22, - "event": "Taekwondo Women's Welterweight", - "medal": "Bronze" - }, - { - "name": "Hagos Gebrhiwet Berhe", - "gender": "M", - "height": "171", - "weight": "56", - "sport": "Athletics", - "team": "Ethiopia", - "noc": "ETH", - "age": 22, - "event": "Athletics Men's 5,000 metres", - "medal": "Bronze" - }, - { - "name": "Justin Gilberto Geduld", - "gender": "M", - "height": "175", - "weight": "78", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 22, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Aniuar Borisovich Geduyev", - "gender": "M", - "height": "173", - "weight": "74", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 29, - "event": "Wrestling Men's Middleweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Uwe Gensheimer", - "gender": "M", - "height": "188", - "weight": "88", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Paul George", - "gender": "M", - "height": "206", - "weight": "99", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Vincent Grard", - "gender": "M", - "height": "189", - "weight": "100", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 29, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Aleksandra Viktorovna Gerasimenya", - "gender": "F", - "height": "175", - "weight": "60", - "sport": "Swimming", - "team": "Belarus", - "noc": "BLR", - "age": 30, - "event": "Swimming Women's 50 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Yarden Gerbi", - "gender": "F", - "height": "169", - "weight": "63", - "sport": "Judo", - "team": "Israel", - "noc": "ISR", - "age": 27, - "event": "Judo Women's Half-Middleweight", - "medal": "Bronze" - }, - { - "name": "Komeil Nemat Ghasemi", - "gender": "M", - "height": "186", - "weight": "115", - "sport": "Wrestling", - "team": "Iran", - "noc": "IRI", - "age": 28, - "event": "Wrestling Men's Super-Heavyweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Simona Cristina Gherman (Alexandru-)", - "gender": "F", - "height": "170", - "weight": "58", - "sport": "Fencing", - "team": "Romania", - "noc": "ROU", - "age": 31, - "event": "Fencing Women's epee, Team", - "medal": "Gold" - }, - { - "name": "Simone Giannelli", - "gender": "M", - "height": "198", - "weight": "92", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 19, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Spyridon \"Spyros\" Gianniotis", - "gender": "M", - "height": "185", - "weight": "78", - "sport": "Swimming", - "team": "Greece", - "noc": "GRE", - "age": 36, - "event": "Swimming Men's 10 kilometres Open Water", - "medal": "Silver" - }, - { - "name": "Laura Gil Collado", - "gender": "F", - "height": "191", - "weight": "78", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 24, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Juan Ignacio Gilardi", - "gender": "M", - "height": "186", - "weight": "91", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 34, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Kaleigh Gilchrist", - "gender": "F", - "height": "176", - "weight": "77", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Fabien Pierre Aurlien Dominique Gilot", - "gender": "M", - "height": "193", - "weight": "85", - "sport": "Swimming", - "team": "France", - "noc": "FRA", - "age": 32, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Matthias Lukas Ginter", - "gender": "M", - "height": "190", - "weight": "88", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 22, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Cameron Girdlestone", - "gender": "M", - "height": "190", - "weight": "92", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 28, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Silver" - }, - { - "name": "Niccol Gitto", - "gender": "M", - "height": "190", - "weight": "90", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 29, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Odette Giuffrida", - "gender": "F", - "height": "160", - "weight": "52", - "sport": "Judo", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Judo Women's Half-Lightweight", - "medal": "Silver" - }, - { - "name": "Shakhram Dzhamshedovich Giyasov", - "gender": "M", - "height": "174", - "weight": "69", - "sport": "Boxing", - "team": "Uzbekistan", - "noc": "UZB", - "age": 23, - "event": "Boxing Men's Welterweight", - "medal": "Silver" - }, - { - "name": "Jasmin Glaesser", - "gender": "F", - "height": "167", - "weight": "58", - "sport": "Cycling", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Cycling Women's Team Pursuit", - "medal": "Bronze" - }, - { - "name": "Josip Glasnovi", - "gender": "M", - "height": "178", - "weight": "82", - "sport": "Shooting", - "team": "Croatia", - "noc": "CRO", - "age": 33, - "event": "Shooting Men's Trap", - "medal": "Gold" - }, - { - "name": "Alisha Rebecca Glass", - "gender": "F", - "height": "183", - "weight": "72", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Laura Glauser", - "gender": "F", - "height": "178", - "weight": "65", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 22, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Helen Rachel M. Glover", - "gender": "F", - "height": "177", - "weight": "67", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 30, - "event": "Rowing Women's Coxless Pairs", - "medal": "Gold" - }, - { - "name": "Nadezhda Sergeyevna Glyzina-Fedotova", - "gender": "F", - "height": "175", - "weight": "68", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Serge David Gnabry", - "gender": "M", - "height": "173", - "weight": "74", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Tessa Gobbo", - "gender": "F", - "height": "185", - "weight": "82", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "ivko Goci", - "gender": "M", - "height": "193", - "weight": "93", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 33, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Lena Goeling", - "gender": "F", - "height": "171", - "weight": "56", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 30, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Goh Liu Ying", - "gender": "F", - "height": "166", - "weight": "56", - "sport": "Badminton", - "team": "Malaysia", - "noc": "MAS", - "age": 27, - "event": "Badminton Mixed Doubles", - "medal": "Silver" - }, - { - "name": "Goh V Shem", - "gender": "M", - "height": "180", - "weight": "70", - "sport": "Badminton", - "team": "Malaysia", - "noc": "MAS", - "age": 27, - "event": "Badminton Men's Doubles", - "medal": "Silver" - }, - { - "name": "Vladislav Olegovich Goncharov", - "gender": "M", - "height": "173", - "weight": "66", - "sport": "Trampolining", - "team": "Belarus", - "noc": "BLR", - "age": 20, - "event": "Trampolining Men's Individual", - "medal": "Gold" - }, - { - "name": "Gong Jinjie", - "gender": "F", - "height": "165", - "weight": "65", - "sport": "Cycling", - "team": "China", - "noc": "CHN", - "age": 29, - "event": "Cycling Women's Team Sprint", - "medal": "Gold" - }, - { - "name": "Gong Xiangyu", - "gender": "F", - "height": "186", - "weight": "72", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 19, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Joel Gonzlez Bonilla", - "gender": "M", - "height": "185", - "weight": "68", - "sport": "Taekwondo", - "team": "Spain", - "noc": "ESP", - "age": 26, - "event": "Taekwondo Men's Featherweight", - "medal": "Bronze" - }, - { - "name": "Mara Guadalupe Gonzlez Romero", - "gender": "F", - "height": "162", - "weight": "47", - "sport": "Athletics", - "team": "Mexico", - "noc": "MEX", - "age": 27, - "event": "Athletics Women's 20 kilometres Walk", - "medal": "Silver" - }, - { - "name": "Daniel Goodfellow", - "gender": "M", - "height": "167", - "weight": "58", - "sport": "Diving", - "team": "Great Britain", - "noc": "GBR", - "age": 19, - "event": "Diving Men's Synchronized Platform", - "medal": "Bronze" - }, - { - "name": "Chrisann Gordon", - "gender": "F", - "height": "168", - "weight": "65", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 21, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Leon Goretzka", - "gender": "M", - "height": "189", - "weight": "79", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Karina Khavazhevna Goricheva", - "gender": "F", - "height": "160", - "weight": "63", - "sport": "Weightlifting", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 23, - "event": "Weightlifting Women's Middleweight", - "medal": "Bronze" - }, - { - "name": "Giulia Gorlero", - "gender": "F", - "height": "180", - "weight": "73", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 25, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Kennedy Goss", - "gender": "F", - "height": "173", - "weight": "74", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 19, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Sarah Goss", - "gender": "F", - "height": "176", - "weight": "73", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 23, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Matthew Anthony W. \"Matt\" Gotrel", - "gender": "M", - "height": "195", - "weight": "95", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Simon Gougnard", - "gender": "M", - "height": "187", - "weight": "84", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 25, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Martine Soffiatti Grael", - "gender": "F", - "height": "168", - "weight": "62", - "sport": "Sailing", - "team": "Brazil", - "noc": "BRA", - "age": 25, - "event": "Sailing Women's Skiff", - "medal": "Gold" - }, - { - "name": "Katherine Jane Grainger", - "gender": "F", - "height": "183", - "weight": "78", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 40, - "event": "Rowing Women's Double Sculls", - "medal": "Silver" - }, - { - "name": "Mats Grambusch", - "gender": "M", - "height": "177", - "weight": "74", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 23, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Tom Grambusch", - "gender": "M", - "height": "185", - "weight": "85", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 20, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Laura Graves", - "gender": "F", - "height": "173", - "weight": "55", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Bronze" - }, - { - "name": "Mathieu Grbille", - "gender": "M", - "height": "198", - "weight": "100", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Draymond Jamal Green", - "gender": "M", - "height": "200", - "weight": "104", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Ellia Green", - "gender": "F", - "height": "172", - "weight": "75", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 23, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Alexander John \"Alex\" Gregory", - "gender": "M", - "height": "198", - "weight": "97", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 32, - "event": "Rowing Men's Coxless Fours", - "medal": "Gold" - }, - { - "name": "Catherine Rose \"Katie\" Greves (-Solesbury)", - "gender": "F", - "height": "179", - "weight": "71", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 33, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Sam Griffiths", - "gender": "M", - "height": "171", - "weight": "73", - "sport": "Equestrianism", - "team": "Australia", - "noc": "AUS", - "age": 44, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Bronze" - }, - { - "name": "Kirill Akopovich Grigoryan", - "gender": "M", - "height": "179", - "weight": "88", - "sport": "Shooting", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Shooting Men's Small-Bore Rifle, Prone, 50 metres", - "medal": "Bronze" - }, - { - "name": "Kari Aalvik Grimsb", - "gender": "F", - "height": "180", - "weight": "80", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 31, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Brittney Yevette Griner", - "gender": "F", - "height": "203", - "weight": "94", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Anna Sergeyevna Grinyova", - "gender": "F", - "height": "185", - "weight": "87", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Mindaugas Grikonis", - "gender": "M", - "height": "190", - "weight": "92", - "sport": "Rowing", - "team": "Lithuania", - "noc": "LTU", - "age": 30, - "event": "Rowing Men's Double Sculls", - "medal": "Silver" - }, - { - "name": "Marcus Gro", - "gender": "M", - "height": "182", - "weight": "85", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Canoeing Men's Kayak Doubles, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Marcus Gro", - "gender": "M", - "height": "182", - "weight": "85", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Madeline Groves", - "gender": "F", - "height": "179", - "weight": "66", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 21, - "event": "Swimming Women's 200 metres Butterfly", - "medal": "Silver" - }, - { - "name": "Madeline Groves", - "gender": "F", - "height": "179", - "weight": "66", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 21, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Hans Gruhne", - "gender": "M", - "height": "193", - "weight": "92", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Gold" - }, - { - "name": "Gauthier Grumier", - "gender": "M", - "height": "188", - "weight": "83", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 32, - "event": "Fencing Men's epee, Individual", - "medal": "Bronze" - }, - { - "name": "Gauthier Grumier", - "gender": "M", - "height": "188", - "weight": "83", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 32, - "event": "Fencing Men's epee, Team", - "medal": "Gold" - }, - { - "name": "Gu Xiao", - "gender": "F", - "height": "174", - "weight": "60", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "Evandro Motta Guerra", - "gender": "M", - "height": "207", - "weight": "106", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 34, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Michal Yves Robert Guigou", - "gender": "M", - "height": "179", - "weight": "79", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 34, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Guo Li", - "gender": "F", - "height": "167", - "weight": "54", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "James George Guy", - "gender": "M", - "height": "187", - "weight": "83", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 20, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "James George Guy", - "gender": "M", - "height": "187", - "weight": "83", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 20, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Gwak Dong-Han", - "gender": "M", - "height": "183", - "weight": "90", - "sport": "Judo", - "team": "South Korea", - "noc": "KOR", - "age": 24, - "event": "Judo Men's Middleweight", - "medal": "Bronze" - }, - { - "name": "Mario-Elio Gyr", - "gender": "M", - "height": "187", - "weight": "76", - "sport": "Rowing", - "team": "Switzerland", - "noc": "SUI", - "age": 31, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Gold" - }, - { - "name": "Francis Townley Haas", - "gender": "M", - "height": "196", - "weight": "84", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Kai Hfner", - "gender": "M", - "height": "192", - "weight": "95", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Ryunosuke Haga", - "gender": "M", - "height": "186", - "weight": "100", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 25, - "event": "Judo Men's Half-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Kosuke Hagino", - "gender": "M", - "height": "177", - "weight": "71", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Kosuke Hagino", - "gender": "M", - "height": "177", - "weight": "71", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Swimming Men's 200 metres Individual Medley", - "medal": "Silver" - }, - { - "name": "Kosuke Hagino", - "gender": "M", - "height": "177", - "weight": "71", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Swimming Men's 400 metres Individual Medley", - "medal": "Gold" - }, - { - "name": "Lisa Hahn-Altenburg", - "gender": "F", - "height": "155", - "weight": "58", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Aika Hakoyama", - "gender": "F", - "height": "176", - "weight": "65", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 25, - "event": "Synchronized Swimming Women's Team", - "medal": "Bronze" - }, - { - "name": "Arman Hall", - "gender": "M", - "height": "183", - "weight": "75", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Fabian Hambchen", - "gender": "M", - "height": "164", - "weight": "62", - "sport": "Gymnastics", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Gymnastics Men's Horizontal Bar", - "medal": "Gold" - }, - { - "name": "Pauline Louisa Hammarlund", - "gender": "F", - "height": "172", - "weight": "65", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 22, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Sarah Kathryn Hammer (-Sparks)", - "gender": "F", - "height": "171", - "weight": "65", - "sport": "Cycling", - "team": "United States", - "noc": "USA", - "age": 32, - "event": "Cycling Women's Team Pursuit", - "medal": "Silver" - }, - { - "name": "Sarah Kathryn Hammer (-Sparks)", - "gender": "F", - "height": "171", - "weight": "65", - "sport": "Cycling", - "team": "United States", - "noc": "USA", - "age": 32, - "event": "Cycling Women's Omnium", - "medal": "Silver" - }, - { - "name": "Ying Han", - "gender": "F", - "height": "170", - "weight": "60", - "sport": "Table Tennis", - "team": "Germany", - "noc": "GER", - "age": 33, - "event": "Table Tennis Women's Team", - "medal": "Silver" - }, - { - "name": "Takuya Haneda", - "gender": "M", - "height": "175", - "weight": "70", - "sport": "Canoeing", - "team": "Japan", - "noc": "JPN", - "age": 29, - "event": "Canoeing Men's Canadian Singles, Slalom", - "medal": "Bronze" - }, - { - "name": "Martin Hner", - "gender": "M", - "height": "184", - "weight": "83", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Tawin Hanprab", - "gender": "M", - "height": "176", - "weight": "58", - "sport": "Taekwondo", - "team": "Thailand", - "noc": "THA", - "age": 18, - "event": "Taekwondo Men's Flyweight", - "medal": "Silver" - }, - { - "name": "Henrik Toft Hansen", - "gender": "M", - "height": "200", - "weight": "105", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 29, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Jena Mai Hansen", - "gender": "F", - "height": "166", - "weight": "60", - "sport": "Sailing", - "team": "Denmark", - "noc": "DEN", - "age": 27, - "event": "Sailing Women's Skiff", - "medal": "Bronze" - }, - { - "name": "Lasse Norman Hansen", - "gender": "M", - "height": "180", - "weight": "73", - "sport": "Cycling", - "team": "Denmark", - "noc": "DEN", - "age": 24, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Bronze" - }, - { - "name": "Lasse Norman Hansen", - "gender": "M", - "height": "180", - "weight": "73", - "sport": "Cycling", - "team": "Denmark", - "noc": "DEN", - "age": 24, - "event": "Cycling Men's Omnium", - "medal": "Bronze" - }, - { - "name": "Mikkel Hansen", - "gender": "M", - "height": "196", - "weight": "98", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 28, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Ren Toft Hansen", - "gender": "M", - "height": "200", - "weight": "105", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 31, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Hao Jialu", - "gender": "F", - "height": "176", - "weight": "66", - "sport": "Fencing", - "team": "China", - "noc": "CHN", - "age": 28, - "event": "Fencing Women's epee, Team", - "medal": "Silver" - }, - { - "name": "Hisayoshi Harasawa", - "gender": "M", - "height": "191", - "weight": "125", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 24, - "event": "Judo Men's Heavyweight", - "medal": "Silver" - }, - { - "name": "Christa Deanne Harmotto-Dietzen", - "gender": "F", - "height": "188", - "weight": "79", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Kayla Harrison", - "gender": "F", - "height": "173", - "weight": "74", - "sport": "Judo", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Judo Women's Half-Heavyweight", - "medal": "Gold" - }, - { - "name": "Christoph Harting", - "gender": "M", - "height": "207", - "weight": "120", - "sport": "Athletics", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Athletics Men's Discus Throw", - "medal": "Gold" - }, - { - "name": "Artem Harutyunyan", - "gender": "M", - "height": "172", - "weight": "64", - "sport": "Boxing", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Boxing Men's Light-Welterweight", - "medal": "Bronze" - }, - { - "name": "Natasha Monique Hastings", - "gender": "F", - "height": "173", - "weight": "68", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Franzisca Hauke", - "gender": "F", - "height": "172", - "weight": "63", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Tobias Constantin Hauke", - "gender": "M", - "height": "183", - "weight": "81", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Patrick Hausding", - "gender": "M", - "height": "180", - "weight": "77", - "sport": "Diving", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Diving Men's Springboard", - "medal": "Bronze" - }, - { - "name": "Daniel Havel", - "gender": "M", - "height": "178", - "weight": "79", - "sport": "Canoeing", - "team": "Czech Republic", - "noc": "CZE", - "age": 24, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Akeem Haynes", - "gender": "M", - "height": "170", - "weight": "73", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "He Zi", - "gender": "F", - "height": "159", - "weight": "51", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Diving Women's Springboard", - "medal": "Silver" - }, - { - "name": "Maaike Christiane Head", - "gender": "F", - "height": "173", - "weight": "59", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 32, - "event": "Rowing Women's Lightweight Double Sculls", - "medal": "Gold" - }, - { - "name": "Liam Nicholas Heath", - "gender": "M", - "height": "182", - "weight": "81", - "sport": "Canoeing", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Canoeing Men's Kayak Singles, 200 metres", - "medal": "Gold" - }, - { - "name": "Liam Nicholas Heath", - "gender": "M", - "height": "182", - "weight": "81", - "sport": "Canoeing", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Canoeing Men's Kayak Doubles, 200 metres", - "medal": "Silver" - }, - { - "name": "Erik Heil", - "gender": "M", - "height": "185", - "weight": "80", - "sport": "Sailing", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Sailing Men's Skiff", - "medal": "Bronze" - }, - { - "name": "Silvio Heinevetter", - "gender": "M", - "height": "194", - "weight": "99", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 31, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Ryan Held", - "gender": "M", - "height": "NA", - "weight": "NA", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Jeffrey \"Jeff\" Henderson", - "gender": "M", - "height": "183", - "weight": "86", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Athletics Men's Long Jump", - "medal": "Gold" - }, - { - "name": "Kaj Hendriks", - "gender": "M", - "height": "197", - "weight": "95", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 28, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Josephine Henning", - "gender": "F", - "height": "175", - "weight": "68", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Desiree Latifah N. Henry", - "gender": "F", - "height": "171", - "weight": "64", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 20, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "Michael David Hepburn", - "gender": "M", - "height": "186", - "weight": "77", - "sport": "Cycling", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Silver" - }, - { - "name": "Sabrina Hering", - "gender": "F", - "height": "167", - "weight": "70", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Silver" - }, - { - "name": "Ismael Marcelo Hernndez Uscanga", - "gender": "M", - "height": "178", - "weight": "64", - "sport": "Modern Pentathlon", - "team": "Mexico", - "noc": "MEX", - "age": 26, - "event": "Modern Pentathlon Men's Individual", - "medal": "Bronze" - }, - { - "name": "Lauren Zoe \"Laurie\" Hernandez", - "gender": "F", - "height": "152", - "weight": "49", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 16, - "event": "Gymnastics Women's Team All-Around", - "medal": "Gold" - }, - { - "name": "Lauren Zoe \"Laurie\" Hernandez", - "gender": "F", - "height": "152", - "weight": "49", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 16, - "event": "Gymnastics Women's Balance Beam", - "medal": "Silver" - }, - { - "name": "Nico Miguel Hernandez", - "gender": "M", - "height": "165", - "weight": "49", - "sport": "Boxing", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Boxing Men's Light-Flyweight", - "medal": "Bronze" - }, - { - "name": "Stefany del Carmen Hernndez Mendoza", - "gender": "F", - "height": "165", - "weight": "65", - "sport": "Cycling", - "team": "Venezuela", - "noc": "VEN", - "age": 25, - "event": "Cycling Women's BMX", - "medal": "Bronze" - }, - { - "name": "Guillermo Gustavo \"Willy\" Hernangmez Geuer", - "gender": "M", - "height": "210", - "weight": "115", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 22, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Camilla Herrem", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 29, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Timm Herzbruch", - "gender": "M", - "height": "180", - "weight": "76", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 19, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Carl Rupert Hester", - "gender": "M", - "height": "182", - "weight": "86", - "sport": "Equestrianism", - "team": "Great Britain", - "noc": "GBR", - "age": 49, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Silver" - }, - { - "name": "Rei Higuchi", - "gender": "M", - "height": "163", - "weight": "63", - "sport": "Wrestling", - "team": "Japan", - "noc": "JPN", - "age": 20, - "event": "Wrestling Men's Featherweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Alexander \"Alex\" Hill", - "gender": "M", - "height": "194", - "weight": "92", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 23, - "event": "Rowing Men's Coxless Fours", - "medal": "Silver" - }, - { - "name": "Kimberly \"Kim\" Hill", - "gender": "F", - "height": "193", - "weight": "72", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Phelan Peter Hill", - "gender": "M", - "height": "172", - "weight": "55", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 37, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Samantha \"Sami\" Hill", - "gender": "F", - "height": "183", - "weight": "89", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Madeline Clare \"Maddie\" Hinch", - "gender": "F", - "height": "168", - "weight": "62", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Philip Hindes", - "gender": "M", - "height": "178", - "weight": "82", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Cycling Men's Team Sprint", - "medal": "Gold" - }, - { - "name": "Martina Hingis (-Hutin)", - "gender": "F", - "height": "170", - "weight": "59", - "sport": "Tennis", - "team": "Switzerland", - "noc": "SUI", - "age": 35, - "event": "Tennis Women's Doubles", - "medal": "Silver" - }, - { - "name": "Sophie Hitchon", - "gender": "F", - "height": "170", - "weight": "75", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Athletics Women's Hammer Throw", - "medal": "Bronze" - }, - { - "name": "Michael \"Mike\" Hixon", - "gender": "M", - "height": "173", - "weight": "68", - "sport": "Diving", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Diving Men's Synchronized Springboard", - "medal": "Silver" - }, - { - "name": "Hong Xun Vinh", - "gender": "M", - "height": "175", - "weight": "75", - "sport": "Shooting", - "team": "Vietnam", - "noc": "VIE", - "age": 41, - "event": "Shooting Men's Air Pistol, 10 metres", - "medal": "Gold" - }, - { - "name": "Hong Xun Vinh", - "gender": "M", - "height": "175", - "weight": "75", - "sport": "Shooting", - "team": "Vietnam", - "noc": "VIE", - "age": 41, - "event": "Shooting Men's Free Pistol, 50 metres", - "medal": "Silver" - }, - { - "name": "Max Hoff", - "gender": "M", - "height": "197", - "weight": "95", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 33, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Victoria Frances \"Vicky\" Holland", - "gender": "F", - "height": "168", - "weight": "56", - "sport": "Triathlon", - "team": "Great Britain", - "noc": "GBR", - "age": 30, - "event": "Triathlon Women's Olympic Distance", - "medal": "Bronze" - }, - { - "name": "Maxwell Philip \"Max\" Holt", - "gender": "M", - "height": "208", - "weight": "90", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Daryl Homer", - "gender": "M", - "height": "173", - "weight": "74", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Fencing Men's Sabre, Individual", - "medal": "Silver" - }, - { - "name": "Ellen Marijn Hoog", - "gender": "F", - "height": "164", - "weight": "54", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 30, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Tamara Horacek", - "gender": "F", - "height": "179", - "weight": "80", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 20, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Timo Horn", - "gender": "M", - "height": "191", - "weight": "76", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 23, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Mackenzie \"Mack\" Horton", - "gender": "M", - "height": "190", - "weight": "88", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 20, - "event": "Swimming Men's 400 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Natsumi Hoshi", - "gender": "F", - "height": "164", - "weight": "56", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 25, - "event": "Swimming Women's 200 metres Butterfly", - "medal": "Bronze" - }, - { - "name": "Katinka Hossz", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Swimming", - "team": "Hungary", - "noc": "HUN", - "age": 27, - "event": "Swimming Women's 100 metres Backstroke", - "medal": "Gold" - }, - { - "name": "Katinka Hossz", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Swimming", - "team": "Hungary", - "noc": "HUN", - "age": 27, - "event": "Swimming Women's 200 metres Backstroke", - "medal": "Silver" - }, - { - "name": "Katinka Hossz", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Swimming", - "team": "Hungary", - "noc": "HUN", - "age": 27, - "event": "Swimming Women's 200 metres Individual Medley", - "medal": "Gold" - }, - { - "name": "Katinka Hossz", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Swimming", - "team": "Hungary", - "noc": "HUN", - "age": 27, - "event": "Swimming Women's 400 metres Individual Medley", - "medal": "Gold" - }, - { - "name": "Manon Houette", - "gender": "F", - "height": "168", - "weight": "69", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Franois Hougaard", - "gender": "M", - "height": "179", - "weight": "93", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 28, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Frances Julia Houghton", - "gender": "F", - "height": "193", - "weight": "80", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 35, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Pierre Houin", - "gender": "M", - "height": "182", - "weight": "74", - "sport": "Rowing", - "team": "France", - "noc": "FRA", - "age": 22, - "event": "Rowing Men's Lightweight Double Sculls", - "medal": "Gold" - }, - { - "name": "Richard Hounslow", - "gender": "M", - "height": "183", - "weight": "78", - "sport": "Canoeing", - "team": "Great Britain", - "noc": "GBR", - "age": 34, - "event": "Canoeing Men's Canadian Doubles, Slalom", - "medal": "Silver" - }, - { - "name": "Lucie Hradeck", - "gender": "F", - "height": "177", - "weight": "72", - "sport": "Tennis", - "team": "Czech Republic", - "noc": "CZE", - "age": 31, - "event": "Tennis Mixed Doubles", - "medal": "Bronze" - }, - { - "name": "Filip Hrgovi", - "gender": "M", - "height": "198", - "weight": "101", - "sport": "Boxing", - "team": "Croatia", - "noc": "CRO", - "age": 24, - "event": "Boxing Men's Super-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Hsu Shu-Ching", - "gender": "F", - "height": "160", - "weight": "53", - "sport": "Weightlifting", - "team": "Chinese Taipei", - "noc": "TPE", - "age": 25, - "event": "Weightlifting Women's Featherweight", - "medal": "Gold" - }, - { - "name": "Cbrayl Hsnov", - "gender": "M", - "height": "170", - "weight": "74", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 26, - "event": "Wrestling Men's Middleweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Hu Jianguan", - "gender": "M", - "height": "168", - "weight": "52", - "sport": "Boxing", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Boxing Men's Flyweight", - "medal": "Bronze" - }, - { - "name": "Huang Wenyi", - "gender": "F", - "height": "178", - "weight": "63", - "sport": "Rowing", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Rowing Women's Lightweight Double Sculls", - "medal": "Bronze" - }, - { - "name": "Huang Xuechen", - "gender": "F", - "height": "175", - "weight": "61", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Synchronized Swimming Women's Duet", - "medal": "Silver" - }, - { - "name": "Huang Xuechen", - "gender": "F", - "height": "175", - "weight": "61", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "Hui Ruoqi", - "gender": "F", - "height": "192", - "weight": "78", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Svenja Anette Huth", - "gender": "F", - "height": "163", - "weight": "54", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Diego Matias Hyplito", - "gender": "M", - "height": "170", - "weight": "68", - "sport": "Gymnastics", - "team": "Brazil", - "noc": "BRA", - "age": 30, - "event": "Gymnastics Men's Floor Exercise", - "medal": "Silver" - }, - { - "name": "Caterine Ibargn Mena", - "gender": "F", - "height": "185", - "weight": "70", - "sport": "Athletics", - "team": "Colombia", - "noc": "COL", - "age": 32, - "event": "Athletics Women's Triple Jump", - "medal": "Gold" - }, - { - "name": "Isidoro Ibarra", - "gender": "M", - "height": "175", - "weight": "75", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 23, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Pedro Ibarra", - "gender": "M", - "height": "174", - "weight": "75", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 30, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Magomed Idrisovich Ibragimov", - "gender": "M", - "height": "183", - "weight": "97", - "sport": "Wrestling", - "team": "Uzbekistan", - "noc": "UZB", - "age": 31, - "event": "Wrestling Men's Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Kaori Icho", - "gender": "F", - "height": "166", - "weight": "61", - "sport": "Wrestling", - "team": "Japan", - "noc": "JPN", - "age": 32, - "event": "Wrestling Women's Lightweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Mohamed Ihab Youssef Ahmed Mahmoud", - "gender": "M", - "height": "165", - "weight": "77", - "sport": "Weightlifting", - "team": "Egypt", - "noc": "EGY", - "age": 26, - "event": "Weightlifting Men's Middleweight", - "medal": "Bronze" - }, - { - "name": "Shota Iizuka", - "gender": "M", - "height": "185", - "weight": "80", - "sport": "Athletics", - "team": "Japan", - "noc": "JPN", - "age": 25, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Cenk ldem", - "gender": "M", - "height": "180", - "weight": "98", - "sport": "Wrestling", - "team": "Turkey", - "noc": "TUR", - "age": 30, - "event": "Wrestling Men's Heavyweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Yekaterina Fyodorovna Ilyina", - "gender": "F", - "height": "174", - "weight": "60", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Race Alick Reid Imboden", - "gender": "M", - "height": "185", - "weight": "75", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Fencing Men's Foil, Team", - "medal": "Bronze" - }, - { - "name": "Gza Imre", - "gender": "M", - "height": "184", - "weight": "75", - "sport": "Fencing", - "team": "Hungary", - "noc": "HUN", - "age": 41, - "event": "Fencing Men's epee, Individual", - "medal": "Silver" - }, - { - "name": "Gza Imre", - "gender": "M", - "height": "184", - "weight": "75", - "sport": "Fencing", - "team": "Hungary", - "noc": "HUN", - "age": 41, - "event": "Fencing Men's epee, Team", - "medal": "Bronze" - }, - { - "name": "Marco Innocenti", - "gender": "M", - "height": "170", - "weight": "97", - "sport": "Shooting", - "team": "Italy", - "noc": "ITA", - "age": 37, - "event": "Shooting Men's Double Trap", - "medal": "Silver" - }, - { - "name": "Yukiko Inui", - "gender": "F", - "height": "169", - "weight": "55", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 25, - "event": "Synchronized Swimming Women's Duet", - "medal": "Bronze" - }, - { - "name": "Yukiko Inui", - "gender": "F", - "height": "169", - "weight": "55", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 25, - "event": "Synchronized Swimming Women's Team", - "medal": "Bronze" - }, - { - "name": "Eko Yuli Irawan", - "gender": "M", - "height": "154", - "weight": "62", - "sport": "Weightlifting", - "team": "Indonesia", - "noc": "INA", - "age": 27, - "event": "Weightlifting Men's Featherweight", - "medal": "Silver" - }, - { - "name": "Kyrie Andrew Irving", - "gender": "M", - "height": "190", - "weight": "87", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Radik sayev", - "gender": "M", - "height": "200", - "weight": "93", - "sport": "Taekwondo", - "team": "Azerbaijan", - "noc": "AZE", - "age": 26, - "event": "Taekwondo Men's Heavyweight", - "medal": "Gold" - }, - { - "name": "Nataliya Sergeyevna Ishchenko", - "gender": "F", - "height": "177", - "weight": "60", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 30, - "event": "Synchronized Swimming Women's Duet", - "medal": "Gold" - }, - { - "name": "Nataliya Sergeyevna Ishchenko", - "gender": "F", - "height": "177", - "weight": "60", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 30, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Kasumi Ishikawa", - "gender": "F", - "height": "158", - "weight": "51", - "sport": "Table Tennis", - "team": "Japan", - "noc": "JPN", - "age": 23, - "event": "Table Tennis Women's Team", - "medal": "Bronze" - }, - { - "name": "Mandy Islacker", - "gender": "F", - "height": "164", - "weight": "55", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Daniar Ismailow", - "gender": "M", - "height": "173", - "weight": "69", - "sport": "Weightlifting", - "team": "Turkey", - "noc": "TUR", - "age": 24, - "event": "Weightlifting Men's Lightweight", - "medal": "Silver" - }, - { - "name": "Mima Ito", - "gender": "F", - "height": "150", - "weight": "45", - "sport": "Table Tennis", - "team": "Japan", - "noc": "JPN", - "age": 15, - "event": "Table Tennis Women's Team", - "medal": "Bronze" - }, - { - "name": "Yevgeniya Andreyevna Ivanova", - "gender": "F", - "height": "176", - "weight": "68", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 29, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Ja Dong-Min", - "gender": "M", - "height": "190", - "weight": "91", - "sport": "Taekwondo", - "team": "South Korea", - "noc": "KOR", - "age": 29, - "event": "Taekwondo Men's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Shericka Jackson", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 22, - "event": "Athletics Women's 400 metres", - "medal": "Bronze" - }, - { - "name": "Shericka Jackson", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 22, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Nicolas Jacobi", - "gender": "M", - "height": "193", - "weight": "95", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Connor Jaeger", - "gender": "M", - "height": "185", - "weight": "77", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Swimming Men's 1,500 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Thomas \"Tom\" Jaeschke", - "gender": "M", - "height": "198", - "weight": "91", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Evan Reese Jager", - "gender": "M", - "height": "188", - "weight": "65", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Athletics Men's 3,000 metres Steeplechase", - "medal": "Silver" - }, - { - "name": "Eva Sofia Jakobsson", - "gender": "F", - "height": "174", - "weight": "62", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 26, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Malte Jakschik", - "gender": "M", - "height": "194", - "weight": "93", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 23, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Nikola Jaki", - "gender": "M", - "height": "197", - "weight": "89", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 19, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Rebecca Angharad \"Becky\" James", - "gender": "F", - "height": "171", - "weight": "66", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Cycling Women's Sprint", - "medal": "Silver" - }, - { - "name": "Rebecca Angharad \"Becky\" James", - "gender": "F", - "height": "171", - "weight": "66", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Cycling Women's Keirin", - "medal": "Silver" - }, - { - "name": "Kirani James", - "gender": "M", - "height": "180", - "weight": "66", - "sport": "Athletics", - "team": "Grenada", - "noc": "GRN", - "age": 23, - "event": "Athletics Men's 400 metres", - "medal": "Silver" - }, - { - "name": "Andrei Jms", - "gender": "M", - "height": "184", - "weight": "90", - "sport": "Rowing", - "team": "Estonia", - "noc": "EST", - "age": 34, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Bronze" - }, - { - "name": "Inge Janssen", - "gender": "F", - "height": "182", - "weight": "74", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 27, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Silver" - }, - { - "name": "Daniel Jasinski", - "gender": "M", - "height": "207", - "weight": "120", - "sport": "Athletics", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Athletics Men's Discus Throw", - "medal": "Bronze" - }, - { - "name": "Ruth Jebet", - "gender": "F", - "height": "162", - "weight": "51", - "sport": "Athletics", - "team": "Bahrain", - "noc": "BRN", - "age": 19, - "event": "Athletics Women's 3,000 metres Steeplechase", - "medal": "Gold" - }, - { - "name": "Lindsay Jennerich", - "gender": "F", - "height": "165", - "weight": "59", - "sport": "Rowing", - "team": "Canada", - "noc": "CAN", - "age": 34, - "event": "Rowing Women's Lightweight Double Sculls", - "medal": "Silver" - }, - { - "name": "Henrik Mllgaard Jensen", - "gender": "M", - "height": "197", - "weight": "102", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 31, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Iain Jensen", - "gender": "M", - "height": "186", - "weight": "80", - "sport": "Sailing", - "team": "Australia", - "noc": "AUS", - "age": 28, - "event": "Sailing Men's Skiff", - "medal": "Silver" - }, - { - "name": "Jeong Bo-Kyeong", - "gender": "F", - "height": "153", - "weight": "51", - "sport": "Judo", - "team": "South Korea", - "noc": "KOR", - "age": 25, - "event": "Judo Women's Extra-Lightweight", - "medal": "Silver" - }, - { - "name": "Jeong Gyeong-Eun", - "gender": "F", - "height": "172", - "weight": "59", - "sport": "Badminton", - "team": "South Korea-1", - "noc": "KOR", - "age": 26, - "event": "Badminton Women's Doubles", - "medal": "Bronze" - }, - { - "name": "Daniel Jrent", - "gender": "M", - "height": "189", - "weight": "84", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 25, - "event": "Fencing Men's epee, Team", - "medal": "Gold" - }, - { - "name": "Jin Jong-O", - "gender": "M", - "height": "175", - "weight": "78", - "sport": "Shooting", - "team": "South Korea", - "noc": "KOR", - "age": 36, - "event": "Shooting Men's Free Pistol, 50 metres", - "medal": "Gold" - }, - { - "name": "Eric Johannesen", - "gender": "M", - "height": "193", - "weight": "100", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Emma Karolina Johansson", - "gender": "F", - "height": "168", - "weight": "54", - "sport": "Cycling", - "team": "Sweden", - "noc": "SWE", - "age": 32, - "event": "Cycling Women's Road Race, Individual", - "medal": "Silver" - }, - { - "name": "Ashleigh Johnson", - "gender": "F", - "height": "186", - "weight": "81", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Steele Alexander Johnson", - "gender": "M", - "height": "188", - "weight": "80", - "sport": "Diving", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Diving Men's Synchronized Platform", - "medal": "Silver" - }, - { - "name": "Steve Johnson", - "gender": "M", - "height": "188", - "weight": "86", - "sport": "Tennis", - "team": "United States-2", - "noc": "USA", - "age": 26, - "event": "Tennis Men's Doubles", - "medal": "Bronze" - }, - { - "name": "Nikola Joki", - "gender": "M", - "height": "209", - "weight": "115", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 21, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Maro Jokovi", - "gender": "M", - "height": "203", - "weight": "95", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 28, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Jade Louise Jones", - "gender": "F", - "height": "156", - "weight": "57", - "sport": "Taekwondo", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Taekwondo Women's Featherweight", - "medal": "Gold" - }, - { - "name": "Luuka Jones", - "gender": "F", - "height": "172", - "weight": "68", - "sport": "Canoeing", - "team": "New Zealand", - "noc": "NZL", - "age": 27, - "event": "Canoeing Women's Kayak Singles, Slalom", - "medal": "Silver" - }, - { - "name": "Kelly Maria Jonker", - "gender": "F", - "height": "159", - "weight": "59", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 26, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Hyland DeAndre Jordan, Jr.", - "gender": "M", - "height": "211", - "weight": "120", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Gwen Rosemary Jorgensen (-Lemieux)", - "gender": "F", - "height": "178", - "weight": "59", - "sport": "Triathlon", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Triathlon Women's Olympic Distance", - "medal": "Gold" - }, - { - "name": "Nevena Jovanovi", - "gender": "F", - "height": "179", - "weight": "72", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 26, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Stefan Jovi", - "gender": "M", - "height": "196", - "weight": "94", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 25, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Joseph \"Joe\" Joyce", - "gender": "M", - "height": "197", - "weight": "108", - "sport": "Boxing", - "team": "Great Britain", - "noc": "GBR", - "age": 30, - "event": "Boxing Men's Super-Heavyweight", - "medal": "Silver" - }, - { - "name": "Emma Aastrand Jrgensen", - "gender": "F", - "height": "169", - "weight": "70", - "sport": "Canoeing", - "team": "Denmark", - "noc": "DEN", - "age": 20, - "event": "Canoeing Women's Kayak Singles, 500 metres", - "medal": "Silver" - }, - { - "name": "Morten Jrgensen", - "gender": "M", - "height": "183", - "weight": "73", - "sport": "Rowing", - "team": "Denmark", - "noc": "DEN", - "age": 31, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Silver" - }, - { - "name": "Osmany Juantorena Portuondo", - "gender": "M", - "height": "200", - "weight": "85", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 30, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Kamilla Rytter Juhl", - "gender": "F", - "height": "183", - "weight": "71", - "sport": "Badminton", - "team": "Denmark", - "noc": "DEN", - "age": 32, - "event": "Badminton Women's Doubles", - "medal": "Silver" - }, - { - "name": "Michael Jung", - "gender": "M", - "height": "168", - "weight": "70", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 34, - "event": "Equestrianism Mixed Three-Day Event, Individual", - "medal": "Gold" - }, - { - "name": "Michael Jung", - "gender": "M", - "height": "168", - "weight": "70", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 34, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Silver" - }, - { - "name": "Henri Junghnel", - "gender": "M", - "height": "179", - "weight": "80", - "sport": "Shooting", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Shooting Men's Small-Bore Rifle, Prone, 50 metres", - "medal": "Gold" - }, - { - "name": "Pavlos Kagialis", - "gender": "M", - "height": "184", - "weight": "74", - "sport": "Sailing", - "team": "Greece", - "noc": "GRE", - "age": 32, - "event": "Sailing Men's Two Person Dinghy", - "medal": "Bronze" - }, - { - "name": "Nikola Kalini", - "gender": "M", - "height": "202", - "weight": "102", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 24, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Viktoriya Viktorovna Kalinina", - "gender": "F", - "height": "183", - "weight": "74", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Chase Tyler Kalisz", - "gender": "M", - "height": "193", - "weight": "86", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Swimming Men's 400 metres Individual Medley", - "medal": "Silver" - }, - { - "name": "Reneta Kamberova", - "gender": "F", - "height": "170", - "weight": "53", - "sport": "Rhythmic Gymnastics", - "team": "Bulgaria", - "noc": "BUL", - "age": 25, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Bronze" - }, - { - "name": "Sergey Igorevich Kamensky", - "gender": "M", - "height": "178", - "weight": "73", - "sport": "Shooting", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Shooting Men's Small-Bore Rifle, Three Positions, 50 metres", - "medal": "Silver" - }, - { - "name": "Jacob Robert \"Jake\" Linde-Kaminski ", - "gender": "M", - "height": "178", - "weight": "70", - "sport": "Archery", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Archery Men's Team", - "medal": "Silver" - }, - { - "name": "Rie Kaneto", - "gender": "F", - "height": "175", - "weight": "64", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Swimming Women's 200 metres Breaststroke", - "medal": "Gold" - }, - { - "name": "Boglrka Kaps", - "gender": "F", - "height": "168", - "weight": "54", - "sport": "Swimming", - "team": "Hungary", - "noc": "HUN", - "age": 23, - "event": "Swimming Women's 800 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Luka Karabatic", - "gender": "M", - "height": "202", - "weight": "108", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Nikola Karabatic", - "gender": "M", - "height": "194", - "weight": "104", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 32, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Elvina Khaydaryanovna Karimova", - "gender": "F", - "height": "166", - "weight": "62", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Anna Olegovna Karnaukh", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Monika Karsch", - "gender": "F", - "height": "158", - "weight": "55", - "sport": "Shooting", - "team": "Germany", - "noc": "GER", - "age": 33, - "event": "Shooting Women's Sporting Pistol, 25 metres", - "medal": "Silver" - }, - { - "name": "Ryohei Kato", - "gender": "M", - "height": "162", - "weight": "54", - "sport": "Gymnastics", - "team": "Japan", - "noc": "JPN", - "age": 22, - "event": "Gymnastics Men's Team All-Around", - "medal": "Gold" - }, - { - "name": "Peter Kauzer", - "gender": "M", - "height": "177", - "weight": "70", - "sport": "Canoeing", - "team": "Slovenia", - "noc": "SLO", - "age": 32, - "event": "Canoeing Men's Kayak Singles, Slalom", - "medal": "Silver" - }, - { - "name": "Risako Kawai", - "gender": "F", - "height": "160", - "weight": "61", - "sport": "Wrestling", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Wrestling Women's Middleweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Rza Kayaalp", - "gender": "M", - "height": "182", - "weight": "130", - "sport": "Wrestling", - "team": "Turkey", - "noc": "TUR", - "age": 26, - "event": "Wrestling Men's Super-Heavyweight, Greco-Roman", - "medal": "Silver" - }, - { - "name": "Lyubomira Kazanova", - "gender": "F", - "height": "177", - "weight": "56", - "sport": "Rhythmic Gymnastics", - "team": "Bulgaria", - "noc": "BUL", - "age": 20, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Bronze" - }, - { - "name": "Shaun Keeling", - "gender": "M", - "height": "196", - "weight": "94", - "sport": "Rowing", - "team": "South Africa", - "noc": "RSA", - "age": 29, - "event": "Rowing Men's Coxless Pairs", - "medal": "Silver" - }, - { - "name": "Maddison Keeney", - "gender": "F", - "height": "167", - "weight": "62", - "sport": "Diving", - "team": "Australia", - "noc": "AUS", - "age": 20, - "event": "Diving Women's Synchronized Springboard", - "medal": "Bronze" - }, - { - "name": "Marloes Keetels", - "gender": "F", - "height": "172", - "weight": "66", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 23, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Majlinda Kelmendi", - "gender": "F", - "height": "162", - "weight": "52", - "sport": "Judo", - "team": "Kosovo", - "noc": "KOS", - "age": 25, - "event": "Judo Women's Half-Lightweight", - "medal": "Gold" - }, - { - "name": "Tabea Kemme", - "gender": "F", - "height": "169", - "weight": "56", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Tams Kenderesi", - "gender": "M", - "height": "186", - "weight": "74", - "sport": "Swimming", - "team": "Hungary", - "noc": "HUN", - "age": 19, - "event": "Swimming Men's 200 metres Butterfly", - "medal": "Bronze" - }, - { - "name": "Sam Kendricks", - "gender": "M", - "height": "185", - "weight": "80", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Athletics Men's Pole Vault", - "medal": "Bronze" - }, - { - "name": "Jason Francis Kenny", - "gender": "M", - "height": "178", - "weight": "81", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Cycling Men's Sprint", - "medal": "Gold" - }, - { - "name": "Jason Francis Kenny", - "gender": "M", - "height": "178", - "weight": "81", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Cycling Men's Keirin", - "medal": "Gold" - }, - { - "name": "Jason Francis Kenny", - "gender": "M", - "height": "178", - "weight": "81", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Cycling Men's Team Sprint", - "medal": "Gold" - }, - { - "name": "Angelique Kerber", - "gender": "F", - "height": "173", - "weight": "68", - "sport": "Tennis", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Tennis Women's Singles", - "medal": "Silver" - }, - { - "name": "Isabel Kerschowski", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Khasan Magometovich Khalmurzayev", - "gender": "M", - "height": "182", - "weight": "81", - "sport": "Judo", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Judo Men's Half-Middleweight", - "medal": "Gold" - }, - { - "name": "Farkhad Ibragimovich Kharki", - "gender": "M", - "height": "160", - "weight": "62", - "sport": "Weightlifting", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 25, - "event": "Weightlifting Men's Featherweight", - "medal": "Bronze" - }, - { - "name": "Olha Hennadivna Kharlan", - "gender": "F", - "height": "172", - "weight": "68", - "sport": "Fencing", - "team": "Ukraine", - "noc": "UKR", - "age": 25, - "event": "Fencing Women's Sabre, Individual", - "medal": "Bronze" - }, - { - "name": "Olha Hennadivna Kharlan", - "gender": "F", - "height": "172", - "weight": "68", - "sport": "Fencing", - "team": "Ukraine", - "noc": "UKR", - "age": 25, - "event": "Fencing Women's Sabre, Team", - "medal": "Silver" - }, - { - "name": "Vladimer Khinchegashvili", - "gender": "M", - "height": "170", - "weight": "57", - "sport": "Wrestling", - "team": "Georgia", - "noc": "GEO", - "age": 25, - "event": "Wrestling Men's Featherweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Olga Sergeyevna Khudenko", - "gender": "F", - "height": "178", - "weight": "78", - "sport": "Canoeing", - "team": "Belarus", - "noc": "BLR", - "age": 24, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Bronze" - }, - { - "name": "Ki Bo-Bae", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 28, - "event": "Archery Women's Individual", - "medal": "Bronze" - }, - { - "name": "Ki Bo-Bae", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 28, - "event": "Archery Women's Team", - "medal": "Gold" - }, - { - "name": "Faith Chepngetich Kibiegon", - "gender": "F", - "height": "157", - "weight": "43", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 22, - "event": "Athletics Women's 1,500 metres", - "medal": "Gold" - }, - { - "name": "Kim Hyeon-Wu", - "gender": "M", - "height": "173", - "weight": "80", - "sport": "Wrestling", - "team": "South Korea", - "noc": "KOR", - "age": 27, - "event": "Wrestling Men's Middleweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Kim Jeong-Hwan", - "gender": "M", - "height": "178", - "weight": "66", - "sport": "Fencing", - "team": "South Korea", - "noc": "KOR", - "age": 32, - "event": "Fencing Men's Sabre, Individual", - "medal": "Bronze" - }, - { - "name": "Kim Jong-Hyeon", - "gender": "M", - "height": "170", - "weight": "73", - "sport": "Shooting", - "team": "South Korea", - "noc": "KOR", - "age": 31, - "event": "Shooting Men's Small-Bore Rifle, Prone, 50 metres", - "medal": "Silver" - }, - { - "name": "Kim Kuk-Hyang", - "gender": "F", - "height": "170", - "weight": "100", - "sport": "Weightlifting", - "team": "North Korea", - "noc": "PRK", - "age": 23, - "event": "Weightlifting Women's Super-Heavyweight", - "medal": "Silver" - }, - { - "name": "Kim So-Hui", - "gender": "F", - "height": "164", - "weight": "50", - "sport": "Taekwondo", - "team": "South Korea", - "noc": "KOR", - "age": 22, - "event": "Taekwondo Women's Flyweight", - "medal": "Gold" - }, - { - "name": "Kim Song-Guk", - "gender": "M", - "height": "167", - "weight": "75", - "sport": "Shooting", - "team": "North Korea", - "noc": "PRK", - "age": 30, - "event": "Shooting Men's Free Pistol, 50 metres", - "medal": "Bronze" - }, - { - "name": "Kim Song-I", - "gender": "F", - "height": "161", - "weight": "55", - "sport": "Table Tennis", - "team": "North Korea", - "noc": "PRK", - "age": 21, - "event": "Table Tennis Women's Singles", - "medal": "Bronze" - }, - { - "name": "Kim Tae-Hun", - "gender": "M", - "height": "182", - "weight": "59", - "sport": "Taekwondo", - "team": "South Korea", - "noc": "KOR", - "age": 21, - "event": "Taekwondo Men's Flyweight", - "medal": "Bronze" - }, - { - "name": "Kim Woo-Jin", - "gender": "M", - "height": "180", - "weight": "95", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 24, - "event": "Archery Men's Team", - "medal": "Gold" - }, - { - "name": "Lilly King", - "gender": "F", - "height": "175", - "weight": "70", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 100 metres Breaststroke", - "medal": "Gold" - }, - { - "name": "Lilly King", - "gender": "F", - "height": "175", - "weight": "70", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Eliud Kipchoge", - "gender": "M", - "height": "167", - "weight": "57", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 31, - "event": "Athletics Men's Marathon", - "medal": "Gold" - }, - { - "name": "Conseslus Kipruto", - "gender": "M", - "height": "167", - "weight": "58", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 21, - "event": "Athletics Men's 3,000 metres Steeplechase", - "medal": "Gold" - }, - { - "name": "Eunice Jepkirui Kirwa", - "gender": "F", - "height": "155", - "weight": "49", - "sport": "Athletics", - "team": "Bahrain", - "noc": "BRN", - "age": 32, - "event": "Athletics Women's Marathon", - "medal": "Silver" - }, - { - "name": "Yoshihide Kiryu", - "gender": "M", - "height": "175", - "weight": "68", - "sport": "Athletics", - "team": "Japan", - "noc": "JPN", - "age": 20, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Jennifer \"Jen\" Kish", - "gender": "F", - "height": "172", - "weight": "73", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 28, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Hyvin Kiyeng Jepkemoi", - "gender": "F", - "height": "162", - "weight": "42", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 24, - "event": "Athletics Women's 3,000 metres Steeplechase", - "medal": "Silver" - }, - { - "name": "Gauthier Klauss", - "gender": "M", - "height": "171", - "weight": "65", - "sport": "Canoeing", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Canoeing Men's Canadian Doubles, Slalom", - "medal": "Bronze" - }, - { - "name": "Ingrid Klimke (-Busacker)", - "gender": "F", - "height": "172", - "weight": "58", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 48, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Silver" - }, - { - "name": "Lukas Klostermann", - "gender": "M", - "height": "189", - "weight": "83", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 20, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Bo-Gyung \"Lydia\" Ko", - "gender": "F", - "height": "165", - "weight": "NA", - "sport": "Golf", - "team": "New Zealand", - "noc": "NZL", - "age": 19, - "event": "Golf Women's Individual", - "medal": "Silver" - }, - { - "name": "Yuki Kobori", - "gender": "M", - "height": "183", - "weight": "77", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 22, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Agnieszka Kobus", - "gender": "F", - "height": "177", - "weight": "68", - "sport": "Rowing", - "team": "Poland", - "noc": "POL", - "age": 25, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Bronze" - }, - { - "name": "Olga Aleksandrovna Kochneva", - "gender": "F", - "height": "168", - "weight": "58", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Fencing Women's epee, Team", - "medal": "Bronze" - }, - { - "name": "Madison Taylor Kocian", - "gender": "F", - "height": "157", - "weight": "46", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Gymnastics Women's Team All-Around", - "medal": "Gold" - }, - { - "name": "Madison Taylor Kocian", - "gender": "F", - "height": "157", - "weight": "46", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Gymnastics Women's Uneven Bars", - "medal": "Silver" - }, - { - "name": "Werner Kok", - "gender": "M", - "height": "180", - "weight": "91", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 23, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Sara Kolak", - "gender": "F", - "height": "170", - "weight": "74", - "sport": "Athletics", - "team": "Croatia", - "noc": "CRO", - "age": 21, - "event": "Athletics Women's Javelin Throw", - "medal": "Gold" - }, - { - "name": "Cheslin Kolbe", - "gender": "M", - "height": "179", - "weight": "89", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 22, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Svetlana Konstantinovna Kolesnichenko", - "gender": "F", - "height": "171", - "weight": "53", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Osea Kolinisau", - "gender": "M", - "height": "174", - "weight": "90", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 30, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Violetta Vitalyevna Kolobova", - "gender": "F", - "height": "176", - "weight": "64", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Fencing Women's epee, Team", - "medal": "Bronze" - }, - { - "name": "Alina Ivanivna Komashchuk", - "gender": "F", - "height": "169", - "weight": "75", - "sport": "Fencing", - "team": "Ukraine", - "noc": "UKR", - "age": 23, - "event": "Fencing Women's Sabre, Team", - "medal": "Silver" - }, - { - "name": "Ami Kondo", - "gender": "F", - "height": "156", - "weight": "48", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Judo Women's Extra-Lightweight", - "medal": "Bronze" - }, - { - "name": "Anna Korakaki", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Shooting", - "team": "Greece", - "noc": "GRE", - "age": 20, - "event": "Shooting Women's Air Pistol, 10 metres", - "medal": "Bronze" - }, - { - "name": "Anna Korakaki", - "gender": "F", - "height": "175", - "weight": "65", - "sport": "Shooting", - "team": "Greece", - "noc": "GRE", - "age": 20, - "event": "Shooting Women's Sporting Pistol, 25 metres", - "medal": "Gold" - }, - { - "name": "Joseph Mathias \"Joe\" Kovacs", - "gender": "M", - "height": "183", - "weight": "134", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Athletics Men's Shot Put", - "medal": "Silver" - }, - { - "name": "Danuta Kozk", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Canoeing", - "team": "Hungary", - "noc": "HUN", - "age": 29, - "event": "Canoeing Women's Kayak Singles, 500 metres", - "medal": "Gold" - }, - { - "name": "Danuta Kozk", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Canoeing", - "team": "Hungary", - "noc": "HUN", - "age": 29, - "event": "Canoeing Women's Kayak Doubles, 500 metres", - "medal": "Gold" - }, - { - "name": "Danuta Kozk", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Canoeing", - "team": "Hungary", - "noc": "HUN", - "age": 29, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Gold" - }, - { - "name": "Annike Berit Krahn", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 31, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Julia Krajewski", - "gender": "F", - "height": "168", - "weight": "65", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Silver" - }, - { - "name": "Ivan Krapi", - "gender": "M", - "height": "194", - "weight": "103", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 27, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Olena Vitalivna Kravatska", - "gender": "F", - "height": "176", - "weight": "66", - "sport": "Fencing", - "team": "Ukraine", - "noc": "UKR", - "age": 24, - "event": "Fencing Women's Sabre, Team", - "medal": "Silver" - }, - { - "name": "Jannick Green Krejberg", - "gender": "M", - "height": "195", - "weight": "95", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 27, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Steffi Kriegerstein", - "gender": "F", - "height": "178", - "weight": "70", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 23, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Silver" - }, - { - "name": "Veronica Egebakken Kristiansen", - "gender": "F", - "height": "175", - "weight": "68", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 26, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Sara Krnji", - "gender": "F", - "height": "193", - "weight": "83", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 25, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Luk Krplek", - "gender": "M", - "height": "197", - "weight": "105", - "sport": "Judo", - "team": "Czech Republic", - "noc": "CZE", - "age": 25, - "event": "Judo Men's Half-Heavyweight", - "medal": "Gold" - }, - { - "name": "Sinphet Kruaithong", - "gender": "M", - "height": "159", - "weight": "56", - "sport": "Weightlifting", - "team": "Thailand", - "noc": "THA", - "age": 20, - "event": "Weightlifting Men's Bantamweight", - "medal": "Bronze" - }, - { - "name": "Hannah Krger", - "gender": "F", - "height": "173", - "weight": "67", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Ku Bon-Chan", - "gender": "M", - "height": "181", - "weight": "84", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 23, - "event": "Archery Men's Individual", - "medal": "Gold" - }, - { - "name": "Ku Bon-Chan", - "gender": "M", - "height": "181", - "weight": "84", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 23, - "event": "Archery Men's Team", - "medal": "Gold" - }, - { - "name": "Matthew Gregory \"Matt\" Kuchar", - "gender": "M", - "height": "193", - "weight": "86", - "sport": "Golf", - "team": "United States", - "noc": "USA", - "age": 38, - "event": "Golf Men's Individual", - "medal": "Bronze" - }, - { - "name": "Denis Maksymilian Kudla", - "gender": "M", - "height": "184", - "weight": "90", - "sport": "Wrestling", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Wrestling Men's Light-Heavyweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Yana Alekseyevna Kudryavtseva", - "gender": "F", - "height": "170", - "weight": "47", - "sport": "Rhythmic Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 18, - "event": "Rhythmic Gymnastics Women's Individual", - "medal": "Silver" - }, - { - "name": "Andreas Kuffner", - "gender": "M", - "height": "196", - "weight": "94", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Julius Khn", - "gender": "M", - "height": "198", - "weight": "110", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 23, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Nikolay Yulyevich Kuksenkov", - "gender": "M", - "height": "172", - "weight": "65", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Gymnastics Men's Team All-Around", - "medal": "Silver" - }, - { - "name": "Jaroslav Kulhav", - "gender": "M", - "height": "188", - "weight": "77", - "sport": "Cycling", - "team": "Czech Republic", - "noc": "CZE", - "age": 31, - "event": "Cycling Men's Mountainbike, Cross-team", - "medal": "Silver" - }, - { - "name": "Serhiy Volodymyrovych Kulish", - "gender": "M", - "height": "176", - "weight": "64", - "sport": "Shooting", - "team": "Ukraine", - "noc": "UKR", - "age": 23, - "event": "Shooting Men's Air Rifle, 10 metres", - "medal": "Silver" - }, - { - "name": "Semi Kunabuli Kunatani", - "gender": "M", - "height": "192", - "weight": "98", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 25, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Kahena Kunze", - "gender": "F", - "height": "172", - "weight": "68", - "sport": "Sailing", - "team": "Brazil", - "noc": "BRA", - "age": 25, - "event": "Sailing Women's Skiff", - "medal": "Gold" - }, - { - "name": "Kuo Hsing-Chun", - "gender": "F", - "height": "157", - "weight": "58", - "sport": "Weightlifting", - "team": "Chinese Taipei", - "noc": "TPE", - "age": 22, - "event": "Weightlifting Women's Lightweight", - "medal": "Bronze" - }, - { - "name": "Amanda Maria Kurtovic", - "gender": "F", - "height": "175", - "weight": "71", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 25, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Polina Viktorovna Kuznetsova (Vyakhireva-)", - "gender": "F", - "height": "168", - "weight": "60", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 29, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Nataliya Yuryevna Kuzyutina", - "gender": "F", - "height": "160", - "weight": "52", - "sport": "Judo", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Judo Women's Half-Lightweight", - "medal": "Bronze" - }, - { - "name": "Petra Kvitov", - "gender": "F", - "height": "183", - "weight": "70", - "sport": "Tennis", - "team": "Czech Republic", - "noc": "CZE", - "age": 26, - "event": "Tennis Women's Singles", - "medal": "Bronze" - }, - { - "name": "Julio Csar La Cruz Peraza", - "gender": "M", - "height": "182", - "weight": "81", - "sport": "Boxing", - "team": "Cuba", - "noc": "CUB", - "age": 26, - "event": "Boxing Men's Light-Heavyweight", - "medal": "Gold" - }, - { - "name": "Stephanie Lynn Marie Labb", - "gender": "F", - "height": "178", - "weight": "53", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 29, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Alexandra Lacrabre", - "gender": "F", - "height": "177", - "weight": "73", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 29, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Karim Florent Laghouag", - "gender": "M", - "height": "177", - "weight": "70", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 40, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Gold" - }, - { - "name": "Eric Lamaze", - "gender": "M", - "height": "170", - "weight": "65", - "sport": "Equestrianism", - "team": "Canada", - "noc": "CAN", - "age": 48, - "event": "Equestrianism Mixed Jumping, Individual", - "medal": "Bronze" - }, - { - "name": "Niklas Landin Jacobsen", - "gender": "M", - "height": "201", - "weight": "102", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 27, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Laurisa Landre", - "gender": "F", - "height": "174", - "weight": "67", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 30, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Ghislaine Landry", - "gender": "F", - "height": "163", - "weight": "65", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 28, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Santiago Ral Lange Roberti", - "gender": "M", - "height": "184", - "weight": "73", - "sport": "Sailing", - "team": "Argentina", - "noc": "ARG", - "age": 54, - "event": "Sailing Mixed Multihull", - "medal": "Gold" - }, - { - "name": "Christopher Phillip \"Chris\" Langridge", - "gender": "M", - "height": "180", - "weight": "NA", - "sport": "Badminton", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Badminton Men's Doubles", - "medal": "Bronze" - }, - { - "name": "Matthew Keir \"Matt\" Langridge", - "gender": "M", - "height": "194", - "weight": "93", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 33, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Aurimas Lankas", - "gender": "M", - "height": "178", - "weight": "89", - "sport": "Canoeing", - "team": "Lithuania", - "noc": "LTU", - "age": 30, - "event": "Canoeing Men's Kayak Doubles, 200 metres", - "medal": "Bronze" - }, - { - "name": "Filippo Lanza", - "gender": "M", - "height": "198", - "weight": "98", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 25, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Yekaterina Alekseyevna Larionova", - "gender": "F", - "height": "158", - "weight": "63", - "sport": "Wrestling", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 22, - "event": "Wrestling Women's Middleweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Mitchell James \"Mitch\" Larkin", - "gender": "M", - "height": "187", - "weight": "72", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 23, - "event": "Swimming Men's 200 metres Backstroke", - "medal": "Silver" - }, - { - "name": "Mitchell James \"Mitch\" Larkin", - "gender": "M", - "height": "187", - "weight": "72", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 23, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Jacob Sgaard Larsen", - "gender": "M", - "height": "182", - "weight": "73", - "sport": "Rowing", - "team": "Denmark", - "noc": "DEN", - "age": 28, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Silver" - }, - { - "name": "Mads Mensah Larsen", - "gender": "M", - "height": "188", - "weight": "106", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 24, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Niklas Larsen", - "gender": "M", - "height": "180", - "weight": "74", - "sport": "Cycling", - "team": "Denmark", - "noc": "DEN", - "age": 19, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Bronze" - }, - { - "name": "Jordan Quinn Larson-Burbach", - "gender": "F", - "height": "188", - "weight": "75", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Simone Laudehr", - "gender": "F", - "height": "175", - "weight": "56", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 30, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Jack David Laugher", - "gender": "M", - "height": "166", - "weight": "65", - "sport": "Diving", - "team": "Great Britain", - "noc": "GBR", - "age": 21, - "event": "Diving Men's Springboard", - "medal": "Silver" - }, - { - "name": "Jack David Laugher", - "gender": "M", - "height": "166", - "weight": "65", - "sport": "Diving", - "team": "Great Britain", - "noc": "GBR", - "age": 21, - "event": "Diving Men's Synchronized Springboard", - "medal": "Gold" - }, - { - "name": "Renaud Lavillenie", - "gender": "M", - "height": "177", - "weight": "71", - "sport": "Athletics", - "team": "France", - "noc": "FRA", - "age": 29, - "event": "Athletics Men's Pole Vault", - "medal": "Silver" - }, - { - "name": "Ashley Lawrence", - "gender": "F", - "height": "163", - "weight": "59", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 21, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Kirsti Lay (-Giroux)", - "gender": "F", - "height": "173", - "weight": "65", - "sport": "Cycling", - "team": "Canada", - "noc": "CAN", - "age": 28, - "event": "Cycling Women's Team Pursuit", - "medal": "Bronze" - }, - { - "name": "Le Chien-Ying", - "gender": "F", - "height": "165", - "weight": "69", - "sport": "Archery", - "team": "Chinese Taipei", - "noc": "TPE", - "age": 26, - "event": "Archery Women's Team", - "medal": "Bronze" - }, - { - "name": "Chad Guy Bertrand le Clos", - "gender": "M", - "height": "190", - "weight": "83", - "sport": "Swimming", - "team": "South Africa", - "noc": "RSA", - "age": 24, - "event": "Swimming Men's 200 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Chad Guy Bertrand le Clos", - "gender": "M", - "height": "190", - "weight": "83", - "sport": "Swimming", - "team": "South Africa", - "noc": "RSA", - "age": 24, - "event": "Swimming Men's 100 metres Butterfly", - "medal": "Silver" - }, - { - "name": "Pierre Le Coq", - "gender": "M", - "height": "186", - "weight": "72", - "sport": "Sailing", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Sailing Men's Windsurfer", - "medal": "Bronze" - }, - { - "name": "Erwann Lucien douard Le Pchoux", - "gender": "M", - "height": "171", - "weight": "65", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 34, - "event": "Fencing Men's Foil, Team", - "medal": "Silver" - }, - { - "name": "Barbara Lechner-Engleder", - "gender": "F", - "height": "162", - "weight": "72", - "sport": "Shooting", - "team": "Germany", - "noc": "GER", - "age": 33, - "event": "Shooting Women's Small-Bore Rifle, Three Positions, 50 metres", - "medal": "Gold" - }, - { - "name": "Camille Lecointre", - "gender": "F", - "height": "159", - "weight": "56", - "sport": "Sailing", - "team": "France", - "noc": "FRA", - "age": 31, - "event": "Sailing Women's Two Person Dinghy", - "medal": "Bronze" - }, - { - "name": "Kathleen Genevieve \"Katie\" Ledecky", - "gender": "F", - "height": "183", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 200 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Kathleen Genevieve \"Katie\" Ledecky", - "gender": "F", - "height": "183", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 400 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Kathleen Genevieve \"Katie\" Ledecky", - "gender": "F", - "height": "183", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 800 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Kathleen Genevieve \"Katie\" Ledecky", - "gender": "F", - "height": "183", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Kathleen Genevieve \"Katie\" Ledecky", - "gender": "F", - "height": "183", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Lee Chong Wei", - "gender": "M", - "height": "170", - "weight": "68", - "sport": "Badminton", - "team": "Malaysia", - "noc": "MAS", - "age": 33, - "event": "Badminton Men's Singles", - "medal": "Silver" - }, - { - "name": "Lee Dae-Hun", - "gender": "M", - "height": "183", - "weight": "70", - "sport": "Taekwondo", - "team": "South Korea", - "noc": "KOR", - "age": 24, - "event": "Taekwondo Men's Featherweight", - "medal": "Bronze" - }, - { - "name": "David Cameron Lee", - "gender": "M", - "height": "203", - "weight": "105", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 34, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Lee Seung-Yun", - "gender": "M", - "height": "174", - "weight": "80", - "sport": "Archery", - "team": "South Korea", - "noc": "KOR", - "age": 21, - "event": "Archery Men's Team", - "medal": "Gold" - }, - { - "name": "Zoe Samantha Lee", - "gender": "F", - "height": "176", - "weight": "70", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 30, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Enzo-Boris Lefort", - "gender": "M", - "height": "190", - "weight": "80", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Fencing Men's Foil, Team", - "medal": "Silver" - }, - { - "name": "Christophe Alexandre Christian Lematre", - "gender": "M", - "height": "190", - "weight": "74", - "sport": "Athletics", - "team": "France", - "noc": "FRA", - "age": 26, - "event": "Athletics Men's 200 metres", - "medal": "Bronze" - }, - { - "name": "Finn Lemke", - "gender": "M", - "height": "210", - "weight": "115", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Mathieu Lemoine", - "gender": "M", - "height": "176", - "weight": "70", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 32, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Gold" - }, - { - "name": "Pnlope Leprvost", - "gender": "F", - "height": "175", - "weight": "55", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 36, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Gold" - }, - { - "name": "Aleksandr Leonidovich Lesun", - "gender": "M", - "height": "185", - "weight": "74", - "sport": "Modern Pentathlon", - "team": "Russia", - "noc": "RUS", - "age": 28, - "event": "Modern Pentathlon Men's Individual", - "medal": "Gold" - }, - { - "name": "Joanna Leszczyska", - "gender": "F", - "height": "183", - "weight": "75", - "sport": "Rowing", - "team": "Poland", - "noc": "POL", - "age": 27, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Bronze" - }, - { - "name": "Melanie Leupolz", - "gender": "F", - "height": "173", - "weight": "52", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 22, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Laurien Leurink", - "gender": "F", - "height": "173", - "weight": "67", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 21, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Olga Sergeyevna Levina-Akopyan", - "gender": "F", - "height": "176", - "weight": "63", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 31, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Vasily Alekseyevich Levit", - "gender": "M", - "height": "185", - "weight": "91", - "sport": "Boxing", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 28, - "event": "Boxing Men's Heavyweight", - "medal": "Silver" - }, - { - "name": "Amandine Suzanne Monique Leynaud", - "gender": "F", - "height": "178", - "weight": "64", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 30, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Danell Johan Leyva Gonzalez", - "gender": "M", - "height": "170", - "weight": "68", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Gymnastics Men's Parallel Bars", - "medal": "Silver" - }, - { - "name": "Danell Johan Leyva Gonzalez", - "gender": "M", - "height": "170", - "weight": "68", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Gymnastics Men's Horizontal Bar", - "medal": "Silver" - }, - { - "name": "Li Dan", - "gender": "F", - "height": "155", - "weight": "47", - "sport": "Trampolining", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Trampolining Women's Individual", - "medal": "Bronze" - }, - { - "name": "Li Qian", - "gender": "F", - "height": "180", - "weight": "75", - "sport": "Boxing", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Boxing Women's Middleweight", - "medal": "Bronze" - }, - { - "name": "Li Xiaolu", - "gender": "F", - "height": "167", - "weight": "51", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "Li Xiaoxia", - "gender": "F", - "height": "174", - "weight": "65", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 28, - "event": "Table Tennis Women's Singles", - "medal": "Silver" - }, - { - "name": "Li Xiaoxia", - "gender": "F", - "height": "174", - "weight": "65", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 28, - "event": "Table Tennis Women's Team", - "medal": "Gold" - }, - { - "name": "Li Yuehong", - "gender": "M", - "height": "173", - "weight": "71", - "sport": "Shooting", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Shooting Men's Rapid-Fire Pistol, 25 metres", - "medal": "Bronze" - }, - { - "name": "Liang Xinping", - "gender": "F", - "height": "171", - "weight": "60", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 22, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "Tom Liebscher", - "gender": "M", - "height": "189", - "weight": "89", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 23, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Julia Lier", - "gender": "F", - "height": "183", - "weight": "78", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Gold" - }, - { - "name": "Elis Ligtlee", - "gender": "F", - "height": "185", - "weight": "90", - "sport": "Cycling", - "team": "Netherlands", - "noc": "NED", - "age": 22, - "event": "Cycling Women's Keirin", - "medal": "Gold" - }, - { - "name": "Feyisa Lilesa", - "gender": "M", - "height": "175", - "weight": "67", - "sport": "Athletics", - "team": "Ethiopia", - "noc": "ETH", - "age": 26, - "event": "Athletics Men's Marathon", - "medal": "Silver" - }, - { - "name": "Lin Chaopan", - "gender": "M", - "height": "163", - "weight": "60", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 20, - "event": "Gymnastics Men's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Lin Li", - "gender": "F", - "height": "171", - "weight": "70", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Lin Shih-Chia", - "gender": "F", - "height": "160", - "weight": "65", - "sport": "Archery", - "team": "Chinese Taipei", - "noc": "TPE", - "age": 23, - "event": "Archery Women's Team", - "medal": "Bronze" - }, - { - "name": "Lin Yue", - "gender": "M", - "height": "163", - "weight": "53", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Diving Men's Synchronized Platform", - "medal": "Gold" - }, - { - "name": "Rut Hedvig Lindahl", - "gender": "F", - "height": "179", - "weight": "74", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 33, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Oliver William Lindsay-Hague", - "gender": "M", - "height": "180", - "weight": "83", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Edward Theodore \"Ed\" Ling", - "gender": "M", - "height": "180", - "weight": "80", - "sport": "Shooting", - "team": "Great Britain", - "noc": "GBR", - "age": 33, - "event": "Shooting Men's Trap", - "medal": "Bronze" - }, - { - "name": "Tibor Linka", - "gender": "M", - "height": "199", - "weight": "95", - "sport": "Canoeing", - "team": "Slovakia", - "noc": "SVK", - "age": 21, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Varlam Lip'art'eliani", - "gender": "M", - "height": "187", - "weight": "94", - "sport": "Judo", - "team": "Georgia", - "noc": "GEO", - "age": 27, - "event": "Judo Men's Middleweight", - "medal": "Silver" - }, - { - "name": "Liu Hong", - "gender": "F", - "height": "160", - "weight": "50", - "sport": "Athletics", - "team": "China", - "noc": "CHN", - "age": 29, - "event": "Athletics Women's 20 kilometres Walk", - "medal": "Gold" - }, - { - "name": "Liu Huixia", - "gender": "F", - "height": "157", - "weight": "48", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 18, - "event": "Diving Women's Synchronized Platform", - "medal": "Gold" - }, - { - "name": "Liu Shiwen", - "gender": "F", - "height": "160", - "weight": "54", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Table Tennis Women's Team", - "medal": "Gold" - }, - { - "name": "Liu Xiaotong", - "gender": "F", - "height": "188", - "weight": "70", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Liu Yang", - "gender": "M", - "height": "162", - "weight": "61", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 21, - "event": "Gymnastics Men's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Hac liyev", - "gender": "M", - "height": "168", - "weight": "65", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 25, - "event": "Wrestling Men's Featherweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Carli Ellen Lloyd", - "gender": "F", - "height": "180", - "weight": "75", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Sergio Llull Meli", - "gender": "M", - "height": "192", - "weight": "91", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 28, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Ryan Steven Lochte", - "gender": "M", - "height": "188", - "weight": "88", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 32, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "William Lockwood", - "gender": "M", - "height": "191", - "weight": "88", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 28, - "event": "Rowing Men's Coxless Fours", - "medal": "Silver" - }, - { - "name": "Matteo Lodo", - "gender": "M", - "height": "196", - "weight": "90", - "sport": "Rowing", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Rowing Men's Coxless Fours", - "medal": "Bronze" - }, - { - "name": "Eleanor \"Elle\" Logan", - "gender": "F", - "height": "188", - "weight": "86", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Tatyana Yuryevna Logunova", - "gender": "F", - "height": "174", - "weight": "62", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 36, - "event": "Fencing Women's epee, Team", - "medal": "Bronze" - }, - { - "name": "Luka Lonar", - "gender": "M", - "height": "195", - "weight": "106", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 29, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Long Qingquan", - "gender": "M", - "height": "150", - "weight": "56", - "sport": "Weightlifting", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Weightlifting Men's Bantamweight", - "medal": "Gold" - }, - { - "name": "Elisa Longo Borghini", - "gender": "F", - "height": "170", - "weight": "59", - "sport": "Cycling", - "team": "Italy", - "noc": "ITA", - "age": 24, - "event": "Cycling Women's Road Race, Individual", - "medal": "Bronze" - }, - { - "name": "Arlen Lpez Cardona", - "gender": "M", - "height": "178", - "weight": "75", - "sport": "Boxing", - "team": "Cuba", - "noc": "CUB", - "age": 23, - "event": "Boxing Men's Middleweight", - "medal": "Gold" - }, - { - "name": "Elena Lpez Benaches", - "gender": "F", - "height": "169", - "weight": "56", - "sport": "Rhythmic Gymnastics", - "team": "Spain", - "noc": "ESP", - "age": 21, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Silver" - }, - { - "name": "Juan Martn Lpez", - "gender": "M", - "height": "178", - "weight": "74", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 31, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Marc Lpez i Tarrs", - "gender": "M", - "height": "175", - "weight": "71", - "sport": "Tennis", - "team": "Spain-2", - "noc": "ESP", - "age": 34, - "event": "Tennis Men's Doubles", - "medal": "Gold" - }, - { - "name": "Mijan Lpez Nez", - "gender": "M", - "height": "198", - "weight": "130", - "sport": "Wrestling", - "team": "Cuba", - "noc": "CUB", - "age": 33, - "event": "Wrestling Men's Super-Heavyweight, Greco-Roman", - "medal": "Gold" - }, - { - "name": "Nike Lorenz", - "gender": "F", - "height": "170", - "weight": "69", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 19, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Constantine Michael Louloudis", - "gender": "M", - "height": "190", - "weight": "92", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Rowing Men's Coxless Fours", - "medal": "Gold" - }, - { - "name": "Karsta Lowe", - "gender": "F", - "height": "193", - "weight": "82", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Kyle Lowry", - "gender": "M", - "height": "183", - "weight": "93", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Heidi Lke", - "gender": "F", - "height": "173", - "weight": "68", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 33, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Lu Xiaojun", - "gender": "M", - "height": "172", - "weight": "77", - "sport": "Weightlifting", - "team": "China", - "noc": "CHN", - "age": 32, - "event": "Weightlifting Men's Middleweight", - "medal": "Silver" - }, - { - "name": "Lu Xiuzhi", - "gender": "F", - "height": "160", - "weight": "45", - "sport": "Athletics", - "team": "China", - "noc": "CHN", - "age": 22, - "event": "Athletics Women's 20 kilometres Walk", - "medal": "Bronze" - }, - { - "name": "Luan Guilherme de Jesus Vieira", - "gender": "M", - "height": "180", - "weight": "71", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 23, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Luan Garcia Teixeira", - "gender": "M", - "height": "183", - "weight": "79", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 23, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Ricardo Samuel Lucarelli Santos de Souza", - "gender": "M", - "height": "195", - "weight": "79", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 24, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Jean-Michel Lucenay", - "gender": "M", - "height": "186", - "weight": "78", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 38, - "event": "Fencing Men's epee, Team", - "medal": "Gold" - }, - { - "name": "Robert Lcken", - "gender": "M", - "height": "199", - "weight": "95", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 31, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Laura Ludwig", - "gender": "F", - "height": "181", - "weight": "70", - "sport": "Beach Volleyball", - "team": "Germany-1", - "noc": "GER", - "age": 30, - "event": "Beach Volleyball Women's Beach Volleyball", - "medal": "Gold" - }, - { - "name": "Yasmany Daniel Lugo Cabrera", - "gender": "M", - "height": "190", - "weight": "98", - "sport": "Wrestling", - "team": "Cuba", - "noc": "CUB", - "age": 26, - "event": "Wrestling Men's Heavyweight, Greco-Roman", - "medal": "Silver" - }, - { - "name": "Luiz Felipe Marques Fonteles", - "gender": "M", - "height": "196", - "weight": "89", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 32, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Megan Lukan", - "gender": "F", - "height": "170", - "weight": "58", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Kristine Lunde-Borgersen", - "gender": "F", - "height": "181", - "weight": "67", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 36, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Daniele Lupo", - "gender": "M", - "height": "183", - "weight": "77", - "sport": "Beach Volleyball", - "team": "Italy-1", - "noc": "ITA", - "age": 25, - "event": "Beach Volleyball Men's Beach Volleyball", - "medal": "Silver" - }, - { - "name": "Lock Luypaert", - "gender": "M", - "height": "181", - "weight": "78", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 24, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Ma Long", - "gender": "M", - "height": "175", - "weight": "72", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Table Tennis Men's Singles", - "medal": "Gold" - }, - { - "name": "Ma Long", - "gender": "M", - "height": "175", - "weight": "72", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Table Tennis Men's Team", - "medal": "Gold" - }, - { - "name": "Marko Macan", - "gender": "M", - "height": "196", - "weight": "109", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 23, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Brittany MacLean", - "gender": "F", - "height": "172", - "weight": "70", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 22, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Rosannagh \"Rosie\" MacLennan", - "gender": "F", - "height": "158", - "weight": "54", - "sport": "Trampolining", - "team": "Canada", - "noc": "CAN", - "age": 27, - "event": "Trampolining Women's Individual", - "medal": "Gold" - }, - { - "name": "Hannah Louise Macleod", - "gender": "F", - "height": "172", - "weight": "67", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 32, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Milan Mavan", - "gender": "M", - "height": "205", - "weight": "107", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 26, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Natalia Madaj", - "gender": "F", - "height": "175", - "weight": "68", - "sport": "Rowing", - "team": "Poland", - "noc": "POL", - "age": 28, - "event": "Rowing Women's Double Sculls", - "medal": "Gold" - }, - { - "name": "Elizabeth \"Beezie\" Madden (Patton-)", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 52, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Silver" - }, - { - "name": "Tianna Madison-Bartoletta", - "gender": "F", - "height": "168", - "weight": "58", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Tianna Madison-Bartoletta", - "gender": "F", - "height": "168", - "weight": "58", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Women's Long Jump", - "medal": "Gold" - }, - { - "name": "Frederik Rodenberg Madsen", - "gender": "M", - "height": "187", - "weight": "73", - "sport": "Cycling", - "team": "Denmark", - "noc": "DEN", - "age": 18, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Bronze" - }, - { - "name": "Mark Overgaard Madsen", - "gender": "M", - "height": "177", - "weight": "80", - "sport": "Wrestling", - "team": "Denmark", - "noc": "DEN", - "age": 31, - "event": "Wrestling Men's Middleweight, Greco-Roman", - "medal": "Silver" - }, - { - "name": "Kingsley Madu", - "gender": "M", - "height": "171", - "weight": "79", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 20, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Mihaela Maevska", - "gender": "F", - "height": "172", - "weight": "54", - "sport": "Rhythmic Gymnastics", - "team": "Bulgaria", - "noc": "BUL", - "age": 25, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Bronze" - }, - { - "name": "James Magnussen", - "gender": "M", - "height": "198", - "weight": "94", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 25, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Kentin Mah", - "gender": "M", - "height": "186", - "weight": "83", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 25, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Leonie Rebekka Maier", - "gender": "F", - "height": "163", - "weight": "62", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 23, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Sandrine Mainville", - "gender": "F", - "height": "173", - "weight": "65", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Rafa Majka", - "gender": "M", - "height": "173", - "weight": "61", - "sport": "Cycling", - "team": "Poland", - "noc": "POL", - "age": 26, - "event": "Cycling Men's Road Race, Individual", - "medal": "Bronze" - }, - { - "name": "Yekaterina Valeryevna Makarova", - "gender": "F", - "height": "176", - "weight": "65", - "sport": "Tennis", - "team": "Russia-2", - "noc": "RUS", - "age": 28, - "event": "Tennis Women's Doubles", - "medal": "Gold" - }, - { - "name": "Taoufik Makhloufi", - "gender": "M", - "height": "170", - "weight": "67", - "sport": "Athletics", - "team": "Algeria", - "noc": "ALG", - "age": 28, - "event": "Athletics Men's 800 metres", - "medal": "Silver" - }, - { - "name": "Taoufik Makhloufi", - "gender": "M", - "height": "170", - "weight": "67", - "sport": "Athletics", - "team": "Algeria", - "noc": "ALG", - "age": 28, - "event": "Athletics Men's 1,500 metres", - "medal": "Silver" - }, - { - "name": "Anastasiya Ivanovna Maksimova", - "gender": "F", - "height": "170", - "weight": "50", - "sport": "Rhythmic Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Gold" - }, - { - "name": "Hedaya Ahmad Malak Wahba", - "gender": "F", - "height": "174", - "weight": "57", - "sport": "Taekwondo", - "team": "Egypt", - "noc": "EGY", - "age": 23, - "event": "Taekwondo Women's Featherweight", - "medal": "Bronze" - }, - { - "name": "Tijana Maleevi", - "gender": "F", - "height": "185", - "weight": "78", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 25, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Sakshi Malik", - "gender": "F", - "height": "162", - "weight": "58", - "sport": "Wrestling", - "team": "India", - "noc": "IND", - "age": 23, - "event": "Wrestling Women's Lightweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Alexandra Maria \"Alex\" Maloney", - "gender": "F", - "height": "158", - "weight": "56", - "sport": "Sailing", - "team": "New Zealand", - "noc": "NZL", - "age": 24, - "event": "Sailing Women's Skiff", - "medal": "Silver" - }, - { - "name": "Mariya Ruslanovna Mamoshuk", - "gender": "F", - "height": "163", - "weight": "65", - "sport": "Wrestling", - "team": "Belarus", - "noc": "BLR", - "age": 23, - "event": "Wrestling Women's Middleweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Margarita Abdullayevna Mamun", - "gender": "F", - "height": "170", - "weight": "50", - "sport": "Rhythmic Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 20, - "event": "Rhythmic Gymnastics Women's Individual", - "medal": "Gold" - }, - { - "name": "Florent Manaudou", - "gender": "M", - "height": "199", - "weight": "99", - "sport": "Swimming", - "team": "France", - "noc": "FRA", - "age": 25, - "event": "Swimming Men's 50 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Florent Manaudou", - "gender": "M", - "height": "199", - "weight": "99", - "sport": "Swimming", - "team": "France", - "noc": "FRA", - "age": 25, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Duan Mandi", - "gender": "M", - "height": "202", - "weight": "105", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 22, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Panagiotis Mantis", - "gender": "M", - "height": "180", - "weight": "65", - "sport": "Sailing", - "team": "Greece", - "noc": "GRE", - "age": 34, - "event": "Sailing Men's Two Person Dinghy", - "medal": "Bronze" - }, - { - "name": "Huriana Manuel", - "gender": "F", - "height": "166", - "weight": "65", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 29, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Simone Ashley Manuel", - "gender": "F", - "height": "178", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Swimming Women's 50 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Simone Ashley Manuel", - "gender": "F", - "height": "178", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Swimming Women's 100 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Simone Ashley Manuel", - "gender": "F", - "height": "178", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Simone Ashley Manuel", - "gender": "F", - "height": "178", - "weight": "73", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Luvo Manyonga", - "gender": "M", - "height": "NA", - "weight": "NA", - "sport": "Athletics", - "team": "South Africa", - "noc": "RSA", - "age": 25, - "event": "Athletics Men's Long Jump", - "medal": "Silver" - }, - { - "name": "Gyuzel Tagirovna Manyurova", - "gender": "F", - "height": "174", - "weight": "75", - "sport": "Wrestling", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 38, - "event": "Wrestling Women's Heavyweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Mao Yi", - "gender": "F", - "height": "151", - "weight": "35", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 16, - "event": "Gymnastics Women's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Katy Louise Marchant", - "gender": "F", - "height": "170", - "weight": "72", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Cycling Women's Sprint", - "medal": "Bronze" - }, - { - "name": "Igor Mareni", - "gender": "M", - "height": "173", - "weight": "70", - "sport": "Sailing", - "team": "Croatia", - "noc": "CRO", - "age": 30, - "event": "Sailing Men's Two Person Dinghy", - "medal": "Gold" - }, - { - "name": "Yekaterina Aleksandrovna Marennikova", - "gender": "F", - "height": "176", - "weight": "70", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 34, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Cyrille Maret", - "gender": "M", - "height": "189", - "weight": "108", - "sport": "Judo", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Judo Men's Half-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Melanie Margalis", - "gender": "F", - "height": "173", - "weight": "65", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Arthur Nory Oyakawa Mariano", - "gender": "M", - "height": "169", - "weight": "65", - "sport": "Gymnastics", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Gymnastics Men's Floor Exercise", - "medal": "Bronze" - }, - { - "name": "Carolina Mara Marn Marn", - "gender": "F", - "height": "172", - "weight": "65", - "sport": "Badminton", - "team": "Spain", - "noc": "ESP", - "age": 23, - "event": "Badminton Women's Singles", - "medal": "Gold" - }, - { - "name": "Stefan Markovi", - "gender": "M", - "height": "199", - "weight": "96", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 28, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Helen Louise Maroulis", - "gender": "F", - "height": "163", - "weight": "57", - "sport": "Wrestling", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Wrestling Women's Featherweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Dzsenifer Marozsn", - "gender": "F", - "height": "171", - "weight": "68", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Marcos \"Marquinhos\" Aos Corra", - "gender": "M", - "height": "185", - "weight": "75", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Damir Martin", - "gender": "M", - "height": "189", - "weight": "97", - "sport": "Rowing", - "team": "Croatia", - "noc": "CRO", - "age": 28, - "event": "Rowing Men's Single Sculls", - "medal": "Silver" - }, - { - "name": "Yurberjen Herney Martnez Rivas", - "gender": "M", - "height": "165", - "weight": "49", - "sport": "Boxing", - "team": "Colombia", - "noc": "COL", - "age": 24, - "event": "Boxing Men's Light-Flyweight", - "medal": "Silver" - }, - { - "name": "Simon Martirosyan", - "gender": "M", - "height": "181", - "weight": "105", - "sport": "Weightlifting", - "team": "Armenia", - "noc": "ARM", - "age": 19, - "event": "Weightlifting Men's Heavyweight", - "medal": "Silver" - }, - { - "name": "Anita Mrton", - "gender": "F", - "height": "172", - "weight": "95", - "sport": "Athletics", - "team": "Hungary", - "noc": "HUN", - "age": 27, - "event": "Athletics Women's Shot Put", - "medal": "Bronze" - }, - { - "name": "Kei Marumo", - "gender": "F", - "height": "160", - "weight": "50", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 24, - "event": "Synchronized Swimming Women's Team", - "medal": "Bronze" - }, - { - "name": "Vladimir Anatolyevich Maslennikov", - "gender": "M", - "height": "171", - "weight": "73", - "sport": "Shooting", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Shooting Men's Air Rifle, 10 metres", - "medal": "Bronze" - }, - { - "name": "Kylie Jacqueline Masse", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 20, - "event": "Swimming Women's 100 metres Backstroke", - "medal": "Bronze" - }, - { - "name": "Kelly Massey", - "gender": "F", - "height": "178", - "weight": "57", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Alexander Chen Massialas", - "gender": "M", - "height": "188", - "weight": "81", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Fencing Men's Foil, Individual", - "medal": "Silver" - }, - { - "name": "Alexander Chen Massialas", - "gender": "M", - "height": "188", - "weight": "81", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Fencing Men's Foil, Team", - "medal": "Bronze" - }, - { - "name": "Luca Masso", - "gender": "M", - "height": "186", - "weight": "82", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 22, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Viliame Sevaka Mata", - "gender": "M", - "height": "196", - "weight": "106", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 24, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Diana Beverly Matheson", - "gender": "F", - "height": "153", - "weight": "54", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 32, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Courtney Lynn Kaiulani Mathewson", - "gender": "F", - "height": "171", - "weight": "69", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Michael Walter Mathieu", - "gender": "M", - "height": "178", - "weight": "76", - "sport": "Athletics", - "team": "Bahamas", - "noc": "BAH", - "age": 32, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Takeshi Matsuda", - "gender": "M", - "height": "184", - "weight": "84", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 32, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Kaori Matsumoto", - "gender": "F", - "height": "163", - "weight": "57", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 28, - "event": "Judo Women's Lightweight", - "medal": "Bronze" - }, - { - "name": "Misaki Matsutomo", - "gender": "F", - "height": "160", - "weight": "50", - "sport": "Badminton", - "team": "Japan", - "noc": "JPN", - "age": 24, - "event": "Badminton Women's Doubles", - "medal": "Gold" - }, - { - "name": "Bethanie Lynn Mattek-Sands", - "gender": "F", - "height": "168", - "weight": "66", - "sport": "Tennis", - "team": "United States-2", - "noc": "USA", - "age": 31, - "event": "Tennis Mixed Doubles", - "medal": "Gold" - }, - { - "name": "Peter Matthews", - "gender": "M", - "height": "188", - "weight": "84", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 26, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Sofia Magdalena Mattsson", - "gender": "F", - "height": "164", - "weight": "56", - "sport": "Wrestling", - "team": "Sweden", - "noc": "SWE", - "age": 26, - "event": "Wrestling Women's Featherweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Marie Mvers", - "gender": "F", - "height": "170", - "weight": "67", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Philipp Max", - "gender": "M", - "height": "177", - "weight": "76", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 22, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Kvin Mayer", - "gender": "M", - "height": "186", - "weight": "77", - "sport": "Athletics", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Athletics Men's Decathlon", - "medal": "Silver" - }, - { - "name": "Agustn Alejandro Mazzilli", - "gender": "M", - "height": "173", - "weight": "77", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 27, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Piotr Maachowski", - "gender": "M", - "height": "193", - "weight": "130", - "sport": "Athletics", - "team": "Poland", - "noc": "POL", - "age": 33, - "event": "Athletics Men's Discus Throw", - "medal": "Silver" - }, - { - "name": "Kayla McAlister", - "gender": "F", - "height": "169", - "weight": "70", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 27, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Shona Clare McCallin", - "gender": "F", - "height": "165", - "weight": "69", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Eliza McCartney", - "gender": "F", - "height": "179", - "weight": "66", - "sport": "Athletics", - "team": "New Zealand", - "noc": "NZL", - "age": 19, - "event": "Athletics Women's Pole Vault", - "medal": "Bronze" - }, - { - "name": "Ruaridh Lawson McConnochie", - "gender": "M", - "height": "190", - "weight": "93", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Francena Lynette McCorory", - "gender": "F", - "height": "171", - "weight": "68", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Angel Lajuane McCoughtry", - "gender": "F", - "height": "185", - "weight": "70", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Rusheen McDonald", - "gender": "M", - "height": "175", - "weight": "81", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 23, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Cameron McEvoy", - "gender": "M", - "height": "185", - "weight": "70", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Cameron McEvoy", - "gender": "M", - "height": "185", - "weight": "70", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Emma McKeon", - "gender": "F", - "height": "180", - "weight": "60", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 200 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Emma McKeon", - "gender": "F", - "height": "180", - "weight": "60", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Emma McKeon", - "gender": "F", - "height": "180", - "weight": "60", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Emma McKeon", - "gender": "F", - "height": "180", - "weight": "60", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Taylor McKeown", - "gender": "F", - "height": "178", - "weight": "65", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 21, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Anneisha McLaughlin-Whilby", - "gender": "F", - "height": "170", - "weight": "65", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 30, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Omar McLeod", - "gender": "M", - "height": "180", - "weight": "NA", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 22, - "event": "Athletics Men's 110 metres Hurdles", - "medal": "Gold" - }, - { - "name": "Stephenie Ann McPherson", - "gender": "F", - "height": "173", - "weight": "57", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 27, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Tony McQuay", - "gender": "M", - "height": "181", - "weight": "72", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "James McRae", - "gender": "M", - "height": "193", - "weight": "93", - "sport": "Rowing", - "team": "Australia", - "noc": "AUS", - "age": 29, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Silver" - }, - { - "name": "Anna Maree Devenish Meares", - "gender": "F", - "height": "165", - "weight": "70", - "sport": "Cycling", - "team": "Australia", - "noc": "AUS", - "age": 32, - "event": "Cycling Women's Keirin", - "medal": "Bronze" - }, - { - "name": "Christopher James \"Chris\" Mears", - "gender": "M", - "height": "172", - "weight": "70", - "sport": "Diving", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Diving Men's Synchronized Springboard", - "medal": "Gold" - }, - { - "name": "Molly Meech", - "gender": "F", - "height": "178", - "weight": "74", - "sport": "Sailing", - "team": "New Zealand", - "noc": "NZL", - "age": 23, - "event": "Sailing Women's Skiff", - "medal": "Silver" - }, - { - "name": "Sam Meech", - "gender": "M", - "height": "183", - "weight": "81", - "sport": "Sailing", - "team": "New Zealand", - "noc": "NZL", - "age": 25, - "event": "Sailing Men's One Person Dinghy", - "medal": "Bronze" - }, - { - "name": "Robert Meeuwsen", - "gender": "M", - "height": "207", - "weight": "92", - "sport": "Beach Volleyball", - "team": "Netherlands-1", - "noc": "NED", - "age": 28, - "event": "Beach Volleyball Men's Beach Volleyball", - "medal": "Bronze" - }, - { - "name": "Catherine Michelle \"Katie\" Meili", - "gender": "F", - "height": "170", - "weight": "61", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Swimming Women's 100 metres Breaststroke", - "medal": "Bronze" - }, - { - "name": "Catherine Michelle \"Katie\" Meili", - "gender": "F", - "height": "170", - "weight": "61", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Gerek Lin Meinhardt", - "gender": "M", - "height": "183", - "weight": "80", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Fencing Men's Foil, Team", - "medal": "Bronze" - }, - { - "name": "Mahiedine Mekhissi-Benabbad", - "gender": "M", - "height": "190", - "weight": "75", - "sport": "Athletics", - "team": "France", - "noc": "FRA", - "age": 31, - "event": "Athletics Men's 3,000 metres Steeplechase", - "medal": "Bronze" - }, - { - "name": "Bektemir Ruzmatzhonovich Melikuziyev", - "gender": "M", - "height": "177", - "weight": "75", - "sport": "Boxing", - "team": "Uzbekistan", - "noc": "UZB", - "age": 20, - "event": "Boxing Men's Middleweight", - "medal": "Silver" - }, - { - "name": "Angelina Romanovna Melnikova", - "gender": "F", - "height": "151", - "weight": "44", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 16, - "event": "Gymnastics Women's Team All-Around", - "medal": "Silver" - }, - { - "name": "Meng Suping", - "gender": "F", - "height": "173", - "weight": "123", - "sport": "Weightlifting", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Weightlifting Women's Super-Heavyweight", - "medal": "Gold" - }, - { - "name": "Joaqun Menini", - "gender": "M", - "height": "182", - "weight": "76", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 24, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Florin Mergea", - "gender": "M", - "height": "180", - "weight": "76", - "sport": "Tennis", - "team": "Romania", - "noc": "ROU", - "age": 31, - "event": "Tennis Men's Doubles", - "medal": "Silver" - }, - { - "name": "LaShawn Merritt", - "gender": "M", - "height": "191", - "weight": "86", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Men's 400 metres", - "medal": "Bronze" - }, - { - "name": "LaShawn Merritt", - "gender": "M", - "height": "191", - "weight": "86", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Mehdy Metella", - "gender": "M", - "height": "190", - "weight": "90", - "sport": "Swimming", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Maximilian Meyer", - "gender": "M", - "height": "173", - "weight": "60", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 20, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Boaz Cornelius Meylink", - "gender": "M", - "height": "195", - "weight": "93", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 32, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "William Meynard", - "gender": "M", - "height": "190", - "weight": "85", - "sport": "Swimming", - "team": "France", - "noc": "FRA", - "age": 29, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Meredith T. Michaels-Beerbaum", - "gender": "F", - "height": "162", - "weight": "51", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 46, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Bronze" - }, - { - "name": "Monika Ewa Michalik (Rogien-)", - "gender": "F", - "height": "167", - "weight": "63", - "sport": "Wrestling", - "team": "Poland", - "noc": "POL", - "age": 36, - "event": "Wrestling Women's Middleweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Clment Mignon", - "gender": "M", - "height": "187", - "weight": "75", - "sport": "Swimming", - "team": "France", - "noc": "FRA", - "age": 23, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Brankica Mihajlovi", - "gender": "F", - "height": "190", - "weight": "83", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 25, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "John Michael Nchekwube Obinna \"John Mikel Obi\" Mikel", - "gender": "M", - "height": "179", - "weight": "86", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 29, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Beata Mikoajczyk", - "gender": "F", - "height": "170", - "weight": "68", - "sport": "Canoeing", - "team": "Poland", - "noc": "POL", - "age": 30, - "event": "Canoeing Women's Kayak Doubles, 500 metres", - "medal": "Bronze" - }, - { - "name": "Cody Miller", - "gender": "M", - "height": "180", - "weight": "80", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Swimming Men's 100 metres Breaststroke", - "medal": "Bronze" - }, - { - "name": "Cody Miller", - "gender": "M", - "height": "180", - "weight": "80", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Shaunae Miller (-Uibo)", - "gender": "F", - "height": "185", - "weight": "69", - "sport": "Athletics", - "team": "Bahamas", - "noc": "BAH", - "age": 22, - "event": "Athletics Women's 400 metres", - "medal": "Gold" - }, - { - "name": "Hannah Louise Mills", - "gender": "F", - "height": "157", - "weight": "50", - "sport": "Sailing", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Sailing Women's Two Person Dinghy", - "medal": "Gold" - }, - { - "name": "Stephen Milne", - "gender": "M", - "height": "185", - "weight": "76", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 22, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Jelena Milovanovi", - "gender": "F", - "height": "190", - "weight": "84", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 27, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Gor Minasyan", - "gender": "M", - "height": "180", - "weight": "140", - "sport": "Weightlifting", - "team": "Armenia", - "noc": "ARM", - "age": 21, - "event": "Weightlifting Men's Super-Heavyweight", - "medal": "Silver" - }, - { - "name": "Jevaughn Minzie", - "gender": "M", - "height": "178", - "weight": "85", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 21, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Nikola Miroti Stajovi", - "gender": "M", - "height": "208", - "weight": "100", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 25, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Taras Viktorovych Mishchuk", - "gender": "M", - "height": "187", - "weight": "85", - "sport": "Canoeing", - "team": "Ukraine", - "noc": "UKR", - "age": 21, - "event": "Canoeing Men's Canadian Doubles, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Ethan Mitchell", - "gender": "M", - "height": "180", - "weight": "83", - "sport": "Cycling", - "team": "New Zealand", - "noc": "NZL", - "age": 25, - "event": "Cycling Men's Team Sprint", - "medal": "Silver" - }, - { - "name": "Tom Mitchell", - "gender": "M", - "height": "178", - "weight": "85", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Branislav Mitrovi", - "gender": "M", - "height": "201", - "weight": "100", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 31, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Stefan Mitrovi", - "gender": "M", - "height": "195", - "weight": "91", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 28, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Risako Mitsui", - "gender": "F", - "height": "168", - "weight": "57", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 22, - "event": "Synchronized Swimming Women's Duet", - "medal": "Bronze" - }, - { - "name": "Risako Mitsui", - "gender": "F", - "height": "168", - "weight": "57", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 22, - "event": "Synchronized Swimming Women's Team", - "medal": "Bronze" - }, - { - "name": "Anja Mittag", - "gender": "F", - "height": "168", - "weight": "58", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 31, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Hiromi Miyake", - "gender": "F", - "height": "145", - "weight": "48", - "sport": "Weightlifting", - "team": "Japan", - "noc": "JPN", - "age": 30, - "event": "Weightlifting Women's Flyweight", - "medal": "Bronze" - }, - { - "name": "Jun Mizutani", - "gender": "M", - "height": "172", - "weight": "63", - "sport": "Table Tennis", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Table Tennis Men's Singles", - "medal": "Bronze" - }, - { - "name": "Jun Mizutani", - "gender": "M", - "height": "172", - "weight": "63", - "sport": "Table Tennis", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Table Tennis Men's Team", - "medal": "Silver" - }, - { - "name": "Lourdes Mohedano Snchez de Mora", - "gender": "F", - "height": "173", - "weight": "53", - "sport": "Rhythmic Gymnastics", - "team": "Spain", - "noc": "ESP", - "age": 21, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Silver" - }, - { - "name": "Kayla Moleschi", - "gender": "F", - "height": "159", - "weight": "65", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 25, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Mari Kristine Sbstad Molid", - "gender": "F", - "height": "178", - "weight": "73", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 25, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Telma Alexandra Pinto Monteiro", - "gender": "F", - "height": "161", - "weight": "57", - "sport": "Judo", - "team": "Portugal", - "noc": "POR", - "age": 30, - "event": "Judo Women's Lightweight", - "medal": "Bronze" - }, - { - "name": "Domenico Montrone", - "gender": "M", - "height": "189", - "weight": "97", - "sport": "Rowing", - "team": "Italy", - "noc": "ITA", - "age": 30, - "event": "Rowing Men's Coxless Fours", - "medal": "Bronze" - }, - { - "name": "Maya April Moore", - "gender": "F", - "height": "183", - "weight": "79", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Sohrab Moradi", - "gender": "M", - "height": "170", - "weight": "97", - "sport": "Weightlifting", - "team": "Iran", - "noc": "IRI", - "age": 27, - "event": "Weightlifting Men's Middle-Heavyweight", - "medal": "Gold" - }, - { - "name": "David Morgan", - "gender": "M", - "height": "184", - "weight": "82", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Sandi Morris", - "gender": "F", - "height": "173", - "weight": "62", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Athletics Women's Pole Vault", - "medal": "Silver" - }, - { - "name": "Casper Ulrich Mortensen", - "gender": "M", - "height": "190", - "weight": "88", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 26, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Lus Javier Mosquera Lozano", - "gender": "M", - "height": "165", - "weight": "64", - "sport": "Weightlifting", - "team": "Colombia", - "noc": "COL", - "age": 21, - "event": "Weightlifting Men's Lightweight", - "medal": "Bronze" - }, - { - "name": "Estelle Mossely", - "gender": "F", - "height": "168", - "weight": "60", - "sport": "Boxing", - "team": "France", - "noc": "FRA", - "age": 23, - "event": "Boxing Women's Lightweight", - "medal": "Gold" - }, - { - "name": "Nora Mrk", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 25, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Beslan Zaudinovich Mudranov", - "gender": "M", - "height": "166", - "weight": "60", - "sport": "Judo", - "team": "Russia", - "noc": "RUS", - "age": 30, - "event": "Judo Men's Extra-Lightweight", - "medal": "Gold" - }, - { - "name": "Dalilah Muhammad", - "gender": "F", - "height": "173", - "weight": "55", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Athletics Women's 400 metres Hurdles", - "medal": "Gold" - }, - { - "name": "Ibtihaj Muhammad", - "gender": "F", - "height": "170", - "weight": "68", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Fencing Women's Sabre, Team", - "medal": "Bronze" - }, - { - "name": "Lutalo Massop-Muhammad", - "gender": "M", - "height": "191", - "weight": "80", - "sport": "Taekwondo", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Taekwondo Men's Welterweight", - "medal": "Silver" - }, - { - "name": "Usman Edu Muhammed", - "gender": "M", - "height": "169", - "weight": "78", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 22, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Julia Mller", - "gender": "F", - "height": "170", - "weight": "71", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 30, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Mathias Mller", - "gender": "M", - "height": "187", - "weight": "80", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Janne Mller-Wieland", - "gender": "F", - "height": "175", - "weight": "69", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Maximilian Munski", - "gender": "M", - "height": "195", - "weight": "96", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Annalise Murphy", - "gender": "F", - "height": "184", - "weight": "72", - "sport": "Sailing", - "team": "Ireland", - "noc": "IRL", - "age": 26, - "event": "Sailing Women's One Person Dinghy", - "medal": "Silver" - }, - { - "name": "Clayton Murphy", - "gender": "M", - "height": "180", - "weight": "68", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Athletics Men's 800 metres", - "medal": "Bronze" - }, - { - "name": "Kelly Murphy", - "gender": "F", - "height": "188", - "weight": "77", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Ryan Murphy", - "gender": "M", - "height": "191", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Men's 100 metres Backstroke", - "medal": "Gold" - }, - { - "name": "Ryan Murphy", - "gender": "M", - "height": "191", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Men's 200 metres Backstroke", - "medal": "Gold" - }, - { - "name": "Ryan Murphy", - "gender": "M", - "height": "191", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Andrew Barron \"Andy\" Murray", - "gender": "M", - "height": "190", - "weight": "83", - "sport": "Tennis", - "team": "Great Britain", - "noc": "GBR", - "age": 29, - "event": "Tennis Men's Singles", - "medal": "Gold" - }, - { - "name": "Eric Gordon Murray", - "gender": "M", - "height": "195", - "weight": "98", - "sport": "Rowing", - "team": "New Zealand", - "noc": "NZL", - "age": 34, - "event": "Rowing Men's Coxless Pairs", - "medal": "Gold" - }, - { - "name": "Meghan Musnicki", - "gender": "F", - "height": "183", - "weight": "73", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 33, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Madeline \"Maddie\" Musselman", - "gender": "F", - "height": "181", - "weight": "65", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 18, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Aliya Farkhatovna Mustafina", - "gender": "F", - "height": "162", - "weight": "48", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Gymnastics Women's Individual All-Around", - "medal": "Bronze" - }, - { - "name": "Aliya Farkhatovna Mustafina", - "gender": "F", - "height": "162", - "weight": "48", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Gymnastics Women's Team All-Around", - "medal": "Silver" - }, - { - "name": "Aliya Farkhatovna Mustafina", - "gender": "F", - "height": "162", - "weight": "48", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Gymnastics Women's Uneven Bars", - "medal": "Gold" - }, - { - "name": "Denis Myk", - "gender": "M", - "height": "189", - "weight": "90", - "sport": "Canoeing", - "team": "Slovakia", - "noc": "SVK", - "age": 20, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Rafael Nadal Parera", - "gender": "M", - "height": "185", - "weight": "80", - "sport": "Tennis", - "team": "Spain-2", - "noc": "ESP", - "age": 30, - "event": "Tennis Men's Doubles", - "medal": "Gold" - }, - { - "name": "Alexander Michael \"Alex\" Naddour", - "gender": "M", - "height": "170", - "weight": "70", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Gymnastics Men's Pommelled Horse", - "medal": "Bronze" - }, - { - "name": "Takanori Nagase", - "gender": "M", - "height": "181", - "weight": "81", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 22, - "event": "Judo Men's Half-Middleweight", - "medal": "Bronze" - }, - { - "name": "Nikita Vladimirovich Nagorny", - "gender": "M", - "height": "166", - "weight": "67", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 19, - "event": "Gymnastics Men's Team All-Around", - "medal": "Silver" - }, - { - "name": "Karolina Naja", - "gender": "F", - "height": "165", - "weight": "63", - "sport": "Canoeing", - "team": "Poland", - "noc": "POL", - "age": 26, - "event": "Canoeing Women's Kayak Doubles, 500 metres", - "medal": "Bronze" - }, - { - "name": "Kanami Nakamaki", - "gender": "F", - "height": "167", - "weight": "58", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 24, - "event": "Synchronized Swimming Women's Team", - "medal": "Bronze" - }, - { - "name": "Mai Nakamura", - "gender": "F", - "height": "163", - "weight": "56", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Synchronized Swimming Women's Team", - "medal": "Bronze" - }, - { - "name": "Misato Nakamura", - "gender": "F", - "height": "157", - "weight": "52", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Judo Women's Half-Lightweight", - "medal": "Bronze" - }, - { - "name": "Leone Nakarawa", - "gender": "M", - "height": "198", - "weight": "109", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 28, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Daniel Narcisse", - "gender": "M", - "height": "189", - "weight": "93", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 36, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "George Christopher Nash", - "gender": "M", - "height": "195", - "weight": "96", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 26, - "event": "Rowing Men's Coxless Fours", - "medal": "Gold" - }, - { - "name": "Tyla Nathan-Wong", - "gender": "F", - "height": "163", - "weight": "58", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 22, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Lilyana Natsir", - "gender": "F", - "height": "169", - "weight": "62", - "sport": "Badminton", - "team": "Indonesia-1", - "noc": "INA", - "age": 30, - "event": "Badminton Mixed Doubles", - "medal": "Gold" - }, - { - "name": "Darya Sergeyevna Naumova", - "gender": "F", - "height": "165", - "weight": "76", - "sport": "Weightlifting", - "team": "Belarus", - "noc": "BLR", - "age": 20, - "event": "Weightlifting Women's Heavyweight", - "medal": "Silver" - }, - { - "name": "Juan Carlos Navarro Feijoo", - "gender": "M", - "height": "193", - "weight": "82", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 36, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Ikhtiyor Karimovich Navruzov", - "gender": "M", - "height": "165", - "weight": "65", - "sport": "Wrestling", - "team": "Uzbekistan", - "noc": "UZB", - "age": 27, - "event": "Wrestling Men's Welterweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Tsvetelina Biserova Naydenova", - "gender": "F", - "height": "168", - "weight": "49", - "sport": "Rhythmic Gymnastics", - "team": "Bulgaria", - "noc": "BUL", - "age": 22, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Bronze" - }, - { - "name": "Dilshod Nazarov", - "gender": "M", - "height": "187", - "weight": "120", - "sport": "Athletics", - "team": "Tajikistan", - "noc": "TJK", - "age": 34, - "event": "Athletics Men's Hammer Throw", - "medal": "Gold" - }, - { - "name": "Astou Barro Ndour Gueye", - "gender": "F", - "height": "195", - "weight": "68", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 21, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Lia Neal", - "gender": "F", - "height": "178", - "weight": "75", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Leah Neale", - "gender": "F", - "height": "173", - "weight": "66", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 21, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Nemanja Nedovi", - "gender": "M", - "height": "191", - "weight": "90", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 25, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Daryll Saskia Neita", - "gender": "F", - "height": "172", - "weight": "61", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 19, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "Kiley Neushul", - "gender": "F", - "height": "173", - "weight": "65", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Stephen Newbold", - "gender": "M", - "height": "191", - "weight": "82", - "sport": "Athletics", - "team": "Bahamas", - "noc": "BAH", - "age": 21, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Neymar da Silva Santos Jnior", - "gender": "M", - "height": "174", - "weight": "64", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 24, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Timothey N'Guessan", - "gender": "M", - "height": "186", - "weight": "105", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 23, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Haby Niar", - "gender": "F", - "height": "176", - "weight": "66", - "sport": "Taekwondo", - "team": "France", - "noc": "FRA", - "age": 23, - "event": "Taekwondo Women's Welterweight", - "medal": "Silver" - }, - { - "name": "Laura Nicholls Gonzlez", - "gender": "F", - "height": "190", - "weight": "90", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 27, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Paolo Nicolai", - "gender": "M", - "height": "203", - "weight": "91", - "sport": "Beach Volleyball", - "team": "Italy-1", - "noc": "ITA", - "age": 27, - "event": "Beach Volleyball Men's Beach Volleyball", - "medal": "Silver" - }, - { - "name": "Astier Nicolas", - "gender": "M", - "height": "180", - "weight": "70", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Equestrianism Mixed Three-Day Event, Individual", - "medal": "Silver" - }, - { - "name": "Astier Nicolas", - "gender": "M", - "height": "180", - "weight": "70", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Gold" - }, - { - "name": "Michael Damgaard Nielsen", - "gender": "M", - "height": "192", - "weight": "92", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 26, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Mie stergaard Nielsen", - "gender": "F", - "height": "184", - "weight": "67", - "sport": "Swimming", - "team": "Denmark", - "noc": "DEN", - "age": 19, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Simon Niepmann", - "gender": "M", - "height": "180", - "weight": "71", - "sport": "Rowing", - "team": "Switzerland", - "noc": "SUI", - "age": 31, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Gold" - }, - { - "name": "Slobodan Niki", - "gender": "M", - "height": "197", - "weight": "106", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 33, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Vladimir Olegovich Nikitin", - "gender": "M", - "height": "165", - "weight": "56", - "sport": "Boxing", - "team": "Russia", - "noc": "RUS", - "age": 26, - "event": "Boxing Men's Bantamweight", - "medal": "Bronze" - }, - { - "name": "Jelena Nikoli", - "gender": "F", - "height": "194", - "weight": "79", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 34, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Gnonsiane Niombla", - "gender": "F", - "height": "172", - "weight": "69", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 26, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Kei Nishikori", - "gender": "M", - "height": "178", - "weight": "74", - "sport": "Tennis", - "team": "Japan", - "noc": "JPN", - "age": 26, - "event": "Tennis Men's Singles", - "medal": "Bronze" - }, - { - "name": "Koki Niwa", - "gender": "M", - "height": "162", - "weight": "51", - "sport": "Table Tennis", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Table Tennis Men's Team", - "medal": "Silver" - }, - { - "name": "Adilbek Sabitovich Niyazymbetov", - "gender": "M", - "height": "180", - "weight": "81", - "sport": "Boxing", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 27, - "event": "Boxing Men's Light-Heavyweight", - "medal": "Silver" - }, - { - "name": "Francine Niyonsaba", - "gender": "F", - "height": "166", - "weight": "60", - "sport": "Athletics", - "team": "Burundi", - "noc": "BDI", - "age": 23, - "event": "Athletics Women's 800 metres", - "medal": "Silver" - }, - { - "name": "Alessandro Nora", - "gender": "M", - "height": "191", - "weight": "85", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 29, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Daniel James \"Dan\" Norton", - "gender": "M", - "height": "180", - "weight": "85", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Oktawia Nowacka", - "gender": "F", - "height": "180", - "weight": "60", - "sport": "Modern Pentathlon", - "team": "Poland", - "noc": "POL", - "age": 25, - "event": "Modern Pentathlon Women's Individual", - "medal": "Bronze" - }, - { - "name": "Wojciech Nowicki", - "gender": "M", - "height": "196", - "weight": "128", - "sport": "Athletics", - "team": "Poland", - "noc": "POL", - "age": 27, - "event": "Athletics Men's Hammer Throw", - "medal": "Bronze" - }, - { - "name": "Jesper Nddesbo", - "gender": "M", - "height": "199", - "weight": "100", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 35, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Ruslan Nurudinov", - "gender": "M", - "height": "183", - "weight": "109", - "sport": "Weightlifting", - "team": "Uzbekistan", - "noc": "UZB", - "age": 24, - "event": "Weightlifting Men's Heavyweight", - "medal": "Gold" - }, - { - "name": "Guy Olivier Nyokas", - "gender": "M", - "height": "189", - "weight": "86", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 30, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Estelle Nze Minko", - "gender": "F", - "height": "178", - "weight": "67", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Patricia Obee", - "gender": "F", - "height": "165", - "weight": "60", - "sport": "Rowing", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Rowing Women's Lightweight Double Sculls", - "medal": "Silver" - }, - { - "name": "Hellen Onsando Obiri", - "gender": "F", - "height": "160", - "weight": "50", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 26, - "event": "Athletics Women's 5,000 metres", - "medal": "Silver" - }, - { - "name": "Siobhan-Marie O'Connor", - "gender": "F", - "height": "173", - "weight": "60", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 20, - "event": "Swimming Women's 200 metres Individual Medley", - "medal": "Silver" - }, - { - "name": "Hannes Ocik", - "gender": "M", - "height": "191", - "weight": "93", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Gary O'Donovan", - "gender": "M", - "height": "172", - "weight": "70", - "sport": "Rowing", - "team": "Ireland", - "noc": "IRL", - "age": 23, - "event": "Rowing Men's Lightweight Double Sculls", - "medal": "Silver" - }, - { - "name": "Paul O'Donovan", - "gender": "M", - "height": "177", - "weight": "70", - "sport": "Rowing", - "team": "Ireland", - "noc": "IRL", - "age": 22, - "event": "Rowing Men's Lightweight Double Sculls", - "medal": "Silver" - }, - { - "name": "Stine Bredal Oftedal", - "gender": "F", - "height": "168", - "weight": "65", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 24, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Maja Ognjenovi", - "gender": "F", - "height": "183", - "weight": "67", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 31, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Oh Hye-Ri", - "gender": "F", - "height": "182", - "weight": "69", - "sport": "Taekwondo", - "team": "South Korea", - "noc": "KOR", - "age": 28, - "event": "Taekwondo Women's Welterweight", - "medal": "Gold" - }, - { - "name": "Christine Ijeoma Chika Ohuruogu", - "gender": "F", - "height": "172", - "weight": "70", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 32, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Poliana Okimoto-Cintra", - "gender": "F", - "height": "165", - "weight": "52", - "sport": "Swimming", - "team": "Brazil", - "noc": "BRA", - "age": 33, - "event": "Swimming Women's 10 kilometres Open Water", - "medal": "Bronze" - }, - { - "name": "Courtney Okolo", - "gender": "F", - "height": "173", - "weight": "59", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Nozomi Okuhara", - "gender": "F", - "height": "156", - "weight": "51", - "sport": "Badminton", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Badminton Women's Singles", - "medal": "Bronze" - }, - { - "name": "Pia-Sophie Oldhafer", - "gender": "F", - "height": "166", - "weight": "55", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Penelope \"Penny\" Oleksiak", - "gender": "F", - "height": "185", - "weight": "68", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 16, - "event": "Swimming Women's 100 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Penelope \"Penny\" Oleksiak", - "gender": "F", - "height": "185", - "weight": "68", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 16, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Penelope \"Penny\" Oleksiak", - "gender": "F", - "height": "185", - "weight": "68", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 16, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Penelope \"Penny\" Oleksiak", - "gender": "F", - "height": "185", - "weight": "68", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 16, - "event": "Swimming Women's 100 metres Butterfly", - "medal": "Silver" - }, - { - "name": "Marc-Antoine Olivier", - "gender": "M", - "height": "183", - "weight": "64", - "sport": "Swimming", - "team": "France", - "noc": "FRA", - "age": 20, - "event": "Swimming Men's 10 kilometres Open Water", - "medal": "Bronze" - }, - { - "name": "Morten Olsen", - "gender": "M", - "height": "184", - "weight": "95", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 31, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Om Yun-Chol", - "gender": "M", - "height": "151", - "weight": "56", - "sport": "Weightlifting", - "team": "North Korea", - "noc": "PRK", - "age": 24, - "event": "Weightlifting Men's Bantamweight", - "medal": "Silver" - }, - { - "name": "Kano Omata", - "gender": "F", - "height": "160", - "weight": "48", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 20, - "event": "Synchronized Swimming Women's Team", - "medal": "Bronze" - }, - { - "name": "Thierry Omeyer", - "gender": "M", - "height": "192", - "weight": "93", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 39, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Shohei Ono", - "gender": "M", - "height": "170", - "weight": "73", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 24, - "event": "Judo Men's Lightweight", - "medal": "Gold" - }, - { - "name": "Nwanyika Jenete C. \"Anyika\" Onuora", - "gender": "F", - "height": "178", - "weight": "76", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Laura Oprea", - "gender": "F", - "height": "186", - "weight": "75", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 22, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Orlando Ortega Alejo", - "gender": "M", - "height": "182", - "weight": "77", - "sport": "Athletics", - "team": "Spain", - "noc": "ESP", - "age": 25, - "event": "Athletics Men's 110 metres Hurdles", - "medal": "Silver" - }, - { - "name": "Idalys Ortz Bocourt", - "gender": "F", - "height": "180", - "weight": "95", - "sport": "Judo", - "team": "Cuba", - "noc": "CUB", - "age": 26, - "event": "Judo Women's Heavyweight", - "medal": "Silver" - }, - { - "name": "Ignacio Ortz", - "gender": "M", - "height": "180", - "weight": "76", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 29, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Rstm Orucov", - "gender": "M", - "height": "179", - "weight": "73", - "sport": "Judo", - "team": "Azerbaijan", - "noc": "AZE", - "age": 24, - "event": "Judo Men's Lightweight", - "medal": "Silver" - }, - { - "name": "Selin Oruz", - "gender": "F", - "height": "172", - "weight": "60", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 19, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Timur Oruz", - "gender": "M", - "height": "186", - "weight": "87", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Inna Volodymyrivna Osypenko-Radomska", - "gender": "F", - "height": "166", - "weight": "63", - "sport": "Canoeing", - "team": "Azerbaijan", - "noc": "AZE", - "age": 33, - "event": "Canoeing Women's Kayak Singles, 200 metres", - "medal": "Bronze" - }, - { - "name": "Shinobu Ota", - "gender": "M", - "height": "165", - "weight": "65", - "sport": "Wrestling", - "team": "Japan", - "noc": "JPN", - "age": 22, - "event": "Wrestling Men's Featherweight, Greco-Roman", - "medal": "Silver" - }, - { - "name": "Katharina Otte", - "gender": "F", - "height": "170", - "weight": "63", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Jeanette Ottesen Gray", - "gender": "F", - "height": "178", - "weight": "70", - "sport": "Swimming", - "team": "Denmark", - "noc": "DEN", - "age": 28, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Oussama Al-Oueslati", - "gender": "M", - "height": "199", - "weight": "80", - "sport": "Taekwondo", - "team": "Tunisia", - "noc": "TUN", - "age": 20, - "event": "Taekwondo Men's Welterweight", - "medal": "Bronze" - }, - { - "name": "Sofiane Oumiha", - "gender": "M", - "height": "174", - "weight": "60", - "sport": "Boxing", - "team": "France", - "noc": "FRA", - "age": 21, - "event": "Boxing Men's Lightweight", - "medal": "Silver" - }, - { - "name": "Sarah Ourahmoune", - "gender": "F", - "height": "158", - "weight": "51", - "sport": "Boxing", - "team": "France", - "noc": "FRA", - "age": 34, - "event": "Boxing Women's Flyweight", - "medal": "Silver" - }, - { - "name": "Nathan Outteridge", - "gender": "M", - "height": "179", - "weight": "75", - "sport": "Sailing", - "team": "Australia", - "noc": "AUS", - "age": 30, - "event": "Sailing Men's Skiff", - "medal": "Silver" - }, - { - "name": "Emily Overholt", - "gender": "F", - "height": "170", - "weight": "55", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 18, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Dimitrij Ovtcharov", - "gender": "M", - "height": "186", - "weight": "78", - "sport": "Table Tennis", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Table Tennis Men's Team", - "medal": "Bronze" - }, - { - "name": "Lily Isabelle Owsley", - "gender": "F", - "height": "170", - "weight": "70", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 21, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Jake Packard", - "gender": "M", - "height": "195", - "weight": "68", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Bryony Kate Frances Page", - "gender": "F", - "height": "172", - "weight": "60", - "sport": "Trampolining", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Trampolining Women's Individual", - "medal": "Silver" - }, - { - "name": "Danielle Nicole Page", - "gender": "F", - "height": "188", - "weight": "77", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 29, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Caleb Paine", - "gender": "M", - "height": "191", - "weight": "98", - "sport": "Sailing", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Sailing Men's One Person Heavyweight Dinghy", - "medal": "Bronze" - }, - { - "name": "Mariana Pajn Londoo", - "gender": "F", - "height": "158", - "weight": "50", - "sport": "Cycling", - "team": "Colombia", - "noc": "COL", - "age": 24, - "event": "Cycling Women's BMX", - "medal": "Gold" - }, - { - "name": "Laia Palau Alts", - "gender": "F", - "height": "181", - "weight": "69", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 36, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Gregorio Paltrinieri", - "gender": "M", - "height": "191", - "weight": "72", - "sport": "Swimming", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Swimming Men's 1,500 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Pan Feihong", - "gender": "F", - "height": "173", - "weight": "57", - "sport": "Rowing", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Rowing Women's Lightweight Double Sculls", - "medal": "Bronze" - }, - { - "name": "Pang Wei", - "gender": "M", - "height": "178", - "weight": "77", - "sport": "Shooting", - "team": "China", - "noc": "CHN", - "age": 30, - "event": "Shooting Men's Air Pistol, 10 metres", - "medal": "Bronze" - }, - { - "name": "Yekaterina Andreyevna Pantyulina-Lisunova", - "gender": "F", - "height": "175", - "weight": "64", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 26, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Karen Paquin", - "gender": "F", - "height": "172", - "weight": "70", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 29, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Matas Enrique Paredes", - "gender": "M", - "height": "176", - "weight": "74", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 34, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Paula Beln Pareto", - "gender": "F", - "height": "150", - "weight": "48", - "sport": "Judo", - "team": "Argentina", - "noc": "ARG", - "age": 30, - "event": "Judo Women's Extra-Lightweight", - "medal": "Gold" - }, - { - "name": "Park In-Bee", - "gender": "F", - "height": "168", - "weight": "65", - "sport": "Golf", - "team": "South Korea", - "noc": "KOR", - "age": 28, - "event": "Golf Women's Individual", - "medal": "Gold" - }, - { - "name": "Park Sang-Young", - "gender": "M", - "height": "177", - "weight": "73", - "sport": "Fencing", - "team": "South Korea", - "noc": "KOR", - "age": 20, - "event": "Fencing Men's epee, Individual", - "medal": "Gold" - }, - { - "name": "Shannon Parry", - "gender": "F", - "height": "170", - "weight": "70", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 26, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Mara Lucila Pascua Surez", - "gender": "F", - "height": "196", - "weight": "93", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 33, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Mariya Valeryevna Paseka", - "gender": "F", - "height": "161", - "weight": "48", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Gymnastics Women's Team All-Around", - "medal": "Silver" - }, - { - "name": "Mariya Valeryevna Paseka", - "gender": "F", - "height": "161", - "weight": "48", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Gymnastics Women's Horse Vault", - "medal": "Silver" - }, - { - "name": "Aleksandra Vyacheslavovna Patskevich", - "gender": "F", - "height": "169", - "weight": "69", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Ilse Paulis", - "gender": "F", - "height": "174", - "weight": "57", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 23, - "event": "Rowing Women's Lightweight Double Sculls", - "medal": "Gold" - }, - { - "name": "Maartje Yvonne Helene Paumen", - "gender": "F", - "height": "176", - "weight": "66", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 30, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Josip Pavi", - "gender": "M", - "height": "195", - "weight": "90", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 34, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Adam George Peaty", - "gender": "M", - "height": "191", - "weight": "86", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 21, - "event": "Swimming Men's 100 metres Breaststroke", - "medal": "Gold" - }, - { - "name": "Adam George Peaty", - "gender": "M", - "height": "191", - "weight": "86", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 21, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Matthieu Patrick Franois Peche", - "gender": "M", - "height": "175", - "weight": "75", - "sport": "Canoeing", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Canoeing Men's Canadian Doubles, Slalom", - "medal": "Bronze" - }, - { - "name": "Christinna Pedersen", - "gender": "F", - "height": "178", - "weight": "68", - "sport": "Badminton", - "team": "Denmark", - "noc": "DEN", - "age": 30, - "event": "Badminton Women's Doubles", - "medal": "Silver" - }, - { - "name": "Rikke Mller Pedersen", - "gender": "F", - "height": "174", - "weight": "61", - "sport": "Swimming", - "team": "Denmark", - "noc": "DEN", - "age": 27, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Bronze" - }, - { - "name": "Gonzalo Peillat", - "gender": "M", - "height": "177", - "weight": "82", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 23, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Hendrik Pekeler", - "gender": "M", - "height": "203", - "weight": "103", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Evania Pelite", - "gender": "F", - "height": "169", - "weight": "67", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 21, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Giovanni Pellielo", - "gender": "M", - "height": "173", - "weight": "93", - "sport": "Shooting", - "team": "Italy", - "noc": "ITA", - "age": 46, - "event": "Shooting Men's Trap", - "medal": "Silver" - }, - { - "name": "Catharine Pendrel", - "gender": "F", - "height": "166", - "weight": "50", - "sport": "Cycling", - "team": "Canada", - "noc": "CAN", - "age": 35, - "event": "Cycling Women's Mountainbike, Cross-team", - "medal": "Bronze" - }, - { - "name": "Sandra Perkovi", - "gender": "F", - "height": "183", - "weight": "85", - "sport": "Athletics", - "team": "Croatia", - "noc": "CRO", - "age": 26, - "event": "Athletics Women's Discus Throw", - "medal": "Gold" - }, - { - "name": "Kseniya Vitalyevna Perova", - "gender": "F", - "height": "169", - "weight": "77", - "sport": "Archery", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Archery Women's Team", - "medal": "Silver" - }, - { - "name": "Kasey Perry-Glass", - "gender": "F", - "height": "163", - "weight": "59", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Bronze" - }, - { - "name": "Franois Pervis", - "gender": "M", - "height": "180", - "weight": "88", - "sport": "Cycling", - "team": "France", - "noc": "FRA", - "age": 31, - "event": "Cycling Men's Team Sprint", - "medal": "Bronze" - }, - { - "name": "Babett Peter", - "gender": "F", - "height": "172", - "weight": "64", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Steffen Peters", - "gender": "M", - "height": "173", - "weight": "68", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 51, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Bronze" - }, - { - "name": "Nils Petersen", - "gender": "M", - "height": "188", - "weight": "80", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Antonio Petkovi", - "gender": "M", - "height": "190", - "weight": "90", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 30, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Geno Petriashvili", - "gender": "M", - "height": "198", - "weight": "125", - "sport": "Wrestling", - "team": "Georgia", - "noc": "GEO", - "age": 22, - "event": "Wrestling Men's Super-Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Mihaela Petril", - "gender": "F", - "height": "190", - "weight": "74", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 25, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Eleftherios Petrounias", - "gender": "M", - "height": "164", - "weight": "62", - "sport": "Gymnastics", - "team": "Greece", - "noc": "GRE", - "age": 25, - "event": "Gymnastics Men's Rings", - "medal": "Gold" - }, - { - "name": "Mayya Andreyevna Petrova (Kaverina-)", - "gender": "F", - "height": "178", - "weight": "71", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 34, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Sonja Petrovi", - "gender": "F", - "height": "188", - "weight": "77", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 27, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Michael Fred Phelps, II", - "gender": "M", - "height": "193", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Michael Fred Phelps, II", - "gender": "M", - "height": "193", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Michael Fred Phelps, II", - "gender": "M", - "height": "193", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Swimming Men's 100 metres Butterfly", - "medal": "Silver" - }, - { - "name": "Michael Fred Phelps, II", - "gender": "M", - "height": "193", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Swimming Men's 200 metres Butterfly", - "medal": "Gold" - }, - { - "name": "Michael Fred Phelps, II", - "gender": "M", - "height": "193", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Swimming Men's 200 metres Individual Medley", - "medal": "Gold" - }, - { - "name": "Michael Fred Phelps, II", - "gender": "M", - "height": "193", - "weight": "91", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Asha Solette Philip", - "gender": "F", - "height": "164", - "weight": "67", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "Matteo Piano", - "gender": "M", - "height": "208", - "weight": "102", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 25, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Charline Picon", - "gender": "F", - "height": "169", - "weight": "57", - "sport": "Sailing", - "team": "France", - "noc": "FRA", - "age": 31, - "event": "Sailing Women's Windsurfer", - "medal": "Gold" - }, - { - "name": "Luisito Pi", - "gender": "M", - "height": "183", - "weight": "57", - "sport": "Taekwondo", - "team": "Dominican Republic", - "noc": "DOM", - "age": 22, - "event": "Taekwondo Men's Flyweight", - "medal": "Bronze" - }, - { - "name": "Ccile Pieper", - "gender": "F", - "height": "166", - "weight": "56", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Blake Pieroni", - "gender": "M", - "height": "188", - "weight": "86", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Duko Pijetlovi", - "gender": "M", - "height": "197", - "weight": "97", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 31, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Gojko Pijetlovi", - "gender": "M", - "height": "194", - "weight": "92", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 32, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Allison Marie Pineau", - "gender": "F", - "height": "181", - "weight": "66", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Paolo Pizzo", - "gender": "M", - "height": "180", - "weight": "70", - "sport": "Fencing", - "team": "Italy", - "noc": "ITA", - "age": 33, - "event": "Fencing Men's epee, Team", - "medal": "Silver" - }, - { - "name": "Thomas Plel", - "gender": "M", - "height": "181", - "weight": "80", - "sport": "Sailing", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Sailing Men's Skiff", - "medal": "Bronze" - }, - { - "name": "David Edward Plummer", - "gender": "M", - "height": "191", - "weight": "95", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Swimming Men's 100 metres Backstroke", - "medal": "Bronze" - }, - { - "name": "David Edward Plummer", - "gender": "M", - "height": "191", - "weight": "95", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Amanda Polk", - "gender": "F", - "height": "180", - "weight": "84", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Marina Viktorovna Poltoran-Litvinchuk", - "gender": "F", - "height": "178", - "weight": "68", - "sport": "Canoeing", - "team": "Belarus", - "noc": "BLR", - "age": 28, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Bronze" - }, - { - "name": "Francesca Pomeri", - "gender": "F", - "height": "174", - "weight": "76", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 23, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Simona Pop (Deac-)", - "gender": "F", - "height": "178", - "weight": "62", - "sport": "Fencing", - "team": "Romania", - "noc": "ROU", - "age": 27, - "event": "Fencing Women's epee, Team", - "medal": "Gold" - }, - { - "name": "Iuliana Popa", - "gender": "F", - "height": "185", - "weight": "72", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 20, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Nadezhda Mikhaylovna Popok-Lepeshko", - "gender": "F", - "height": "172", - "weight": "67", - "sport": "Canoeing", - "team": "Belarus", - "noc": "BLR", - "age": 27, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Bronze" - }, - { - "name": "Silvija Popovi", - "gender": "F", - "height": "178", - "weight": "65", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 30, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Alexandra Popp", - "gender": "F", - "height": "174", - "weight": "65", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Valentin Porte", - "gender": "M", - "height": "190", - "weight": "92", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 25, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Alise Rose Post", - "gender": "F", - "height": "158", - "weight": "58", - "sport": "Cycling", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Cycling Women's BMX", - "medal": "Silver" - }, - { - "name": "Mira Potkonen", - "gender": "F", - "height": "165", - "weight": "60", - "sport": "Boxing", - "team": "Finland", - "noc": "FIN", - "age": 35, - "event": "Boxing Women's Lightweight", - "medal": "Bronze" - }, - { - "name": "Alec Potts", - "gender": "M", - "height": "185", - "weight": "77", - "sport": "Archery", - "team": "Australia", - "noc": "AUS", - "age": 20, - "event": "Archery Men's Team", - "medal": "Bronze" - }, - { - "name": "Asafa Kehine Powell", - "gender": "M", - "height": "191", - "weight": "93", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 33, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Gold" - }, - { - "name": "Olivia Elizabeth \"Polly\" Powrie", - "gender": "F", - "height": "173", - "weight": "70", - "sport": "Sailing", - "team": "New Zealand", - "noc": "NZL", - "age": 28, - "event": "Sailing Women's Two Person Dinghy", - "medal": "Silver" - }, - { - "name": "Josh Prenot", - "gender": "M", - "height": "180", - "weight": "76", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Swimming Men's 200 metres Breaststroke", - "medal": "Silver" - }, - { - "name": "Christian Presciutti", - "gender": "M", - "height": "184", - "weight": "87", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 33, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Nicholas Presciutti", - "gender": "M", - "height": "189", - "weight": "93", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 22, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "William Reid Priddy", - "gender": "M", - "height": "194", - "weight": "89", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 38, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Nichelle Prince", - "gender": "F", - "height": "163", - "weight": "65", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 21, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Andrija Prlainovi", - "gender": "M", - "height": "200", - "weight": "106", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 29, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Yekaterina Valeryevna Prokofyeva", - "gender": "F", - "height": "176", - "weight": "70", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Yelena Gennadyevna Prokofyeva", - "gender": "F", - "height": "171", - "weight": "54", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Grischa Prmel", - "gender": "M", - "height": "182", - "weight": "78", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Marie Prouvensier", - "gender": "F", - "height": "165", - "weight": "52", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 22, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Ji Prskavec", - "gender": "M", - "height": "173", - "weight": "69", - "sport": "Canoeing", - "team": "Czech Republic", - "noc": "CZE", - "age": 23, - "event": "Canoeing Men's Kayak Singles, Slalom", - "medal": "Bronze" - }, - { - "name": "Monica Puig Marchn", - "gender": "F", - "height": "170", - "weight": "64", - "sport": "Tennis", - "team": "Puerto Rico", - "noc": "PUR", - "age": 22, - "event": "Tennis Women's Singles", - "medal": "Gold" - }, - { - "name": "Elmar Qasmov", - "gender": "M", - "height": "188", - "weight": "100", - "sport": "Judo", - "team": "Azerbaijan", - "noc": "AZE", - "age": 25, - "event": "Judo Men's Half-Heavyweight", - "medal": "Silver" - }, - { - "name": "Xetaq Qazyumov", - "gender": "M", - "height": "180", - "weight": "97", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 33, - "event": "Wrestling Men's Heavyweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Qin Kai", - "gender": "M", - "height": "170", - "weight": "65", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 30, - "event": "Diving Men's Synchronized Springboard", - "medal": "Bronze" - }, - { - "name": "Rasmus Christian Quaade", - "gender": "M", - "height": "187", - "weight": "78", - "sport": "Cycling", - "team": "Denmark", - "noc": "DEN", - "age": 26, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Bronze" - }, - { - "name": "Elisa Queirolo", - "gender": "F", - "height": "168", - "weight": "61", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 25, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Isaquias Queiroz dos Santos", - "gender": "M", - "height": "175", - "weight": "85", - "sport": "Canoeing", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Canoeing Men's Canadian Singles, 200 metres", - "medal": "Bronze" - }, - { - "name": "Isaquias Queiroz dos Santos", - "gender": "M", - "height": "175", - "weight": "85", - "sport": "Canoeing", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Canoeing Men's Canadian Singles, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Isaquias Queiroz dos Santos", - "gender": "M", - "height": "175", - "weight": "85", - "sport": "Canoeing", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Canoeing Men's Canadian Doubles, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Samantha Ann \"Sam\" Quek", - "gender": "F", - "height": "169", - "weight": "62", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Alejandra Quereda Flores", - "gender": "F", - "height": "175", - "weight": "55", - "sport": "Rhythmic Gymnastics", - "team": "Spain", - "noc": "ESP", - "age": 24, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Silver" - }, - { - "name": "Laura Quevedo Caizares", - "gender": "F", - "height": "185", - "weight": "74", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 20, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Rebecca Quinn", - "gender": "F", - "height": "176", - "weight": "66", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 20, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Jean Quiquampoix", - "gender": "M", - "height": "189", - "weight": "85", - "sport": "Shooting", - "team": "France", - "noc": "FRA", - "age": 20, - "event": "Shooting Men's Rapid-Fire Pistol, 25 metres", - "medal": "Silver" - }, - { - "name": "Alicia Quirk", - "gender": "F", - "height": "173", - "weight": "64", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Mohammed Rabii", - "gender": "M", - "height": "180", - "weight": "69", - "sport": "Boxing", - "team": "Morocco", - "noc": "MAR", - "age": 23, - "event": "Boxing Men's Welterweight", - "medal": "Bronze" - }, - { - "name": "Federica Radicchi", - "gender": "F", - "height": "170", - "weight": "70", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 27, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Tamara Radoaj", - "gender": "F", - "height": "170", - "weight": "60", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 28, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Miroslav Raduljica", - "gender": "M", - "height": "213", - "weight": "130", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 28, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Rafael Alcntara do Nascimento", - "gender": "M", - "height": "172", - "weight": "65", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 23, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Hassan Sabzali Rahimi", - "gender": "M", - "height": "165", - "weight": "62", - "sport": "Wrestling", - "team": "Iran", - "noc": "IRI", - "age": 27, - "event": "Wrestling Men's Featherweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Guillaume Louis Benoit Raineau", - "gender": "M", - "height": "187", - "weight": "71", - "sport": "Rowing", - "team": "France", - "noc": "FRA", - "age": 30, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Bronze" - }, - { - "name": "Alexandra Rose \"Aly\" Raisman", - "gender": "F", - "height": "157", - "weight": "52", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Gymnastics Women's Individual All-Around", - "medal": "Silver" - }, - { - "name": "Alexandra Rose \"Aly\" Raisman", - "gender": "F", - "height": "157", - "weight": "52", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Gymnastics Women's Team All-Around", - "medal": "Gold" - }, - { - "name": "Alexandra Rose \"Aly\" Raisman", - "gender": "F", - "height": "157", - "weight": "52", - "sport": "Gymnastics", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Gymnastics Women's Floor Exercise", - "medal": "Silver" - }, - { - "name": "Allar Raja", - "gender": "M", - "height": "190", - "weight": "95", - "sport": "Rowing", - "team": "Estonia", - "noc": "EST", - "age": 33, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Bronze" - }, - { - "name": "Nidzhat Aliyevich Rakhimov", - "gender": "M", - "height": "176", - "weight": "77", - "sport": "Weightlifting", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 22, - "event": "Weightlifting Men's Middleweight", - "medal": "Gold" - }, - { - "name": "Rajeev Ram", - "gender": "M", - "height": "193", - "weight": "84", - "sport": "Tennis", - "team": "United States-1", - "noc": "USA", - "age": 32, - "event": "Tennis Mixed Doubles", - "medal": "Silver" - }, - { - "name": "Edvinas Ramanauskas", - "gender": "M", - "height": "184", - "weight": "90", - "sport": "Canoeing", - "team": "Lithuania", - "noc": "LTU", - "age": 30, - "event": "Canoeing Men's Kayak Doubles, 200 metres", - "medal": "Bronze" - }, - { - "name": "Carlos Alberto Ramrez Yepes", - "gender": "M", - "height": "178", - "weight": "65", - "sport": "Cycling", - "team": "Colombia", - "noc": "COL", - "age": 22, - "event": "Cycling Men's BMX", - "medal": "Bronze" - }, - { - "name": "Robeisy Eloy Ramrez Carrazana", - "gender": "M", - "height": "165", - "weight": "56", - "sport": "Boxing", - "team": "Cuba", - "noc": "CUB", - "age": 22, - "event": "Boxing Men's Bantamweight", - "medal": "Gold" - }, - { - "name": "Soslan Lyudvikovich Ramonov", - "gender": "M", - "height": "170", - "weight": "65", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Wrestling Men's Welterweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Thomas Matthew \"Tom\" Ransley", - "gender": "M", - "height": "198", - "weight": "101", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 30, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Sava Ranelovi", - "gender": "M", - "height": "193", - "weight": "98", - "sport": "Water Polo", - "team": "Serbia", - "noc": "SRB", - "age": 23, - "event": "Water Polo Men's Water Polo", - "medal": "Gold" - }, - { - "name": "Milena Rai", - "gender": "F", - "height": "191", - "weight": "72", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 25, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Hedvig Lrke Berg Rasmussen", - "gender": "F", - "height": "187", - "weight": "79", - "sport": "Rowing", - "team": "Denmark", - "noc": "DEN", - "age": 22, - "event": "Rowing Women's Coxless Pairs", - "medal": "Bronze" - }, - { - "name": "Ronald Rauhe", - "gender": "M", - "height": "179", - "weight": "82", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 34, - "event": "Canoeing Men's Kayak Singles, 200 metres", - "medal": "Bronze" - }, - { - "name": "Vatemo Ravouvou", - "gender": "M", - "height": "171", - "weight": "81", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 26, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Savenaca Rawaca", - "gender": "M", - "height": "189", - "weight": "105", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 24, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Alexis Raynaud", - "gender": "M", - "height": "172", - "weight": "78", - "sport": "Shooting", - "team": "France", - "noc": "FRA", - "age": 21, - "event": "Shooting Men's Small-Bore Rifle, Three Positions, 50 metres", - "medal": "Bronze" - }, - { - "name": "Andrs Rdli", - "gender": "M", - "height": "193", - "weight": "83", - "sport": "Fencing", - "team": "Hungary", - "noc": "HUN", - "age": 32, - "event": "Fencing Men's epee, Team", - "medal": "Bronze" - }, - { - "name": "Peter \"Pete\" Reed", - "gender": "M", - "height": "197", - "weight": "100", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 35, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Brittney Davon Reese", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 29, - "event": "Athletics Women's Long Jump", - "medal": "Silver" - }, - { - "name": "Emily Regan", - "gender": "F", - "height": "188", - "weight": "81", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Tobias Reichmann", - "gender": "M", - "height": "188", - "weight": "87", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Maximilian Reinelt", - "gender": "M", - "height": "195", - "weight": "98", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Christian Reitz", - "gender": "M", - "height": "183", - "weight": "93", - "sport": "Shooting", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Shooting Men's Rapid-Fire Pistol, 25 metres", - "medal": "Gold" - }, - { - "name": "Ren Cancan", - "gender": "F", - "height": "167", - "weight": "51", - "sport": "Boxing", - "team": "China", - "noc": "CHN", - "age": 28, - "event": "Boxing Women's Flyweight", - "medal": "Bronze" - }, - { - "name": "Ren Qian", - "gender": "F", - "height": "162", - "weight": "49", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 15, - "event": "Diving Women's Platform", - "medal": "Gold" - }, - { - "name": "Renato Soares de Oliveira Augusto", - "gender": "M", - "height": "186", - "weight": "90", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 28, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Max Rendschmidt", - "gender": "M", - "height": "186", - "weight": "90", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 22, - "event": "Canoeing Men's Kayak Doubles, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Max Rendschmidt", - "gender": "M", - "height": "186", - "weight": "90", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 22, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Robert Peter \"Robbie\" Renwick", - "gender": "M", - "height": "184", - "weight": "80", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Lucas Martn Rey", - "gender": "M", - "height": "177", - "weight": "74", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 33, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Matas Rey", - "gender": "M", - "height": "178", - "weight": "72", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 31, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Felipe Reyes Cabaas", - "gender": "M", - "height": "205", - "weight": "109", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 36, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Kristina Joana Reynolds", - "gender": "F", - "height": "181", - "weight": "71", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 32, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Ghasem Gholamreza Rezaei", - "gender": "M", - "height": "185", - "weight": "100", - "sport": "Wrestling", - "team": "Iran", - "noc": "IRI", - "age": 30, - "event": "Wrestling Men's Heavyweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Kimberly Susan \"Kim\" Rhode (-Harryman)", - "gender": "F", - "height": "163", - "weight": "82", - "sport": "Shooting", - "team": "United States", - "noc": "USA", - "age": 37, - "event": "Shooting Women's Skeet", - "medal": "Bronze" - }, - { - "name": "Ri Se-Gwang", - "gender": "M", - "height": "155", - "weight": "54", - "sport": "Gymnastics", - "team": "North Korea", - "noc": "PRK", - "age": 31, - "event": "Gymnastics Men's Horse Vault", - "medal": "Gold" - }, - { - "name": "Helen Richardson-Walsh", - "gender": "F", - "height": "165", - "weight": "55", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 34, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Kathrin Louise \"Kate\" Richardson-Walsh", - "gender": "F", - "height": "171", - "weight": "66", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 36, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Linn-Kristin Ullevoldster Riegelhuth Koren", - "gender": "F", - "height": "175", - "weight": "66", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 32, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Rim Jong-Sim", - "gender": "F", - "height": "162", - "weight": "75", - "sport": "Weightlifting", - "team": "North Korea", - "noc": "PRK", - "age": 23, - "event": "Weightlifting Women's Heavyweight", - "medal": "Gold" - }, - { - "name": "Anne-Marie Rindom", - "gender": "F", - "height": "170", - "weight": "68", - "sport": "Sailing", - "team": "Denmark", - "noc": "DEN", - "age": 25, - "event": "Sailing Women's One Person Dinghy", - "medal": "Bronze" - }, - { - "name": "Teddy Pierre-Marie Riner", - "gender": "M", - "height": "203", - "weight": "139", - "sport": "Judo", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Judo Men's Heavyweight", - "medal": "Gold" - }, - { - "name": "Pandelela Rinong anak Pamg", - "gender": "F", - "height": "159", - "weight": "55", - "sport": "Diving", - "team": "Malaysia", - "noc": "MAS", - "age": 23, - "event": "Diving Women's Synchronized Platform", - "medal": "Silver" - }, - { - "name": "Jenny Rissveds", - "gender": "F", - "height": "165", - "weight": "55", - "sport": "Cycling", - "team": "Sweden", - "noc": "SWE", - "age": 22, - "event": "Cycling Women's Mountainbike, Cross-team", - "medal": "Gold" - }, - { - "name": "Saulius Ritter", - "gender": "M", - "height": "202", - "weight": "110", - "sport": "Rowing", - "team": "Lithuania", - "noc": "LTU", - "age": 27, - "event": "Rowing Men's Double Sculls", - "medal": "Silver" - }, - { - "name": "Hanna Serhivna Rizatdinova", - "gender": "F", - "height": "173", - "weight": "49", - "sport": "Rhythmic Gymnastics", - "team": "Ukraine", - "noc": "UKR", - "age": 23, - "event": "Rhythmic Gymnastics Women's Individual", - "medal": "Bronze" - }, - { - "name": "Mlina Robert-Michon", - "gender": "F", - "height": "180", - "weight": "85", - "sport": "Athletics", - "team": "France", - "noc": "FRA", - "age": 37, - "event": "Athletics Women's Discus Throw", - "medal": "Silver" - }, - { - "name": "Gil Roberts", - "gender": "M", - "height": "188", - "weight": "82", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "James Roberts", - "gender": "M", - "height": "194", - "weight": "90", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 25, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Mark Robertson", - "gender": "M", - "height": "189", - "weight": "96", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Kelsey Robinson", - "gender": "F", - "height": "188", - "weight": "70", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Sarah Elizabeth Robles", - "gender": "F", - "height": "178", - "weight": "141", - "sport": "Weightlifting", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Weightlifting Women's Super-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Brendon Rodney", - "gender": "M", - "height": "195", - "weight": "80", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Bronze" - }, - { - "name": "Rodrigo Caio Coquette Russo", - "gender": "M", - "height": "182", - "weight": "70", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Rodrigo Dourado Cunha", - "gender": "M", - "height": "186", - "weight": "79", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Leonor Rodrguez Manso", - "gender": "F", - "height": "180", - "weight": "72", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 24, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Misael Uziel Rodrguez Olivas", - "gender": "M", - "height": "178", - "weight": "75", - "sport": "Boxing", - "team": "Mexico", - "noc": "MEX", - "age": 22, - "event": "Boxing Men's Middleweight", - "medal": "Bronze" - }, - { - "name": "Sergio Rodrguez Gmez", - "gender": "M", - "height": "191", - "weight": "80", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 30, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "James Rodwell", - "gender": "M", - "height": "195", - "weight": "105", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Boudewijn Rell", - "gender": "M", - "height": "195", - "weight": "100", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 27, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Thomas Rhler", - "gender": "M", - "height": "192", - "weight": "92", - "sport": "Athletics", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Athletics Men's Javelin Throw", - "medal": "Gold" - }, - { - "name": "Yulimar del Valle Rojas Rodrguez", - "gender": "F", - "height": "192", - "weight": "72", - "sport": "Athletics", - "team": "Venezuela", - "noc": "VEN", - "age": 20, - "event": "Athletics Women's Triple Jump", - "medal": "Silver" - }, - { - "name": "Fridolina Rolf", - "gender": "F", - "height": "178", - "weight": "74", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 22, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Brianna Rollins", - "gender": "F", - "height": "165", - "weight": "59", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Athletics Women's 100 metres Hurdles", - "medal": "Gold" - }, - { - "name": "Svetlana Alekseyevna Romashina", - "gender": "F", - "height": "173", - "weight": "57", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 26, - "event": "Synchronized Swimming Women's Duet", - "medal": "Gold" - }, - { - "name": "Svetlana Alekseyevna Romashina", - "gender": "F", - "height": "173", - "weight": "57", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 26, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Leticia Romero Gonzlez", - "gender": "F", - "height": "177", - "weight": "62", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 21, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Natalie Rooney", - "gender": "F", - "height": "181", - "weight": "95", - "sport": "Shooting", - "team": "New Zealand", - "noc": "NZL", - "age": 28, - "event": "Shooting Women's Trap", - "medal": "Silver" - }, - { - "name": "Deanne Rose", - "gender": "F", - "height": "160", - "weight": "62", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 17, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Justin Peter Rose", - "gender": "M", - "height": "191", - "weight": "NA", - "sport": "Golf", - "team": "Great Britain", - "noc": "GBR", - "age": 36, - "event": "Golf Men's Individual", - "medal": "Gold" - }, - { - "name": "Shane Rose", - "gender": "M", - "height": "181", - "weight": "80", - "sport": "Equestrianism", - "team": "Australia", - "noc": "AUS", - "age": 43, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Bronze" - }, - { - "name": "April Elizabeth Ross", - "gender": "F", - "height": "185", - "weight": "75", - "sport": "Beach Volleyball", - "team": "United States-1", - "noc": "USA", - "age": 34, - "event": "Beach Volleyball Women's Beach Volleyball", - "medal": "Bronze" - }, - { - "name": "Gabriele Rossetti", - "gender": "M", - "height": "176", - "weight": "65", - "sport": "Shooting", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Shooting Men's Skeet", - "medal": "Gold" - }, - { - "name": "Lucas Rafael Rossi", - "gender": "M", - "height": "188", - "weight": "88", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 31, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Salvatore Rossini", - "gender": "M", - "height": "185", - "weight": "82", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 30, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Kianoush Rostami", - "gender": "M", - "height": "177", - "weight": "85", - "sport": "Weightlifting", - "team": "Iran", - "noc": "IRI", - "age": 25, - "event": "Weightlifting Men's Light-Heavyweight", - "medal": "Gold" - }, - { - "name": "Snke Rothenberger", - "gender": "M", - "height": "193", - "weight": "73", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Gold" - }, - { - "name": "Joanna Katie Rowsell Shand", - "gender": "F", - "height": "180", - "weight": "69", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Cycling Women's Team Pursuit", - "medal": "Gold" - }, - { - "name": "Philippe Rozier", - "gender": "M", - "height": "173", - "weight": "63", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 53, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Gold" - }, - { - "name": "Elin Ingrid Johanna Rubensson", - "gender": "F", - "height": "166", - "weight": "59", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 23, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Ricard \"Ricky\" Rubio Vives", - "gender": "M", - "height": "193", - "weight": "82", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 25, - "event": "Basketball Men's Basketball", - "medal": "Bronze" - }, - { - "name": "Taylor Madison Ruck", - "gender": "F", - "height": "180", - "weight": "60", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 16, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Taylor Madison Ruck", - "gender": "F", - "height": "180", - "weight": "60", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 16, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "David Lekuta Rudisha", - "gender": "M", - "height": "190", - "weight": "76", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 27, - "event": "Athletics Men's 800 metres", - "medal": "Gold" - }, - { - "name": "Christopher Rhr", - "gender": "M", - "height": "180", - "weight": "77", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 22, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Cierra Runge", - "gender": "F", - "height": "193", - "weight": "85", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Galen Rupp", - "gender": "M", - "height": "181", - "weight": "61", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Athletics Men's Marathon", - "medal": "Bronze" - }, - { - "name": "Aaron Russell", - "gender": "M", - "height": "206", - "weight": "93", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Alonzo Russell", - "gender": "M", - "height": "174", - "weight": "68", - "sport": "Athletics", - "team": "Bahamas", - "noc": "BAH", - "age": 24, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Bronze" - }, - { - "name": "Kelly Russell", - "gender": "F", - "height": "178", - "weight": "83", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 29, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Gregory James \"Greg\" Rutherford", - "gender": "M", - "height": "188", - "weight": "92", - "sport": "Athletics", - "team": "Great Britain", - "noc": "GBR", - "age": 29, - "event": "Athletics Men's Long Jump", - "medal": "Bronze" - }, - { - "name": "William \"Will\" Ryan", - "gender": "M", - "height": "193", - "weight": "75", - "sport": "Sailing", - "team": "Australia", - "noc": "AUS", - "age": 27, - "event": "Sailing Men's Two Person Dinghy", - "medal": "Silver" - }, - { - "name": "Yevgeny Mikhaylovich Rylov", - "gender": "M", - "height": "184", - "weight": "69", - "sport": "Swimming", - "team": "Russia", - "noc": "RUS", - "age": 19, - "event": "Swimming Men's 200 metres Backstroke", - "medal": "Bronze" - }, - { - "name": "Olga Sergeyevna Rypakova (Alekseyeva-)", - "gender": "F", - "height": "183", - "weight": "62", - "sport": "Athletics", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 31, - "event": "Athletics Women's Triple Jump", - "medal": "Bronze" - }, - { - "name": "Lucas Saatkamp", - "gender": "M", - "height": "209", - "weight": "101", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 30, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Abdul-Rashid Bulayevich Sadulayev", - "gender": "M", - "height": "177", - "weight": "86", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 20, - "event": "Wrestling Men's Light-Heavyweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Lucie afov", - "gender": "F", - "height": "177", - "weight": "65", - "sport": "Tennis", - "team": "Czech Republic-1", - "noc": "CZE", - "age": 29, - "event": "Tennis Women's Doubles", - "medal": "Bronze" - }, - { - "name": "Timur Marselevich Safin", - "gender": "M", - "height": "182", - "weight": "82", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 23, - "event": "Fencing Men's Foil, Individual", - "medal": "Bronze" - }, - { - "name": "Timur Marselevich Safin", - "gender": "M", - "height": "182", - "weight": "82", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 23, - "event": "Fencing Men's Foil, Team", - "medal": "Gold" - }, - { - "name": "Dylan Michael Sage", - "gender": "M", - "height": "188", - "weight": "96", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 24, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Kamran ahsuvarl", - "gender": "M", - "height": "180", - "weight": "75", - "sport": "Boxing", - "team": "Azerbaijan", - "noc": "AZE", - "age": 23, - "event": "Boxing Men's Middleweight", - "medal": "Bronze" - }, - { - "name": "Ibragim Magomed-Saidovich Saidov", - "gender": "M", - "height": "180", - "weight": "125", - "sport": "Wrestling", - "team": "Belarus", - "noc": "BLR", - "age": 31, - "event": "Wrestling Men's Super-Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Masato Sakai", - "gender": "M", - "height": "181", - "weight": "77", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 21, - "event": "Swimming Men's 200 metres Butterfly", - "medal": "Silver" - }, - { - "name": "Juan Manuel Saladino", - "gender": "M", - "height": "174", - "weight": "73", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 28, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Popoola Sodiq Saliu", - "gender": "M", - "height": "170", - "weight": "51", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 21, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Katja Steen Salskov-Iversen", - "gender": "F", - "height": "173", - "weight": "70", - "sport": "Sailing", - "team": "Denmark", - "noc": "DEN", - "age": 21, - "event": "Sailing Women's Skiff", - "medal": "Bronze" - }, - { - "name": "Sara Ahmed Samir", - "gender": "F", - "height": "155", - "weight": "58", - "sport": "Weightlifting", - "team": "Egypt", - "noc": "EGY", - "age": 18, - "event": "Weightlifting Women's Light-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Jessica Eva Katarina Samuelsson", - "gender": "F", - "height": "166", - "weight": "59", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 24, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Germn Sal Snchez Snchez", - "gender": "M", - "height": "165", - "weight": "50", - "sport": "Diving", - "team": "Mexico", - "noc": "MEX", - "age": 24, - "event": "Diving Men's Platform", - "medal": "Silver" - }, - { - "name": "Taylor Sander", - "gender": "M", - "height": "193", - "weight": "86", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 24, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Andrea Santarelli", - "gender": "M", - "height": "184", - "weight": "76", - "sport": "Fencing", - "team": "Italy", - "noc": "ITA", - "age": 23, - "event": "Fencing Men's epee, Team", - "medal": "Silver" - }, - { - "name": "Albert Saritov", - "gender": "M", - "height": "188", - "weight": "100", - "sport": "Wrestling", - "team": "Romania", - "noc": "ROU", - "age": 31, - "event": "Wrestling Men's Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Or Sasson", - "gender": "M", - "height": "193", - "weight": "120", - "sport": "Judo", - "team": "Israel", - "noc": "ISR", - "age": 25, - "event": "Judo Men's Heavyweight", - "medal": "Bronze" - }, - { - "name": "William Spencer \"Will\" Satch", - "gender": "M", - "height": "198", - "weight": "100", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Martin Sauer", - "gender": "M", - "height": "169", - "weight": "55", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 33, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Katerine Savard", - "gender": "F", - "height": "167", - "weight": "54", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 23, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Erislandy Savn Cotilla", - "gender": "M", - "height": "192", - "weight": "91", - "sport": "Boxing", - "team": "Cuba", - "noc": "CUB", - "age": 26, - "event": "Boxing Men's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Mohamed Karim \"Moe\" Sbihi", - "gender": "M", - "height": "202", - "weight": "110", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Rowing Men's Coxless Fours", - "medal": "Gold" - }, - { - "name": "Sophie Celina Scheder", - "gender": "F", - "height": "167", - "weight": "56", - "sport": "Gymnastics", - "team": "Germany", - "noc": "GER", - "age": 19, - "event": "Gymnastics Women's Uneven Bars", - "medal": "Bronze" - }, - { - "name": "Charlotta Eva \"Lotta\" Schelin", - "gender": "F", - "height": "179", - "weight": "64", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 32, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Dafne Schippers", - "gender": "F", - "height": "179", - "weight": "70", - "sport": "Athletics", - "team": "Netherlands", - "noc": "NED", - "age": 24, - "event": "Athletics Women's 200 metres", - "medal": "Silver" - }, - { - "name": "Lauren Schmetterling", - "gender": "F", - "height": "180", - "weight": "77", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Lisa Schmidla", - "gender": "F", - "height": "173", - "weight": "76", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Gold" - }, - { - "name": "Bruno Oscar Schmidt", - "gender": "M", - "height": "185", - "weight": "87", - "sport": "Beach Volleyball", - "team": "Brazil-1", - "noc": "BRA", - "age": 29, - "event": "Beach Volleyball Men's Beach Volleyball", - "medal": "Gold" - }, - { - "name": "Richard Schmidt", - "gender": "M", - "height": "191", - "weight": "87", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Rowing Men's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Sophie Diana Schmidt", - "gender": "F", - "height": "172", - "weight": "71", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 28, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Allison Rodgers Schmitt", - "gender": "F", - "height": "185", - "weight": "75", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Allison Rodgers Schmitt", - "gender": "F", - "height": "185", - "weight": "75", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Dorothee Schneider (-Krumhoff)", - "gender": "F", - "height": "169", - "weight": "63", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 47, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Gold" - }, - { - "name": "Henri Schoeman", - "gender": "M", - "height": "170", - "weight": "59", - "sport": "Triathlon", - "team": "South Africa", - "noc": "RSA", - "age": 24, - "event": "Triathlon Men's Olympic Distance", - "medal": "Bronze" - }, - { - "name": "Jonathan Michael \"Jon\" Schofield", - "gender": "M", - "height": "182", - "weight": "80", - "sport": "Canoeing", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Canoeing Men's Kayak Doubles, 200 metres", - "medal": "Silver" - }, - { - "name": "Lauritz Schoof", - "gender": "M", - "height": "195", - "weight": "98", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Gold" - }, - { - "name": "Joseph Isaac Schooling", - "gender": "M", - "height": "184", - "weight": "74", - "sport": "Swimming", - "team": "Singapore", - "noc": "SGP", - "age": 21, - "event": "Swimming Men's 100 metres Butterfly", - "medal": "Gold" - }, - { - "name": "Olivia Alma Charlotta Schough", - "gender": "F", - "height": "172", - "weight": "60", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 25, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Anne Schrder", - "gender": "F", - "height": "170", - "weight": "58", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Almuth Schult", - "gender": "F", - "height": "180", - "weight": "71", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Football Women's Football", - "medal": "Gold" - }, - { - "name": "Karl Schulze", - "gender": "M", - "height": "190", - "weight": "100", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Gold" - }, - { - "name": "Simon Schrch", - "gender": "M", - "height": "186", - "weight": "75", - "sport": "Rowing", - "team": "Switzerland", - "noc": "SUI", - "age": 25, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Gold" - }, - { - "name": "Nino Schurter", - "gender": "M", - "height": "173", - "weight": "68", - "sport": "Cycling", - "team": "Switzerland", - "noc": "SUI", - "age": 30, - "event": "Cycling Men's Mountainbike, Cross-team", - "medal": "Gold" - }, - { - "name": "Lisa Schtze", - "gender": "F", - "height": "172", - "weight": "61", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 19, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Callum Scotson", - "gender": "M", - "height": "184", - "weight": "77", - "sport": "Cycling", - "team": "Australia", - "noc": "AUS", - "age": 19, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Silver" - }, - { - "name": "Desiree Rose Marie Scott", - "gender": "F", - "height": "160", - "weight": "62", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 29, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Duncan William MacNaughton Scott", - "gender": "M", - "height": "190", - "weight": "72", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 19, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Duncan William MacNaughton Scott", - "gender": "M", - "height": "190", - "weight": "72", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 19, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Giles Lyndon Scott", - "gender": "M", - "height": "197", - "weight": "95", - "sport": "Sailing", - "team": "Great Britain", - "noc": "GBR", - "age": 29, - "event": "Sailing Men's One Person Heavyweight Dinghy", - "medal": "Gold" - }, - { - "name": "Stephen \"Steve\" Scott", - "gender": "M", - "height": "172", - "weight": "84", - "sport": "Shooting", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Shooting Men's Double Trap", - "medal": "Bronze" - }, - { - "name": "Rebecca Scown", - "gender": "F", - "height": "178", - "weight": "70", - "sport": "Rowing", - "team": "New Zealand", - "noc": "NZL", - "age": 32, - "event": "Rowing Women's Coxless Pairs", - "medal": "Silver" - }, - { - "name": "Anna Sergeyevna Sedoykina", - "gender": "F", - "height": "184", - "weight": "74", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 32, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Emily Jane Seebohm", - "gender": "F", - "height": "180", - "weight": "70", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Sara Caroline Seger", - "gender": "F", - "height": "176", - "weight": "62", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 31, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Melissa Seidemann", - "gender": "F", - "height": "183", - "weight": "104", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Davie Selke", - "gender": "M", - "height": "192", - "weight": "82", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Linda Birgitta Sembrant", - "gender": "F", - "height": "175", - "weight": "67", - "sport": "Football", - "team": "Sweden", - "noc": "SWE", - "age": 29, - "event": "Football Women's Football", - "medal": "Silver" - }, - { - "name": "Mokgadi Caster Semenya", - "gender": "F", - "height": "178", - "weight": "70", - "sport": "Athletics", - "team": "South Africa", - "noc": "RSA", - "age": 25, - "event": "Athletics Women's 800 metres", - "medal": "Gold" - }, - { - "name": "Sergey Viktorovich Semyonov", - "gender": "M", - "height": "187", - "weight": "130", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 20, - "event": "Wrestling Men's Super-Heavyweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Anna Sergeyevna Sen", - "gender": "F", - "height": "186", - "weight": "81", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Seabelo Mohanoe Senatla", - "gender": "M", - "height": "177", - "weight": "82", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 23, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Anelo etka", - "gender": "M", - "height": "186", - "weight": "87", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 30, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Daiya Seto", - "gender": "M", - "height": "174", - "weight": "72", - "sport": "Swimming", - "team": "Japan", - "noc": "JPN", - "age": 22, - "event": "Swimming Men's 400 metres Individual Medley", - "medal": "Bronze" - }, - { - "name": "Torul sgrov", - "gender": "M", - "height": "170", - "weight": "65", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 23, - "event": "Wrestling Men's Welterweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Dariga Shakimova", - "gender": "F", - "height": "172", - "weight": "75", - "sport": "Boxing", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 27, - "event": "Boxing Women's Middleweight", - "medal": "Bronze" - }, - { - "name": "Xiaona Shan", - "gender": "F", - "height": "165", - "weight": "54", - "sport": "Table Tennis", - "team": "Germany", - "noc": "GER", - "age": 33, - "event": "Table Tennis Women's Team", - "medal": "Silver" - }, - { - "name": "Shang Chunsong", - "gender": "F", - "height": "143", - "weight": "34", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 20, - "event": "Gymnastics Women's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Lasha Shavdatuashvili", - "gender": "M", - "height": "170", - "weight": "75", - "sport": "Judo", - "team": "Georgia", - "noc": "GEO", - "age": 24, - "event": "Judo Men's Lightweight", - "medal": "Bronze" - }, - { - "name": "Abdullahi Shehu", - "gender": "M", - "height": "170", - "weight": "72", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 23, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Shi Jinglin", - "gender": "F", - "height": "175", - "weight": "68", - "sport": "Swimming", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Swimming Women's 200 metres Breaststroke", - "medal": "Bronze" - }, - { - "name": "Shi Tingmao", - "gender": "F", - "height": "159", - "weight": "52", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Diving Women's Springboard", - "medal": "Gold" - }, - { - "name": "Shi Tingmao", - "gender": "F", - "height": "159", - "weight": "52", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Diving Women's Synchronized Springboard", - "medal": "Gold" - }, - { - "name": "Shi Zhiyong", - "gender": "M", - "height": "168", - "weight": "70", - "sport": "Weightlifting", - "team": "China", - "noc": "CHN", - "age": 22, - "event": "Weightlifting Men's Lightweight", - "medal": "Gold" - }, - { - "name": "Claressa Maria Shields", - "gender": "F", - "height": "175", - "weight": "75", - "sport": "Boxing", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Boxing Women's Middleweight", - "medal": "Gold" - }, - { - "name": "Thomas Allen \"Tom\" Shields", - "gender": "M", - "height": "193", - "weight": "86", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Shin Seung-Chan", - "gender": "F", - "height": "173", - "weight": "70", - "sport": "Badminton", - "team": "South Korea-1", - "noc": "KOR", - "age": 21, - "event": "Badminton Women's Doubles", - "medal": "Bronze" - }, - { - "name": "Kenzo Shirai", - "gender": "M", - "height": "162", - "weight": "51", - "sport": "Gymnastics", - "team": "Japan", - "noc": "JPN", - "age": 19, - "event": "Gymnastics Men's Team All-Around", - "medal": "Gold" - }, - { - "name": "Kenzo Shirai", - "gender": "M", - "height": "162", - "weight": "51", - "sport": "Gymnastics", - "team": "Japan", - "noc": "JPN", - "age": 19, - "event": "Gymnastics Men's Horse Vault", - "medal": "Bronze" - }, - { - "name": "Alla Anatolyevna Shishkina", - "gender": "F", - "height": "170", - "weight": "54", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Darya Mikhaylovna Shmelyova", - "gender": "F", - "height": "164", - "weight": "64", - "sport": "Cycling", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Cycling Women's Team Sprint", - "medal": "Silver" - }, - { - "name": "Erik Thomas Shoji", - "gender": "M", - "height": "183", - "weight": "73", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Kawika Shoji", - "gender": "M", - "height": "191", - "weight": "88", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Ilya Anatolyevich Shtokalov", - "gender": "M", - "height": "185", - "weight": "95", - "sport": "Canoeing", - "team": "Russia", - "noc": "RUS", - "age": 29, - "event": "Canoeing Men's Canadian Singles, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Mariya Vladimirovna Shurochkina", - "gender": "F", - "height": "164", - "weight": "48", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Lyubov Andreyevna Shutova", - "gender": "F", - "height": "177", - "weight": "64", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 33, - "event": "Fencing Women's epee, Team", - "medal": "Bronze" - }, - { - "name": "Si Yajie", - "gender": "F", - "height": "164", - "weight": "57", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 17, - "event": "Diving Women's Platform", - "medal": "Silver" - }, - { - "name": "Olivier Floris Johannes Siegelaar", - "gender": "M", - "height": "197", - "weight": "100", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 29, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Erlon de Souza Silva", - "gender": "M", - "height": "175", - "weight": "78", - "sport": "Canoeing", - "team": "Brazil", - "noc": "BRA", - "age": 25, - "event": "Canoeing Men's Canadian Doubles, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Rafaela Lopes Silva", - "gender": "F", - "height": "169", - "weight": "57", - "sport": "Judo", - "team": "Brazil", - "noc": "BRA", - "age": 24, - "event": "Judo Women's Lightweight", - "medal": "Gold" - }, - { - "name": "Anastasiya Dmitriyevna Simanovich", - "gender": "F", - "height": "174", - "weight": "69", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Georgia Simmerling", - "gender": "F", - "height": "172", - "weight": "67", - "sport": "Cycling", - "team": "Canada", - "noc": "CAN", - "age": 27, - "event": "Cycling Women's Team Pursuit", - "medal": "Bronze" - }, - { - "name": "Kerry Simmonds", - "gender": "F", - "height": "183", - "weight": "82", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Marko Simonovi", - "gender": "M", - "height": "203", - "weight": "96", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 30, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Seth Muenfuh Sincere", - "gender": "M", - "height": "170", - "weight": "77", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 18, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Christine Margaret Sinclair", - "gender": "F", - "height": "176", - "weight": "75", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 33, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Pusarla Venkata \"P. V.\" Sindhu", - "gender": "F", - "height": "179", - "weight": "65", - "sport": "Badminton", - "team": "India", - "noc": "IND", - "age": 21, - "event": "Badminton Women's Singles", - "medal": "Silver" - }, - { - "name": "Nataliya Siniin", - "gender": "F", - "height": "160", - "weight": "58", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 31, - "event": "Wrestling Women's Featherweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Martin Sinkovi", - "gender": "M", - "height": "188", - "weight": "95", - "sport": "Rowing", - "team": "Croatia", - "noc": "CRO", - "age": 26, - "event": "Rowing Men's Double Sculls", - "medal": "Gold" - }, - { - "name": "Valent Sinkovi", - "gender": "M", - "height": "187", - "weight": "93", - "sport": "Rowing", - "team": "Croatia", - "noc": "CRO", - "age": 28, - "event": "Rowing Men's Double Sculls", - "medal": "Gold" - }, - { - "name": "Maicon de Andrade Siqueira", - "gender": "M", - "height": "190", - "weight": "90", - "sport": "Taekwondo", - "team": "Brazil", - "noc": "BRA", - "age": 23, - "event": "Taekwondo Men's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Pimsiri Sirikaew", - "gender": "F", - "height": "152", - "weight": "58", - "sport": "Weightlifting", - "team": "Thailand", - "noc": "THA", - "age": 26, - "event": "Weightlifting Women's Lightweight", - "medal": "Silver" - }, - { - "name": "Sarah Frederica Sjstrm", - "gender": "F", - "height": "182", - "weight": "76", - "sport": "Swimming", - "team": "Sweden", - "noc": "SWE", - "age": 22, - "event": "Swimming Women's 100 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Sarah Frederica Sjstrm", - "gender": "F", - "height": "182", - "weight": "76", - "sport": "Swimming", - "team": "Sweden", - "noc": "SWE", - "age": 22, - "event": "Swimming Women's 200 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Sarah Frederica Sjstrm", - "gender": "F", - "height": "182", - "weight": "76", - "sport": "Swimming", - "team": "Sweden", - "noc": "SWE", - "age": 22, - "event": "Swimming Women's 100 metres Butterfly", - "medal": "Gold" - }, - { - "name": "Ladislav kantr", - "gender": "M", - "height": "189", - "weight": "80", - "sport": "Canoeing", - "team": "Slovakia", - "noc": "SVK", - "age": 33, - "event": "Canoeing Men's Canadian Doubles, Slalom", - "medal": "Gold" - }, - { - "name": "Peter kantr", - "gender": "M", - "height": "182", - "weight": "78", - "sport": "Canoeing", - "team": "Slovakia", - "noc": "SVK", - "age": 34, - "event": "Canoeing Men's Canadian Doubles, Slalom", - "medal": "Gold" - }, - { - "name": "Nicholas David \"Nick\" Skelton", - "gender": "M", - "height": "175", - "weight": "76", - "sport": "Equestrianism", - "team": "Great Britain", - "noc": "GBR", - "age": 58, - "event": "Equestrianism Mixed Jumping, Individual", - "medal": "Gold" - }, - { - "name": "Callum Skinner", - "gender": "M", - "height": "187", - "weight": "93", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Cycling Men's Sprint", - "medal": "Silver" - }, - { - "name": "Callum Skinner", - "gender": "M", - "height": "187", - "weight": "93", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Cycling Men's Team Sprint", - "medal": "Gold" - }, - { - "name": "Catherine Skinner", - "gender": "F", - "height": "172", - "weight": "80", - "sport": "Shooting", - "team": "Australia", - "noc": "AUS", - "age": 26, - "event": "Shooting Women's Trap", - "medal": "Gold" - }, - { - "name": "Sara Slott-Bruun Petersen", - "gender": "F", - "height": "171", - "weight": "57", - "sport": "Athletics", - "team": "Denmark", - "noc": "DEN", - "age": 29, - "event": "Athletics Women's 400 metres Hurdles", - "medal": "Silver" - }, - { - "name": "Yeldos Bakhtybayevich Smetov", - "gender": "M", - "height": "167", - "weight": "60", - "sport": "Judo", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 23, - "event": "Judo Men's Extra-Lightweight", - "medal": "Silver" - }, - { - "name": "Anabelle Smith", - "gender": "F", - "height": "168", - "weight": "55", - "sport": "Diving", - "team": "Australia", - "noc": "AUS", - "age": 23, - "event": "Diving Women's Synchronized Springboard", - "medal": "Bronze" - }, - { - "name": "Clark Smith", - "gender": "M", - "height": "206", - "weight": "90", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "David Michael Smith", - "gender": "M", - "height": "201", - "weight": "86", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Albertus Stephanus \"Kwagga\" Smith", - "gender": "M", - "height": "180", - "weight": "90", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 23, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Leah Smith", - "gender": "F", - "height": "178", - "weight": "67", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Women's 400 metres Freestyle", - "medal": "Bronze" - }, - { - "name": "Leah Smith", - "gender": "F", - "height": "178", - "weight": "67", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Women's 4 x 200 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Louis Antoine Smith", - "gender": "M", - "height": "184", - "weight": "76", - "sport": "Gymnastics", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Gymnastics Men's Pommelled Horse", - "medal": "Silver" - }, - { - "name": "Olivia Smoliga", - "gender": "F", - "height": "188", - "weight": "72", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Katelin Snyder (-Guregian)", - "gender": "F", - "height": "163", - "weight": "50", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Rowing Women's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Kyle Frederick Snyder", - "gender": "M", - "height": "180", - "weight": "102", - "sport": "Wrestling", - "team": "United States", - "noc": "USA", - "age": 20, - "event": "Wrestling Men's Heavyweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Philippus Albertus Borman \"Philip\" Snyman", - "gender": "M", - "height": "188", - "weight": "95", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 29, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Rishod Rashidovich Sobirov", - "gender": "M", - "height": "168", - "weight": "66", - "sport": "Judo", - "team": "Uzbekistan", - "noc": "UZB", - "age": 29, - "event": "Judo Men's Half-Lightweight", - "medal": "Bronze" - }, - { - "name": "Yevgeniya Viktorovna Soboleva-Khokhriakova", - "gender": "F", - "height": "180", - "weight": "75", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Jack Sock", - "gender": "M", - "height": "191", - "weight": "84", - "sport": "Tennis", - "team": "United States-2", - "noc": "USA", - "age": 23, - "event": "Tennis Mixed Doubles", - "medal": "Gold" - }, - { - "name": "Jack Sock", - "gender": "M", - "height": "191", - "weight": "84", - "sport": "Tennis", - "team": "United States-2", - "noc": "USA", - "age": 23, - "event": "Tennis Men's Doubles", - "medal": "Bronze" - }, - { - "name": "Sanna Charlotte Solberg", - "gender": "F", - "height": "178", - "weight": "70", - "sport": "Handball", - "team": "Norway", - "noc": "NOR", - "age": 26, - "event": "Handball Women's Handball", - "medal": "Bronze" - }, - { - "name": "Franck Robert Bernard Solforosi", - "gender": "M", - "height": "184", - "weight": "70", - "sport": "Rowing", - "team": "France", - "noc": "FRA", - "age": 31, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Bronze" - }, - { - "name": "Petrissa Solja", - "gender": "F", - "height": "168", - "weight": "67", - "sport": "Table Tennis", - "team": "Germany", - "noc": "GER", - "age": 22, - "event": "Table Tennis Women's Team", - "medal": "Silver" - }, - { - "name": "Joyce Sombroek", - "gender": "F", - "height": "179", - "weight": "64", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 25, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Pter Somfai", - "gender": "M", - "height": "188", - "weight": "85", - "sport": "Fencing", - "team": "Hungary", - "noc": "HUN", - "age": 36, - "event": "Fencing Men's epee, Team", - "medal": "Bronze" - }, - { - "name": "Cdric Sorhaindo", - "gender": "M", - "height": "192", - "weight": "110", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 32, - "event": "Handball Men's Handball", - "medal": "Silver" - }, - { - "name": "Lorenzo Sotomayor Collazo", - "gender": "M", - "height": "185", - "weight": "64", - "sport": "Boxing", - "team": "Azerbaijan", - "noc": "AZE", - "age": 31, - "event": "Boxing Men's Light-Welterweight", - "medal": "Silver" - }, - { - "name": "Daniele Pasquale Sottile", - "gender": "M", - "height": "186", - "weight": "73", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 36, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Douglas Correia de Souza", - "gender": "M", - "height": "199", - "weight": "75", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 20, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Maurcio Luiz de Souza", - "gender": "M", - "height": "209", - "weight": "93", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 27, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Kasper Sndergaard Sarup", - "gender": "M", - "height": "195", - "weight": "95", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 35, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Ivana panovi", - "gender": "F", - "height": "176", - "weight": "65", - "sport": "Athletics", - "team": "Serbia", - "noc": "SRB", - "age": 26, - "event": "Athletics Women's Long Jump", - "medal": "Bronze" - }, - { - "name": "Roscko Shane Specman", - "gender": "M", - "height": "174", - "weight": "81", - "sport": "Rugby Sevens", - "team": "South Africa", - "noc": "RSA", - "age": 27, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Ashley Spencer", - "gender": "F", - "height": "178", - "weight": "59", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Athletics Women's 400 metres Hurdles", - "medal": "Bronze" - }, - { - "name": "Darya Sergeyevna Spiridonova", - "gender": "F", - "height": "156", - "weight": "45", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 18, - "event": "Gymnastics Women's Team All-Around", - "medal": "Silver" - }, - { - "name": "Nicola Spirig Hug", - "gender": "F", - "height": "166", - "weight": "54", - "sport": "Triathlon", - "team": "Switzerland", - "noc": "SUI", - "age": 34, - "event": "Triathlon Women's Olympic Distance", - "medal": "Silver" - }, - { - "name": "Barbora potkov", - "gender": "F", - "height": "182", - "weight": "80", - "sport": "Athletics", - "team": "Czech Republic", - "noc": "CZE", - "age": 35, - "event": "Athletics Women's Javelin Throw", - "medal": "Bronze" - }, - { - "name": "Maria Springwald", - "gender": "F", - "height": "174", - "weight": "69", - "sport": "Rowing", - "team": "Poland", - "noc": "POL", - "age": 25, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Bronze" - }, - { - "name": "Annika Sprink", - "gender": "F", - "height": "173", - "weight": "61", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 20, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Sukanya Srisurat", - "gender": "F", - "height": "155", - "weight": "58", - "sport": "Weightlifting", - "team": "Thailand", - "noc": "THA", - "age": 21, - "event": "Weightlifting Women's Lightweight", - "medal": "Gold" - }, - { - "name": "rif rifov", - "gender": "M", - "height": "180", - "weight": "97", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 27, - "event": "Wrestling Men's Light-Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Sabah riti", - "gender": "M", - "height": "192", - "weight": "130", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 27, - "event": "Wrestling Men's Super-Heavyweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Mariya Stadnik", - "gender": "F", - "height": "157", - "weight": "48", - "sport": "Wrestling", - "team": "Azerbaijan", - "noc": "AZE", - "age": 28, - "event": "Wrestling Women's Flyweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Dragana Stankovi", - "gender": "F", - "height": "195", - "weight": "73", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 21, - "event": "Basketball Women's Basketball", - "medal": "Bronze" - }, - { - "name": "Heather Mary Stanning", - "gender": "F", - "height": "181", - "weight": "72", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 31, - "event": "Rowing Women's Coxless Pairs", - "medal": "Gold" - }, - { - "name": "Charlotte Stapenhorst", - "gender": "F", - "height": "168", - "weight": "68", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Kevin Staut", - "gender": "M", - "height": "182", - "weight": "70", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 35, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Gold" - }, - { - "name": "Ashley Steacy", - "gender": "F", - "height": "158", - "weight": "64", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 29, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Davor tefanek", - "gender": "M", - "height": "170", - "weight": "66", - "sport": "Wrestling", - "team": "Serbia", - "noc": "SRB", - "age": 30, - "event": "Wrestling Men's Welterweight, Greco-Roman", - "medal": "Gold" - }, - { - "name": "Aikaterini \"Ekaterini\" Stefanidi", - "gender": "F", - "height": "173", - "weight": "59", - "sport": "Athletics", - "team": "Greece", - "noc": "GRE", - "age": 26, - "event": "Athletics Women's Pole Vault", - "medal": "Gold" - }, - { - "name": "Margaret Ann \"Maggie\" Steffens", - "gender": "F", - "height": "173", - "weight": "74", - "sport": "Water Polo", - "team": "United States", - "noc": "USA", - "age": 23, - "event": "Water Polo Women's Water Polo", - "medal": "Gold" - }, - { - "name": "Bastian Steger", - "gender": "M", - "height": "170", - "weight": "65", - "sport": "Table Tennis", - "team": "Germany", - "noc": "GER", - "age": 35, - "event": "Table Tennis Men's Team", - "medal": "Bronze" - }, - { - "name": "Giulia Steingruber", - "gender": "F", - "height": "160", - "weight": "56", - "sport": "Gymnastics", - "team": "Switzerland", - "noc": "SUI", - "age": 22, - "event": "Gymnastics Women's Horse Vault", - "medal": "Bronze" - }, - { - "name": "Henrik Olof Stenson", - "gender": "M", - "height": "188", - "weight": "86", - "sport": "Golf", - "team": "Sweden", - "noc": "SWE", - "age": 40, - "event": "Golf Men's Individual", - "medal": "Silver" - }, - { - "name": "Radek tpnek", - "gender": "M", - "height": "186", - "weight": "79", - "sport": "Tennis", - "team": "Czech Republic", - "noc": "CZE", - "age": 37, - "event": "Tennis Mixed Doubles", - "medal": "Bronze" - }, - { - "name": "Inna Yakovlevna Stepanova", - "gender": "F", - "height": "176", - "weight": "63", - "sport": "Archery", - "team": "Russia", - "noc": "RUS", - "age": 26, - "event": "Archery Women's Team", - "medal": "Silver" - }, - { - "name": "Jan trba", - "gender": "M", - "height": "183", - "weight": "85", - "sport": "Canoeing", - "team": "Czech Republic", - "noc": "CZE", - "age": 35, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Jovana Stevanovi", - "gender": "F", - "height": "192", - "weight": "72", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 24, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Travis Stevens", - "gender": "M", - "height": "181", - "weight": "80", - "sport": "Judo", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Judo Men's Half-Middleweight", - "medal": "Silver" - }, - { - "name": "Shakur Stevenson", - "gender": "M", - "height": "173", - "weight": "56", - "sport": "Boxing", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Boxing Men's Bantamweight", - "medal": "Silver" - }, - { - "name": "Breanna Mackenzie Stewart", - "gender": "F", - "height": "193", - "weight": "79", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Vladimir timac", - "gender": "M", - "height": "211", - "weight": "112", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 28, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Toni Stipanovi", - "gender": "M", - "height": "178", - "weight": "81", - "sport": "Sailing", - "team": "Croatia", - "noc": "CRO", - "age": 30, - "event": "Sailing Men's One Person Dinghy", - "medal": "Silver" - }, - { - "name": "Emmanuel Stockbroekx", - "gender": "M", - "height": "189", - "weight": "88", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 22, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Genevra \"Gevvie\" Stone", - "gender": "F", - "height": "183", - "weight": "71", - "sport": "Rowing", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Rowing Women's Single Sculls", - "medal": "Silver" - }, - { - "name": "Are Weierholt Strandli", - "gender": "M", - "height": "181", - "weight": "69", - "sport": "Rowing", - "team": "Norway", - "noc": "NOR", - "age": 27, - "event": "Rowing Men's Lightweight Double Sculls", - "medal": "Bronze" - }, - { - "name": "Jrmy Stravius", - "gender": "M", - "height": "190", - "weight": "86", - "sport": "Swimming", - "team": "France", - "noc": "FRA", - "age": 28, - "event": "Swimming Men's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Vadim Nikolayevich Streltsov", - "gender": "M", - "height": "170", - "weight": "94", - "sport": "Weightlifting", - "team": "Belarus", - "noc": "BLR", - "age": 30, - "event": "Weightlifting Men's Middle-Heavyweight", - "medal": "Silver" - }, - { - "name": "Ivan Alekseyevich Stretovich", - "gender": "M", - "height": "170", - "weight": "59", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 19, - "event": "Gymnastics Men's Team All-Around", - "medal": "Silver" - }, - { - "name": "Martin Strobel", - "gender": "M", - "height": "189", - "weight": "90", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 30, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Ioana Strungaru (Crciun-)", - "gender": "F", - "height": "180", - "weight": "77", - "sport": "Rowing", - "team": "Romania", - "noc": "ROU", - "age": 27, - "event": "Rowing Women's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Barbora Strcov (-Zhlavov)", - "gender": "F", - "height": "164", - "weight": "60", - "sport": "Tennis", - "team": "Czech Republic-1", - "noc": "CZE", - "age": 30, - "event": "Tennis Women's Doubles", - "medal": "Bronze" - }, - { - "name": "Marina Vladimirovna Sudakova (Yartseva-)", - "gender": "F", - "height": "165", - "weight": "66", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Sandro Sukno", - "gender": "M", - "height": "200", - "weight": "93", - "sport": "Water Polo", - "team": "Croatia", - "noc": "CRO", - "age": 26, - "event": "Water Polo Men's Water Polo", - "medal": "Silver" - }, - { - "name": "Niklas Sle", - "gender": "M", - "height": "195", - "weight": "95", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 20, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Jemima Jelagat Sumgong", - "gender": "F", - "height": "160", - "weight": "45", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 31, - "event": "Athletics Women's Marathon", - "medal": "Gold" - }, - { - "name": "Sun Wenyan", - "gender": "F", - "height": "170", - "weight": "58", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Synchronized Swimming Women's Duet", - "medal": "Silver" - }, - { - "name": "Sun Wenyan", - "gender": "F", - "height": "170", - "weight": "58", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "Sun Yanan", - "gender": "F", - "height": "161", - "weight": "51", - "sport": "Wrestling", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Wrestling Women's Flyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Sun Yang", - "gender": "M", - "height": "198", - "weight": "89", - "sport": "Swimming", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Swimming Men's 200 metres Freestyle", - "medal": "Gold" - }, - { - "name": "Sun Yang", - "gender": "M", - "height": "198", - "weight": "89", - "sport": "Swimming", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Swimming Men's 400 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Sun Yiwen", - "gender": "F", - "height": "177", - "weight": "63", - "sport": "Fencing", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Fencing Women's epee, Individual", - "medal": "Bronze" - }, - { - "name": "Sun Yiwen", - "gender": "F", - "height": "177", - "weight": "63", - "sport": "Fencing", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Fencing Women's epee, Team", - "medal": "Silver" - }, - { - "name": "Sun Yujie", - "gender": "F", - "height": "185", - "weight": "78", - "sport": "Fencing", - "team": "China", - "noc": "CHN", - "age": 23, - "event": "Fencing Women's epee, Team", - "medal": "Silver" - }, - { - "name": "Lasse Jemon Svan Hansen", - "gender": "M", - "height": "185", - "weight": "85", - "sport": "Handball", - "team": "Denmark", - "noc": "DEN", - "age": 32, - "event": "Handball Men's Handball", - "medal": "Gold" - }, - { - "name": "Erik Marcus Svensson", - "gender": "M", - "height": "176", - "weight": "68", - "sport": "Shooting", - "team": "Sweden", - "noc": "SWE", - "age": 26, - "event": "Shooting Men's Skeet", - "medal": "Silver" - }, - { - "name": "Polly Ann M. Swann", - "gender": "F", - "height": "185", - "weight": "76", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Ondej Synek", - "gender": "M", - "height": "199", - "weight": "105", - "sport": "Rowing", - "team": "Czech Republic", - "noc": "CZE", - "age": 33, - "event": "Rowing Men's Single Sculls", - "medal": "Bronze" - }, - { - "name": "Elmira Anuarbekovna Syzdykova", - "gender": "F", - "height": "172", - "weight": "69", - "sport": "Wrestling", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 24, - "event": "Wrestling Women's Light-Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Gabriella Timea Szab", - "gender": "F", - "height": "170", - "weight": "62", - "sport": "Canoeing", - "team": "Hungary", - "noc": "HUN", - "age": 29, - "event": "Canoeing Women's Kayak Doubles, 500 metres", - "medal": "Gold" - }, - { - "name": "Gabriella Timea Szab", - "gender": "F", - "height": "170", - "weight": "62", - "sport": "Canoeing", - "team": "Hungary", - "noc": "HUN", - "age": 29, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Gold" - }, - { - "name": "Emese Judit Szsz", - "gender": "F", - "height": "176", - "weight": "71", - "sport": "Fencing", - "team": "Hungary", - "noc": "HUN", - "age": 33, - "event": "Fencing Women's epee, Individual", - "medal": "Gold" - }, - { - "name": "ron Szilgyi", - "gender": "M", - "height": "180", - "weight": "78", - "sport": "Fencing", - "team": "Hungary", - "noc": "HUN", - "age": 26, - "event": "Fencing Men's Sabre, Individual", - "medal": "Gold" - }, - { - "name": "Chiara Tabani", - "gender": "F", - "height": "176", - "weight": "72", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Haruka Tachimoto", - "gender": "F", - "height": "168", - "weight": "70", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 26, - "event": "Judo Women's Middleweight", - "medal": "Gold" - }, - { - "name": "Kaspar Taimsoo", - "gender": "M", - "height": "194", - "weight": "95", - "sport": "Rowing", - "team": "Estonia", - "noc": "EST", - "age": 29, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Bronze" - }, - { - "name": "Ayaka Takahashi", - "gender": "F", - "height": "165", - "weight": "60", - "sport": "Badminton", - "team": "Japan", - "noc": "JPN", - "age": 26, - "event": "Badminton Women's Doubles", - "medal": "Gold" - }, - { - "name": "Naohisa Takato", - "gender": "M", - "height": "160", - "weight": "60", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 23, - "event": "Judo Men's Extra-Lightweight", - "medal": "Bronze" - }, - { - "name": "Lasha Talakhadze", - "gender": "M", - "height": "197", - "weight": "160", - "sport": "Weightlifting", - "team": "Georgia", - "noc": "GEO", - "age": 22, - "event": "Weightlifting Men's Super-Heavyweight", - "medal": "Gold" - }, - { - "name": "Kitione Taliga", - "gender": "M", - "height": "186", - "weight": "87", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 23, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Jared Tallent", - "gender": "M", - "height": "178", - "weight": "58", - "sport": "Athletics", - "team": "Australia", - "noc": "AUS", - "age": 31, - "event": "Athletics Men's 50 kilometres Walk", - "medal": "Silver" - }, - { - "name": "Lachlan Tame", - "gender": "M", - "height": "176", - "weight": "80", - "sport": "Canoeing", - "team": "Australia", - "noc": "AUS", - "age": 27, - "event": "Canoeing Men's Kayak Doubles, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Tan Jiaxin", - "gender": "F", - "height": "148", - "weight": "36", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 19, - "event": "Gymnastics Women's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Tan Wee Kiong", - "gender": "M", - "height": "177", - "weight": "77", - "sport": "Badminton", - "team": "Malaysia", - "noc": "MAS", - "age": 27, - "event": "Badminton Men's Doubles", - "medal": "Silver" - }, - { - "name": "Tan Ya-Ting", - "gender": "F", - "height": "158", - "weight": "53", - "sport": "Archery", - "team": "Chinese Taipei", - "noc": "TPE", - "age": 22, - "event": "Archery Women's Team", - "medal": "Bronze" - }, - { - "name": "Yusuke Tanaka", - "gender": "M", - "height": "166", - "weight": "58", - "sport": "Gymnastics", - "team": "Japan", - "noc": "JPN", - "age": 26, - "event": "Gymnastics Men's Team All-Around", - "medal": "Gold" - }, - { - "name": "Sopita Tanasan", - "gender": "F", - "height": "154", - "weight": "48", - "sport": "Weightlifting", - "team": "Thailand", - "noc": "THA", - "age": 21, - "event": "Weightlifting Women's Flyweight", - "medal": "Gold" - }, - { - "name": "Melissa Palma Julie Tancredi", - "gender": "F", - "height": "177", - "weight": "73", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 34, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Tang Mengni", - "gender": "F", - "height": "169", - "weight": "59", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 22, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "Paul Kipngetich Tanui", - "gender": "M", - "height": "168", - "weight": "47", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 25, - "event": "Athletics Men's 10,000 metres", - "medal": "Silver" - }, - { - "name": "Juraj Tarr", - "gender": "M", - "height": "190", - "weight": "88", - "sport": "Canoeing", - "team": "Slovakia", - "noc": "SVK", - "age": 37, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Elmurat Zulypkarovich Tasmuradov", - "gender": "M", - "height": "160", - "weight": "59", - "sport": "Wrestling", - "team": "Uzbekistan", - "noc": "UZB", - "age": 24, - "event": "Wrestling Men's Featherweight, Greco-Roman", - "medal": "Bronze" - }, - { - "name": "Nur Tatar", - "gender": "F", - "height": "173", - "weight": "67", - "sport": "Taekwondo", - "team": "Turkey", - "noc": "TUR", - "age": 23, - "event": "Taekwondo Women's Welterweight", - "medal": "Bronze" - }, - { - "name": "Anastasiya Alekseyevna Tatareva", - "gender": "F", - "height": "165", - "weight": "44", - "sport": "Rhythmic Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 19, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Gold" - }, - { - "name": "Diana Lurena Taurasi", - "gender": "F", - "height": "183", - "weight": "70", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 34, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Christian Taylor", - "gender": "M", - "height": "188", - "weight": "81", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Athletics Men's Triple Jump", - "medal": "Gold" - }, - { - "name": "Audrey Tcheumo", - "gender": "F", - "height": "177", - "weight": "78", - "sport": "Judo", - "team": "France", - "noc": "FRA", - "age": 26, - "event": "Judo Women's Half-Heavyweight", - "medal": "Silver" - }, - { - "name": "Terina Lily Te Tamaki", - "gender": "F", - "height": "165", - "weight": "67", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 19, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Laura Teani", - "gender": "F", - "height": "175", - "weight": "75", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 25, - "event": "Water Polo Women's Water Polo", - "medal": "Silver" - }, - { - "name": "Horia Tecu", - "gender": "M", - "height": "192", - "weight": "90", - "sport": "Tennis", - "team": "Romania", - "noc": "ROU", - "age": 31, - "event": "Tennis Men's Doubles", - "medal": "Silver" - }, - { - "name": "Stefano Tempesti", - "gender": "M", - "height": "205", - "weight": "100", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 37, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "Milo Teodosi", - "gender": "M", - "height": "195", - "weight": "90", - "sport": "Basketball", - "team": "Serbia", - "noc": "SRB", - "age": 29, - "event": "Basketball Men's Basketball", - "medal": "Silver" - }, - { - "name": "Jana Teschke", - "gender": "F", - "height": "168", - "weight": "56", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Hockey Women's Hockey", - "medal": "Bronze" - }, - { - "name": "Brianne Theisen-Eaton", - "gender": "F", - "height": "175", - "weight": "64", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 27, - "event": "Athletics Women's Heptathlon", - "medal": "Bronze" - }, - { - "name": "Thiago Maia Alencar", - "gender": "M", - "height": "178", - "weight": "64", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 19, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Nafissatou \"Nafi\" Thiam", - "gender": "F", - "height": "184", - "weight": "69", - "sport": "Athletics", - "team": "Belgium", - "noc": "BEL", - "age": 21, - "event": "Athletics Women's Heptathlon", - "medal": "Gold" - }, - { - "name": "Annekatrin Thiele", - "gender": "F", - "height": "173", - "weight": "68", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 31, - "event": "Rowing Women's Quadruple Sculls", - "medal": "Gold" - }, - { - "name": "Courtney Lynn Thompson", - "gender": "F", - "height": "170", - "weight": "66", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Volleyball Women's Volleyball", - "medal": "Bronze" - }, - { - "name": "Elaine Thompson", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 24, - "event": "Athletics Women's 100 metres", - "medal": "Gold" - }, - { - "name": "Elaine Thompson", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 24, - "event": "Athletics Women's 200 metres", - "medal": "Gold" - }, - { - "name": "Elaine Thompson", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 24, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Klay Alexander Thompson", - "gender": "M", - "height": "200", - "weight": "97", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 26, - "event": "Basketball Men's Basketball", - "medal": "Gold" - }, - { - "name": "Victoria Thornley", - "gender": "F", - "height": "193", - "weight": "76", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Rowing Women's Double Sculls", - "medal": "Silver" - }, - { - "name": "Virginia \"Ginny\" Thrasher", - "gender": "F", - "height": "155", - "weight": "55", - "sport": "Shooting", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Shooting Women's Air Rifle, 10 metres", - "medal": "Gold" - }, - { - "name": "Tian Tao", - "gender": "M", - "height": "172", - "weight": "85", - "sport": "Weightlifting", - "team": "China", - "noc": "CHN", - "age": 22, - "event": "Weightlifting Men's Light-Heavyweight", - "medal": "Silver" - }, - { - "name": "Ivan Grigoryevich Tikhon", - "gender": "M", - "height": "186", - "weight": "110", - "sport": "Athletics", - "team": "Belarus", - "noc": "BLR", - "age": 40, - "event": "Athletics Men's Hammer Throw", - "medal": "Silver" - }, - { - "name": "Pieter Timmers", - "gender": "M", - "height": "200", - "weight": "89", - "sport": "Swimming", - "team": "Belgium", - "noc": "BEL", - "age": 28, - "event": "Swimming Men's 100 metres Freestyle", - "medal": "Silver" - }, - { - "name": "Anna Viktorovna Timofeyeva", - "gender": "F", - "height": "178", - "weight": "86", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 29, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Amy Tinkler", - "gender": "F", - "height": "152", - "weight": "47", - "sport": "Gymnastics", - "team": "Great Britain", - "noc": "GBR", - "age": 16, - "event": "Gymnastics Women's Floor Exercise", - "medal": "Bronze" - }, - { - "name": "Stuart Brian Tinney", - "gender": "M", - "height": "180", - "weight": "71", - "sport": "Equestrianism", - "team": "Australia", - "noc": "AUS", - "age": 51, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Bronze" - }, - { - "name": "Yevgeny Andreyevich Tishchenko", - "gender": "M", - "height": "196", - "weight": "91", - "sport": "Boxing", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Boxing Men's Heavyweight", - "medal": "Gold" - }, - { - "name": "Margarita Grigoryevna Tishkevich-Makhneva", - "gender": "F", - "height": "181", - "weight": "67", - "sport": "Canoeing", - "team": "Belarus", - "noc": "BLR", - "age": 24, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Bronze" - }, - { - "name": "Hristiana Todorova", - "gender": "F", - "height": "173", - "weight": "52", - "sport": "Rhythmic Gymnastics", - "team": "Bulgaria", - "noc": "BUL", - "age": 21, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Bronze" - }, - { - "name": "Tamirat Tola Abera", - "gender": "M", - "height": "181", - "weight": "59", - "sport": "Athletics", - "team": "Ethiopia", - "noc": "ETH", - "age": 24, - "event": "Athletics Men's 10,000 metres", - "medal": "Bronze" - }, - { - "name": "Jeremy Toljan", - "gender": "M", - "height": "182", - "weight": "72", - "sport": "Football", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Football Men's Football", - "medal": "Silver" - }, - { - "name": "Mariya Yuryevna Tolkachova", - "gender": "F", - "height": "176", - "weight": "53", - "sport": "Rhythmic Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 18, - "event": "Rhythmic Gymnastics Women's Group", - "medal": "Gold" - }, - { - "name": "Sergiu Toma", - "gender": "M", - "height": "180", - "weight": "81", - "sport": "Judo", - "team": "United Arab Emirates", - "noc": "UAE", - "age": 29, - "event": "Judo Men's Half-Middleweight", - "medal": "Bronze" - }, - { - "name": "Marko Tomievi", - "gender": "M", - "height": "174", - "weight": "80", - "sport": "Canoeing", - "team": "Serbia", - "noc": "SRB", - "age": 26, - "event": "Canoeing Men's Kayak Doubles, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Emma Kate Tonegato", - "gender": "F", - "height": "165", - "weight": "63", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 21, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Jean-Paul Tony Helissey", - "gender": "M", - "height": "177", - "weight": "77", - "sport": "Fencing", - "team": "France", - "noc": "FRA", - "age": 26, - "event": "Fencing Men's Foil, Team", - "medal": "Silver" - }, - { - "name": "Gelena Dmitriyevna Topilina", - "gender": "F", - "height": "175", - "weight": "56", - "sport": "Synchronized Swimming", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Synchronized Swimming Women's Team", - "medal": "Gold" - }, - { - "name": "Cristian Isaac Toro Carballo", - "gender": "M", - "height": "188", - "weight": "90", - "sport": "Canoeing", - "team": "Spain", - "noc": "ESP", - "age": 24, - "event": "Canoeing Men's Kayak Doubles, 200 metres", - "medal": "Gold" - }, - { - "name": "Alba Torrens Salom", - "gender": "F", - "height": "195", - "weight": "80", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 26, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Eri Tosaka", - "gender": "F", - "height": "152", - "weight": "48", - "sport": "Wrestling", - "team": "Japan", - "noc": "JPN", - "age": 22, - "event": "Wrestling Women's Flyweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Matej Tth", - "gender": "M", - "height": "185", - "weight": "73", - "sport": "Athletics", - "team": "Slovakia", - "noc": "SVK", - "age": 33, - "event": "Athletics Men's 50 kilometres Walk", - "medal": "Gold" - }, - { - "name": "Susannah Townsend", - "gender": "F", - "height": "168", - "weight": "61", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 27, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Lucas Tramr", - "gender": "M", - "height": "183", - "weight": "75", - "sport": "Rowing", - "team": "Switzerland", - "noc": "SUI", - "age": 26, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Gold" - }, - { - "name": "Luk Trefil", - "gender": "M", - "height": "187", - "weight": "90", - "sport": "Canoeing", - "team": "Czech Republic", - "noc": "CZE", - "age": 27, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Andrew \"Andy\" Triggs Hodge", - "gender": "M", - "height": "192", - "weight": "97", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 37, - "event": "Rowing Men's Coxed Eights", - "medal": "Gold" - }, - { - "name": "Moritz Trompertz", - "gender": "M", - "height": "180", - "weight": "76", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 20, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "William Troost-Ekong", - "gender": "M", - "height": "175", - "weight": "74", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 22, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Laura Rebecca Trott (-Kenny)", - "gender": "F", - "height": "164", - "weight": "56", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Cycling Women's Team Pursuit", - "medal": "Gold" - }, - { - "name": "Laura Rebecca Trott (-Kenny)", - "gender": "F", - "height": "164", - "weight": "56", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Cycling Women's Omnium", - "medal": "Gold" - }, - { - "name": "Murphy Edward Troy", - "gender": "M", - "height": "203", - "weight": "107", - "sport": "Volleyball", - "team": "United States", - "noc": "USA", - "age": 27, - "event": "Volleyball Men's Volleyball", - "medal": "Bronze" - }, - { - "name": "Tina Trstenjak", - "gender": "F", - "height": "162", - "weight": "65", - "sport": "Judo", - "team": "Slovenia", - "noc": "SLO", - "age": 25, - "event": "Judo Women's Half-Middleweight", - "medal": "Gold" - }, - { - "name": "Jrme Truyens", - "gender": "M", - "height": "178", - "weight": "70", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 28, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Olaf Karl Tufte", - "gender": "M", - "height": "193", - "weight": "94", - "sport": "Rowing", - "team": "Norway", - "noc": "NOR", - "age": 40, - "event": "Rowing Men's Double Sculls", - "medal": "Bronze" - }, - { - "name": "Ruby Tui", - "gender": "F", - "height": "177", - "weight": "71", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 24, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Josua Tuisova Ratulevu", - "gender": "M", - "height": "180", - "weight": "108", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 22, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Blair Tuke", - "gender": "M", - "height": "181", - "weight": "78", - "sport": "Sailing", - "team": "New Zealand", - "noc": "NZL", - "age": 27, - "event": "Sailing Men's Skiff", - "medal": "Gold" - }, - { - "name": "Rustam Tulaganov", - "gender": "M", - "height": "186", - "weight": "91", - "sport": "Boxing", - "team": "Uzbekistan", - "noc": "UZB", - "age": 24, - "event": "Boxing Men's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Boniface Mucheru Tumuti", - "gender": "M", - "height": "175", - "weight": "72", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 24, - "event": "Athletics Men's 400 metres Hurdles", - "medal": "Silver" - }, - { - "name": "Irak'li Turmanidze", - "gender": "M", - "height": "182", - "weight": "130", - "sport": "Weightlifting", - "team": "Georgia", - "noc": "GEO", - "age": 31, - "event": "Weightlifting Men's Super-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Amy Turner", - "gender": "F", - "height": "168", - "weight": "64", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 32, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Seda Gurgenovna Tutkhalyan", - "gender": "F", - "height": "146", - "weight": "43", - "sport": "Gymnastics", - "team": "Russia", - "noc": "RUS", - "age": 17, - "event": "Gymnastics Women's Team All-Around", - "medal": "Silver" - }, - { - "name": "Seremaia \"Jerry\" Tuwai Vunisa", - "gender": "M", - "height": "174", - "weight": "81", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 27, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Georgina Sophie \"Georgie\" Twigg", - "gender": "F", - "height": "170", - "weight": "62", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Ryan Tyack", - "gender": "M", - "height": "186", - "weight": "102", - "sport": "Archery", - "team": "Australia", - "noc": "AUS", - "age": 25, - "event": "Archery Men's Team", - "medal": "Bronze" - }, - { - "name": "Pavlo Yuriyovych Tymoshchenko", - "gender": "M", - "height": "192", - "weight": "78", - "sport": "Modern Pentathlon", - "team": "Ukraine", - "noc": "UKR", - "age": 29, - "event": "Modern Pentathlon Men's Individual", - "medal": "Silver" - }, - { - "name": "Kohei Uchimura", - "gender": "M", - "height": "160", - "weight": "54", - "sport": "Gymnastics", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Gymnastics Men's Individual All-Around", - "medal": "Gold" - }, - { - "name": "Kohei Uchimura", - "gender": "M", - "height": "160", - "weight": "54", - "sport": "Gymnastics", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Gymnastics Men's Team All-Around", - "medal": "Gold" - }, - { - "name": "Ndifreke Effiong Udo", - "gender": "M", - "height": "173", - "weight": "78", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 17, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Dirk Uittenbogaard", - "gender": "M", - "height": "199", - "weight": "93", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 26, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Denis Ulanov", - "gender": "M", - "height": "175", - "weight": "85", - "sport": "Weightlifting", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 22, - "event": "Weightlifting Men's Light-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Aminu Umar", - "gender": "M", - "height": "172", - "weight": "72", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 21, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Sadiq Umar", - "gender": "M", - "height": "172", - "weight": "75", - "sport": "Football", - "team": "Nigeria", - "noc": "NGR", - "age": 19, - "event": "Football Men's Football", - "medal": "Bronze" - }, - { - "name": "Lisa Unruh", - "gender": "F", - "height": "180", - "weight": "68", - "sport": "Archery", - "team": "Germany", - "noc": "GER", - "age": 28, - "event": "Archery Women's Individual", - "medal": "Silver" - }, - { - "name": "Laura Emma Unsworth", - "gender": "F", - "height": "157", - "weight": "55", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Diyorbek Urozboyev", - "gender": "M", - "height": "172", - "weight": "60", - "sport": "Judo", - "team": "Uzbekistan", - "noc": "UZB", - "age": 22, - "event": "Judo Men's Extra-Lightweight", - "medal": "Bronze" - }, - { - "name": "Anna Vladimirovna Ustyukhina", - "gender": "F", - "height": "177", - "weight": "70", - "sport": "Water Polo", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Water Polo Women's Water Polo", - "medal": "Bronze" - }, - { - "name": "Milda Valiukait", - "gender": "F", - "height": "176", - "weight": "66", - "sport": "Rowing", - "team": "Lithuania", - "noc": "LTU", - "age": 22, - "event": "Rowing Women's Double Sculls", - "medal": "Bronze" - }, - { - "name": "Ingrit Lorena Valencia Victoria", - "gender": "F", - "height": "160", - "weight": "50", - "sport": "Boxing", - "team": "Colombia", - "noc": "COL", - "age": 27, - "event": "Boxing Women's Flyweight", - "medal": "Bronze" - }, - { - "name": "Jennifer Valente", - "gender": "F", - "height": "176", - "weight": "74", - "sport": "Cycling", - "team": "United States", - "noc": "USA", - "age": 21, - "event": "Cycling Women's Team Pursuit", - "medal": "Silver" - }, - { - "name": "Lidia Valentn Prez", - "gender": "F", - "height": "169", - "weight": "75", - "sport": "Weightlifting", - "team": "Spain", - "noc": "ESP", - "age": 31, - "event": "Weightlifting Women's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Jean-Charles Valladont", - "gender": "M", - "height": "180", - "weight": "83", - "sport": "Archery", - "team": "France", - "noc": "FRA", - "age": 27, - "event": "Archery Men's Individual", - "medal": "Silver" - }, - { - "name": "Thibaut Vallette", - "gender": "M", - "height": "171", - "weight": "60", - "sport": "Equestrianism", - "team": "France", - "noc": "FRA", - "age": 42, - "event": "Equestrianism Mixed Three-Day Event, Team", - "medal": "Gold" - }, - { - "name": "Naomi Frances van As", - "gender": "F", - "height": "179", - "weight": "63", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 33, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Florent Van Aubel", - "gender": "M", - "height": "178", - "weight": "73", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 24, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Greg Van Avermaet", - "gender": "M", - "height": "181", - "weight": "74", - "sport": "Cycling", - "team": "Belgium", - "noc": "BEL", - "age": 31, - "event": "Cycling Men's Road Race, Individual", - "medal": "Gold" - }, - { - "name": "Anna van der Breggen", - "gender": "F", - "height": "167", - "weight": "56", - "sport": "Cycling", - "team": "Netherlands", - "noc": "NED", - "age": 26, - "event": "Cycling Women's Road Race, Individual", - "medal": "Gold" - }, - { - "name": "Anna van der Breggen", - "gender": "F", - "height": "167", - "weight": "56", - "sport": "Cycling", - "team": "Netherlands", - "noc": "NED", - "age": 26, - "event": "Cycling Women's Individual Time Trial", - "medal": "Bronze" - }, - { - "name": "Cameron van der Burgh", - "gender": "M", - "height": "185", - "weight": "85", - "sport": "Swimming", - "team": "South Africa", - "noc": "RSA", - "age": 28, - "event": "Swimming Men's 100 metres Breaststroke", - "medal": "Silver" - }, - { - "name": "Arthur Van Doren", - "gender": "M", - "height": "178", - "weight": "74", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 21, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Anicka van Emden", - "gender": "F", - "height": "169", - "weight": "63", - "sport": "Judo", - "team": "Netherlands", - "noc": "NED", - "age": 29, - "event": "Judo Women's Half-Middleweight", - "medal": "Bronze" - }, - { - "name": "Margot van Geffen", - "gender": "F", - "height": "172", - "weight": "63", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 26, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Jelle van Gorkom", - "gender": "M", - "height": "187", - "weight": "93", - "sport": "Cycling", - "team": "Netherlands", - "noc": "NED", - "age": 25, - "event": "Cycling Men's BMX", - "medal": "Silver" - }, - { - "name": "Chantal Jean Van Landeghem", - "gender": "F", - "height": "180", - "weight": "77", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Caia Jaqueline van Maasakker", - "gender": "F", - "height": "180", - "weight": "69", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 27, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Kitty van Male", - "gender": "F", - "height": "170", - "weight": "63", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 28, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Wayde van Niekerk", - "gender": "M", - "height": "183", - "weight": "70", - "sport": "Athletics", - "team": "South Africa", - "noc": "RSA", - "age": 24, - "event": "Athletics Men's 400 metres", - "medal": "Gold" - }, - { - "name": "Dorian Benno Eric van Rijsselberge", - "gender": "M", - "height": "189", - "weight": "75", - "sport": "Sailing", - "team": "Netherlands", - "noc": "NED", - "age": 27, - "event": "Sailing Men's Windsurfer", - "medal": "Gold" - }, - { - "name": "Sharon van Rouwendaal", - "gender": "F", - "height": "173", - "weight": "65", - "sport": "Swimming", - "team": "Netherlands", - "noc": "NED", - "age": 22, - "event": "Swimming Women's 10 kilometres Open Water", - "medal": "Gold" - }, - { - "name": "Elliot Van Strydonck", - "gender": "M", - "height": "185", - "weight": "75", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 28, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Dirk Van Tichelt", - "gender": "M", - "height": "173", - "weight": "73", - "sport": "Judo", - "team": "Belgium", - "noc": "BEL", - "age": 32, - "event": "Judo Men's Lightweight", - "medal": "Bronze" - }, - { - "name": "Vincent Vanasch", - "gender": "M", - "height": "180", - "weight": "78", - "sport": "Hockey", - "team": "Belgium", - "noc": "BEL", - "age": 28, - "event": "Hockey Men's Hockey", - "medal": "Silver" - }, - { - "name": "Jan Vandrey", - "gender": "M", - "height": "188", - "weight": "88", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 24, - "event": "Canoeing Men's Canadian Doubles, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Laura Vargas Koch", - "gender": "F", - "height": "173", - "weight": "70", - "sport": "Judo", - "team": "Germany", - "noc": "GER", - "age": 26, - "event": "Judo Women's Middleweight", - "medal": "Bronze" - }, - { - "name": "Anamari \"Ana\" Velenek", - "gender": "F", - "height": "178", - "weight": "78", - "sport": "Judo", - "team": "Slovenia", - "noc": "SLO", - "age": 25, - "event": "Judo Women's Half-Heavyweight", - "medal": "Bronze" - }, - { - "name": "Sofiya Aleksandrovna Velikaya", - "gender": "F", - "height": "175", - "weight": "70", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 31, - "event": "Fencing Women's Sabre, Individual", - "medal": "Silver" - }, - { - "name": "Sofiya Aleksandrovna Velikaya", - "gender": "F", - "height": "175", - "weight": "70", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 31, - "event": "Fencing Women's Sabre, Team", - "medal": "Gold" - }, - { - "name": "Stefana Veljkovi", - "gender": "F", - "height": "190", - "weight": "76", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 26, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Alessandro Velotto", - "gender": "M", - "height": "186", - "weight": "85", - "sport": "Water Polo", - "team": "Italy", - "noc": "ITA", - "age": 21, - "event": "Water Polo Men's Water Polo", - "medal": "Bronze" - }, - { - "name": "David Verburg", - "gender": "M", - "height": "173", - "weight": "70", - "sport": "Athletics", - "team": "United States", - "noc": "USA", - "age": 25, - "event": "Athletics Men's 4 x 400 metres Relay", - "medal": "Gold" - }, - { - "name": "Jasa Veremalua", - "gender": "M", - "height": "195", - "weight": "98", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 28, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Oleh Yuriyovych Verniaiev", - "gender": "M", - "height": "161", - "weight": "55", - "sport": "Gymnastics", - "team": "Ukraine", - "noc": "UKR", - "age": 22, - "event": "Gymnastics Men's Individual All-Around", - "medal": "Silver" - }, - { - "name": "Oleh Yuriyovych Verniaiev", - "gender": "M", - "height": "161", - "weight": "55", - "sport": "Gymnastics", - "team": "Ukraine", - "noc": "UKR", - "age": 22, - "event": "Gymnastics Men's Parallel Bars", - "medal": "Gold" - }, - { - "name": "Maria Verschoor", - "gender": "F", - "height": "164", - "weight": "58", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 22, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Pieter Gilles \"Mechiel\" Versluis", - "gender": "M", - "height": "197", - "weight": "95", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 29, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Yelena Sergeyevna Vesnina", - "gender": "F", - "height": "180", - "weight": "60", - "sport": "Tennis", - "team": "Russia-2", - "noc": "RUS", - "age": 30, - "event": "Tennis Women's Doubles", - "medal": "Gold" - }, - { - "name": "Luca Vettori", - "gender": "M", - "height": "200", - "weight": "95", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 25, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Giuseppe Vicino", - "gender": "M", - "height": "195", - "weight": "95", - "sport": "Rowing", - "team": "Italy", - "noc": "ITA", - "age": 23, - "event": "Rowing Men's Coxless Fours", - "medal": "Bronze" - }, - { - "name": "Lucas Martn Vila", - "gender": "M", - "height": "172", - "weight": "75", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 29, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Sunette Stella Viljoen", - "gender": "F", - "height": "170", - "weight": "72", - "sport": "Athletics", - "team": "South Africa", - "noc": "RSA", - "age": 32, - "event": "Athletics Women's Javelin Throw", - "medal": "Silver" - }, - { - "name": "Samisoni Viriviri", - "gender": "M", - "height": "186", - "weight": "88", - "sport": "Rugby Sevens", - "team": "Fiji", - "noc": "FIJ", - "age": 28, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Donata Vitartait", - "gender": "F", - "height": "170", - "weight": "62", - "sport": "Rowing", - "team": "Lithuania", - "noc": "LTU", - "age": 27, - "event": "Rowing Women's Double Sculls", - "medal": "Bronze" - }, - { - "name": "Juan Manuel Vivaldi", - "gender": "M", - "height": "180", - "weight": "80", - "sport": "Hockey", - "team": "Argentina", - "noc": "ARG", - "age": 37, - "event": "Hockey Men's Hockey", - "medal": "Gold" - }, - { - "name": "Elia Viviani", - "gender": "M", - "height": "177", - "weight": "70", - "sport": "Cycling", - "team": "Italy", - "noc": "ITA", - "age": 27, - "event": "Cycling Men's Omnium", - "medal": "Gold" - }, - { - "name": "Blanka Vlai", - "gender": "F", - "height": "193", - "weight": "71", - "sport": "Athletics", - "team": "Croatia", - "noc": "CRO", - "age": 32, - "event": "Athletics Women's High Jump", - "medal": "Bronze" - }, - { - "name": "Roman Andreyevich Vlasov", - "gender": "M", - "height": "175", - "weight": "75", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Wrestling Men's Middleweight, Greco-Roman", - "medal": "Gold" - }, - { - "name": "Erik Vlek", - "gender": "M", - "height": "189", - "weight": "89", - "sport": "Canoeing", - "team": "Slovakia", - "noc": "SVK", - "age": 34, - "event": "Canoeing Men's Kayak Fours, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Kristina Vogel", - "gender": "F", - "height": "160", - "weight": "66", - "sport": "Cycling", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Cycling Women's Sprint", - "medal": "Gold" - }, - { - "name": "Kristina Vogel", - "gender": "F", - "height": "160", - "weight": "66", - "sport": "Cycling", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Cycling Women's Team Sprint", - "medal": "Bronze" - }, - { - "name": "Dana Whitney Vollmer (-Grant)", - "gender": "F", - "height": "185", - "weight": "68", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Dana Whitney Vollmer (-Grant)", - "gender": "F", - "height": "185", - "weight": "68", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Swimming Women's 100 metres Butterfly", - "medal": "Bronze" - }, - { - "name": "Dana Whitney Vollmer (-Grant)", - "gender": "F", - "height": "185", - "weight": "68", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Nataliya Vitalyevna Vorobyova", - "gender": "F", - "height": "174", - "weight": "69", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 25, - "event": "Wrestling Women's Light-Heavyweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Olena Oleksandrivna Voronina", - "gender": "F", - "height": "165", - "weight": "65", - "sport": "Fencing", - "team": "Ukraine", - "noc": "UKR", - "age": 26, - "event": "Fencing Women's Sabre, Team", - "medal": "Silver" - }, - { - "name": "Anastasiya Sergeyevna Voynova", - "gender": "F", - "height": "162", - "weight": "62", - "sport": "Cycling", - "team": "Russia", - "noc": "RUS", - "age": 23, - "event": "Cycling Women's Team Sprint", - "medal": "Silver" - }, - { - "name": "Anna Viktorovna Vyakhireva", - "gender": "F", - "height": "168", - "weight": "63", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 21, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Walace Souza Silva", - "gender": "M", - "height": "188", - "weight": "75", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 21, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Keshorn Walcott", - "gender": "M", - "height": "183", - "weight": "90", - "sport": "Athletics", - "team": "Trinidad and Tobago", - "noc": "TTO", - "age": 23, - "event": "Athletics Men's Javelin Throw", - "medal": "Bronze" - }, - { - "name": "Marta Walczykiewicz", - "gender": "F", - "height": "165", - "weight": "63", - "sport": "Canoeing", - "team": "Poland", - "noc": "POL", - "age": 29, - "event": "Canoeing Women's Kayak Singles, 200 metres", - "medal": "Silver" - }, - { - "name": "Bianca Michaela Walkden", - "gender": "F", - "height": "182", - "weight": "74", - "sport": "Taekwondo", - "team": "Great Britain", - "noc": "GBR", - "age": 24, - "event": "Taekwondo Women's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Kira Walkenhorst", - "gender": "F", - "height": "184", - "weight": "75", - "sport": "Beach Volleyball", - "team": "Germany-1", - "noc": "GER", - "age": 25, - "event": "Beach Volleyball Women's Beach Volleyball", - "medal": "Gold" - }, - { - "name": "Christopher James \"Chris\" Walker-Hebborn", - "gender": "M", - "height": "184", - "weight": "84", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 26, - "event": "Swimming Men's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Wallace Leandro de Souza", - "gender": "M", - "height": "198", - "weight": "87", - "sport": "Volleyball", - "team": "Brazil", - "noc": "BRA", - "age": 29, - "event": "Volleyball Men's Volleyball", - "medal": "Gold" - }, - { - "name": "Daniel \"Dan\" Wallace", - "gender": "M", - "height": "188", - "weight": "80", - "sport": "Swimming", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Swimming Men's 4 x 200 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Kenneth Maxwell \"Ken\" Wallace", - "gender": "M", - "height": "190", - "weight": "90", - "sport": "Canoeing", - "team": "Australia", - "noc": "AUS", - "age": 33, - "event": "Canoeing Men's Kayak Doubles, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Tomas \"Tom\" Walsh", - "gender": "M", - "height": "185", - "weight": "120", - "sport": "Athletics", - "team": "New Zealand", - "noc": "NZL", - "age": 24, - "event": "Athletics Men's Shot Put", - "medal": "Bronze" - }, - { - "name": "Kerri Lee Walsh Jennings", - "gender": "F", - "height": "191", - "weight": "73", - "sport": "Beach Volleyball", - "team": "United States-1", - "noc": "USA", - "age": 37, - "event": "Beach Volleyball Women's Beach Volleyball", - "medal": "Bronze" - }, - { - "name": "Marcus Cooper Walz", - "gender": "M", - "height": "184", - "weight": "82", - "sport": "Canoeing", - "team": "Spain", - "noc": "ESP", - "age": 21, - "event": "Canoeing Men's Kayak Singles, 1,000 metres", - "medal": "Gold" - }, - { - "name": "Margaret Nyairera Wambui", - "gender": "F", - "height": "NA", - "weight": "66", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 20, - "event": "Athletics Women's 800 metres", - "medal": "Bronze" - }, - { - "name": "Wang Shun", - "gender": "M", - "height": "191", - "weight": "74", - "sport": "Swimming", - "team": "China", - "noc": "CHN", - "age": 22, - "event": "Swimming Men's 200 metres Individual Medley", - "medal": "Bronze" - }, - { - "name": "Wang Yan", - "gender": "F", - "height": "140", - "weight": "33", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 16, - "event": "Gymnastics Women's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Wang Zhen", - "gender": "M", - "height": "180", - "weight": "62", - "sport": "Athletics", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Athletics Men's 20 kilometres Walk", - "medal": "Gold" - }, - { - "name": "McLain Ward", - "gender": "M", - "height": "176", - "weight": "70", - "sport": "Equestrianism", - "team": "United States", - "noc": "USA", - "age": 40, - "event": "Equestrianism Mixed Jumping, Team", - "medal": "Silver" - }, - { - "name": "Damian Warner", - "gender": "M", - "height": "185", - "weight": "83", - "sport": "Athletics", - "team": "Canada", - "noc": "CAN", - "age": 26, - "event": "Athletics Men's Decathlon", - "medal": "Bronze" - }, - { - "name": "Natasha Watcham-Roy", - "gender": "F", - "height": "170", - "weight": "67", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 24, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Jason Waterhouse", - "gender": "M", - "height": "185", - "weight": "75", - "sport": "Sailing", - "team": "Australia", - "noc": "AUS", - "age": 24, - "event": "Sailing Mixed Multihull", - "medal": "Silver" - }, - { - "name": "Marcus China Watson", - "gender": "M", - "height": "177", - "weight": "88", - "sport": "Rugby Sevens", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Rugby Sevens Men's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Hollie Webb", - "gender": "F", - "height": "165", - "weight": "65", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 25, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Franziska Weber", - "gender": "F", - "height": "176", - "weight": "70", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Canoeing Women's Kayak Doubles, 500 metres", - "medal": "Silver" - }, - { - "name": "Franziska Weber", - "gender": "F", - "height": "176", - "weight": "70", - "sport": "Canoeing", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Canoeing Women's Kayak Fours, 500 metres", - "medal": "Silver" - }, - { - "name": "Sam Webster", - "gender": "M", - "height": "183", - "weight": "80", - "sport": "Cycling", - "team": "New Zealand", - "noc": "NZL", - "age": 25, - "event": "Cycling Men's Team Sprint", - "medal": "Silver" - }, - { - "name": "Ferry Weertman", - "gender": "M", - "height": "189", - "weight": "86", - "sport": "Swimming", - "team": "Netherlands", - "noc": "NED", - "age": 24, - "event": "Swimming Men's 10 kilometres Open Water", - "medal": "Gold" - }, - { - "name": "Wei Qiuyue", - "gender": "F", - "height": "182", - "weight": "65", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Steffen Weinhold", - "gender": "M", - "height": "191", - "weight": "94", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 30, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Amanda Jo Weir (-Davis)", - "gender": "F", - "height": "188", - "weight": "77", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 30, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Abbey Weitzeil", - "gender": "F", - "height": "178", - "weight": "68", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Silver" - }, - { - "name": "Abbey Weitzeil", - "gender": "F", - "height": "178", - "weight": "68", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 19, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Niklas Wellen", - "gender": "M", - "height": "185", - "weight": "77", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 21, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Sam Welsford", - "gender": "M", - "height": "179", - "weight": "82", - "sport": "Cycling", - "team": "Australia", - "noc": "AUS", - "age": 20, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Silver" - }, - { - "name": "Miriam Welte", - "gender": "F", - "height": "171", - "weight": "67", - "sport": "Cycling", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Cycling Women's Team Sprint", - "medal": "Bronze" - }, - { - "name": "Lidewij Marsia Maria Welten", - "gender": "F", - "height": "170", - "weight": "64", - "sport": "Hockey", - "team": "Netherlands", - "noc": "NED", - "age": 26, - "event": "Hockey Women's Hockey", - "medal": "Silver" - }, - { - "name": "Phillipp Wende", - "gender": "M", - "height": "199", - "weight": "90", - "sport": "Rowing", - "team": "Germany", - "noc": "GER", - "age": 31, - "event": "Rowing Men's Quadruple Sculls", - "medal": "Gold" - }, - { - "name": "Isabelle Regina Werth", - "gender": "F", - "height": "169", - "weight": "66", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 47, - "event": "Equestrianism Mixed Dressage, Individual", - "medal": "Silver" - }, - { - "name": "Isabelle Regina Werth", - "gender": "F", - "height": "169", - "weight": "66", - "sport": "Equestrianism", - "team": "Germany", - "noc": "GER", - "age": 47, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Gold" - }, - { - "name": "Christopher Wesley", - "gender": "M", - "height": "192", - "weight": "88", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - }, - { - "name": "Sanne Wevers", - "gender": "F", - "height": "156", - "weight": "46", - "sport": "Gymnastics", - "team": "Netherlands", - "noc": "NED", - "age": 24, - "event": "Gymnastics Women's Balance Beam", - "medal": "Gold" - }, - { - "name": "Wverton Pereira da Silva", - "gender": "M", - "height": "189", - "weight": "86", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 28, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Lindsay Marie Whalen", - "gender": "F", - "height": "175", - "weight": "72", - "sport": "Basketball", - "team": "United States", - "noc": "USA", - "age": 34, - "event": "Basketball Women's Basketball", - "medal": "Gold" - }, - { - "name": "Nicola White", - "gender": "F", - "height": "172", - "weight": "65", - "sport": "Hockey", - "team": "Great Britain", - "noc": "GBR", - "age": 28, - "event": "Hockey Women's Hockey", - "medal": "Gold" - }, - { - "name": "Max Antony Whitlock", - "gender": "M", - "height": "167", - "weight": "56", - "sport": "Gymnastics", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Gymnastics Men's Individual All-Around", - "medal": "Bronze" - }, - { - "name": "Max Antony Whitlock", - "gender": "M", - "height": "167", - "weight": "56", - "sport": "Gymnastics", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Gymnastics Men's Floor Exercise", - "medal": "Gold" - }, - { - "name": "Max Antony Whitlock", - "gender": "M", - "height": "167", - "weight": "56", - "sport": "Gymnastics", - "team": "Great Britain", - "noc": "GBR", - "age": 23, - "event": "Gymnastics Men's Pommelled Horse", - "medal": "Gold" - }, - { - "name": "Erica Elizabeth Wiebe", - "gender": "F", - "height": "175", - "weight": "75", - "sport": "Wrestling", - "team": "Canada", - "noc": "CAN", - "age": 27, - "event": "Wrestling Women's Heavyweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Fabian Wiede", - "gender": "M", - "height": "194", - "weight": "94", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 22, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Patrick Wiencek", - "gender": "M", - "height": "200", - "weight": "110", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 27, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Peter Noel Jan Wiersum", - "gender": "M", - "height": "173", - "weight": "55", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 31, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Tone Wieten", - "gender": "M", - "height": "201", - "weight": "102", - "sport": "Rowing", - "team": "Netherlands", - "noc": "NED", - "age": 22, - "event": "Rowing Men's Coxed Eights", - "medal": "Bronze" - }, - { - "name": "Bradley Marc Wiggins", - "gender": "M", - "height": "190", - "weight": "82", - "sport": "Cycling", - "team": "Great Britain", - "noc": "GBR", - "age": 36, - "event": "Cycling Men's Team Pursuit, 4,000 metres", - "medal": "Gold" - }, - { - "name": "Rhian Emilie Wilkinson", - "gender": "F", - "height": "166", - "weight": "66", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 34, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "William de Asevedo Furtado", - "gender": "M", - "height": "176", - "weight": "65", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 21, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Charity Williams", - "gender": "F", - "height": "162", - "weight": "68", - "sport": "Rugby Sevens", - "team": "Canada", - "noc": "CAN", - "age": 19, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Bronze" - }, - { - "name": "Christania Williams", - "gender": "F", - "height": "165", - "weight": "63", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 21, - "event": "Athletics Women's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Michelle Williams (-Toro)", - "gender": "F", - "height": "175", - "weight": "67", - "sport": "Swimming", - "team": "Canada", - "noc": "CAN", - "age": 25, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Bronze" - }, - { - "name": "Niall Williams", - "gender": "F", - "height": "173", - "weight": "74", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 28, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Sharni Williams", - "gender": "F", - "height": "167", - "weight": "79", - "sport": "Rugby Sevens", - "team": "Australia", - "noc": "AUS", - "age": 28, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Gold" - }, - { - "name": "Venus Ebony Starr Williams", - "gender": "F", - "height": "185", - "weight": "75", - "sport": "Tennis", - "team": "United States-1", - "noc": "USA", - "age": 36, - "event": "Tennis Mixed Doubles", - "medal": "Silver" - }, - { - "name": "Novlene Hilaire Williams-Mills", - "gender": "F", - "height": "168", - "weight": "57", - "sport": "Athletics", - "team": "Jamaica", - "noc": "JAM", - "age": 34, - "event": "Athletics Women's 4 x 400 metres Relay", - "medal": "Silver" - }, - { - "name": "Nicholas Ian \"Nick\" Willis", - "gender": "M", - "height": "183", - "weight": "68", - "sport": "Athletics", - "team": "New Zealand", - "noc": "NZL", - "age": 33, - "event": "Athletics Men's 1,500 metres", - "medal": "Bronze" - }, - { - "name": "Madison \"Madi\" Wilson", - "gender": "F", - "height": "179", - "weight": "61", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Freestyle Relay", - "medal": "Gold" - }, - { - "name": "Madison \"Madi\" Wilson", - "gender": "F", - "height": "179", - "weight": "61", - "sport": "Swimming", - "team": "Australia", - "noc": "AUS", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Silver" - }, - { - "name": "Melanie Kate Wilson", - "gender": "F", - "height": "184", - "weight": "75", - "sport": "Rowing", - "team": "Great Britain", - "noc": "GBR", - "age": 32, - "event": "Rowing Women's Coxed Eights", - "medal": "Silver" - }, - { - "name": "Nile Wilson", - "gender": "M", - "height": "166", - "weight": "60", - "sport": "Gymnastics", - "team": "Great Britain", - "noc": "GBR", - "age": 20, - "event": "Gymnastics Men's Horizontal Bar", - "medal": "Bronze" - }, - { - "name": "Spencer James W. Wilton", - "gender": "M", - "height": "183", - "weight": "83", - "sport": "Equestrianism", - "team": "Great Britain", - "noc": "GBR", - "age": 43, - "event": "Equestrianism Mixed Dressage, Team", - "medal": "Silver" - }, - { - "name": "Kasper Winther Jrgensen", - "gender": "M", - "height": "182", - "weight": "73", - "sport": "Rowing", - "team": "Denmark", - "noc": "DEN", - "age": 31, - "event": "Rowing Men's Lightweight Coxless Fours", - "medal": "Silver" - }, - { - "name": "Anita Wodarczyk", - "gender": "F", - "height": "178", - "weight": "95", - "sport": "Athletics", - "team": "Poland", - "noc": "POL", - "age": 30, - "event": "Athletics Women's Hammer Throw", - "medal": "Gold" - }, - { - "name": "Maja Martyna Woszczowska", - "gender": "F", - "height": "170", - "weight": "54", - "sport": "Cycling", - "team": "Poland", - "noc": "POL", - "age": 32, - "event": "Cycling Women's Mountainbike, Cross-team", - "medal": "Silver" - }, - { - "name": "Andreas Wolff", - "gender": "M", - "height": "198", - "weight": "110", - "sport": "Handball", - "team": "Germany", - "noc": "GER", - "age": 25, - "event": "Handball Men's Handball", - "medal": "Bronze" - }, - { - "name": "Panipak Wongpattanakit", - "gender": "F", - "height": "173", - "weight": "49", - "sport": "Taekwondo", - "team": "Thailand", - "noc": "THA", - "age": 18, - "event": "Taekwondo Women's Flyweight", - "medal": "Bronze" - }, - { - "name": "Portia Woodman", - "gender": "F", - "height": "169", - "weight": "74", - "sport": "Rugby Sevens", - "team": "New Zealand", - "noc": "NZL", - "age": 25, - "event": "Rugby Sevens Women's Rugby Sevens", - "medal": "Silver" - }, - { - "name": "Kelsi Worrell", - "gender": "F", - "height": "180", - "weight": "75", - "sport": "Swimming", - "team": "United States", - "noc": "USA", - "age": 22, - "event": "Swimming Women's 4 x 100 metres Medley Relay", - "medal": "Gold" - }, - { - "name": "Taylor Worth", - "gender": "M", - "height": "174", - "weight": "60", - "sport": "Archery", - "team": "Australia", - "noc": "AUS", - "age": 25, - "event": "Archery Men's Team", - "medal": "Bronze" - }, - { - "name": "Dagmara Wozniak (Woniak-)", - "gender": "F", - "height": "173", - "weight": "81", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 28, - "event": "Fencing Women's Sabre, Team", - "medal": "Bronze" - }, - { - "name": "Felipe Almeida Wu", - "gender": "M", - "height": "169", - "weight": "69", - "sport": "Shooting", - "team": "Brazil", - "noc": "BRA", - "age": 24, - "event": "Shooting Men's Air Pistol, 10 metres", - "medal": "Silver" - }, - { - "name": "Wu Minxia", - "gender": "F", - "height": "167", - "weight": "52", - "sport": "Diving", - "team": "China", - "noc": "CHN", - "age": 30, - "event": "Diving Women's Synchronized Springboard", - "medal": "Gold" - }, - { - "name": "Marta Xargay Casademont", - "gender": "F", - "height": "180", - "weight": "71", - "sport": "Basketball", - "team": "Spain", - "noc": "ESP", - "age": 25, - "event": "Basketball Women's Basketball", - "medal": "Silver" - }, - { - "name": "Xiang Yanmei", - "gender": "F", - "height": "163", - "weight": "69", - "sport": "Weightlifting", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Weightlifting Women's Light-Heavyweight", - "medal": "Gold" - }, - { - "name": "Xu Anqi", - "gender": "F", - "height": "182", - "weight": "76", - "sport": "Fencing", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Fencing Women's epee, Team", - "medal": "Silver" - }, - { - "name": "Xu Jiayu", - "gender": "M", - "height": "187", - "weight": "78", - "sport": "Swimming", - "team": "China", - "noc": "CHN", - "age": 20, - "event": "Swimming Men's 100 metres Backstroke", - "medal": "Silver" - }, - { - "name": "Xu Xin", - "gender": "M", - "height": "180", - "weight": "67", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Table Tennis Men's Team", - "medal": "Gold" - }, - { - "name": "Xu Yunli", - "gender": "F", - "height": "195", - "weight": "75", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 29, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Kanae Yamabe", - "gender": "F", - "height": "172", - "weight": "108", - "sport": "Judo", - "team": "Japan", - "noc": "JPN", - "age": 25, - "event": "Judo Women's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Ryota Yamagata", - "gender": "M", - "height": "177", - "weight": "70", - "sport": "Athletics", - "team": "Japan", - "noc": "JPN", - "age": 24, - "event": "Athletics Men's 4 x 100 metres Relay", - "medal": "Silver" - }, - { - "name": "Koji Yamamuro", - "gender": "M", - "height": "159", - "weight": "58", - "sport": "Gymnastics", - "team": "Japan", - "noc": "JPN", - "age": 27, - "event": "Gymnastics Men's Team All-Around", - "medal": "Gold" - }, - { - "name": "Yan Ni", - "gender": "F", - "height": "192", - "weight": "74", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 29, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Dmytro Mykolaiovych Yanchuk", - "gender": "M", - "height": "184", - "weight": "75", - "sport": "Canoeing", - "team": "Ukraine", - "noc": "UKR", - "age": 23, - "event": "Canoeing Men's Canadian Doubles, 1,000 metres", - "medal": "Bronze" - }, - { - "name": "Yang Fangxu", - "gender": "F", - "height": "190", - "weight": "71", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 21, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Elitsa Atanasova Yankova", - "gender": "F", - "height": "151", - "weight": "48", - "sport": "Wrestling", - "team": "Bulgaria", - "noc": "BUL", - "age": 21, - "event": "Wrestling Women's Flyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Selim Yaar", - "gender": "M", - "height": "179", - "weight": "86", - "sport": "Wrestling", - "team": "Turkey", - "noc": "TUR", - "age": 26, - "event": "Wrestling Men's Light-Heavyweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Hassan Aliazam Yazdanicharati", - "gender": "M", - "height": "181", - "weight": "74", - "sport": "Wrestling", - "team": "Iran", - "noc": "IRI", - "age": 21, - "event": "Wrestling Men's Middleweight, Freestyle", - "medal": "Gold" - }, - { - "name": "Yuliya Andreyevna Yefimova", - "gender": "F", - "height": "178", - "weight": "64", - "sport": "Swimming", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Swimming Women's 100 metres Breaststroke", - "medal": "Silver" - }, - { - "name": "Yuliya Andreyevna Yefimova", - "gender": "F", - "height": "178", - "weight": "64", - "sport": "Swimming", - "team": "Russia", - "noc": "RUS", - "age": 24, - "event": "Swimming Women's 200 metres Breaststroke", - "medal": "Silver" - }, - { - "name": "Julius Kiplagat Yego", - "gender": "M", - "height": "175", - "weight": "94", - "sport": "Athletics", - "team": "Kenya", - "noc": "KEN", - "age": 27, - "event": "Athletics Men's Javelin Throw", - "medal": "Silver" - }, - { - "name": "Yana Karapetovna Yegoryan", - "gender": "F", - "height": "175", - "weight": "64", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Fencing Women's Sabre, Individual", - "medal": "Gold" - }, - { - "name": "Yana Karapetovna Yegoryan", - "gender": "F", - "height": "175", - "weight": "64", - "sport": "Fencing", - "team": "Russia", - "noc": "RUS", - "age": 22, - "event": "Fencing Women's Sabre, Team", - "medal": "Gold" - }, - { - "name": "Daniyar Maratovich Yeleusinov", - "gender": "M", - "height": "178", - "weight": "64", - "sport": "Boxing", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 25, - "event": "Boxing Men's Welterweight", - "medal": "Gold" - }, - { - "name": "Tatyana Vladimirova Yerokhina", - "gender": "F", - "height": "185", - "weight": "73", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 31, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Yi Siling", - "gender": "F", - "height": "165", - "weight": "51", - "sport": "Shooting", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Shooting Women's Air Rifle, 10 metres", - "medal": "Bronze" - }, - { - "name": "Yin Chengxin", - "gender": "F", - "height": "170", - "weight": "58", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 21, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "Yin Junhua", - "gender": "F", - "height": "167", - "weight": "60", - "sport": "Boxing", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Boxing Women's Lightweight", - "medal": "Silver" - }, - { - "name": "Tony Victor James Yoka", - "gender": "M", - "height": "200", - "weight": "105", - "sport": "Boxing", - "team": "France", - "noc": "FRA", - "age": 24, - "event": "Boxing Men's Super-Heavyweight", - "medal": "Gold" - }, - { - "name": "Yoon Jin-Hee", - "gender": "F", - "height": "158", - "weight": "53", - "sport": "Weightlifting", - "team": "South Korea", - "noc": "KOR", - "age": 29, - "event": "Weightlifting Women's Featherweight", - "medal": "Bronze" - }, - { - "name": "Kurumi Yoshida", - "gender": "F", - "height": "167", - "weight": "57", - "sport": "Synchronized Swimming", - "team": "Japan", - "noc": "JPN", - "age": 24, - "event": "Synchronized Swimming Women's Team", - "medal": "Bronze" - }, - { - "name": "Saori Yoshida", - "gender": "F", - "height": "157", - "weight": "55", - "sport": "Wrestling", - "team": "Japan", - "noc": "JPN", - "age": 33, - "event": "Wrestling Women's Featherweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Maharu Yoshimura", - "gender": "M", - "height": "177", - "weight": "61", - "sport": "Table Tennis", - "team": "Japan", - "noc": "JPN", - "age": 23, - "event": "Table Tennis Men's Team", - "medal": "Silver" - }, - { - "name": "You Hao", - "gender": "M", - "height": "162", - "weight": "60", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 24, - "event": "Gymnastics Men's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Yu Song", - "gender": "F", - "height": "182", - "weight": "128", - "sport": "Judo", - "team": "China", - "noc": "CHN", - "age": 29, - "event": "Judo Women's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Yuan Xinyue", - "gender": "F", - "height": "201", - "weight": "78", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 19, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Grce Zaadi Deuna", - "gender": "F", - "height": "171", - "weight": "66", - "sport": "Handball", - "team": "France", - "noc": "FRA", - "age": 23, - "event": "Handball Women's Handball", - "medal": "Silver" - }, - { - "name": "Olga Sergeyevna Zabelinskaya (Sukhoruchenkova-)", - "gender": "F", - "height": "175", - "weight": "61", - "sport": "Cycling", - "team": "Russia", - "noc": "RUS", - "age": 36, - "event": "Cycling Women's Individual Time Trial", - "medal": "Silver" - }, - { - "name": "Shelina Laura Zadorsky", - "gender": "F", - "height": "172", - "weight": "67", - "sport": "Football", - "team": "Canada", - "noc": "CAN", - "age": 23, - "event": "Football Women's Football", - "medal": "Bronze" - }, - { - "name": "Mariel Leigh Zagunis", - "gender": "F", - "height": "173", - "weight": "72", - "sport": "Fencing", - "team": "United States", - "noc": "USA", - "age": 31, - "event": "Fencing Women's Sabre, Team", - "medal": "Bronze" - }, - { - "name": "Thomas Zajac", - "gender": "M", - "height": "180", - "weight": "77", - "sport": "Sailing", - "team": "Austria", - "noc": "AUT", - "age": 30, - "event": "Sailing Mixed Multihull", - "medal": "Bronze" - }, - { - "name": "Arthur Nabarrete Zanetti", - "gender": "M", - "height": "156", - "weight": "61", - "sport": "Gymnastics", - "team": "Brazil", - "noc": "BRA", - "age": 26, - "event": "Gymnastics Men's Rings", - "medal": "Silver" - }, - { - "name": "Aleksandr Sergeyevich Zaychikov", - "gender": "M", - "height": "180", - "weight": "105", - "sport": "Weightlifting", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 23, - "event": "Weightlifting Men's Heavyweight", - "medal": "Bronze" - }, - { - "name": "Ivan Zaytsev", - "gender": "M", - "height": "204", - "weight": "100", - "sport": "Volleyball", - "team": "Italy", - "noc": "ITA", - "age": 27, - "event": "Volleyball Men's Volleyball", - "medal": "Silver" - }, - { - "name": "Vasilij bogar", - "gender": "M", - "height": "189", - "weight": "98", - "sport": "Sailing", - "team": "Slovenia", - "noc": "SLO", - "age": 40, - "event": "Sailing Men's One Person Heavyweight Dinghy", - "medal": "Silver" - }, - { - "name": "Jos Carlos Cracco Neto", - "gender": "M", - "height": "170", - "weight": "69", - "sport": "Football", - "team": "Brazil", - "noc": "BRA", - "age": 22, - "event": "Football Men's Football", - "medal": "Gold" - }, - { - "name": "Zeng Zhen", - "gender": "F", - "height": "170", - "weight": "61", - "sport": "Synchronized Swimming", - "team": "China", - "noc": "CHN", - "age": 22, - "event": "Synchronized Swimming Women's Team", - "medal": "Silver" - }, - { - "name": "Zhang Binbin", - "gender": "F", - "height": "164", - "weight": "55", - "sport": "Shooting", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Shooting Women's Small-Bore Rifle, Three Positions, 50 metres", - "medal": "Silver" - }, - { - "name": "Zhang Changning", - "gender": "F", - "height": "193", - "weight": "79", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 20, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Zhang Chenglong", - "gender": "M", - "height": "173", - "weight": "65", - "sport": "Gymnastics", - "team": "China", - "noc": "CHN", - "age": 27, - "event": "Gymnastics Men's Team All-Around", - "medal": "Bronze" - }, - { - "name": "Zhang Fengliu", - "gender": "F", - "height": "172", - "weight": "77", - "sport": "Wrestling", - "team": "China", - "noc": "CHN", - "age": 26, - "event": "Wrestling Women's Heavyweight, Freestyle", - "medal": "Bronze" - }, - { - "name": "Zhang Jike", - "gender": "M", - "height": "178", - "weight": "70", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 28, - "event": "Table Tennis Men's Singles", - "medal": "Silver" - }, - { - "name": "Zhang Jike", - "gender": "M", - "height": "178", - "weight": "70", - "sport": "Table Tennis", - "team": "China", - "noc": "CHN", - "age": 28, - "event": "Table Tennis Men's Team", - "medal": "Gold" - }, - { - "name": "Zhang Mengxue", - "gender": "F", - "height": "162", - "weight": "70", - "sport": "Shooting", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Shooting Women's Air Pistol, 10 metres", - "medal": "Gold" - }, - { - "name": "Zhang Nan", - "gender": "M", - "height": "183", - "weight": "75", - "sport": "Badminton", - "team": "China-1", - "noc": "CHN", - "age": 26, - "event": "Badminton Mixed Doubles", - "medal": "Bronze" - }, - { - "name": "Zhang Nan", - "gender": "M", - "height": "183", - "weight": "75", - "sport": "Badminton", - "team": "China-1", - "noc": "CHN", - "age": 26, - "event": "Badminton Men's Doubles", - "medal": "Gold" - }, - { - "name": "Zhang Wenxiu", - "gender": "F", - "height": "183", - "weight": "105", - "sport": "Athletics", - "team": "China", - "noc": "CHN", - "age": 30, - "event": "Athletics Women's Hammer Throw", - "medal": "Silver" - }, - { - "name": "Zhao Shuai", - "gender": "M", - "height": "188", - "weight": "63", - "sport": "Taekwondo", - "team": "China", - "noc": "CHN", - "age": 20, - "event": "Taekwondo Men's Flyweight", - "medal": "Gold" - }, - { - "name": "Zhao Yunlei", - "gender": "F", - "height": "173", - "weight": "60", - "sport": "Badminton", - "team": "China-1", - "noc": "CHN", - "age": 29, - "event": "Badminton Mixed Doubles", - "medal": "Bronze" - }, - { - "name": "Zhazira Abdrakhmanovna Zhapparkul", - "gender": "F", - "height": "155", - "weight": "69", - "sport": "Weightlifting", - "team": "Kazakhstan", - "noc": "KAZ", - "age": 22, - "event": "Weightlifting Women's Light-Heavyweight", - "medal": "Silver" - }, - { - "name": "Zheng Shuyin", - "gender": "F", - "height": "188", - "weight": "75", - "sport": "Taekwondo", - "team": "China", - "noc": "CHN", - "age": 22, - "event": "Taekwondo Women's Heavyweight", - "medal": "Gold" - }, - { - "name": "Viktoriya Yuryevna Zhilinskayte", - "gender": "F", - "height": "188", - "weight": "80", - "sport": "Handball", - "team": "Russia", - "noc": "RUS", - "age": 27, - "event": "Handball Women's Handball", - "medal": "Gold" - }, - { - "name": "Valeriya Sergeyevna Zholobova-Koblova", - "gender": "F", - "height": "164", - "weight": "58", - "sport": "Wrestling", - "team": "Russia", - "noc": "RUS", - "age": 23, - "event": "Wrestling Women's Lightweight, Freestyle", - "medal": "Silver" - }, - { - "name": "Zhong Tianshi", - "gender": "F", - "height": "168", - "weight": "62", - "sport": "Cycling", - "team": "China", - "noc": "CHN", - "age": 25, - "event": "Cycling Women's Team Sprint", - "medal": "Gold" - }, - { - "name": "Zhu Ting", - "gender": "F", - "height": "198", - "weight": "78", - "sport": "Volleyball", - "team": "China", - "noc": "CHN", - "age": 21, - "event": "Volleyball Women's Volleyball", - "medal": "Gold" - }, - { - "name": "Bojana ivkovi", - "gender": "F", - "height": "186", - "weight": "72", - "sport": "Volleyball", - "team": "Serbia", - "noc": "SRB", - "age": 28, - "event": "Volleyball Women's Volleyball", - "medal": "Silver" - }, - { - "name": "Shakhobiddin Shokirovich Zoirov", - "gender": "M", - "height": "169", - "weight": "52", - "sport": "Boxing", - "team": "Uzbekistan", - "noc": "UZB", - "age": 23, - "event": "Boxing Men's Flyweight", - "medal": "Gold" - }, - { - "name": "Milenko Zori", - "gender": "M", - "height": "179", - "weight": "73", - "sport": "Canoeing", - "team": "Serbia", - "noc": "SRB", - "age": 27, - "event": "Canoeing Men's Kayak Doubles, 1,000 metres", - "medal": "Silver" - }, - { - "name": "Martin Zwicker", - "gender": "M", - "height": "175", - "weight": "64", - "sport": "Hockey", - "team": "Germany", - "noc": "GER", - "age": 29, - "event": "Hockey Men's Hockey", - "medal": "Bronze" - } - ] -} diff --git a/src/data/ghibli/README.md b/src/data/ghibli/README.md deleted file mode 100644 index 11f84cbe..00000000 --- a/src/data/ghibli/README.md +++ /dev/null @@ -1,33 +0,0 @@ -# Studio Ghibli - -Studio Ghibli es un estudio de animación japonés, conocido por sus largometrajes -animados como **Mi vecino Totoro**, **El viaje de Chihiro** o -**El castillo ambulante**, entre otros grandes éxitos. - -Las animaciones tienen gran acogida a nivel mundial y algunas han recibido -varias nominaciones y premios. De todo este fandom hay un grupo que desea poder -interactuar y ver la información de las animaciones y sus personajes. - -## Hallazgos - -Para entender mejor qué información podrían necesitar nuestras usuarias, -hicimos una rápida investigación (research) y estos son algunos de los -hallazgos. - -- Studio Ghibli tiene varias animaciones, para nuestras usuarias es importante - saber cuántas y cuáles son. -- Las animaciones tienen directorxs y productorxs. Estxs son las mentes detrás - de una gran animación. En Studio Ghibli hay directorxs y productorxs que han - colaborado en la creación de más de una animación. Por ello, es importante - para nuestra usuaria poder conocerlos y saber cuántas y cuáles son las - animaciones a las que dieron "vida". -- Las animaciones tienen información relevante para nuestras usuarias, como - descripción, fecha de lanzamiento, peso, director, productor y personajes. -- Cada animación tiene sus personajes, para nuestras usuarias es importante - saber cuántos y cuáles son -- Los personajes tienen características únicas que la usuaria quiere saber, como - nombre, edad, género, especie, etc. -- Las animaciones tienen locaciones y vehículos únicos en cada una. Para - nuestras usuarias es importante saber cuáles son. -- Adicionalmente a esta información, para nuestras usuarias es importante poder - ver los tipos de especies que hay en cada animación. diff --git a/src/data/ghibli/README.pt-BR.md b/src/data/ghibli/README.pt-BR.md deleted file mode 100644 index a4f69ff7..00000000 --- a/src/data/ghibli/README.pt-BR.md +++ /dev/null @@ -1,31 +0,0 @@ -# Studio Ghibli - -Studio Ghibli é um estúdio japonês de animação, muito -conhecido por seus filmes como **Meu Amigo Totoro**, -**A Viagem de Chihiro**, **O Castelo Animado**, entre outros grandes sucessos. -As animações são bem recebidas em todo o mundo e algumas receberam -várias nomeações e prêmios. De todo esse fandom há um grupo que deseja -interagir e ver as informações das animações e seus personagens. - -## Achados - -Para entender melhor quais informações nossos usuários podem precisar, -fizemos uma investigação rápida (research) e essas são algumas das conclusões. - -- Studio Ghibli tem várias animações e para nossos usuários é importante -saber quantas e quais são -- As mentes por trás de cada animação são os diretores e produtores, -sendo que eles podem ter contribuído -na criação de mais de uma obra. Portanto, é importante -para nosso usuário poder conhecê-los e saber quantas e quais são as criações -em que eles trabalharam -- As animações possuem informações relevantes para nossos usuários, como -descrição, data de lançamento, diretor, produtor e personagens -- Cada animação tem seus personagens e para nossos usuários é importante -saber quantos e quais são -- Os personagens têm características únicas que o usuário deseja conhecer, como -nome, idade, sexo, espécie, etc. -- As animações têm locais e veículos únicos em cada um e para nossos usuários é -importante saber quais são -- Além dessas informações, é importante que nossos usuários sejam capazes de -ver os tipos de espécies em cada animação diff --git a/src/data/ghibli/ghibli.js b/src/data/ghibli/ghibli.js deleted file mode 100644 index fb68b355..00000000 --- a/src/data/ghibli/ghibli.js +++ /dev/null @@ -1,2435 +0,0 @@ -export default { - "studio": "Studio Ghibli Inc.", - "films": [ - { - "id": "2baf70d1-42bb-4437-b551-e5fed5a87abe", - "title": "Castle in the Sky", - "description": "The orphan Sheeta inherited a mysterious crystal that links her to the mythical sky-kingdom of Laputa. With the help of resourceful Pazu and a rollicking band of sky pirates, she makes her way to the ruins of the once-great civilization. Sheeta and Pazu must outwit the evil Muska, who plans to use Laputa's science to make himself ruler of the world.", - "director": "Hayao Miyazaki", - "producer": "Isao Takahata", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c1/Castle_in_the_Sky.jpg", - "release_date": "1986", - "rt_score": "95", - "people": [ - { - "id": "fe93adf2-2f3a-4ec4-9f68-5422f1b87c01", - "name": "Pazu", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/8b/Pazu.jpg", - "gender": "Male", - "age": "13", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "598f7048-74ff-41e0-92ef-87dc1ad980a9", - "name": "Lusheeta Toel Ul Laputa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c3/Sheeta.jpg", - "gender": "Female", - "age": "13", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "3bc0b41e-3569-4d20-ae73-2da329bf0786", - "name": "Dola", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/b3/Dola.png", - "gender": "Female", - "age": "60", - "eye_color": "Black", - "hair_color": "Peach", - "specie": "Human" - }, - { - "id": "abe886e7-30c8-4c19-aaa5-d666e60d14de", - "name": "Romska Palo Ul Laputa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d5/Muska.jpg", - "gender": "Male", - "age": "33", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "e08880d0-6938-44f3-b179-81947e7873fc", - "name": "Uncle Pom", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/de/Uncle_Pom.png", - "gender": "Male", - "age": "Unspecified/Elderly", - "eye_color": "Black", - "hair_color": "White", - "specie": "Human" - }, - { - "id": "5c83c12a-62d5-4e92-8672-33ac76ae1fa0", - "name": "General Muoro", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/12/Muoro.jpg", - "gender": "Male", - "age": "Unspecified/Adult", - "eye_color": "Black", - "hair_color": "None", - "specie": "Human" - }, - { - "id": "3f4c408b-0bcc-45a0-bc8b-20ffc67a2ede", - "name": "Duffi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/0a/Duffi.png", - "gender": "Male", - "age": "Unspecified/Adult", - "eye_color": "Dark brown", - "hair_color": "Dark brown", - "specie": "Human" - }, - { - "id": "fcb4a2ac-5e41-4d54-9bba-33068db083ca", - "name": "Louis", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/28/Charlies.jpg", - "gender": "Male", - "age": "30", - "eye_color": "Dark brown", - "hair_color": "Dark brown", - "specie": "Human" - }, - { - "id": "2cb76c15-772a-4cb3-9919-3652f56611d0", - "name": "Charles", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/f/f0/Charlie.jpg", - "gender": "Male", - "age": "Unspecified/Adult", - "eye_color": "Dark brown", - "hair_color": "Light brown", - "specie": "Human" - }, - { - "id": "f6f2c477-98aa-4796-b9aa-8209fdeed6b9", - "name": "Henri", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/15/Henri.jpg", - "gender": "Male", - "age": "Unspecified/Adult", - "eye_color": "Dark brown", - "hair_color": "Reddish brown", - "specie": "Human" - }, - { - "id": "05d8d01b-0c2f-450e-9c55-aa0daa34838e", - "name": "Motro", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/17/Eggman_laputa.jpg", - "gender": "Male", - "age": "Unspecified/Adult", - "eye_color": "Dark brown", - "hair_color": "None", - "specie": "Human" - }, - { - "id": "b22a684f-1819-40c8-94a6-d40c3b5e18eb", - "name": "Okami", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/65/Okami.jpg", - "gender": "Female", - "age": "50", - "eye_color": "Dark brown", - "hair_color": "Orange", - "specie": "Human" - }, - { - "id": "40c005ce-3725-4f15-8409-3e1b1b14b583", - "name": "Colonel Muska", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d3/Colonelmuska2bodyguards.JPG", - "gender": "Male", - "age": "33", - "eye_color": "Grey", - "hair_color": "Brown", - "specie": "Human" - } - ], - "locations": [ - { - "id": "6ba60a86-7c74-4ec4-a6f4-7112b5705a2f", - "name": "Gondoa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/25/Thumbnail-8.jpeg", - "climate": "TODO", - "terrain": "TODO", - "surface_water": "40", - "residents": [ - "TODO" - ] - }, - { - "id": "26361a2c-32c6-4bd5-ae9c-8e40e17ae28d", - "name": "Pazu's Mines", - "img": "https://preview.redd.it/fmikehlh8dl41.jpg?auto=webp&s=a997a7d6726fc151a438985899b052d0fd357716", - "climate": "Dry", - "terrain": "Hill", - "surface_water": "0", - "residents": [ - "TODO" - ] - }, - { - "id": "0fafa7a3-64c1-43fe-881b-ecb605c01e09", - "name": "Laputa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/e7/Laputa.png", - "climate": "Continental", - "terrain": "City", - "surface_water": "40", - "residents": [ - "TODO" - ] - }, - { - "id": "0132f7f6-fd52-4ac3-b5df-c96b609f77b6", - "name": "Tedis", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/13/Tedis.jpg", - "climate": "Continental", - "terrain": "Hill", - "surface_water": "30", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [ - { - "id": "4e09b023-f650-4747-9ab9-eacf14540cfb", - "name": "Air Destroyer Goliath", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/e5/Goliath.png", - "description": "A military airship utilized by the government to access Laputa", - "vehicle_class": "Airship", - "length": "1,000", - "pilot": { - "id": "40c005ce-3725-4f15-8409-3e1b1b14b583", - "name": "Colonel Muska" - } - } - ] - }, - { - "id": "58611129-2dbc-4a81-a72f-77ddfc1b1b49", - "title": "My Neighbor Totoro", - "description": "Two sisters move to the country with their father in order to be closer to their hospitalized mother, and discover the surrounding trees are inhabited by Totoros, magical spirits of the forest. When the youngest runs away from home, the older sister seeks help from the spirits to find her.", - "director": "Hayao Miyazaki", - "producer": "Hayao Miyazaki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/d/db/My_Neighbor_Totoro.jpg", - "release_date": "1988", - "rt_score": "93", - "people": [ - { - "id": "986faac6-67e3-4fb8-a9ee-bad077c2e7fe", - "name": "Satsuki Kusakabe", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/f/f2/Satsuki_Kusakabe.jpg", - "gender": "Female", - "age": "11", - "eye_color": "Dark Brown/Black", - "hair_color": "Dark Brown", - "specie": "Human" - }, - { - "id": "d5df3c04-f355-4038-833c-83bd3502b6b9", - "name": "Mei Kusakabe", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/b5/God_Jul_Mei_%C3%B6nskar_fr%C3%A5n_Tomten.jpg", - "gender": "Female", - "age": "4", - "eye_color": "Brown", - "hair_color": "Light Brown", - "specie": "Human" - }, - { - "id": "3031caa8-eb1a-41c6-ab93-dd091b541e11", - "name": "Tatsuo Kusakabe", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d6/Tatsuo_Kusakabe.jpg", - "gender": "Male", - "age": "37", - "eye_color": "Brown", - "hair_color": "Dark Brown", - "specie": "Human" - }, - { - "id": "87b68b97-3774-495b-bf80-495a5f3e672d", - "name": "Yasuko Kusakabe", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/7/7b/Yasuko_Kusakabe.png", - "gender": "Female", - "age": "36", - "eye_color": "Brown", - "hair_color": "Dark Brown", - "specie": "Human" - }, - { - "id": "08ffbce4-7f94-476a-95bc-76d3c3969c19", - "name": "Granny", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d9/Granny.png", - "gender": "Female", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Human" - }, - { - "id": "0f8ef701-b4c7-4f15-bd15-368c7fe38d0a", - "name": "Kanta Ogaki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c3/Kanta.jpg", - "gender": "Male", - "age": "11", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "d39deecb-2bd0-4770-8b45-485f26e1381f", - "name": "Totoro", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/df/Totoro_in_the_rain.png", - "gender": "Male", - "age": "1300", - "eye_color": "Grey", - "hair_color": "Grey", - "specie": "Totoro" - }, - { - "id": "591524bc-04fe-4e60-8d61-2425e42ffb2a", - "name": "Chu Totoro", - "img": "https://www.ghibli.jp/gallery/thumb-totoro019.png", - "gender": "NA", - "age": "", - "eye_color": "Black", - "hair_color": "Blue", - "specie": "Totoro" - }, - { - "id": "c491755a-407d-4d6e-b58a-240ec78b5061", - "name": "Chibi Totoro", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c5/Little_Totoro_spirit_moving.gif", - "gender": "NA", - "age": "", - "eye_color": "Black", - "hair_color": "White", - "specie": "Totoro" - }, - { - "id": "f467e18e-3694-409f-bdb3-be891ade1106", - "name": "Catbus", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/30/Catbus.jpg", - "gender": "Male", - "age": "NA", - "eye_color": "Yellow", - "hair_color": "Brown", - "specie": "Cat" - } - ], - "locations": [ - { - "id": "660c8c91-bd92-43db-b475-b2df6ca96fec", - "name": "Kusakabe's House", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/f/f3/Kusakabe_Family_House.jpg", - "climate": "Mild", - "terrain": "River", - "surface_water": "40", - "residents": [ - "TODO" - ] - }, - { - "id": "6fc21b76-78fb-4451-98f7-857e32a23e85", - "name": "Matsugo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/08/Min_Granne_Totoro_v%C3%A4rlden.jpg", - "climate": "Continental", - "terrain": "River", - "surface_water": "60", - "residents": [ - "TODO" - ] - }, - { - "id": "ee897b2a-405e-42b9-bff4-8b51b0f03cab", - "name": "Satsuki's School House", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/dd/Satsuki%27s_School_House.jpg", - "climate": "Mild", - "terrain": "River", - "surface_water": "60", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "ea660b10-85c4-4ae3-8a5f-41cea3648e3e", - "title": "Kiki's Delivery Service", - "description": "A young witch, on her mandatory year of independent life, finds fitting into a new community difficult while she supports herself by running an air courier service.", - "director": "Hayao Miyazaki", - "producer": "Hayao Miyazaki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/4/48/Kiki%27s_Delivery_Service_%282%29.jpg", - "release_date": "1989", - "rt_score": "96", - "people": [ - { - "id": "4151abc6-1a9e-4e6a-5678-aac05ra641js", - "name": "Kiki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/59/Kiki.jpg", - "gender": "Female", - "age": "13", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Witch" - }, - { - "id": "7151abc6-1a9e-4e6a-9711-ddb50ea572ec", - "name": "Jiji", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/b4/Jiji.jpg", - "gender": "Male", - "age": "13", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Cat" - }, - { - "id": "6574cfr2-9w3d-2x1h-8531-gge23iu489ko", - "name": "Ursula", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/12/Ursula.jpg", - "gender": "Female", - "age": "18", - "eye_color": "Black", - "hair_color": "Red", - "specie": "Human" - }, - { - "id": "4321dse3-6r6s-3r4d-5641-rdq19re765de", - "name": "Tombo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/6f/Tombo.jpg", - "gender": "Male", - "age": "13", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "8252ebf6-1g8f-5t6u-1234-vvg45yd363dc", - "name": "Osono", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/3a/Osono.jpg", - "gender": "Female", - "age": "30", - "eye_color": "Brown", - "hair_color": "Red", - "specie": "Human" - }, - { - "id": "7654ght4-3r4t-1t5u-0987-hhj76gh432gr", - "name": "Fukuo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/29/Fukuo.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - } - ], - "locations": [ - { - "id": "fb083a4e-77b2-4623-a2e0-6bbca5bfd5b2", - "name": "Ursula's Log Cabin", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/b5/Ursula%27s_Log_Cabin.jpg", - "climate": "TODO", - "terrain": "TODO", - "surface_water": "40", - "residents": [ - "TODO" - ] - }, - { - "id": "c57fb2cb-ea85-4d73-8808-cf5dcd28c22e", - "name": "Koriko", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/05/Koriko.jpg", - "climate": "Mild", - "terrain": "Hill", - "surface_water": "50", - "residents": [ - "TODO" - ] - }, - { - "id": "62346d33-caa0-4c17-8016-0aca56f3066b", - "name": "Karikiya", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/e3/Majo002.jpg", - "climate": "Mild", - "terrain": "City", - "surface_water": "30", - "residents": [ - "TODO" - ] - }, - { - "id": "64a996aa-481e-4627-9624-ab23f59a05a9", - "name": "Guchokipanya", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/0f/Gutiokipanja.jpg", - "climate": "Continental", - "terrain": "Hill", - "surface_water": "50", - "residents": [ - { - "id": "8252ebf6-1g8f-5t6u-1234-vvg45yd363dc", - "name": "Osono" - }, - { - "id": "7654ght4-3r4t-1t5u-0987-hhj76gh432gr", - "name": "Fukuo" - } - ] - } - ], - "vehicles": [] - }, - { - "id": "12cfb892-aac0-4c5b-94af-521852e46d6a", - "title": "Grave of the Fireflies", - "description": "In the latter part of World War II, a boy and his sister, orphaned when their mother is killed in the firebombing of Tokyo, are left to survive on their own in what remains of civilian life in Japan. The plot follows this boy and his sister as they do their best to survive in the Japanese countryside, battling hunger, prejudice, and pride in their own quiet, personal battle.", - "director": "Isao Takahata", - "producer": "Toru Hara", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/a/a5/Grave_of_the_Fireflies_Japanese_poster.jpg", - "release_date": "1988", - "rt_score": "97", - "people": [ - { - "id": "8cb959a8-1959-42f3-bb33-07d7a2e6b830", - "name": "Seita Yokokawa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/21/Seita_Yokokawa.jpg", - "gender": "Male", - "age": "14", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "c344d561-6654-4aab-b0df-a1570e7e60cb", - "name": "Setsuko Yokokawa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/a8/Setsuko_Yokokawa.jpg", - "gender": "Female", - "age": "4", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "227c01a6-4e29-4582-bc4b-35106a704ab0", - "name": "Mrs. Yokokawa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/39/SeitaMother.png", - "gender": "Female", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "023306e3-9fc6-4d1d-b681-d4649dcbfff9", - "name": "Kiyoshi Yokokawa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/f/f6/SeitaFather3.jpg", - "gender": "Male", - "age": "40", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "0e18b23d-1f21-4a83-a6de-f01147624875", - "name": "Seita's Aunt", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/09/SeitaAunt.jpg", - "gender": "Female", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - } - ], - "locations": [], - "vehicles": [] - }, - { - "id": "4e236f34-b981-41c3-8c65-f8c9000b94e7", - "title": "Only Yesterday", - "description": "It’s 1982, and Taeko is 27 years old, unmarried, and has lived her whole life in Tokyo. She decides to visit her family in the countryside, and as the train travels through the night, memories flood back of her younger years: the first immature stirrings of romance, the onset of puberty, and the frustrations of math and boys. At the station she is met by young farmer Toshio, and the encounters with him begin to reconnect her to forgotten longings. In lyrical switches between the present and the past, Taeko contemplates the arc of her life, and wonders if she has been true to the dreams of her childhood self.", - "director": "Isao Takahata", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/a/a9/Only_Yesterday.jpg", - "release_date": "1991", - "rt_score": "100", - "people": [ - { - "id": "d0bb7b5f-3bf0-46c8-959d-0299b3252bd8", - "name": "Taeko Okajima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d4/Taeko_Okajima.png", - "gender": "Female", - "age": "27", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "3f78eba1-f9b0-489b-8686-f4508cdf049d", - "name": "Toshio", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/5d/Toshio.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "52ed5cad-2464-481f-9786-8533b8de95ff", - "name": "Mr. Okajima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/58/Mr._Okajima.png", - "gender": "Male", - "age": "Middle age", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "87e61451-3131-4d01-a3b3-558c9ee1c451", - "name": "Mrs. Okajima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/18/Mrs._Okajima_%282%29.png", - "gender": "Female", - "age": "Middle age", - "eye_color": "Black", - "hair_color": "Light brown", - "specie": "Human" - }, - { - "id": "0174e644-eddd-4cb7-8503-e0c21291d782", - "name": "Grandmother Okajima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/0f/Grandmother_Okajima_%282%29.jpg", - "gender": "Female", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Human" - }, - { - "id": "a88cb7a4-fe4a-4d50-8d8b-c32449e298ba", - "name": "Nanako Okajima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c1/Nanako_Okajima.png", - "gender": "Female", - "age": "18", - "eye_color": "Black", - "hair_color": "Light brown", - "specie": "Human" - }, - { - "id": "c8f02850-0c1f-499c-8b5e-d8ad16f3ecc4", - "name": "Yaeko Okajima", - "gender": "Female", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/a8/Yaeko_Okajima.jpg", - "age": "16", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Human" - }, - { - "id": "6e960787-5a47-4178-a040-1ef5bf5e4a6c", - "name": "Tani Tsuneko", - "img": "https://www.anime-planet.com/images/characters/tani-tsuneko-100171.jpg", - "gender": "Female", - "age": "10", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "cd86aeb2-4fd7-4119-8128-7060e0a68074", - "name": "Aiko", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/5d/Aiko.jpg", - "gender": "Female", - "age": "10", - "eye_color": "Black", - "hair_color": "Grey brown", - "specie": "Human" - }, - { - "id": "3ab1e0de-4d41-4f67-b2d0-e16d0fef2e6c", - "name": "Toko", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/af/Toko.jpg", - "gender": "Female", - "age": "10", - "eye_color": "Black", - "hair_color": "Light brown", - "specie": "Human" - }, - { - "id": "f4a85428-18b7-4199-ba5a-b6bcfb478e14", - "name": "Rie", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/00/Rie_01.png", - "gender": "Female", - "age": "10", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Human" - } - ], - "locations": [ - { - "id": "dbeeaecb-7817-4b8b-90ca-edc432d3033e", - "name": "Taeko's House", - "img": "https://images.squarespace-cdn.com/content/v1/54fc8146e4b02a22841f4df7/1571850401468-9TTOSKJGO49OEAKEJ4O6/Art+of+Only+Yesterday+C+-+8.jpg", - "climate": "Continental", - "terrain": "River", - "surface_water": "40", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "ebbb6b7c-945c-41ee-a792-de0e43191bd8", - "title": "Porco Rosso", - "description": "Porco Rosso, known in Japan as Crimson Pig (Kurenai no Buta) is the sixth animated film by Hayao Miyazaki and released in 1992. You're introduced to an Italian World War I fighter ace, now living as a freelance bounty hunter chasing 'air pirates' in the Adriatic Sea. He has been given a curse that changed his head to that of a pig. Once called Marco Pagot, he is now known to the world as 'Porco Rosso', Italian for 'Red Pig.'", - "director": "Hayao Miyazaki", - "producer": "Toshio Suzuki", - "poster" : "https://static.wikia.nocookie.net/studio-ghibli/images/4/41/Porco_Rosso.jpg", - "release_date": "1992", - "rt_score": "94", - "people": [ - { - "id": "6523068d-f5a9-4150-bf5b-76abe6fb42c3", - "name": "Porco Rosso", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/02/Porcellino%21.png", - "gender": "Male", - "age": "47", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "eff43a47-e59c-41bd-bcc6-b1827d63bed5", - "name": "Donald Curtis", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/61/Donald_Curtis.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "4a2e2cee-08ca-4d44-9564-2b3e5421bafb", - "name": "Fio Piccolo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/16/Fio_%282%29.jpg", - "gender": "Female", - "age": "17", - "eye_color": "Brown", - "hair_color": "Red", - "specie": "Human" - }, - { - "id": "127317b3-f6f8-4aea-b294-20452a3334f5", - "name": "Gina", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/eb/Gina.jpg", - "gender": "Female", - "age": "circa 23-35", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "2ac81cc3-7292-40ab-9e8f-4a370a58e3c8", - "name": "Mr. Piccolo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/0e/Mr_Piccolo.jpg", - "gender": "Male", - "age": "Middle aged", - "eye_color": "Brown", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "a63c25f4-41a4-4f78-933f-3c14e2903a8f", - "name": "Capo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/98/Aiuto_Gang_boss.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Bald", - "specie": "Human" - }, - { - "id": "5fd7416f-d928-4ebc-a4fb-d9bbdf99b06a", - "name": "Ferrari", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/be/Porco_Rosso_-_Ferrari.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - } - ], - "locations": [ - { - "id": "34df8f25-8f80-4823-8f01-bf9852039987", - "name": "Piccolo S.P.A.", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/4f/Piccolos_garage.jpg", - "climate": "Continental", - "terrain": "River", - "surface_water": "40", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [ - { - "id": "d8f893b5-1dd9-41a1-9918-0099c1aa2de8", - "name": "Red Wing", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/8f/Porco%27s_Plane.jpg", - "description": "An experimental aircraft captured by Porco. Named Savoia S.21", - "vehicle_class": "Airplane", - "length": "20", - "pilot": { - "id": "6523068d-f5a9-4150-bf5b-76abe6fb42c3", - "name": "Porco Rosso" - } - }, - { - "id": "7eb1b9cd-8153-4ef6-a0d4-1e9abd8d78da", - "name": "Dabohaze", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/99/Aiuto_Gang.jpg", - "description": "It's the Mamma Aiuto Gang's battle ship, They're an air pirate gang lead by Capo", - "vehicle_class": "Battle ship", - "length": "NA", - "pilot": { - "id": "a63c25f4-41a4-4f78-933f-3c14e2903a8f", - "name": "Capo" - } - } - ] - }, - { - "id": "1b67aa9a-2e4a-45af-ac98-64d6ad15b16c", - "title": "Pom Poko", - "description": "As the human city development encroaches on the raccoon population's forest and meadow habitat, the raccoons find themselves faced with the very real possibility of extinction. In response, the raccoons engage in a desperate struggle to stop the construction and preserve their home.", - "director": "Isao Takahata", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/9/9e/Pom_Poko.jpg", - "release_date": "1994", - "rt_score": "78", - "people": [ - { - "id": "575d6943-f9da-445e-8e77-e118c3924a1d", - "name": "Shoukichi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/59/Shoukichi_1.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Raccoon Dog" - }, - { - "id": "9298c4fe-a508-463f-aad7-d55742e9a4e5", - "name": "Okiyo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/bd/Okiyo.jpg", - "gender": "Female", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Raccoon Dog" - }, - { - "id": "220c7498-c390-4456-b853-bac107d16ff7", - "name": "Seizaemon", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d9/Seizaemon.jpg", - "gender": "Male", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Raccoon Dog" - }, - { - "id": "718f634a-ea92-4907-a262-5a71a0661dcd", - "name": "Oroku", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/07/Oroku.jpg", - "gender": "Female", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Grey brown", - "specie": "Raccoon Dog" - }, - { - "id": "7367f154-4d9b-4e3e-89cf-2bd55c4d817f", - "name": "Gonta", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/0b/Gonta.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Raccoon Dog" - }, - { - "id": "041cad03-ad0d-4f80-aeaa-71f9f64334df", - "name": "Inugami Gyōbu", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/99/Inugami.jpg", - "gender": "Male", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Grey brown", - "specie": "Raccoon Dog" - } - ], - "locations": [], - "vehicles": [] - }, - { - "id": "ff24da26-a969-4f0e-ba1e-a122ead6c6e3", - "title": "Whisper of the Heart", - "description": "Shizuku lives a simple life, dominated by her love for stories and writing. One day she notices that all the library books she has have been previously checked out by the same person: 'Seiji Amasawa'. Curious as to who he is, Shizuku meets a boy her age whom she finds infuriating, but discovers to her shock that he is her 'Prince of Books'. As she grows closer to him, she realises that he merely read all those books to bring himself closer to her. The boy Seiji aspires to be a violin maker in Italy, and it is his dreams that make Shizuku realise that she has no clear path for her life. Knowing that her strength lies in writing, she tests her talents by writing a story about Baron, a cat statuette belonging to Seiji's grandfather.", - "director": "Yoshifumi Kondō", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/7/7b/Whisper_of_the_Heart.jpg", - "release_date": "1995", - "rt_score": "91", - "people": [ - { - "id": "42a69bf6-b5e8-42b1-b05a-12c3d05e7c1e", - "name": "Shizuku Tsukishima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/67/Shizuku_Tsukishima.jpg", - "gender": "Female", - "age": "14", - "eye_color": "Black", - "hair_color": "Light black", - "specie": "Human" - }, - { - "id": "fc196c4f-0201-4ed2-9add-c6403f7c4d32", - "name": "Baron Humbert von Gikkingen", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/4f/Humbert_von_Gikkingen.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Green", - "hair_color": "Yellow", - "specie": "Cat" - }, - { - "id": "079db09e-0441-442b-8c17-af5cac8321c4", - "name": "Seiji Amasawa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c5/Seiji_Amasawa.jpg", - "gender": "Male", - "age": "15", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "494bba43-9f61-4383-a597-5bae6ab26222", - "name": "Yuko Harada", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/cb/Yuko_Harada.jpg", - "gender": "Female", - "age": "14", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "e432a1fe-e937-4575-bade-d11e9f8a9433", - "name": "Sugimura", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/b7/Sugimura.jpg", - "gender": "Male", - "age": "14", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "182c1f2a-e1e0-4035-b87a-754d58ed6e2d", - "name": "Seiya Tsukishima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/b3/Seiya_Tsukishima.jpg", - "gender": "Male", - "age": "40", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "d92e61f3-f525-4740-9f06-c9e7b19c3d11", - "name": "Asako Tsukishima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/ac/Asako_Tsukishima.jpg", - "gender": "Female", - "age": "39", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "61b51987-dd67-479b-aa03-554834b7edd7", - "name": "Shiro Nishi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/0f/Shiro_Nishi.jpg", - "gender": "Male", - "age": "70", - "eye_color": "Black", - "hair_color": "White", - "specie": "Human" - }, - { - "id": "e40b4241-612b-402f-8e6c-067c44e9c618", - "name": "Shiho Tsukishima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/02/Shiho_Tsukishima.jpg", - "gender": "Female", - "age": "18", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - } - ], - "locations": [ - { - "id": "42f787d8-1fcb-4d3d-82f2-a74409869368", - "name": "Seiji's House", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/a7/Mimi011.jpg", - "climate": "Continental", - "terrain": "City", - "surface_water": "0", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "0440483e-ca0e-4120-8c50-4c8cd9b965d6", - "title": "Princess Mononoke", - "description": "Ashitaka, a prince of the disappearing Ainu tribe, is cursed by a demonized boar god and must journey to the west to find a cure. Along the way, he encounters San, a young human woman fighting to protect the forest, and Lady Eboshi, who is trying to destroy it. Ashitaka must find a way to bring balance to this conflict.", - "director": "Hayao Miyazaki", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c6/Princess_Mononoke.jpg", - "release_date": "1997", - "rt_score": "92", - "people": [ - { - "id": "ba924631-068e-4436-b6de-f3283fa848f0", - "name": "Ashitaka", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/49/Ashitaka.jpg", - "gender": "Male", - "age": "17", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "ebe40383-aad2-4208-90ab-698f00c581ab", - "name": "San", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/3f/San.jpg", - "gender": "Female", - "age": "16", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "34277bec-7401-43fa-a00a-5aee64b45b08", - "name": "Eboshi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/9f/Eboshi.png", - "gender": "Female", - "age": "Adult", - "eye_color": "Hazel", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "91939012-90b9-46e5-a649-96b898073c82", - "name": "Jigo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/7/79/Jigo_%282%29.jpg", - "gender": "Male", - "age": "Middle age", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "20e3bd33-b35d-41e6-83a4-57ca7f028d38", - "name": "Kohroku", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d1/Kohroku_gives.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "8bccdc78-545b-49f4-a4c8-756163a38c91", - "name": "Gonza", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/42/Gonza_%282%29.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Grey", - "hair_color": "Bald, but beard is Brown", - "specie": "Human" - }, - { - "id": "116bfe1b-3ba8-4fa0-8f72-88537a493cb9", - "name": "Hii-sama", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/83/Hii-sama.jpg", - "gender": "Female", - "age": "Over 50", - "eye_color": "Brown", - "hair_color": "White", - "specie": "Human" - }, - { - "id": "030555b3-4c92-4fce-93fb-e70c3ae3df8b", - "name": "Yakul", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/ef/Yakul.jpg", - "age": "Unknown", - "gender": "Male", - "eye_color": "Grey", - "hair_color": "Brown", - "specie": "Red elk" - }, - { - "id": "ca568e87-4ce2-4afa-a6c5-51f4ae80a60b", - "name": "Shishigami", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/b7/Forest_Spirit.jpg", - "age": "400", - "gender": "Male", - "eye_color": "Red", - "hair_color": "Light Orange", - "specie": "Spirit" - }, - { - "id": "e9356bb5-4d4a-4c93-aadc-c83e514bffe3", - "name": "Moro", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/5e/Moro.png", - "gender": "Female", - "age": "300", - "eye_color": "Brown", - "hair_color": "White", - "specie": "Wolf" - } - ], - "locations": [ - { - "id": "11014596-71b0-4b3e-b8c0-1c4b15f28b9a", - "name": "Irontown", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/ac/Mononoke_-_Irontown.jpg", - "climate": "Continental", - "terrain": "Mountain", - "surface_water": "40", - "residents": [ - { - "id": "ba924631-068e-4436-b6de-f3283fa848f0", - "name": "Ashitaka" - }, - { - "id": "030555b3-4c92-4fce-93fb-e70c3ae3df8b", - "name": "Yakul" - } - ] - }, - { - "id": "615aa48d-8673-4117-b35a-79cb67af1897", - "name": "Forest", - "img": "https://www.teahub.io/photos/full/230-2307062_princess-mononoke-forest-spirit.jpg", - "climate": "Tropical", - "terrain": "Forest", - "surface_water": "60", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "45204234-adfd-45cb-a505-a8e7a676b114", - "title": "My Neighbors the Yamadas", - "description": "The Yamadas are a typical middle class Japanese family in urban Tokyo and this film shows us a variety of episodes of their lives. With tales that range from the humourous to the heartbreaking, we see this family cope with life's little conflicts, problems and joys in their own way.", - "director": "Isao Takahata", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/d/db/My_Neighbors_the_Yamadas.jpg", - "release_date": "1999", - "rt_score": "75", - "people": [ - { - "id": "7b3324ad-0ac9-417d-9905-ac001f6b7b1a", - "name": "Takashi Yamada", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/84/Takashi.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "562cf83f-fe38-44bf-8840-f8120b373c07", - "name": "Matsuko Yamada", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/85/Matsuko_Yamada.png", - "gender": "Female", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Human" - }, - { - "id": "33504e52-626b-4718-b324-d06a5b64ccfe", - "name": "Noboru Yamada", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d4/Noboru.jpg", - "gender": "Male", - "age": "13", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "097a7111-7bca-43e2-b8ad-0042c175b8c9", - "name": "Nonoko Yamada", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/56/Nonoko_Yamada.jpg", - "gender": "Female", - "age": "5", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "10857681-11a2-48df-98ec-de711a6c56cf", - "name": "Shige Yamano", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/97/Shige_Yamano.jpg", - "gender": "Female", - "age": "Elder", - "eye_color": "Black", - "hair_color": "White", - "specie": "Human" - } - ], - "locations": [], - "vehicles": [] - }, - { - "id": "dc2e6bd1-8156-4886-adff-b39e6043af0c", - "title": "Spirited Away", - "description": "Spirited Away is an Oscar winning Japanese animated film about a ten year old girl who wanders away from her parents along a path that leads to a world ruled by strange and unusual monster-like animals. Her parents have been changed into pigs along with others inside a bathhouse full of these creatures. Will she ever see the world how it once was?", - "director": "Hayao Miyazaki", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/9/9e/Spirited_Away.png", - "release_date": "2001", - "rt_score": "97", - "people": [ - { - "id": "134a568b-ac18-4696-a53e-4f0757d1c037", - "name": "Chihiro Ogino/Sen", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/8e/Chihiro_Ogino.jpg", - "gender": "Female", - "age": "10", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "a1143897-679f-4c16-8b20-538976c144d6", - "name": "Nigihayami Kohakunushi/Haku", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/89/Haku-2.png", - "gender": "Male", - "age": "12 (in appearance)", - "eye_color": "Green", - "hair_color": "Green", - "specie": "Deity, Dragon" - }, - { - "id": "177722d8-6fb0-4811-ad83-4d9c272eaebe", - "name": "Yubaba", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/f/f8/Yubaba-0.jpg", - "gender": "Female", - "age": "Elder", - "eye_color": "Dark brown", - "hair_color": "White", - "specie": "Witch" - }, - { - "id": "5fbcf921-a560-400e-bc15-c8fb4ef05909", - "name": "Kamajī", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/7/78/Kamaji.jpg", - "gender": "Male", - "age": "At least 40 years", - "eye_color": "NA", - "hair_color": "Bald", - "specie": "Spirit" - }, - { - "id": "969850ec-4ab6-4170-ab6b-ae6ac42e1e9a", - "name": "No-Face", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/9d/No-Face_infobox.png", - "gender": "Unknown (Possible Male)", - "age": "unknown", - "eye_color": "NA", - "hair_color": "NA", - "specie": "Spirit" - }, - { - "id": "cf0a2a1b-8b65-4794-98ae-bd89de49fa62", - "name": "Lin", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/35/Lin-HBO_Max.png", - "gender": "Female", - "age": "Adult", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Spirit of The White Fox" - }, - { - "id": "d2feee01-5531-4385-aa0a-1e608aaf0747", - "name": "Boh", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/7/7e/Boh_winks.jpg", - "gender": "Male", - "age": "Child", - "eye_color": "Black", - "hair_color": "Bald", - "specie": "unknown" - }, - { - "id": "d9aceca5-beb9-4b2a-85ba-fc17d33750f8", - "name": "Zeniba", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d8/Zeniba.png", - "gender": "Female", - "age": "Elder", - "eye_color": "Dark brown", - "hair_color": "White", - "specie": "Witch" - }, - { - "id": "0588017a-8113-43cd-9025-518c9c0d5111", - "name": "Akio Ogino", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/47/Akio_Ogino.jpg", - "gender": "Male", - "age": "38", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "2e7bb7bf-4149-4df5-b6e4-76064021651c", - "name": "Yūko Ogino", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c6/Ichiyuko_Ogino.png", - "gender": "Female", - "age": "35", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - } - ], - "locations": [ - { - "id": "a072ec53-0467-4fac-864f-df234f9c4315", - "name": "Zeniba's Cottage", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/ec/Zeniba%27s_Cottage.png", - "climate": "TODO", - "terrain": "TODO", - "surface_water": "40", - "residents": [ - "TODO" - ] - }, - { - "id": "37d13a96-a03a-451d-8871-80be0495486e", - "name": "Bathhouse", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/80/Chihiro_sees_the_Bathhouse.png", - "climate": "Continental", - "terrain": "River", - "surface_water": "70", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "90b72513-afd4-4570-84de-a56c312fdf81", - "title": "The Cat Returns", - "description": "Haru, a schoolgirl bored by her ordinary routine, saves the life of an unusual cat and suddenly her world is transformed beyond anything she ever imagined. The Cat King rewards her good deed with a flurry of presents, including a very shocking proposal of marriage to his son! Haru embarks on an unexpected journey to the Kingdom of Cats where her eyes are opened to a whole other world.", - "director": "Hiroyuki Morita", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/8/87/The_Cat_Returns.jpg", - "release_date": "2002", - "rt_score": "89", - "people": [ - { - "id": "6b3facea-ea33-47b1-96ce-3fc737b119b8", - "name": "Renaldo Moon aka Moon aka Muta", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/e7/Muta.png", - "gender": "Male", - "age": "NA", - "eye_color": "White", - "hair_color": "Beige", - "specie": "Cat" - }, - { - "id": "3042818d-a8bb-4cba-8180-c19249822d57", - "name": "Cat King", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/34/The_Cat_King.jpg", - "gender": "Male", - "age": "87", - "eye_color": "Emerald", - "hair_color": "Grey", - "specie": "Cat" - }, - { - "id": "58d1973f-f247-47d7-9358-e56cb0d2b5a6", - "name": "Yuki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/eb/New_queen%2C_Yuki.JPG", - "gender": "Female", - "age": "NA", - "eye_color": "Blue", - "hair_color": "White", - "specie": "Cat" - }, - { - "id": "a3d8e70f-46a0-4e5a-b850-db01620d6b92", - "name": "Haru Yoshioka", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/27/Haru_Yoshioka.jpg", - "gender": "Female", - "age": "17", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "466bc926-2024-4653-ac63-fe52f2dc8c7b", - "name": "Natori", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c4/Natori.jpg", - "gender": "Male", - "age": "NA", - "eye_color": "Blue", - "hair_color": "Grey", - "specie": "Cat" - }, - { - "id": "269dcd81-8037-45bb-892b-1c86c9696222", - "name": "Toto", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/8d/Toto.png", - "gender": "Male", - "age": "NA", - "eye_color": "Black", - "hair_color": "Dark Blue", - "specie": "Bird" - }, - { - "id": "5b2a28f6-91d4-4382-aedc-b27094e763b0", - "name": "Prince Lune", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/90/Prince_Lune.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Dark brown", - "hair_color": "Russian blue", - "specie": "Cat" - }, - { - "id": "17aca709-3049-48fc-95a6-e802c01125a2", - "name": "Hiromi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c1/Hiromi.png", - "gender": "Female", - "age": "17", - "eye_color": "Brown", - "hair_color": "Light brown", - "specie": "Human" - }, - { - "id": "911d38e2-ada4-4481-89a2-ba414422d4e4", - "name": "Naoko Yoshioka", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/64/Naoko_Yoshioka.jpg", - "gender": "Female", - "age": "Adult", - "eye_color": "Light Brown", - "hair_color": "Light brown", - "specie": "Human" - } - ], - "locations": [ - { - "id": "a8bd9c03-7c80-4a97-b7c0-6a668acaf576", - "name": "The Cat Kingdom", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/a9/Baron022.jpg", - "climate": "Continental", - "terrain": "Plain", - "surface_water": "30", - "residents": [ - { - "id": "6b3facea-ea33-47b1-96ce-3fc737b119b8", - "name": "Renaldo Moon aka Moon aka Muta" - }, - { - "id": "3042818d-a8bb-4cba-8180-c19249822d57", - "name": "Cat King" - }, - { - "id": "58d1973f-f247-47d7-9358-e56cb0d2b5a6", - "name": "Yuki" - }, - { - "id": "a3d8e70f-46a0-4e5a-b850-db01620d6b92", - "name": "Haru" - } - ] - } - ], - "vehicles": [] - }, - { - "id": "cd3d059c-09f4-4ff3-8d63-bc765a5184fa", - "title": "Howl's Moving Castle", - "description": "When Sophie, a shy young woman, is cursed with an old body by a spiteful witch, her only chance of breaking the spell lies with a self-indulgent yet insecure young wizard and his companions in his legged, walking home.", - "director": "Hayao Miyazaki", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/0/08/Howl%27s_Moving_Castle.jpg", - "release_date": "2004", - "rt_score": "87", - "people": [ - { - "id": "fa9b410f-cad4-457d-ac71-86b0afa6cf0a", - "name": "Howl Jenkins Pendragon", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/f/fe/Howl_Jenkins_Pendragon.jpg", - "gender": "Male", - "age": "27", - "eye_color": "Bright blue", - "hair_color": "Bright blue", - "specie": "Wizard" - }, - { - "id": "cbbe548f-dfb4-4d53-81d3-06c203dbb2ff", - "name": "Sophie Hatter", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/f/f4/Sophie_short_hair.jpg", - "gender": "Female", - "age": "18", - "eye_color": "Brown", - "hair_color": "White", - "specie": "Human" - }, - { - "id": "1287b275-6c32-4113-947f-519316d4a6be", - "name": "Witch of the Waste", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/e1/Howls-moving-castle-disneyscreencaps.com-10507.jpg", - "gender": "Female", - "age": "59", - "eye_color": "Brown", - "hair_color": "White", - "specie": "Witch/Human" - }, - { - "id": "b73f58ab-454a-42d6-9812-63e8f235a388", - "name": "Calcifer", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/2a/Calcifer.png", - "gender": "Male", - "age": "NA", - "eye_color": "Dark Brown", - "hair_color": "Orange-yellow", - "specie": "Demon" - }, - { - "id": "d03ca1e2-16ab-45d1-9b81-c2b0f7b35de1", - "name": "Markl", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/5d/Markl.jpg", - "gender": "Male", - "age": "10", - "eye_color": "Dark Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "45237428-93bf-4dd6-97ce-f10647300429", - "name": "Prince Justin or Turnip Head", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d9/Prince_Justin.png", - "gender": "Male", - "age": "20-30", - "eye_color": "Grey", - "hair_color": "Blonde", - "specie": "Human/Scarecrow" - }, - { - "id": "8f66024e-c84f-445a-9ab5-0b31a6ae354d", - "name": "Madame Suliman", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/64/Madame_Suliman.png", - "gender": "Female", - "age": "50", - "eye_color": "Grey", - "hair_color": "White", - "specie": "Human" - }, - { - "id": "ccc705e4-aa2a-4929-b0dc-4b8a09fd290d", - "name": "Heen", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/a7/Heen.png", - "gender": "Male", - "age": "NA", - "eye_color": "Brown", - "hair_color": "Beige-white", - "specie": "Dog" - }, - { - "id": "3148150f-6ccb-4383-8af5-0c40f03c825e", - "name": "Lettie Hatter", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/1c/Lettie_Hatter.png", - "gender": "Female", - "age": "16", - "eye_color": "Blue", - "hair_color": "Blonde", - "specie": "Human" - }, - { - "id": "06610030-0560-47ac-bc18-be80d85c4dad", - "name": "Fanny Hatter/Honey", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c6/Honey.png", - "gender": "Female", - "age": "Adult", - "eye_color": "Grey", - "hair_color": "Blonde", - "specie": "Human" - } - ], - "locations": [ - { - "id": "b6bac992-a858-4d57-8477-9652d73caaa1", - "name": "Ingary", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/48/Ingary.png", - "climate": "Mild", - "terrain": "Hill", - "surface_water": "30", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [ - { - "id": "2354305f-dccd-4c44-a79e-cc60ba7376e6", - "name": "Howl's castle", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/e6/Howls_Castle.jpg", - "description": "Wizard Howl's home. It's scale changes from scene to scene.", - "vehicle_class": "Moving castle", - "length": "unknown", - "pilot": { - "id": "fa9b410f-cad4-457d-ac71-86b0afa6cf0a", - "name": "Howl Jenkins Pendragon" - } - } - ] - }, - { - "id": "112c1e67-726f-40b1-ac17-6974127bb9b9", - "title": "Tales from Earthsea", - "description": "Something bizarre has come over the land. The kingdom is deteriorating. People are beginning to act strange... What's even more strange is that people are beginning to see dragons, which shouldn't enter the world of humans. Due to all these bizarre events, Ged, a wandering wizard, is investigating the cause. During his journey, he meets Prince Arren, a young distraught teenage boy. While Arren may look like a shy young teen, he has a severe dark side, which grants him strength, hatred, ruthlessness and has no mercy, especially when it comes to protecting Teru. For the witch Kumo this is a perfect opportunity. She can use the boy's 'fears' against the very one who would help him, Ged.", - "director": "Gorō Miyazaki", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/0/09/%C3%96v%C3%A4rlden.jpg", - "release_date": "2006", - "rt_score": "41", - "people": [ - { - "id": "68df798d-f73d-4c70-b4ad-05dd84910436", - "name": "Ged", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/33/Ged.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Brown", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "3f3163bb-e2da-4e87-a1bf-ae2dfcde1a09", - "name": "Arren / Lebannen", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/ee/Arren.png", - "gender": "Male", - "age": "17", - "eye_color": "Dark brown", - "hair_color": "Dark brown", - "specie": "Human" - }, - { - "id": "84ba6d3d-d225-4a92-bbbc-147808826425", - "name": "Therru", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/1a/Therru.jpg", - "gender": "Female", - "age": "circa 14-17", - "eye_color": "Dark brown", - "hair_color": "Dark brown", - "specie": "Human" - }, - { - "id": "60469915-e18e-4cf3-b43d-95ea56cc300c", - "name": "Tenar", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/4f/Tenar.jpg", - "gender": "Female", - "age": "Adult", - "eye_color": "Grey", - "hair_color": "Blonde", - "specie": "Human" - }, - { - "id": "9bd3091a-8ae2-4741-9265-7f83ec55663a", - "name": "King of Enlad", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/ec/King-enlad.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "59d22f97-f45d-4a6c-b473-13ee9e69082a", - "name": "Cob", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/ce/Cob.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Violet", - "hair_color": "Purple", - "specie": "Arch-mage/Human" - }, - { - "id": "da00cee4-90a2-413b-8cef-c65e57f7e41", - "name": "Hare", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/1e/Hare.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "e024d74b-ca9f-49a7-92fb-e8723c6183e4", - "name": "Hazia Dealer", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/1b/Hazia_Dealer.png", - "gender": "Male", - "age": "Adult", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - } - ], - "locations": [ - { - "id": "bcc54f38-8847-45b0-97b1-307c94b2b517", - "name": "Enland", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/0e/Ged007.jpg", - "climate": "Wet", - "terrain": "Earthsea", - "surface_water": "100", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "758bf02e-3122-46e0-884e-67cf83df1786", - "title": "Ponyo on the Cliff by the Sea", - "description": "The son of a sailor, 5-year old Sosuke lives a quiet life on an oceanside cliff with his mother Lisa. One fateful day, he finds a beautiful goldfish trapped in a bottle on the beach and upon rescuing her, names her Ponyo. But she is no ordinary goldfish. The daughter of a masterful wizard and a sea goddess, Ponyo uses her father's magic to transform herself into a young girl and quickly falls in love with Sosuke, but the use of such powerful sorcery causes a dangerous imbalance in the world. As the moon steadily draws nearer to the earth and Ponyo's father sends the ocean's mighty waves to find his daughter, the two children embark on an adventure of a lifetime to save the world and fulfill Ponyo's dreams of becoming human.", - "director": "Hayao Miyazaki", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/5/50/Ponyo_on_the_Cliff_by_the_Sea.jpg", - "release_date": "2008", - "rt_score": "92", - "people": [ - { - "id": "a10f64f3-e0b6-4a94-bf30-87ad8bc51607", - "name": "Sosuke", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/cf/Sosuke.jpg", - "gender": "Male", - "age": "5", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "4524e6c2-04f3-4633-b2cb-e1cd3f566213", - "name": "Brunhilde/Ponyo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/bc/Brunhilda.png", - "gender": "Female", - "age": "5", - "eye_color": "Dark brown", - "hair_color": "Red", - "specie": "Fish/Human" - }, - { - "id": "0cb26464-3416-4490-8f42-cd9d7276884e", - "name": "Kōichi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/49/Sosuke%27s_Father.png", - "gender": "Male", - "age": "30", - "eye_color": "Dark brown", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "9ab8c24f-f687-47b8-adcf-c7c9d5b86b91", - "name": "Fujimoto", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/4b/Fujimoto.jpg", - "gender": "Male", - "age": "40", - "eye_color": "Light green", - "hair_color": "Red", - "specie": "Human" - }, - { - "id": "942efc9a-8d02-4643-aa3f-134429a23684", - "name": "Granmammare", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/43/Granmammare.png", - "gender": "Female", - "age": "NA", - "eye_color": "Brown", - "hair_color": "Red", - "specie": "Deity" - }, - { - "id": "04447a1b-316a-40bf-8f19-ddc964fec216", - "name": "Lisa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/59/Lisa.png", - "gender": "Female", - "age": "25", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "88d56819-0639-4bc4-8ffc-2af15a310cdc", - "name": "Toki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/94/Toki.jpg", - "gender": "Female", - "age": "72", - "eye_color": "Dark brown", - "hair_color": "White", - "specie": "Human" - }, - { - "id": "f55138f5-cdc7-4bc5-93d6-c4445d2a5347", - "name": "Yoshie", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/3f/Yoshie.jpg", - "gender": "Female", - "age": "68", - "eye_color": "Dark brown", - "hair_color": "Blonde", - "specie": "Human" - }, - { - "id": "9e149019-f351-4061-aaee-82a385a36582", - "name": "Noriko", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/34/Noriko.jpg", - "gender": "Female", - "age": "70", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "804b2f0a-05ab-489a-9610-bdc6bc867e89", - "name": "Koyo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/29/Koyo.png", - "gender": "Female", - "age": "68", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - } - ], - "locations": [ - { - "id": "90241c46-d4be-411f-b00a-7561b9dda7b6", - "name": "Fujimoto's Underwater Harbor", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/30/Fujimotos_hus.jpg", - "climate": "Wet", - "terrain": "Ocean", - "surface_water": "100", - "residents": [ - "TODO" - ] - }, - { - "id": "469b14bd-5565-4436-bbed-c2036f42cc99", - "name": "Himawari Nursery School", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/6b/Himawari_Nursery_School.jpg", - "climate": "Mild", - "terrain": "Ocean", - "surface_water": "50", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [ - { - "id": "923d70c9-8f15-4972-ad53-0128b261d628", - "name": "Sosuke's Boat", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c1/PonyoS%C5%8DsukeBoat.jpg", - "description": "A toy boat where Sosuke plays", - "vehicle_class": "Boat", - "length": "10", - "pilot": { - "id": "a10f64f3-e0b6-4a94-bf30-87ad8bc51607", - "name": "Sosuke" - } - } - ] - }, - { - "id": "2de9426b-914a-4a06-a3a0-5e6d9d3886f6", - "title": "The Secret World of Arrietty", - "description": "14-year-old Arrietty and the rest of the Clock family live in peaceful anonymity as they make their own home from items 'borrowed' from the house's human inhabitants. However, life changes for the Clocks when a human boy discovers Arrietty.", - "director": "Hiromasa Yonebayashi", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/4/46/The_Borrower_Arrietty.jpg", - "release_date": "2010", - "rt_score": "95", - "people": [ - { - "id": "89026b3a-abc4-4053-ab1a-c6d2eea68faa", - "name": "Karigurashi/Arrietty", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/04/Arrietty.jpg", - "gender": "Female", - "age": "14", - "eye_color": "Black", - "hair_color": "Auburn", - "specie": "Borrower" - }, - { - "id": "496031cc-f6af-4f48-b9d1-27f34cb18e10", - "name": "Sho (Shawn)", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/04/Sho.jpg", - "gender": "Male", - "age": "12-14", - "eye_color": "Brown", - "hair_color": "Navy blue/black", - "specie": "Human" - }, - { - "id": "ef5ee7c5-ae68-418d-a319-f3e79262cd87", - "name": "Homily Clock", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/28/Homily_Clock.jpg", - "gender": "Female", - "age": "52", - "eye_color": "Brown", - "hair_color": "Navy black", - "specie": "Borrower" - }, - { - "id": "3a83aa65-d134-4e58-85b2-e9f6523b047d", - "name": "Sadako Maki/Jessica", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/1b/Jessica.jpg", - "gender": "Female", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Human" - }, - { - "id": "9c687441-3eb3-4c4b-8752-55774953aa3f", - "name": "Haru", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/3d/Haru_%28dam%29.jpg", - "gender": "Female", - "age": "Elder", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "ce5fb645-f0bb-4c1b-829f-907989d5525f", - "name": "Spiller", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/43/Spiller.jpg", - "gender": "Male", - "age": "Young", - "eye_color": "Black", - "hair_color": "Navy black", - "specie": "Borrower" - }, - { - "id": "a27ebdcb-4d29-40ac-8da6-5fc5a7869efb", - "name": "Pod Clock", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/7/76/Pod.png", - "gender": "Male", - "age": "52", - "eye_color": "Grey", - "hair_color": "Brown", - "specie": "Borrower" - }, - { - "id": "379f1453-38ca-486f-9d8b-f4eddc1e3fd3", - "name": "Niya", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/5a/Niya.jpg", - "gender": "Male", - "age": "52", - "eye_color": "White", - "hair_color": "Beige", - "specie": "Cat" - } - ], - "locations": [ - { - "id": "1e7ed524-4b4f-466b-978c-69dda9777396", - "name": "Sho's house", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/86/Karigurashi002.jpg", - "climate": "Warm", - "terrain": "Forest", - "surface_water": "10", - "residents": [ - "TODO" - ] - }, - { - "id": "f2148ab5-f272-4057-b05a-1321e35227b4", - "name": "Karigurashi's house", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/cd/Karigurashi019.jpg", - "climate": "Warm", - "terrain": "Under the floorboards", - "surface_water": "10", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "45db04e4-304a-4933-9823-33f389e8d74d", - "title": "From Up on Poppy Hill", - "description": "The story is set in 1963 in Yokohama. Kokuriko Manor sits on a hill overlooking the harbour. A 16 year-old girl, Umi, lives in that house. Every morning she raises a signal flag facing the sea. The flag means “I pray for safe voyages”. A 17 year-old boy, Shun, always sees this flag from the sea as he rides a tugboat to school. Gradually the pair are drawn to each other but they are faced with a sudden trial. Even so, they keep going without running from facing the hardships of reality.", - "director": "Gorō Miyazaki", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/b/bb/From_Up_on_Poppy_Hill.jpg", - "release_date": "2011", - "rt_score": "83", - "people": [ - { - "id": "6a486237-c503-4221-b834-1862f200e939", - "name": "Umi Matsuzaki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/93/Umi_Matsuzaki.jpg", - "gender": "Female", - "age": "16", - "eye_color": "Hazel", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "5c492592-ea9c-45e8-a9cc-4391037c0202", - "name": "Shun Kazama", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/59/Shun_Kazama.jpg", - "gender": "Male", - "age": "17", - "eye_color": "Black", - "hair_color": "Dark brown", - "specie": "Human" - }, - { - "id": "f1c170fa-7c60-420a-8437-253dd39a6bde", - "name": "Yūichirō Sawamura", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/3e/Yuuichirou_Sawamura.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "721acf20-3470-4010-801b-31f465467d55", - "name": "Sora Matsuzaki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/49/Sora_Matsuzaki.jpg", - "gender": "Female", - "age": "12-14", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "827be987-0563-4a7c-a68b-9d58e46d1687", - "name": "Shirou Mizunuma", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/f/f1/Shirou_Mizunuma.jpg", - "gender": "Male", - "age": "18", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "bec0cbf4-a03c-4379-b2c6-77fca9d5faa8", - "name": "Ryōko Matsuzaki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/48/Ryouko_Matsuzaki.jpg", - "gender": "Female", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "002708e3-d38f-4518-a7a9-bdb92390d0dc", - "name": "Riku Matsuzaki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/30/Riku_Matsuzaki.jpg", - "gender": "Male", - "age": "11", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "daf8627a-dd28-407a-a36b-d41b13ffc2ed", - "name": "Hana Matsuzaki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/13/Hana_Matsuzaki.jpg", - "gender": "Female", - "age": "Adult", - "eye_color": "Brown", - "hair_color": "Dark grey", - "specie": "Human" - } - ], - "locations": [ - { - "id": "be837047-cd6f-477f-a83d-5aec9ed1dda7", - "name": "Coquelicot Manor", - "img": "https://cache.desktopnexus.com/thumbseg/2436/2436746-bigthumbnail.jpg", - "climate": "Warm", - "terrain": "Hill", - "surface_water": "30", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "67405111-37a5-438f-81cc-4666af60c800", - "title": "The Wind Rises", - "description": "A lifelong love of flight inspires Japanese aviation engineer Jiro Horikoshi, whose storied career includes the creation of the A-6M World War II fighter plane.", - "director": "Hayao Miyazaki", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/2/2d/The_Wind_Rises.jpg", - "release_date": "2013", - "rt_score": "89", - "people": [ - { - "id": "97746fd8-1875-4331-8bc6-f43ae25501cd", - "name": "Naoko Satomi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d9/Nahoko_Satomi.jpg", - "gender": "Female", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Navy blue", - "specie": "Human" - }, - { - "id": "07b01fdb-87fb-4f3b-a888-b90cf13bc386", - "name": "Jiro Horikoshi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d7/Jirou_Horikoshi.jpg", - "gender": "Male", - "age": "42", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "53b1d8f7-adb3-49b3-bece-52cda0915e7a", - "name": "Castorp", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/b4/Castorp.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Light brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "ccc07f5c-28bd-4446-aee9-827c61d7f9f1", - "name": "Kiro Honjo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/6c/Kiro_Honjo.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "54eda936-7f86-4bd8-9493-56e0eebd8eb1", - "name": "Kayo Horikoshi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/91/Kayo_Horikoshi.jpg", - "gender": "Female", - "age": "10", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "b2453b6b-0718-4740-a0c4-207f12f1903a", - "name": "Caproni", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/66/Caproni.jpg", - "gender": "Male", - "age": "45", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "c8321219-a816-4921-9a58-48c858becb97", - "name": "Mr. Kurokawa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/bd/Kurokawa.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Navy blue", - "specie": "Human" - }, - { - "id": "50e9d375-afaa-4769-a31d-dee8e37aa8ba", - "name": "Hattori", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/ec/Hattori.jpg", - "gender": "Male", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Human" - } - ], - "locations": [ - { - "id": "2b380662-626d-42fb-9e3a-14f951201c8b", - "name": "Nagoya", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/20/Kazetachinu009.jpg", - "climate": "Damp", - "terrain": "Hill", - "surface_water": "20", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [ - { - "id": "411f66ed0-771c-46d3-8f68-a3b65c6dd91c", - "name": "Mitsubishi 1MF9 ", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/41/Kazetachinu044.jpg", - "description": "The Mitsubishi 1MF9 or Mitsubishi Experimental Taka-type Carrier Fighter was a prototype Japanese fighter aircraft of the 1920s. It was a single-engined, single-seat biplane intended to operate from the Imperial Japanese Navy's aircraft carriers, but only two were built, with the type being rejected by the Navy.", - "vehicle_class": "War plane", - "length": "8", - "pilot": { - "id": "07b01fdb-87fb-4f3b-a888-b90cf13bc386", - "name": "Jiro Horikoshi" - } - } - ] - }, - { - "id": "578ae244-7750-4d9f-867b-f3cd3d6fecf4", - "title": "The Tale of the Princess Kaguya", - "description": "A bamboo cutter named Sanuki no Miyatsuko discovers a miniature girl inside a glowing bamboo shoot. Believing her to be a divine presence, he and his wife decide to raise her as their own, calling her 'Princess'.", - "director": "Isao Takahata", - "producer": "Yoshiaki Nishimura", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/8/87/The_Tale_of_the_Princess_Kaguya.jpg", - "release_date": "2013", - "rt_score": "100", - "people": [ - { - "id": "a8b338c0-e586-4c1c-8857-f33540d0d4d7", - "name": "Kaguya", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d4/Kaguya_shows_off_her_teeth.jpg", - "gender": "Female", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Navy blue", - "specie": "Human" - }, - { - "id": "a21fbdd5-16bc-4931-80d0-3ce89ffce778", - "name": "Sutemaru", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/37/Sutemaru.PNG", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "4c697b7d-4f64-4ac9-ae29-e155eb1693f3", - "name": "Ishitsukuri", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/5c/Ghibli-kaguya-ishitsukuri.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "fe1e5acf-e5e4-4769-9755-989cf7a2e961", - "name": "Miyatsuko", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/4a/Sanuki_no_Miyatsuko.jpeg", - "gender": "Male", - "age": "Elder", - "eye_color": "Grey", - "hair_color": "White", - "specie": "Human" - }, - { - "id": "839ff5b9-69ba-4d55-ab77-de939b46b18a", - "name": "Menowarawa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/22/Menowarawa.jpg", - "gender": "Female", - "age": "17", - "eye_color": "Black", - "hair_color": "Navy blue", - "specie": "Human" - }, - { - "id": "1752fc88-c6b7-4fef-8b64-51451d808033", - "name": "Lady Sagami", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/28/Sagami.png", - "gender": "Female", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "942fb1029-b51f-4100-8bee-86547c09b0ff", - "name": "Inbe no Akita", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/1c/Ghibli-kaguya-akita.jpg", - "gender": "Male", - "age": "Elder", - "eye_color": "Black", - "hair_color": "White", - "specie": "Human" - }, - { - "id": "be634b4e-c333-4225-a5f0-2a0aa33d6453", - "name": "Ōna", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/cb/Ouna.jpg", - "gender": "Female", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Human" - } - ], - "locations": [ - { - "id": "682df5c3-b09e-46af-94d1-ae0d17f9b4b6", - "name": "Bamboo Forest", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/ec/Ghibli-kaguya-bamboo-forest.jpg", - "climate": "Tropical", - "terrain": "Forest", - "surface_water": "10", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "5fdfb320-2a02-49a7-94ff-5ca418cae602", - "title": "When Marnie Was There", - "description": "The film follows Anna Sasaki living with her relatives in the seaside town. Anna comes across a nearby abandoned mansion, where she meets Marnie, a mysterious girl who asks her to promise to keep their secrets from everyone. As the summer progresses, Anna spends more time with Marnie, and eventually Anna learns the truth about her family and foster care.", - "director": "Hiromasa Yonebayashi", - "producer": "Yoshiaki Nishimura", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/7/7a/When_Marnie_Was_There.jpg", - "release_date": "2014", - "rt_score": "92", - "people": [ - { - "id": "4a6a60d1-cb07-464f-889c-fecaff19b4ef", - "name": "Marnie", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/21/Marnie.jpg", - "gender": "Female", - "age": "12", - "eye_color": "Green", - "hair_color": "Blonde", - "specie": "Human" - }, - { - "id": "28d07ace-c309-48c6-b48e-ae2ece3a238c", - "name": "Anna Sasaki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/ae/Anna.png", - "gender": "Female", - "age": "12", - "eye_color": "Blue", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "d0a0bd7c-7521-45a2-a681-573a67f34a5b", - "name": "Emily", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/cd/13_year_old_Emily.png", - "gender": "Female", - "age": "20", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "08fdd37a-2cf0-4f91-ae1c-344ecff39753", - "name": "Kazuhiko", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/09/Kazuhiko.jpg", - "gender": "Male", - "age": "Teenager", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "66bca178-9920-4ec3-91e9-0d5b8a76dba1", - "name": "Setsu Oiwa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/6e/Setsu.jpg", - "gender": "Female", - "age": "50-60", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "5b8e4413-f943-40ba-8f9f-0ba059a401f0", - "name": "Hisako", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/93/Hisako.png", - "gender": "Female", - "age": "Elder", - "eye_color": "Dark brown", - "hair_color": "Grey", - "specie": "Human" - }, - { - "id": "c827feae-8ccf-4ced-84cb-bc3e226b1cd1", - "name": "Yoriko Sasaki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/5d/Yoriko_Sasaki.jpg", - "gender": "Female", - "age": "Adult", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "9d3730cb-ec15-4bf9-a2fb-a7772e5e1c03", - "name": "Sayaka", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/7/79/Sayaka.jpg", - "gender": "Female", - "age": "11", - "eye_color": "Teal", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "31b49ef6-ee60-4603-b983-e67fa0718aa9", - "name": "Kiyomasa Ōiwa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d7/Kiyomasa.jpg", - "gender": "Male", - "age": "50-60", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "5d52d16f-ce72-41bd-8d88-436e206d9449", - "name": "Doctor Yamashita", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/8a/Yamashita.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Navy blue", - "specie": "Human" - } - ], - "locations": [ - { - "id": "56e423c4-d9a1-44c4-8bdb-1cab45fbf63e", - "name": "The Marsh House", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/8c/Marsh_house.jpg", - "climate": "Mild", - "terrain": "Marsh", - "surface_water": "60", - "residents": [] - } - ], - "vehicles": [] - } - ] -} diff --git a/src/data/ghibli/ghibli.json b/src/data/ghibli/ghibli.json deleted file mode 100644 index 633b40a3..00000000 --- a/src/data/ghibli/ghibli.json +++ /dev/null @@ -1,2435 +0,0 @@ -{ - "studio": "Studio Ghibli Inc.", - "films": [ - { - "id": "2baf70d1-42bb-4437-b551-e5fed5a87abe", - "title": "Castle in the Sky", - "description": "The orphan Sheeta inherited a mysterious crystal that links her to the mythical sky-kingdom of Laputa. With the help of resourceful Pazu and a rollicking band of sky pirates, she makes her way to the ruins of the once-great civilization. Sheeta and Pazu must outwit the evil Muska, who plans to use Laputa's science to make himself ruler of the world.", - "director": "Hayao Miyazaki", - "producer": "Isao Takahata", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c1/Castle_in_the_Sky.jpg", - "release_date": "1986", - "rt_score": "95", - "people": [ - { - "id": "fe93adf2-2f3a-4ec4-9f68-5422f1b87c01", - "name": "Pazu", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/8b/Pazu.jpg", - "gender": "Male", - "age": "13", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "598f7048-74ff-41e0-92ef-87dc1ad980a9", - "name": "Lusheeta Toel Ul Laputa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c3/Sheeta.jpg", - "gender": "Female", - "age": "13", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "3bc0b41e-3569-4d20-ae73-2da329bf0786", - "name": "Dola", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/b3/Dola.png", - "gender": "Female", - "age": "60", - "eye_color": "Black", - "hair_color": "Peach", - "specie": "Human" - }, - { - "id": "abe886e7-30c8-4c19-aaa5-d666e60d14de", - "name": "Romska Palo Ul Laputa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d5/Muska.jpg", - "gender": "Male", - "age": "33", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "e08880d0-6938-44f3-b179-81947e7873fc", - "name": "Uncle Pom", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/de/Uncle_Pom.png", - "gender": "Male", - "age": "Unspecified/Elderly", - "eye_color": "Black", - "hair_color": "White", - "specie": "Human" - }, - { - "id": "5c83c12a-62d5-4e92-8672-33ac76ae1fa0", - "name": "General Muoro", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/12/Muoro.jpg", - "gender": "Male", - "age": "Unspecified/Adult", - "eye_color": "Black", - "hair_color": "None", - "specie": "Human" - }, - { - "id": "3f4c408b-0bcc-45a0-bc8b-20ffc67a2ede", - "name": "Duffi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/0a/Duffi.png", - "gender": "Male", - "age": "Unspecified/Adult", - "eye_color": "Dark brown", - "hair_color": "Dark brown", - "specie": "Human" - }, - { - "id": "fcb4a2ac-5e41-4d54-9bba-33068db083ca", - "name": "Louis", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/28/Charlies.jpg", - "gender": "Male", - "age": "30", - "eye_color": "Dark brown", - "hair_color": "Dark brown", - "specie": "Human" - }, - { - "id": "2cb76c15-772a-4cb3-9919-3652f56611d0", - "name": "Charles", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/f/f0/Charlie.jpg", - "gender": "Male", - "age": "Unspecified/Adult", - "eye_color": "Dark brown", - "hair_color": "Light brown", - "specie": "Human" - }, - { - "id": "f6f2c477-98aa-4796-b9aa-8209fdeed6b9", - "name": "Henri", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/15/Henri.jpg", - "gender": "Male", - "age": "Unspecified/Adult", - "eye_color": "Dark brown", - "hair_color": "Reddish brown", - "specie": "Human" - }, - { - "id": "05d8d01b-0c2f-450e-9c55-aa0daa34838e", - "name": "Motro", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/17/Eggman_laputa.jpg", - "gender": "Male", - "age": "Unspecified/Adult", - "eye_color": "Dark brown", - "hair_color": "None", - "specie": "Human" - }, - { - "id": "b22a684f-1819-40c8-94a6-d40c3b5e18eb", - "name": "Okami", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/65/Okami.jpg", - "gender": "Female", - "age": "50", - "eye_color": "Dark brown", - "hair_color": "Orange", - "specie": "Human" - }, - { - "id": "40c005ce-3725-4f15-8409-3e1b1b14b583", - "name": "Colonel Muska", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d3/Colonelmuska2bodyguards.JPG", - "gender": "Male", - "age": "33", - "eye_color": "Grey", - "hair_color": "Brown", - "specie": "Human" - } - ], - "locations": [ - { - "id": "6ba60a86-7c74-4ec4-a6f4-7112b5705a2f", - "name": "Gondoa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/25/Thumbnail-8.jpeg", - "climate": "TODO", - "terrain": "TODO", - "surface_water": "40", - "residents": [ - "TODO" - ] - }, - { - "id": "26361a2c-32c6-4bd5-ae9c-8e40e17ae28d", - "name": "Pazu's Mines", - "img": "https://preview.redd.it/fmikehlh8dl41.jpg?auto=webp&s=a997a7d6726fc151a438985899b052d0fd357716", - "climate": "Dry", - "terrain": "Hill", - "surface_water": "0", - "residents": [ - "TODO" - ] - }, - { - "id": "0fafa7a3-64c1-43fe-881b-ecb605c01e09", - "name": "Laputa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/e7/Laputa.png", - "climate": "Continental", - "terrain": "City", - "surface_water": "40", - "residents": [ - "TODO" - ] - }, - { - "id": "0132f7f6-fd52-4ac3-b5df-c96b609f77b6", - "name": "Tedis", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/13/Tedis.jpg", - "climate": "Continental", - "terrain": "Hill", - "surface_water": "30", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [ - { - "id": "4e09b023-f650-4747-9ab9-eacf14540cfb", - "name": "Air Destroyer Goliath", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/e5/Goliath.png", - "description": "A military airship utilized by the government to access Laputa", - "vehicle_class": "Airship", - "length": "1,000", - "pilot": { - "id": "40c005ce-3725-4f15-8409-3e1b1b14b583", - "name": "Colonel Muska" - } - } - ] - }, - { - "id": "58611129-2dbc-4a81-a72f-77ddfc1b1b49", - "title": "My Neighbor Totoro", - "description": "Two sisters move to the country with their father in order to be closer to their hospitalized mother, and discover the surrounding trees are inhabited by Totoros, magical spirits of the forest. When the youngest runs away from home, the older sister seeks help from the spirits to find her.", - "director": "Hayao Miyazaki", - "producer": "Hayao Miyazaki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/d/db/My_Neighbor_Totoro.jpg", - "release_date": "1988", - "rt_score": "93", - "people": [ - { - "id": "986faac6-67e3-4fb8-a9ee-bad077c2e7fe", - "name": "Satsuki Kusakabe", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/f/f2/Satsuki_Kusakabe.jpg", - "gender": "Female", - "age": "11", - "eye_color": "Dark Brown/Black", - "hair_color": "Dark Brown", - "specie": "Human" - }, - { - "id": "d5df3c04-f355-4038-833c-83bd3502b6b9", - "name": "Mei Kusakabe", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/b5/God_Jul_Mei_%C3%B6nskar_fr%C3%A5n_Tomten.jpg", - "gender": "Female", - "age": "4", - "eye_color": "Brown", - "hair_color": "Light Brown", - "specie": "Human" - }, - { - "id": "3031caa8-eb1a-41c6-ab93-dd091b541e11", - "name": "Tatsuo Kusakabe", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d6/Tatsuo_Kusakabe.jpg", - "gender": "Male", - "age": "37", - "eye_color": "Brown", - "hair_color": "Dark Brown", - "specie": "Human" - }, - { - "id": "87b68b97-3774-495b-bf80-495a5f3e672d", - "name": "Yasuko Kusakabe", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/7/7b/Yasuko_Kusakabe.png", - "gender": "Female", - "age": "36", - "eye_color": "Brown", - "hair_color": "Dark Brown", - "specie": "Human" - }, - { - "id": "08ffbce4-7f94-476a-95bc-76d3c3969c19", - "name": "Granny", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d9/Granny.png", - "gender": "Female", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Human" - }, - { - "id": "0f8ef701-b4c7-4f15-bd15-368c7fe38d0a", - "name": "Kanta Ogaki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c3/Kanta.jpg", - "gender": "Male", - "age": "11", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "d39deecb-2bd0-4770-8b45-485f26e1381f", - "name": "Totoro", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/df/Totoro_in_the_rain.png", - "gender": "Male", - "age": "1300", - "eye_color": "Grey", - "hair_color": "Grey", - "specie": "Totoro" - }, - { - "id": "591524bc-04fe-4e60-8d61-2425e42ffb2a", - "name": "Chu Totoro", - "img": "https://www.ghibli.jp/gallery/thumb-totoro019.png", - "gender": "NA", - "age": "", - "eye_color": "Black", - "hair_color": "Blue", - "specie": "Totoro" - }, - { - "id": "c491755a-407d-4d6e-b58a-240ec78b5061", - "name": "Chibi Totoro", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c5/Little_Totoro_spirit_moving.gif", - "gender": "NA", - "age": "", - "eye_color": "Black", - "hair_color": "White", - "specie": "Totoro" - }, - { - "id": "f467e18e-3694-409f-bdb3-be891ade1106", - "name": "Catbus", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/30/Catbus.jpg", - "gender": "Male", - "age": "NA", - "eye_color": "Yellow", - "hair_color": "Brown", - "specie": "Cat" - } - ], - "locations": [ - { - "id": "660c8c91-bd92-43db-b475-b2df6ca96fec", - "name": "Kusakabe's House", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/f/f3/Kusakabe_Family_House.jpg", - "climate": "Mild", - "terrain": "River", - "surface_water": "40", - "residents": [ - "TODO" - ] - }, - { - "id": "6fc21b76-78fb-4451-98f7-857e32a23e85", - "name": "Matsugo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/08/Min_Granne_Totoro_v%C3%A4rlden.jpg", - "climate": "Continental", - "terrain": "River", - "surface_water": "60", - "residents": [ - "TODO" - ] - }, - { - "id": "ee897b2a-405e-42b9-bff4-8b51b0f03cab", - "name": "Satsuki's School House", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/dd/Satsuki%27s_School_House.jpg", - "climate": "Mild", - "terrain": "River", - "surface_water": "60", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "ea660b10-85c4-4ae3-8a5f-41cea3648e3e", - "title": "Kiki's Delivery Service", - "description": "A young witch, on her mandatory year of independent life, finds fitting into a new community difficult while she supports herself by running an air courier service.", - "director": "Hayao Miyazaki", - "producer": "Hayao Miyazaki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/4/48/Kiki%27s_Delivery_Service_%282%29.jpg", - "release_date": "1989", - "rt_score": "96", - "people": [ - { - "id": "4151abc6-1a9e-4e6a-5678-aac05ra641js", - "name": "Kiki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/59/Kiki.jpg", - "gender": "Female", - "age": "13", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Witch" - }, - { - "id": "7151abc6-1a9e-4e6a-9711-ddb50ea572ec", - "name": "Jiji", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/b4/Jiji.jpg", - "gender": "Male", - "age": "13", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Cat" - }, - { - "id": "6574cfr2-9w3d-2x1h-8531-gge23iu489ko", - "name": "Ursula", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/12/Ursula.jpg", - "gender": "Female", - "age": "18", - "eye_color": "Black", - "hair_color": "Red", - "specie": "Human" - }, - { - "id": "4321dse3-6r6s-3r4d-5641-rdq19re765de", - "name": "Tombo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/6f/Tombo.jpg", - "gender": "Male", - "age": "13", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "8252ebf6-1g8f-5t6u-1234-vvg45yd363dc", - "name": "Osono", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/3a/Osono.jpg", - "gender": "Female", - "age": "30", - "eye_color": "Brown", - "hair_color": "Red", - "specie": "Human" - }, - { - "id": "7654ght4-3r4t-1t5u-0987-hhj76gh432gr", - "name": "Fukuo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/29/Fukuo.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - } - ], - "locations": [ - { - "id": "fb083a4e-77b2-4623-a2e0-6bbca5bfd5b2", - "name": "Ursula's Log Cabin", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/b5/Ursula%27s_Log_Cabin.jpg", - "climate": "TODO", - "terrain": "TODO", - "surface_water": "40", - "residents": [ - "TODO" - ] - }, - { - "id": "c57fb2cb-ea85-4d73-8808-cf5dcd28c22e", - "name": "Koriko", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/05/Koriko.jpg", - "climate": "Mild", - "terrain": "Hill", - "surface_water": "50", - "residents": [ - "TODO" - ] - }, - { - "id": "62346d33-caa0-4c17-8016-0aca56f3066b", - "name": "Karikiya", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/e3/Majo002.jpg", - "climate": "Mild", - "terrain": "City", - "surface_water": "30", - "residents": [ - "TODO" - ] - }, - { - "id": "64a996aa-481e-4627-9624-ab23f59a05a9", - "name": "Guchokipanya", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/0f/Gutiokipanja.jpg", - "climate": "Continental", - "terrain": "Hill", - "surface_water": "50", - "residents": [ - { - "id": "8252ebf6-1g8f-5t6u-1234-vvg45yd363dc", - "name": "Osono" - }, - { - "id": "7654ght4-3r4t-1t5u-0987-hhj76gh432gr", - "name": "Fukuo" - } - ] - } - ], - "vehicles": [] - }, - { - "id": "12cfb892-aac0-4c5b-94af-521852e46d6a", - "title": "Grave of the Fireflies", - "description": "In the latter part of World War II, a boy and his sister, orphaned when their mother is killed in the firebombing of Tokyo, are left to survive on their own in what remains of civilian life in Japan. The plot follows this boy and his sister as they do their best to survive in the Japanese countryside, battling hunger, prejudice, and pride in their own quiet, personal battle.", - "director": "Isao Takahata", - "producer": "Toru Hara", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/a/a5/Grave_of_the_Fireflies_Japanese_poster.jpg", - "release_date": "1988", - "rt_score": "97", - "people": [ - { - "id": "8cb959a8-1959-42f3-bb33-07d7a2e6b830", - "name": "Seita Yokokawa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/21/Seita_Yokokawa.jpg", - "gender": "Male", - "age": "14", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "c344d561-6654-4aab-b0df-a1570e7e60cb", - "name": "Setsuko Yokokawa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/a8/Setsuko_Yokokawa.jpg", - "gender": "Female", - "age": "4", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "227c01a6-4e29-4582-bc4b-35106a704ab0", - "name": "Mrs. Yokokawa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/39/SeitaMother.png", - "gender": "Female", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "023306e3-9fc6-4d1d-b681-d4649dcbfff9", - "name": "Kiyoshi Yokokawa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/f/f6/SeitaFather3.jpg", - "gender": "Male", - "age": "40", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "0e18b23d-1f21-4a83-a6de-f01147624875", - "name": "Seita's Aunt", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/09/SeitaAunt.jpg", - "gender": "Female", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - } - ], - "locations": [], - "vehicles": [] - }, - { - "id": "4e236f34-b981-41c3-8c65-f8c9000b94e7", - "title": "Only Yesterday", - "description": "It’s 1982, and Taeko is 27 years old, unmarried, and has lived her whole life in Tokyo. She decides to visit her family in the countryside, and as the train travels through the night, memories flood back of her younger years: the first immature stirrings of romance, the onset of puberty, and the frustrations of math and boys. At the station she is met by young farmer Toshio, and the encounters with him begin to reconnect her to forgotten longings. In lyrical switches between the present and the past, Taeko contemplates the arc of her life, and wonders if she has been true to the dreams of her childhood self.", - "director": "Isao Takahata", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/a/a9/Only_Yesterday.jpg", - "release_date": "1991", - "rt_score": "100", - "people": [ - { - "id": "d0bb7b5f-3bf0-46c8-959d-0299b3252bd8", - "name": "Taeko Okajima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d4/Taeko_Okajima.png", - "gender": "Female", - "age": "27", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "3f78eba1-f9b0-489b-8686-f4508cdf049d", - "name": "Toshio", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/5d/Toshio.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "52ed5cad-2464-481f-9786-8533b8de95ff", - "name": "Mr. Okajima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/58/Mr._Okajima.png", - "gender": "Male", - "age": "Middle age", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "87e61451-3131-4d01-a3b3-558c9ee1c451", - "name": "Mrs. Okajima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/18/Mrs._Okajima_%282%29.png", - "gender": "Female", - "age": "Middle age", - "eye_color": "Black", - "hair_color": "Light brown", - "specie": "Human" - }, - { - "id": "0174e644-eddd-4cb7-8503-e0c21291d782", - "name": "Grandmother Okajima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/0f/Grandmother_Okajima_%282%29.jpg", - "gender": "Female", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Human" - }, - { - "id": "a88cb7a4-fe4a-4d50-8d8b-c32449e298ba", - "name": "Nanako Okajima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c1/Nanako_Okajima.png", - "gender": "Female", - "age": "18", - "eye_color": "Black", - "hair_color": "Light brown", - "specie": "Human" - }, - { - "id": "c8f02850-0c1f-499c-8b5e-d8ad16f3ecc4", - "name": "Yaeko Okajima", - "gender": "Female", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/a8/Yaeko_Okajima.jpg", - "age": "16", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Human" - }, - { - "id": "6e960787-5a47-4178-a040-1ef5bf5e4a6c", - "name": "Tani Tsuneko", - "img": "https://www.anime-planet.com/images/characters/tani-tsuneko-100171.jpg", - "gender": "Female", - "age": "10", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "cd86aeb2-4fd7-4119-8128-7060e0a68074", - "name": "Aiko", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/5d/Aiko.jpg", - "gender": "Female", - "age": "10", - "eye_color": "Black", - "hair_color": "Grey brown", - "specie": "Human" - }, - { - "id": "3ab1e0de-4d41-4f67-b2d0-e16d0fef2e6c", - "name": "Toko", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/af/Toko.jpg", - "gender": "Female", - "age": "10", - "eye_color": "Black", - "hair_color": "Light brown", - "specie": "Human" - }, - { - "id": "f4a85428-18b7-4199-ba5a-b6bcfb478e14", - "name": "Rie", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/00/Rie_01.png", - "gender": "Female", - "age": "10", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Human" - } - ], - "locations": [ - { - "id": "dbeeaecb-7817-4b8b-90ca-edc432d3033e", - "name": "Taeko's House", - "img": "https://images.squarespace-cdn.com/content/v1/54fc8146e4b02a22841f4df7/1571850401468-9TTOSKJGO49OEAKEJ4O6/Art+of+Only+Yesterday+C+-+8.jpg", - "climate": "Continental", - "terrain": "River", - "surface_water": "40", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "ebbb6b7c-945c-41ee-a792-de0e43191bd8", - "title": "Porco Rosso", - "description": "Porco Rosso, known in Japan as Crimson Pig (Kurenai no Buta) is the sixth animated film by Hayao Miyazaki and released in 1992. You're introduced to an Italian World War I fighter ace, now living as a freelance bounty hunter chasing 'air pirates' in the Adriatic Sea. He has been given a curse that changed his head to that of a pig. Once called Marco Pagot, he is now known to the world as 'Porco Rosso', Italian for 'Red Pig.'", - "director": "Hayao Miyazaki", - "producer": "Toshio Suzuki", - "poster" : "https://static.wikia.nocookie.net/studio-ghibli/images/4/41/Porco_Rosso.jpg", - "release_date": "1992", - "rt_score": "94", - "people": [ - { - "id": "6523068d-f5a9-4150-bf5b-76abe6fb42c3", - "name": "Porco Rosso", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/02/Porcellino%21.png", - "gender": "Male", - "age": "47", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "eff43a47-e59c-41bd-bcc6-b1827d63bed5", - "name": "Donald Curtis", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/61/Donald_Curtis.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "4a2e2cee-08ca-4d44-9564-2b3e5421bafb", - "name": "Fio Piccolo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/16/Fio_%282%29.jpg", - "gender": "Female", - "age": "17", - "eye_color": "Brown", - "hair_color": "Red", - "specie": "Human" - }, - { - "id": "127317b3-f6f8-4aea-b294-20452a3334f5", - "name": "Gina", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/eb/Gina.jpg", - "gender": "Female", - "age": "circa 23-35", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "2ac81cc3-7292-40ab-9e8f-4a370a58e3c8", - "name": "Mr. Piccolo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/0e/Mr_Piccolo.jpg", - "gender": "Male", - "age": "Middle aged", - "eye_color": "Brown", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "a63c25f4-41a4-4f78-933f-3c14e2903a8f", - "name": "Capo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/98/Aiuto_Gang_boss.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Bald", - "specie": "Human" - }, - { - "id": "5fd7416f-d928-4ebc-a4fb-d9bbdf99b06a", - "name": "Ferrari", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/be/Porco_Rosso_-_Ferrari.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - } - ], - "locations": [ - { - "id": "34df8f25-8f80-4823-8f01-bf9852039987", - "name": "Piccolo S.P.A.", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/4f/Piccolos_garage.jpg", - "climate": "Continental", - "terrain": "River", - "surface_water": "40", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [ - { - "id": "d8f893b5-1dd9-41a1-9918-0099c1aa2de8", - "name": "Red Wing", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/8f/Porco%27s_Plane.jpg", - "description": "An experimental aircraft captured by Porco. Named Savoia S.21", - "vehicle_class": "Airplane", - "length": "20", - "pilot": { - "id": "6523068d-f5a9-4150-bf5b-76abe6fb42c3", - "name": "Porco Rosso" - } - }, - { - "id": "7eb1b9cd-8153-4ef6-a0d4-1e9abd8d78da", - "name": "Dabohaze", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/99/Aiuto_Gang.jpg", - "description": "It's the Mamma Aiuto Gang's battle ship, They're an air pirate gang lead by Capo", - "vehicle_class": "Battle ship", - "length": "NA", - "pilot": { - "id": "a63c25f4-41a4-4f78-933f-3c14e2903a8f", - "name": "Capo" - } - } - ] - }, - { - "id": "1b67aa9a-2e4a-45af-ac98-64d6ad15b16c", - "title": "Pom Poko", - "description": "As the human city development encroaches on the raccoon population's forest and meadow habitat, the raccoons find themselves faced with the very real possibility of extinction. In response, the raccoons engage in a desperate struggle to stop the construction and preserve their home.", - "director": "Isao Takahata", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/9/9e/Pom_Poko.jpg", - "release_date": "1994", - "rt_score": "78", - "people": [ - { - "id": "575d6943-f9da-445e-8e77-e118c3924a1d", - "name": "Shoukichi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/59/Shoukichi_1.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Raccoon Dog" - }, - { - "id": "9298c4fe-a508-463f-aad7-d55742e9a4e5", - "name": "Okiyo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/bd/Okiyo.jpg", - "gender": "Female", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Raccoon Dog" - }, - { - "id": "220c7498-c390-4456-b853-bac107d16ff7", - "name": "Seizaemon", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d9/Seizaemon.jpg", - "gender": "Male", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Raccoon Dog" - }, - { - "id": "718f634a-ea92-4907-a262-5a71a0661dcd", - "name": "Oroku", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/07/Oroku.jpg", - "gender": "Female", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Grey brown", - "specie": "Raccoon Dog" - }, - { - "id": "7367f154-4d9b-4e3e-89cf-2bd55c4d817f", - "name": "Gonta", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/0b/Gonta.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Raccoon Dog" - }, - { - "id": "041cad03-ad0d-4f80-aeaa-71f9f64334df", - "name": "Inugami Gyōbu", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/99/Inugami.jpg", - "gender": "Male", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Grey brown", - "specie": "Raccoon Dog" - } - ], - "locations": [], - "vehicles": [] - }, - { - "id": "ff24da26-a969-4f0e-ba1e-a122ead6c6e3", - "title": "Whisper of the Heart", - "description": "Shizuku lives a simple life, dominated by her love for stories and writing. One day she notices that all the library books she has have been previously checked out by the same person: 'Seiji Amasawa'. Curious as to who he is, Shizuku meets a boy her age whom she finds infuriating, but discovers to her shock that he is her 'Prince of Books'. As she grows closer to him, she realises that he merely read all those books to bring himself closer to her. The boy Seiji aspires to be a violin maker in Italy, and it is his dreams that make Shizuku realise that she has no clear path for her life. Knowing that her strength lies in writing, she tests her talents by writing a story about Baron, a cat statuette belonging to Seiji's grandfather.", - "director": "Yoshifumi Kondō", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/7/7b/Whisper_of_the_Heart.jpg", - "release_date": "1995", - "rt_score": "91", - "people": [ - { - "id": "42a69bf6-b5e8-42b1-b05a-12c3d05e7c1e", - "name": "Shizuku Tsukishima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/67/Shizuku_Tsukishima.jpg", - "gender": "Female", - "age": "14", - "eye_color": "Black", - "hair_color": "Light black", - "specie": "Human" - }, - { - "id": "fc196c4f-0201-4ed2-9add-c6403f7c4d32", - "name": "Baron Humbert von Gikkingen", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/4f/Humbert_von_Gikkingen.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Green", - "hair_color": "Yellow", - "specie": "Cat" - }, - { - "id": "079db09e-0441-442b-8c17-af5cac8321c4", - "name": "Seiji Amasawa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c5/Seiji_Amasawa.jpg", - "gender": "Male", - "age": "15", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "494bba43-9f61-4383-a597-5bae6ab26222", - "name": "Yuko Harada", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/cb/Yuko_Harada.jpg", - "gender": "Female", - "age": "14", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "e432a1fe-e937-4575-bade-d11e9f8a9433", - "name": "Sugimura", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/b7/Sugimura.jpg", - "gender": "Male", - "age": "14", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "182c1f2a-e1e0-4035-b87a-754d58ed6e2d", - "name": "Seiya Tsukishima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/b3/Seiya_Tsukishima.jpg", - "gender": "Male", - "age": "40", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "d92e61f3-f525-4740-9f06-c9e7b19c3d11", - "name": "Asako Tsukishima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/ac/Asako_Tsukishima.jpg", - "gender": "Female", - "age": "39", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "61b51987-dd67-479b-aa03-554834b7edd7", - "name": "Shiro Nishi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/0f/Shiro_Nishi.jpg", - "gender": "Male", - "age": "70", - "eye_color": "Black", - "hair_color": "White", - "specie": "Human" - }, - { - "id": "e40b4241-612b-402f-8e6c-067c44e9c618", - "name": "Shiho Tsukishima", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/02/Shiho_Tsukishima.jpg", - "gender": "Female", - "age": "18", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - } - ], - "locations": [ - { - "id": "42f787d8-1fcb-4d3d-82f2-a74409869368", - "name": "Seiji's House", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/a7/Mimi011.jpg", - "climate": "Continental", - "terrain": "City", - "surface_water": "0", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "0440483e-ca0e-4120-8c50-4c8cd9b965d6", - "title": "Princess Mononoke", - "description": "Ashitaka, a prince of the disappearing Ainu tribe, is cursed by a demonized boar god and must journey to the west to find a cure. Along the way, he encounters San, a young human woman fighting to protect the forest, and Lady Eboshi, who is trying to destroy it. Ashitaka must find a way to bring balance to this conflict.", - "director": "Hayao Miyazaki", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c6/Princess_Mononoke.jpg", - "release_date": "1997", - "rt_score": "92", - "people": [ - { - "id": "ba924631-068e-4436-b6de-f3283fa848f0", - "name": "Ashitaka", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/49/Ashitaka.jpg", - "gender": "Male", - "age": "17", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "ebe40383-aad2-4208-90ab-698f00c581ab", - "name": "San", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/3f/San.jpg", - "gender": "Female", - "age": "16", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "34277bec-7401-43fa-a00a-5aee64b45b08", - "name": "Eboshi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/9f/Eboshi.png", - "gender": "Female", - "age": "Adult", - "eye_color": "Hazel", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "91939012-90b9-46e5-a649-96b898073c82", - "name": "Jigo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/7/79/Jigo_%282%29.jpg", - "gender": "Male", - "age": "Middle age", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "20e3bd33-b35d-41e6-83a4-57ca7f028d38", - "name": "Kohroku", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d1/Kohroku_gives.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "8bccdc78-545b-49f4-a4c8-756163a38c91", - "name": "Gonza", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/42/Gonza_%282%29.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Grey", - "hair_color": "Bald, but beard is Brown", - "specie": "Human" - }, - { - "id": "116bfe1b-3ba8-4fa0-8f72-88537a493cb9", - "name": "Hii-sama", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/83/Hii-sama.jpg", - "gender": "Female", - "age": "Over 50", - "eye_color": "Brown", - "hair_color": "White", - "specie": "Human" - }, - { - "id": "030555b3-4c92-4fce-93fb-e70c3ae3df8b", - "name": "Yakul", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/ef/Yakul.jpg", - "age": "Unknown", - "gender": "Male", - "eye_color": "Grey", - "hair_color": "Brown", - "specie": "Red elk" - }, - { - "id": "ca568e87-4ce2-4afa-a6c5-51f4ae80a60b", - "name": "Shishigami", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/b7/Forest_Spirit.jpg", - "age": "400", - "gender": "Male", - "eye_color": "Red", - "hair_color": "Light Orange", - "specie": "Spirit" - }, - { - "id": "e9356bb5-4d4a-4c93-aadc-c83e514bffe3", - "name": "Moro", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/5e/Moro.png", - "gender": "Female", - "age": "300", - "eye_color": "Brown", - "hair_color": "White", - "specie": "Wolf" - } - ], - "locations": [ - { - "id": "11014596-71b0-4b3e-b8c0-1c4b15f28b9a", - "name": "Irontown", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/ac/Mononoke_-_Irontown.jpg", - "climate": "Continental", - "terrain": "Mountain", - "surface_water": "40", - "residents": [ - { - "id": "ba924631-068e-4436-b6de-f3283fa848f0", - "name": "Ashitaka" - }, - { - "id": "030555b3-4c92-4fce-93fb-e70c3ae3df8b", - "name": "Yakul" - } - ] - }, - { - "id": "615aa48d-8673-4117-b35a-79cb67af1897", - "name": "Forest", - "img": "https://www.teahub.io/photos/full/230-2307062_princess-mononoke-forest-spirit.jpg", - "climate": "Tropical", - "terrain": "Forest", - "surface_water": "60", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "45204234-adfd-45cb-a505-a8e7a676b114", - "title": "My Neighbors the Yamadas", - "description": "The Yamadas are a typical middle class Japanese family in urban Tokyo and this film shows us a variety of episodes of their lives. With tales that range from the humourous to the heartbreaking, we see this family cope with life's little conflicts, problems and joys in their own way.", - "director": "Isao Takahata", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/d/db/My_Neighbors_the_Yamadas.jpg", - "release_date": "1999", - "rt_score": "75", - "people": [ - { - "id": "7b3324ad-0ac9-417d-9905-ac001f6b7b1a", - "name": "Takashi Yamada", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/84/Takashi.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "562cf83f-fe38-44bf-8840-f8120b373c07", - "name": "Matsuko Yamada", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/85/Matsuko_Yamada.png", - "gender": "Female", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Human" - }, - { - "id": "33504e52-626b-4718-b324-d06a5b64ccfe", - "name": "Noboru Yamada", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d4/Noboru.jpg", - "gender": "Male", - "age": "13", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "097a7111-7bca-43e2-b8ad-0042c175b8c9", - "name": "Nonoko Yamada", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/56/Nonoko_Yamada.jpg", - "gender": "Female", - "age": "5", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "10857681-11a2-48df-98ec-de711a6c56cf", - "name": "Shige Yamano", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/97/Shige_Yamano.jpg", - "gender": "Female", - "age": "Elder", - "eye_color": "Black", - "hair_color": "White", - "specie": "Human" - } - ], - "locations": [], - "vehicles": [] - }, - { - "id": "dc2e6bd1-8156-4886-adff-b39e6043af0c", - "title": "Spirited Away", - "description": "Spirited Away is an Oscar winning Japanese animated film about a ten year old girl who wanders away from her parents along a path that leads to a world ruled by strange and unusual monster-like animals. Her parents have been changed into pigs along with others inside a bathhouse full of these creatures. Will she ever see the world how it once was?", - "director": "Hayao Miyazaki", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/9/9e/Spirited_Away.png", - "release_date": "2001", - "rt_score": "97", - "people": [ - { - "id": "134a568b-ac18-4696-a53e-4f0757d1c037", - "name": "Chihiro Ogino/Sen", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/8e/Chihiro_Ogino.jpg", - "gender": "Female", - "age": "10", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "a1143897-679f-4c16-8b20-538976c144d6", - "name": "Nigihayami Kohakunushi/Haku", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/89/Haku-2.png", - "gender": "Male", - "age": "12 (in appearance)", - "eye_color": "Green", - "hair_color": "Green", - "specie": "Deity, Dragon" - }, - { - "id": "177722d8-6fb0-4811-ad83-4d9c272eaebe", - "name": "Yubaba", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/f/f8/Yubaba-0.jpg", - "gender": "Female", - "age": "Elder", - "eye_color": "Dark brown", - "hair_color": "White", - "specie": "Witch" - }, - { - "id": "5fbcf921-a560-400e-bc15-c8fb4ef05909", - "name": "Kamajī", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/7/78/Kamaji.jpg", - "gender": "Male", - "age": "At least 40 years", - "eye_color": "NA", - "hair_color": "Bald", - "specie": "Spirit" - }, - { - "id": "969850ec-4ab6-4170-ab6b-ae6ac42e1e9a", - "name": "No-Face", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/9d/No-Face_infobox.png", - "gender": "Unknown (Possible Male)", - "age": "unknown", - "eye_color": "NA", - "hair_color": "NA", - "specie": "Spirit" - }, - { - "id": "cf0a2a1b-8b65-4794-98ae-bd89de49fa62", - "name": "Lin", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/35/Lin-HBO_Max.png", - "gender": "Female", - "age": "Adult", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Spirit of The White Fox" - }, - { - "id": "d2feee01-5531-4385-aa0a-1e608aaf0747", - "name": "Boh", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/7/7e/Boh_winks.jpg", - "gender": "Male", - "age": "Child", - "eye_color": "Black", - "hair_color": "Bald", - "specie": "unknown" - }, - { - "id": "d9aceca5-beb9-4b2a-85ba-fc17d33750f8", - "name": "Zeniba", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d8/Zeniba.png", - "gender": "Female", - "age": "Elder", - "eye_color": "Dark brown", - "hair_color": "White", - "specie": "Witch" - }, - { - "id": "0588017a-8113-43cd-9025-518c9c0d5111", - "name": "Akio Ogino", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/47/Akio_Ogino.jpg", - "gender": "Male", - "age": "38", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "2e7bb7bf-4149-4df5-b6e4-76064021651c", - "name": "Yūko Ogino", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c6/Ichiyuko_Ogino.png", - "gender": "Female", - "age": "35", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - } - ], - "locations": [ - { - "id": "a072ec53-0467-4fac-864f-df234f9c4315", - "name": "Zeniba's Cottage", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/ec/Zeniba%27s_Cottage.png", - "climate": "TODO", - "terrain": "TODO", - "surface_water": "40", - "residents": [ - "TODO" - ] - }, - { - "id": "37d13a96-a03a-451d-8871-80be0495486e", - "name": "Bathhouse", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/80/Chihiro_sees_the_Bathhouse.png", - "climate": "Continental", - "terrain": "River", - "surface_water": "70", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "90b72513-afd4-4570-84de-a56c312fdf81", - "title": "The Cat Returns", - "description": "Haru, a schoolgirl bored by her ordinary routine, saves the life of an unusual cat and suddenly her world is transformed beyond anything she ever imagined. The Cat King rewards her good deed with a flurry of presents, including a very shocking proposal of marriage to his son! Haru embarks on an unexpected journey to the Kingdom of Cats where her eyes are opened to a whole other world.", - "director": "Hiroyuki Morita", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/8/87/The_Cat_Returns.jpg", - "release_date": "2002", - "rt_score": "89", - "people": [ - { - "id": "6b3facea-ea33-47b1-96ce-3fc737b119b8", - "name": "Renaldo Moon aka Moon aka Muta", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/e7/Muta.png", - "gender": "Male", - "age": "NA", - "eye_color": "White", - "hair_color": "Beige", - "specie": "Cat" - }, - { - "id": "3042818d-a8bb-4cba-8180-c19249822d57", - "name": "Cat King", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/34/The_Cat_King.jpg", - "gender": "Male", - "age": "87", - "eye_color": "Emerald", - "hair_color": "Grey", - "specie": "Cat" - }, - { - "id": "58d1973f-f247-47d7-9358-e56cb0d2b5a6", - "name": "Yuki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/eb/New_queen%2C_Yuki.JPG", - "gender": "Female", - "age": "NA", - "eye_color": "Blue", - "hair_color": "White", - "specie": "Cat" - }, - { - "id": "a3d8e70f-46a0-4e5a-b850-db01620d6b92", - "name": "Haru Yoshioka", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/27/Haru_Yoshioka.jpg", - "gender": "Female", - "age": "17", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "466bc926-2024-4653-ac63-fe52f2dc8c7b", - "name": "Natori", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c4/Natori.jpg", - "gender": "Male", - "age": "NA", - "eye_color": "Blue", - "hair_color": "Grey", - "specie": "Cat" - }, - { - "id": "269dcd81-8037-45bb-892b-1c86c9696222", - "name": "Toto", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/8d/Toto.png", - "gender": "Male", - "age": "NA", - "eye_color": "Black", - "hair_color": "Dark Blue", - "specie": "Bird" - }, - { - "id": "5b2a28f6-91d4-4382-aedc-b27094e763b0", - "name": "Prince Lune", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/90/Prince_Lune.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Dark brown", - "hair_color": "Russian blue", - "specie": "Cat" - }, - { - "id": "17aca709-3049-48fc-95a6-e802c01125a2", - "name": "Hiromi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c1/Hiromi.png", - "gender": "Female", - "age": "17", - "eye_color": "Brown", - "hair_color": "Light brown", - "specie": "Human" - }, - { - "id": "911d38e2-ada4-4481-89a2-ba414422d4e4", - "name": "Naoko Yoshioka", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/64/Naoko_Yoshioka.jpg", - "gender": "Female", - "age": "Adult", - "eye_color": "Light Brown", - "hair_color": "Light brown", - "specie": "Human" - } - ], - "locations": [ - { - "id": "a8bd9c03-7c80-4a97-b7c0-6a668acaf576", - "name": "The Cat Kingdom", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/a9/Baron022.jpg", - "climate": "Continental", - "terrain": "Plain", - "surface_water": "30", - "residents": [ - { - "id": "6b3facea-ea33-47b1-96ce-3fc737b119b8", - "name": "Renaldo Moon aka Moon aka Muta" - }, - { - "id": "3042818d-a8bb-4cba-8180-c19249822d57", - "name": "Cat King" - }, - { - "id": "58d1973f-f247-47d7-9358-e56cb0d2b5a6", - "name": "Yuki" - }, - { - "id": "a3d8e70f-46a0-4e5a-b850-db01620d6b92", - "name": "Haru" - } - ] - } - ], - "vehicles": [] - }, - { - "id": "cd3d059c-09f4-4ff3-8d63-bc765a5184fa", - "title": "Howl's Moving Castle", - "description": "When Sophie, a shy young woman, is cursed with an old body by a spiteful witch, her only chance of breaking the spell lies with a self-indulgent yet insecure young wizard and his companions in his legged, walking home.", - "director": "Hayao Miyazaki", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/0/08/Howl%27s_Moving_Castle.jpg", - "release_date": "2004", - "rt_score": "87", - "people": [ - { - "id": "fa9b410f-cad4-457d-ac71-86b0afa6cf0a", - "name": "Howl Jenkins Pendragon", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/f/fe/Howl_Jenkins_Pendragon.jpg", - "gender": "Male", - "age": "27", - "eye_color": "Bright blue", - "hair_color": "Bright blue", - "specie": "Wizard" - }, - { - "id": "cbbe548f-dfb4-4d53-81d3-06c203dbb2ff", - "name": "Sophie Hatter", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/f/f4/Sophie_short_hair.jpg", - "gender": "Female", - "age": "18", - "eye_color": "Brown", - "hair_color": "White", - "specie": "Human" - }, - { - "id": "1287b275-6c32-4113-947f-519316d4a6be", - "name": "Witch of the Waste", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/e1/Howls-moving-castle-disneyscreencaps.com-10507.jpg", - "gender": "Female", - "age": "59", - "eye_color": "Brown", - "hair_color": "White", - "specie": "Witch/Human" - }, - { - "id": "b73f58ab-454a-42d6-9812-63e8f235a388", - "name": "Calcifer", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/2a/Calcifer.png", - "gender": "Male", - "age": "NA", - "eye_color": "Dark Brown", - "hair_color": "Orange-yellow", - "specie": "Demon" - }, - { - "id": "d03ca1e2-16ab-45d1-9b81-c2b0f7b35de1", - "name": "Markl", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/5d/Markl.jpg", - "gender": "Male", - "age": "10", - "eye_color": "Dark Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "45237428-93bf-4dd6-97ce-f10647300429", - "name": "Prince Justin or Turnip Head", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d9/Prince_Justin.png", - "gender": "Male", - "age": "20-30", - "eye_color": "Grey", - "hair_color": "Blonde", - "specie": "Human/Scarecrow" - }, - { - "id": "8f66024e-c84f-445a-9ab5-0b31a6ae354d", - "name": "Madame Suliman", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/64/Madame_Suliman.png", - "gender": "Female", - "age": "50", - "eye_color": "Grey", - "hair_color": "White", - "specie": "Human" - }, - { - "id": "ccc705e4-aa2a-4929-b0dc-4b8a09fd290d", - "name": "Heen", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/a7/Heen.png", - "gender": "Male", - "age": "NA", - "eye_color": "Brown", - "hair_color": "Beige-white", - "specie": "Dog" - }, - { - "id": "3148150f-6ccb-4383-8af5-0c40f03c825e", - "name": "Lettie Hatter", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/1c/Lettie_Hatter.png", - "gender": "Female", - "age": "16", - "eye_color": "Blue", - "hair_color": "Blonde", - "specie": "Human" - }, - { - "id": "06610030-0560-47ac-bc18-be80d85c4dad", - "name": "Fanny Hatter/Honey", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c6/Honey.png", - "gender": "Female", - "age": "Adult", - "eye_color": "Grey", - "hair_color": "Blonde", - "specie": "Human" - } - ], - "locations": [ - { - "id": "b6bac992-a858-4d57-8477-9652d73caaa1", - "name": "Ingary", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/48/Ingary.png", - "climate": "Mild", - "terrain": "Hill", - "surface_water": "30", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [ - { - "id": "2354305f-dccd-4c44-a79e-cc60ba7376e6", - "name": "Howl's castle", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/e6/Howls_Castle.jpg", - "description": "Wizard Howl's home. It's scale changes from scene to scene.", - "vehicle_class": "Moving castle", - "length": "unknown", - "pilot": { - "id": "fa9b410f-cad4-457d-ac71-86b0afa6cf0a", - "name": "Howl Jenkins Pendragon" - } - } - ] - }, - { - "id": "112c1e67-726f-40b1-ac17-6974127bb9b9", - "title": "Tales from Earthsea", - "description": "Something bizarre has come over the land. The kingdom is deteriorating. People are beginning to act strange... What's even more strange is that people are beginning to see dragons, which shouldn't enter the world of humans. Due to all these bizarre events, Ged, a wandering wizard, is investigating the cause. During his journey, he meets Prince Arren, a young distraught teenage boy. While Arren may look like a shy young teen, he has a severe dark side, which grants him strength, hatred, ruthlessness and has no mercy, especially when it comes to protecting Teru. For the witch Kumo this is a perfect opportunity. She can use the boy's 'fears' against the very one who would help him, Ged.", - "director": "Gorō Miyazaki", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/0/09/%C3%96v%C3%A4rlden.jpg", - "release_date": "2006", - "rt_score": "41", - "people": [ - { - "id": "68df798d-f73d-4c70-b4ad-05dd84910436", - "name": "Ged", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/33/Ged.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Brown", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "3f3163bb-e2da-4e87-a1bf-ae2dfcde1a09", - "name": "Arren / Lebannen", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/ee/Arren.png", - "gender": "Male", - "age": "17", - "eye_color": "Dark brown", - "hair_color": "Dark brown", - "specie": "Human" - }, - { - "id": "84ba6d3d-d225-4a92-bbbc-147808826425", - "name": "Therru", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/1a/Therru.jpg", - "gender": "Female", - "age": "circa 14-17", - "eye_color": "Dark brown", - "hair_color": "Dark brown", - "specie": "Human" - }, - { - "id": "60469915-e18e-4cf3-b43d-95ea56cc300c", - "name": "Tenar", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/4f/Tenar.jpg", - "gender": "Female", - "age": "Adult", - "eye_color": "Grey", - "hair_color": "Blonde", - "specie": "Human" - }, - { - "id": "9bd3091a-8ae2-4741-9265-7f83ec55663a", - "name": "King of Enlad", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/ec/King-enlad.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "59d22f97-f45d-4a6c-b473-13ee9e69082a", - "name": "Cob", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/ce/Cob.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Violet", - "hair_color": "Purple", - "specie": "Arch-mage/Human" - }, - { - "id": "da00cee4-90a2-413b-8cef-c65e57f7e41", - "name": "Hare", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/1e/Hare.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "e024d74b-ca9f-49a7-92fb-e8723c6183e4", - "name": "Hazia Dealer", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/1b/Hazia_Dealer.png", - "gender": "Male", - "age": "Adult", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - } - ], - "locations": [ - { - "id": "bcc54f38-8847-45b0-97b1-307c94b2b517", - "name": "Enland", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/0e/Ged007.jpg", - "climate": "Wet", - "terrain": "Earthsea", - "surface_water": "100", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "758bf02e-3122-46e0-884e-67cf83df1786", - "title": "Ponyo on the Cliff by the Sea", - "description": "The son of a sailor, 5-year old Sosuke lives a quiet life on an oceanside cliff with his mother Lisa. One fateful day, he finds a beautiful goldfish trapped in a bottle on the beach and upon rescuing her, names her Ponyo. But she is no ordinary goldfish. The daughter of a masterful wizard and a sea goddess, Ponyo uses her father's magic to transform herself into a young girl and quickly falls in love with Sosuke, but the use of such powerful sorcery causes a dangerous imbalance in the world. As the moon steadily draws nearer to the earth and Ponyo's father sends the ocean's mighty waves to find his daughter, the two children embark on an adventure of a lifetime to save the world and fulfill Ponyo's dreams of becoming human.", - "director": "Hayao Miyazaki", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/5/50/Ponyo_on_the_Cliff_by_the_Sea.jpg", - "release_date": "2008", - "rt_score": "92", - "people": [ - { - "id": "a10f64f3-e0b6-4a94-bf30-87ad8bc51607", - "name": "Sosuke", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/cf/Sosuke.jpg", - "gender": "Male", - "age": "5", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "4524e6c2-04f3-4633-b2cb-e1cd3f566213", - "name": "Brunhilde/Ponyo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/bc/Brunhilda.png", - "gender": "Female", - "age": "5", - "eye_color": "Dark brown", - "hair_color": "Red", - "specie": "Fish/Human" - }, - { - "id": "0cb26464-3416-4490-8f42-cd9d7276884e", - "name": "Kōichi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/49/Sosuke%27s_Father.png", - "gender": "Male", - "age": "30", - "eye_color": "Dark brown", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "9ab8c24f-f687-47b8-adcf-c7c9d5b86b91", - "name": "Fujimoto", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/4b/Fujimoto.jpg", - "gender": "Male", - "age": "40", - "eye_color": "Light green", - "hair_color": "Red", - "specie": "Human" - }, - { - "id": "942efc9a-8d02-4643-aa3f-134429a23684", - "name": "Granmammare", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/43/Granmammare.png", - "gender": "Female", - "age": "NA", - "eye_color": "Brown", - "hair_color": "Red", - "specie": "Deity" - }, - { - "id": "04447a1b-316a-40bf-8f19-ddc964fec216", - "name": "Lisa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/59/Lisa.png", - "gender": "Female", - "age": "25", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "88d56819-0639-4bc4-8ffc-2af15a310cdc", - "name": "Toki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/94/Toki.jpg", - "gender": "Female", - "age": "72", - "eye_color": "Dark brown", - "hair_color": "White", - "specie": "Human" - }, - { - "id": "f55138f5-cdc7-4bc5-93d6-c4445d2a5347", - "name": "Yoshie", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/3f/Yoshie.jpg", - "gender": "Female", - "age": "68", - "eye_color": "Dark brown", - "hair_color": "Blonde", - "specie": "Human" - }, - { - "id": "9e149019-f351-4061-aaee-82a385a36582", - "name": "Noriko", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/34/Noriko.jpg", - "gender": "Female", - "age": "70", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "804b2f0a-05ab-489a-9610-bdc6bc867e89", - "name": "Koyo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/29/Koyo.png", - "gender": "Female", - "age": "68", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - } - ], - "locations": [ - { - "id": "90241c46-d4be-411f-b00a-7561b9dda7b6", - "name": "Fujimoto's Underwater Harbor", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/30/Fujimotos_hus.jpg", - "climate": "Wet", - "terrain": "Ocean", - "surface_water": "100", - "residents": [ - "TODO" - ] - }, - { - "id": "469b14bd-5565-4436-bbed-c2036f42cc99", - "name": "Himawari Nursery School", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/6b/Himawari_Nursery_School.jpg", - "climate": "Mild", - "terrain": "Ocean", - "surface_water": "50", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [ - { - "id": "923d70c9-8f15-4972-ad53-0128b261d628", - "name": "Sosuke's Boat", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/c1/PonyoS%C5%8DsukeBoat.jpg", - "description": "A toy boat where Sosuke plays", - "vehicle_class": "Boat", - "length": "10", - "pilot": { - "id": "a10f64f3-e0b6-4a94-bf30-87ad8bc51607", - "name": "Sosuke" - } - } - ] - }, - { - "id": "2de9426b-914a-4a06-a3a0-5e6d9d3886f6", - "title": "The Secret World of Arrietty", - "description": "14-year-old Arrietty and the rest of the Clock family live in peaceful anonymity as they make their own home from items 'borrowed' from the house's human inhabitants. However, life changes for the Clocks when a human boy discovers Arrietty.", - "director": "Hiromasa Yonebayashi", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/4/46/The_Borrower_Arrietty.jpg", - "release_date": "2010", - "rt_score": "95", - "people": [ - { - "id": "89026b3a-abc4-4053-ab1a-c6d2eea68faa", - "name": "Karigurashi/Arrietty", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/04/Arrietty.jpg", - "gender": "Female", - "age": "14", - "eye_color": "Black", - "hair_color": "Auburn", - "specie": "Borrower" - }, - { - "id": "496031cc-f6af-4f48-b9d1-27f34cb18e10", - "name": "Sho (Shawn)", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/04/Sho.jpg", - "gender": "Male", - "age": "12-14", - "eye_color": "Brown", - "hair_color": "Navy blue/black", - "specie": "Human" - }, - { - "id": "ef5ee7c5-ae68-418d-a319-f3e79262cd87", - "name": "Homily Clock", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/28/Homily_Clock.jpg", - "gender": "Female", - "age": "52", - "eye_color": "Brown", - "hair_color": "Navy black", - "specie": "Borrower" - }, - { - "id": "3a83aa65-d134-4e58-85b2-e9f6523b047d", - "name": "Sadako Maki/Jessica", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/1b/Jessica.jpg", - "gender": "Female", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Human" - }, - { - "id": "9c687441-3eb3-4c4b-8752-55774953aa3f", - "name": "Haru", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/3d/Haru_%28dam%29.jpg", - "gender": "Female", - "age": "Elder", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "ce5fb645-f0bb-4c1b-829f-907989d5525f", - "name": "Spiller", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/43/Spiller.jpg", - "gender": "Male", - "age": "Young", - "eye_color": "Black", - "hair_color": "Navy black", - "specie": "Borrower" - }, - { - "id": "a27ebdcb-4d29-40ac-8da6-5fc5a7869efb", - "name": "Pod Clock", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/7/76/Pod.png", - "gender": "Male", - "age": "52", - "eye_color": "Grey", - "hair_color": "Brown", - "specie": "Borrower" - }, - { - "id": "379f1453-38ca-486f-9d8b-f4eddc1e3fd3", - "name": "Niya", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/5a/Niya.jpg", - "gender": "Male", - "age": "52", - "eye_color": "White", - "hair_color": "Beige", - "specie": "Cat" - } - ], - "locations": [ - { - "id": "1e7ed524-4b4f-466b-978c-69dda9777396", - "name": "Sho's house", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/86/Karigurashi002.jpg", - "climate": "Warm", - "terrain": "Forest", - "surface_water": "10", - "residents": [ - "TODO" - ] - }, - { - "id": "f2148ab5-f272-4057-b05a-1321e35227b4", - "name": "Karigurashi's house", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/cd/Karigurashi019.jpg", - "climate": "Warm", - "terrain": "Under the floorboards", - "surface_water": "10", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "45db04e4-304a-4933-9823-33f389e8d74d", - "title": "From Up on Poppy Hill", - "description": "The story is set in 1963 in Yokohama. Kokuriko Manor sits on a hill overlooking the harbour. A 16 year-old girl, Umi, lives in that house. Every morning she raises a signal flag facing the sea. The flag means “I pray for safe voyages”. A 17 year-old boy, Shun, always sees this flag from the sea as he rides a tugboat to school. Gradually the pair are drawn to each other but they are faced with a sudden trial. Even so, they keep going without running from facing the hardships of reality.", - "director": "Gorō Miyazaki", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/b/bb/From_Up_on_Poppy_Hill.jpg", - "release_date": "2011", - "rt_score": "83", - "people": [ - { - "id": "6a486237-c503-4221-b834-1862f200e939", - "name": "Umi Matsuzaki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/93/Umi_Matsuzaki.jpg", - "gender": "Female", - "age": "16", - "eye_color": "Hazel", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "5c492592-ea9c-45e8-a9cc-4391037c0202", - "name": "Shun Kazama", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/59/Shun_Kazama.jpg", - "gender": "Male", - "age": "17", - "eye_color": "Black", - "hair_color": "Dark brown", - "specie": "Human" - }, - { - "id": "f1c170fa-7c60-420a-8437-253dd39a6bde", - "name": "Yūichirō Sawamura", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/3e/Yuuichirou_Sawamura.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "721acf20-3470-4010-801b-31f465467d55", - "name": "Sora Matsuzaki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/49/Sora_Matsuzaki.jpg", - "gender": "Female", - "age": "12-14", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "827be987-0563-4a7c-a68b-9d58e46d1687", - "name": "Shirou Mizunuma", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/f/f1/Shirou_Mizunuma.jpg", - "gender": "Male", - "age": "18", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "bec0cbf4-a03c-4379-b2c6-77fca9d5faa8", - "name": "Ryōko Matsuzaki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/48/Ryouko_Matsuzaki.jpg", - "gender": "Female", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "002708e3-d38f-4518-a7a9-bdb92390d0dc", - "name": "Riku Matsuzaki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/30/Riku_Matsuzaki.jpg", - "gender": "Male", - "age": "11", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "daf8627a-dd28-407a-a36b-d41b13ffc2ed", - "name": "Hana Matsuzaki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/13/Hana_Matsuzaki.jpg", - "gender": "Female", - "age": "Adult", - "eye_color": "Brown", - "hair_color": "Dark grey", - "specie": "Human" - } - ], - "locations": [ - { - "id": "be837047-cd6f-477f-a83d-5aec9ed1dda7", - "name": "Coquelicot Manor", - "img": "https://cache.desktopnexus.com/thumbseg/2436/2436746-bigthumbnail.jpg", - "climate": "Warm", - "terrain": "Hill", - "surface_water": "30", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "67405111-37a5-438f-81cc-4666af60c800", - "title": "The Wind Rises", - "description": "A lifelong love of flight inspires Japanese aviation engineer Jiro Horikoshi, whose storied career includes the creation of the A-6M World War II fighter plane.", - "director": "Hayao Miyazaki", - "producer": "Toshio Suzuki", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/2/2d/The_Wind_Rises.jpg", - "release_date": "2013", - "rt_score": "89", - "people": [ - { - "id": "97746fd8-1875-4331-8bc6-f43ae25501cd", - "name": "Naoko Satomi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d9/Nahoko_Satomi.jpg", - "gender": "Female", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Navy blue", - "specie": "Human" - }, - { - "id": "07b01fdb-87fb-4f3b-a888-b90cf13bc386", - "name": "Jiro Horikoshi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d7/Jirou_Horikoshi.jpg", - "gender": "Male", - "age": "42", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "53b1d8f7-adb3-49b3-bece-52cda0915e7a", - "name": "Castorp", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/b4/Castorp.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Light brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "ccc07f5c-28bd-4446-aee9-827c61d7f9f1", - "name": "Kiro Honjo", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/6c/Kiro_Honjo.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "54eda936-7f86-4bd8-9493-56e0eebd8eb1", - "name": "Kayo Horikoshi", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/91/Kayo_Horikoshi.jpg", - "gender": "Female", - "age": "10", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "b2453b6b-0718-4740-a0c4-207f12f1903a", - "name": "Caproni", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/66/Caproni.jpg", - "gender": "Male", - "age": "45", - "eye_color": "Black", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "c8321219-a816-4921-9a58-48c858becb97", - "name": "Mr. Kurokawa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/b/bd/Kurokawa.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Navy blue", - "specie": "Human" - }, - { - "id": "50e9d375-afaa-4769-a31d-dee8e37aa8ba", - "name": "Hattori", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/ec/Hattori.jpg", - "gender": "Male", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Human" - } - ], - "locations": [ - { - "id": "2b380662-626d-42fb-9e3a-14f951201c8b", - "name": "Nagoya", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/20/Kazetachinu009.jpg", - "climate": "Damp", - "terrain": "Hill", - "surface_water": "20", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [ - { - "id": "411f66ed0-771c-46d3-8f68-a3b65c6dd91c", - "name": "Mitsubishi 1MF9 ", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/41/Kazetachinu044.jpg", - "description": "The Mitsubishi 1MF9 or Mitsubishi Experimental Taka-type Carrier Fighter was a prototype Japanese fighter aircraft of the 1920s. It was a single-engined, single-seat biplane intended to operate from the Imperial Japanese Navy's aircraft carriers, but only two were built, with the type being rejected by the Navy.", - "vehicle_class": "War plane", - "length": "8", - "pilot": { - "id": "07b01fdb-87fb-4f3b-a888-b90cf13bc386", - "name": "Jiro Horikoshi" - } - } - ] - }, - { - "id": "578ae244-7750-4d9f-867b-f3cd3d6fecf4", - "title": "The Tale of the Princess Kaguya", - "description": "A bamboo cutter named Sanuki no Miyatsuko discovers a miniature girl inside a glowing bamboo shoot. Believing her to be a divine presence, he and his wife decide to raise her as their own, calling her 'Princess'.", - "director": "Isao Takahata", - "producer": "Yoshiaki Nishimura", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/8/87/The_Tale_of_the_Princess_Kaguya.jpg", - "release_date": "2013", - "rt_score": "100", - "people": [ - { - "id": "a8b338c0-e586-4c1c-8857-f33540d0d4d7", - "name": "Kaguya", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d4/Kaguya_shows_off_her_teeth.jpg", - "gender": "Female", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Navy blue", - "specie": "Human" - }, - { - "id": "a21fbdd5-16bc-4931-80d0-3ce89ffce778", - "name": "Sutemaru", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/3/37/Sutemaru.PNG", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "4c697b7d-4f64-4ac9-ae29-e155eb1693f3", - "name": "Ishitsukuri", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/5c/Ghibli-kaguya-ishitsukuri.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "fe1e5acf-e5e4-4769-9755-989cf7a2e961", - "name": "Miyatsuko", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/4/4a/Sanuki_no_Miyatsuko.jpeg", - "gender": "Male", - "age": "Elder", - "eye_color": "Grey", - "hair_color": "White", - "specie": "Human" - }, - { - "id": "839ff5b9-69ba-4d55-ab77-de939b46b18a", - "name": "Menowarawa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/22/Menowarawa.jpg", - "gender": "Female", - "age": "17", - "eye_color": "Black", - "hair_color": "Navy blue", - "specie": "Human" - }, - { - "id": "1752fc88-c6b7-4fef-8b64-51451d808033", - "name": "Lady Sagami", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/28/Sagami.png", - "gender": "Female", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Black", - "specie": "Human" - }, - { - "id": "942fb1029-b51f-4100-8bee-86547c09b0ff", - "name": "Inbe no Akita", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/1/1c/Ghibli-kaguya-akita.jpg", - "gender": "Male", - "age": "Elder", - "eye_color": "Black", - "hair_color": "White", - "specie": "Human" - }, - { - "id": "be634b4e-c333-4225-a5f0-2a0aa33d6453", - "name": "Ōna", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/cb/Ouna.jpg", - "gender": "Female", - "age": "Elder", - "eye_color": "Black", - "hair_color": "Grey", - "specie": "Human" - } - ], - "locations": [ - { - "id": "682df5c3-b09e-46af-94d1-ae0d17f9b4b6", - "name": "Bamboo Forest", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/e/ec/Ghibli-kaguya-bamboo-forest.jpg", - "climate": "Tropical", - "terrain": "Forest", - "surface_water": "10", - "residents": [ - "TODO" - ] - } - ], - "vehicles": [] - }, - { - "id": "5fdfb320-2a02-49a7-94ff-5ca418cae602", - "title": "When Marnie Was There", - "description": "The film follows Anna Sasaki living with her relatives in the seaside town. Anna comes across a nearby abandoned mansion, where she meets Marnie, a mysterious girl who asks her to promise to keep their secrets from everyone. As the summer progresses, Anna spends more time with Marnie, and eventually Anna learns the truth about her family and foster care.", - "director": "Hiromasa Yonebayashi", - "producer": "Yoshiaki Nishimura", - "poster": "https://static.wikia.nocookie.net/studio-ghibli/images/7/7a/When_Marnie_Was_There.jpg", - "release_date": "2014", - "rt_score": "92", - "people": [ - { - "id": "4a6a60d1-cb07-464f-889c-fecaff19b4ef", - "name": "Marnie", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/2/21/Marnie.jpg", - "gender": "Female", - "age": "12", - "eye_color": "Green", - "hair_color": "Blonde", - "specie": "Human" - }, - { - "id": "28d07ace-c309-48c6-b48e-ae2ece3a238c", - "name": "Anna Sasaki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/a/ae/Anna.png", - "gender": "Female", - "age": "12", - "eye_color": "Blue", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "d0a0bd7c-7521-45a2-a681-573a67f34a5b", - "name": "Emily", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/c/cd/13_year_old_Emily.png", - "gender": "Female", - "age": "20", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "08fdd37a-2cf0-4f91-ae1c-344ecff39753", - "name": "Kazuhiko", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/0/09/Kazuhiko.jpg", - "gender": "Male", - "age": "Teenager", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "66bca178-9920-4ec3-91e9-0d5b8a76dba1", - "name": "Setsu Oiwa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/6/6e/Setsu.jpg", - "gender": "Female", - "age": "50-60", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "5b8e4413-f943-40ba-8f9f-0ba059a401f0", - "name": "Hisako", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/9/93/Hisako.png", - "gender": "Female", - "age": "Elder", - "eye_color": "Dark brown", - "hair_color": "Grey", - "specie": "Human" - }, - { - "id": "c827feae-8ccf-4ced-84cb-bc3e226b1cd1", - "name": "Yoriko Sasaki", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/5/5d/Yoriko_Sasaki.jpg", - "gender": "Female", - "age": "Adult", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "9d3730cb-ec15-4bf9-a2fb-a7772e5e1c03", - "name": "Sayaka", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/7/79/Sayaka.jpg", - "gender": "Female", - "age": "11", - "eye_color": "Teal", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "31b49ef6-ee60-4603-b983-e67fa0718aa9", - "name": "Kiyomasa Ōiwa", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/d/d7/Kiyomasa.jpg", - "gender": "Male", - "age": "50-60", - "eye_color": "Dark brown", - "hair_color": "Brown", - "specie": "Human" - }, - { - "id": "5d52d16f-ce72-41bd-8d88-436e206d9449", - "name": "Doctor Yamashita", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/8a/Yamashita.jpg", - "gender": "Male", - "age": "Adult", - "eye_color": "Black", - "hair_color": "Navy blue", - "specie": "Human" - } - ], - "locations": [ - { - "id": "56e423c4-d9a1-44c4-8bdb-1cab45fbf63e", - "name": "The Marsh House", - "img": "https://static.wikia.nocookie.net/studio-ghibli/images/8/8c/Marsh_house.jpg", - "climate": "Mild", - "terrain": "Marsh", - "surface_water": "60", - "residents": [] - } - ], - "vehicles": [] - } - ] -} diff --git a/src/data/harrypotter/README.md b/src/data/harrypotter/README.md deleted file mode 100644 index 3bfa5e15..00000000 --- a/src/data/harrypotter/README.md +++ /dev/null @@ -1,74 +0,0 @@ -# Harry Potter - -Harry Potter es una serie de novelas fantásticas escrita por la autora -británica J. K. Rowling, en la que se describen las aventuras del joven -aprendiz de magia y hechicería Harry Potter y sus amigos durante los años -que pasan en el Colegio Hogwarts de Magia y Hechicería. El argumento se -centra en la lucha entre Harry Potter y el malvado mago lord Voldemort, -quien asesinó a los padres de Harry en su afán de conquistar el mundo mágico. - -El éxito de las novelas ha hecho de la marca una de las más exitosas del mundo. -En 1999, la productora de cine Warner Bros. Adquirió los derechos para -adaptar los siete libros a una serie de películas. La última de ellas, -Harry Potter y las reliquias de la Muerte: parte 2, se estrenó el 15 de julio -de 2011 y con ocho películas realizadas la serie se convirtió en una de las -franquicias más exitosas del cine en concepto de recaudaciones en taquilla.​ - -## Hallazgos - -Haciendo una investigación sobre la información que podrían necesitar -nuestras usuarias encontramos que los datos de mayor interés son: - -- Información sobre los personajes como nombre, especie, género, fecha de - nacimiento, saber si es _muggle_ o conocer su casa de estudio. -- El colegio Hogwarts de Magia y Hechicería utiliza el sistema de Casas. - El cuerpo estudiantil de Hogwarts se divide en cuatro Casas ( Gryffindor, - Hufflepuff, Ravenclaw y Slytherin;). A nuestras usarías les interesa saber - cuantos estudiantes hay por cada casa. -- Dentro del mundo mágico hay muchos hechizos que se pueden invocar, para - nuestras usuarias es importante conocerlos y saber lo que hacen - para estar preparadas. -- Toda esta información se basa la saga de novelas de la autora J. K. Rowling, - para nuestras usuarias es relevante conocer cuantos libros han sido publicados - y les gustaría poder visualizar que personajes aparecen en cada libro. -- Las pociones son una herramienta crucial en el mundo de Harry Potter, - tener un diccionario para poder consultarlas es una petición de las usuarias. - -## Detalles de la data - -### Personajes - -En la lista personajes puedes todos los que aparecen en la saga. -Puedes encontrar información básica como nombre, especie, género, -fecha de nacimiento, casa de estudio, saber si es un ser mágico o muggle, -grupos a los que pertenece, libros en los que aparece entre otras cosas. - -### Hechizos - -En esta lista podrás encontrar el nombre y la descripción de los hechizos - que pueden invocar los personajes, también el lugar del libro donde se -menciona este hechizo y su pronunciación . - -### Libros - -La lista de libros describe el título, fecha de lanzamiento y la descripción -de cada libro dentro de la saga . - -### Datos curiosos - -Lista de algunos datos curiosos sobre la saga, contiene tipo y contenido. - -### Pociones - -En esta lista puedes encontrar nombres de las pociones que se mencionan en el -libro así como una pequeña descripción de la misma. - ---- - -#### Disclaimer - -De acuerdo a los principios de convivencia armónica y diversidad como valor -intrínseco que orientan nuestra política de diversidad e inclusión, -Laboratoria no condona ni avala los comentarios de la autora de la data -utilizada en este dataset del proyecto, Joanne Rowling, respecto a la -identidad de género y personas neurodivergentes. diff --git a/src/data/harrypotter/README.pt-BR.md b/src/data/harrypotter/README.pt-BR.md deleted file mode 100644 index fa89c74b..00000000 --- a/src/data/harrypotter/README.pt-BR.md +++ /dev/null @@ -1,75 +0,0 @@ -# Harry Potter - -Harry Potter é uma série de romances de fantasia escritos pela autora -britânica J. K. Rowling, que descreve as aventuras do jovem bruxo Harry Potter -e seus amigos ao longo dos anos em que passam estudando na Escola de Magia e -Bruxaria de Hogwarts. O enredo é foca na luta -entre Harry Potter e o malvado feiticeiro Lord Voldemort, -que assassinou os pais de Harry em sua busca para conquistar o mundo mágico. - -O sucesso da saga fez da marca uma das mais bem sucedidas do mundo. -Em 1999, a produtora de filmes Warner Bros. adquiriu os direitos de -adaptar todos os sete livros em uma série de filmes. O último, -Harry Potter e as Relíquias da Morte: Parte 2, estreou em 15 de julho de 2011 -e, com oito filmes lançados, a série se tornou uma das franquias de filmes de -maior sucesso em termos de receita de bilheteria. - -## Descobertas - -Fazendo pesquisas sobre as informações que eles podem precisar, nossos usuários -acham que os dados de maior interesse são: - -- Informações sobre os personagens como nome, espécie, gênero, data de - nascimento, para saber se ele é _trouxa_ ou para conhecer sua casa de estudo. -- A Escola de Magia e Bruxaria de Hogwarts usa o sistema das Casas. - O corpo discente de Hogwarts é dividido em quatro Casas (Grifinória, - Lufa-Lufa, Corvinal e Sonserina ;). Nossos usuários estão interessados ​​em saber - quantos alunos há em cada casa -- Dentro do mundo mágico existem muitos feitiços que podem ser invocados, - para nossos usuários é importante conhecê-los e saber o que eles fazem para - estarem preparados. -- Todas essas informações são baseadas na saga de livros da autora - J. K. Rowling. Nossos usuários acham importante saber quantos livros foram - publicados e gostariam de poder visualizar quais personagens - aparecem em cada livro. -- Poções são uma ferramenta crucial no mundo de Harry Potter - e nossos usuários gostariam de ter um dicionário para poder consultá-las. - -## Detalhes dos dados - -### Personagens - -Na lista de personagens você pode encontrar todos aqueles que aparecem na saga. -Você pode encontrar informações básicas como nome, espécie, gênero, -data de nascimento, casa de estudo, saber se é um ser mágico ou trouxa, -grupos a que pertence, livros em que aparece entre outras coisas. - -### Feitiços - -Nesta lista você pode encontrar o nome e a descrição dos -feitiços que os personagens podem invocar, também o lugar no livro onde eles -estão e a pronúncia do feitiço. - -### Livros - -A lista de livros descreve o título, data de lançamento e descrição -de cada livro da saga. - -### Fatos divertidos - -Lista de alguns fatos curiosos sobre a saga, contém tipo e conteúdo. - -### Poções - -Nesta lista você pode encontrar os nomes das poções que são mencionadas no -livro, bem como uma breve descrição das mesmas. - ---- - -#### Disclaimer - -De acordo com os princípios da convivência harmoniosa e da diversidade como valor -intrínsecos que norteiam nossa política de diversidade e inclusão, -Laboratoria não tolera ou endossa os comentários da autora dos dados -usado neste dataset do projeto, Joanne Rowling, sobre a -identidade de gênero e pessoas neurodivergentes. diff --git a/src/data/harrypotter/data.js b/src/data/harrypotter/data.js deleted file mode 100644 index ad174aa4..00000000 --- a/src/data/harrypotter/data.js +++ /dev/null @@ -1,16228 +0,0 @@ -export default { - characters: [ - { - "id": 1, - "name": "Euan Abercrombie", - "birth": "between 1 September 1983 and 31 August 1984", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Gryffindor"], - "books_featured_in": [5] - }, - { - "id": 2, - "name": "Stewart Ackerley", - "birth": "between 1 September 1982and 31 August 1983", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 3, - "name": "African prince", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle-born or half-blood (possibly)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Africa"], - "books_featured_in": [1] - }, - { - "id": 4, - "name": "Agnes's son", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 5, - "name": "Cornelius Agrippa", - "birth": "1486", - "death": "1535 (aged 48 - 49)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 6, - "name": "Albino peacock", - "birth": "Pre 1997", - "death": null, - "species": "Peacock", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Lucius Malfoy (owner)"], - "books_featured_in": [7] - }, - { - "id": 7, - "name": "Arkie Alderton", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Arkie Alderton's Kwik-Repair Shop"], - "books_featured_in": [7] - }, - { - "id": 8, - "name": "Angus", - "birth": "c. 1980s", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 9, - "name": "Antioch Peverell's killer", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown wand", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 10, - "name": "Apothecary shopkeeper", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Apothecary"], - "books_featured_in": [1] - }, - { - "id": 11, - "name": "Aragog", - "birth": "c. 1942", - "death": "20 April, 1997 (aged around 55)", - "species": "Acromantula", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Black & Grey/Milky-White (Blind)", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Rubeus Hagrid", "Forbidden Forest Acromantula colony"], - "books_featured_in": [2, 5, 6, 7] - }, - { - "id": 12, - "name": "Arcus", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 13, - "name": "Arkie Alderton's alleged son", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle-born or half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Alderton family"], - "books_featured_in": [7] - }, - { - "id": 14, - "name": "Armenian warlock", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2] - }, - { - "id": 15, - "name": "Arnold", - "birth": "c. 1996", - "death": null, - "species": "Pygmy Puff", - "ancestry": null, - "gender": "Male", - "hair_color": "Purple", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Ginny Weasley"], - "books_featured_in": [6] - }, - { - "id": 16, - "name": "Bertram Aubrey", - "birth": "c. 1950s - 1960s, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [6] - }, - { - "id": 17, - "name": "Avery I", - "birth": "Between 1926 and 1932", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood (likely)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Avery family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Tom Riddle's gang", - "Slug Club" - ], - "books_featured_in": [6] - }, - { - "id": 18, - "name": "Avery II", - "birth": "Late 1950s or early 1960s, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": "Slytherin", - "associated_groups": [ - "Avery family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Death Eaters", - "Lord Voldemort" - ], - "books_featured_in": [4, 5, 6, 7] - }, - { - "id": 19, - "name": "Archie Aymslowe", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Fresh Air Refreshes Totally (F.A.R.T.)"], - "books_featured_in": [4] - }, - { - "id": 20, - "name": "Malcolm Baddock", - "birth": "between 1 September 1982 and 31 August 1983", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 21, - "name": "Badgered Boy", - "birth": "1970s - 1980s", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Unknown (human)", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [2] - }, - { - "id": 22, - "name": "Ludovic Bagman's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Bagman family"], - "books_featured_in": [4] - }, - { - "id": 23, - "name": "Ludovic Bagman", - "birth": "Before 1964 (most likely)", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": "Baby blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Wimbourne Wasps (formerly)", - "British Ministry of Magic", - "Department of Magical Games and Sports", - "Bagman family", - "English National Quidditch team" - ], - "books_featured_in": [4, 5] - }, - { - "id": 24, - "name": "Otto Bagman", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Bagman family"], - "books_featured_in": [4] - }, - { - "id": 25, - "name": "Bane", - "birth": null, - "death": null, - "species": "Centaur", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Forbidden Forest Centaur colony", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1, 5, 7] - }, - { - "id": 26, - "name": "Heathcote Barbary", - "birth": "1974", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["The Weird Sisters"], - "books_featured_in": [4] - }, - { - "id": 27, - "name": "Barnabas the Barmy", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Magical to unknown extent", - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Trolls", "Ballet"], - "books_featured_in": [5, 6] - }, - { - "id": 28, - "name": "Baruffio", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1, 5] - }, - { - "id": 29, - "name": "Ali Bashir", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Flying carpets"], - "books_featured_in": [4] - }, - { - "id": 30, - "name": "Basil", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic", "Department of Magical Transportation"], - "books_featured_in": [4] - }, - { - "id": 31, - "name": "Beedle the Bard", - "birth": "c. 15th century", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 32, - "name": "Damocles Belby", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Order of Merlin", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [6] - }, - { - "id": 33, - "name": "Marcus Belby", - "birth": "between 1 September 1978 and 31 August 1979, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Dark", - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Ravenclaw", "Slug Club", "Belby family"], - "books_featured_in": [6] - }, - { - "id": 34, - "name": "Marcus Belby's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw (likely)", - "associated_groups": ["Belby family"], - "books_featured_in": [6] - }, - { - "id": 35, - "name": "Humphrey Belcher", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [6] - }, - { - "id": 36, - "name": "Katie Bell's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Bell family"], - "books_featured_in": [6] - }, - { - "id": 37, - "name": "Bem", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Dark", - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Gryffindor", "Dumbledore's Army"], - "books_featured_in": [3, 5] - }, - { - "id": 38, - "name": "Benjamin Hater", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": "Male (likely)", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [3] - }, - { - "id": 39, - "name": "Bernie", - "birth": "Before 1980", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic"], - "books_featured_in": [7] - }, - { - "id": 40, - "name": "Bilius", - "birth": null, - "death": "Between 1 March, 1980 and September, 1993", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Weasley family", "Prewett family"], - "books_featured_in": [3, 7] - }, - { - "id": 41, - "name": "Binky", - "birth": "Early 1990s (possibly)", - "death": "15 October, 1993", - "species": "Rabbit", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Lavender Brown (owner)"], - "books_featured_in": [3] - }, - { - "id": 42, - "name": "Cuthbert Binns", - "birth": null, - "death": "Pre 1970s, Staffroom, Hogwarts Castle", - "species": "Human (formerly)", - "ancestry": null, - "gender": "Male", - "hair_color": "White (balding)", - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Binns family"], - "books_featured_in": [1, 2, 3, 4, 5, 7] - }, - { - "id": 43, - "name": "Dennis Bishop", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Wool's Orphanage"], - "books_featured_in": [6] - }, - { - "id": 44, - "name": "Black Knight", - "birth": null, - "death": null, - "species": "Human (formerly)", - "ancestry": null, - "gender": "Male (likely)", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1] - }, - { - "id": 45, - "name": "Alphard Black", - "birth": "Between 1925 and 1938; Great Britain", - "death": "Between 3 November 1976 and 3 November 1977 (aged 38 - 52)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "House of Black (disowned posthumously)", - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 46, - "name": "Arcturus Black III", - "birth": "1901", - "death": "1991 (aged 89-90)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 47, - "name": "Orion Black", - "birth": "1929", - "death": "1979 (aged 49 - 50)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 48, - "name": "Phineas Nigellus Black", - "birth": "1847", - "death": "1925 (aged 77 - 78)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Dark, shrewd and narrow", - "wand": null, - "patronus": null, - "house": "Hogwarts School of Witchcraft and Wizardry", - "associated_groups": [], - "books_featured_in": [5, 6, 7] - }, - { - "id": 49, - "name": "Regulus Black", - "birth": "1961", - "death": "1979 (aged 18)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [5, 6, 7] - }, - { - "id": 50, - "name": "Sirius Black", - "birth": "3 November, 1959", - "death": "18 June, 1996 (aged 36)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Grey", - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Black family (formerly)", - "Potter family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Marauders", - "Order of the Phoenix" - ], - "books_featured_in": [1, 3, 4, 5, 6, 7] - }, - { - "id": 51, - "name": "Miles Bletchley", - "birth": "c. 1977-1979, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin Quidditch team", - "Bletchley family" - ], - "books_featured_in": [1, 3, 5] - }, - { - "id": 52, - "name": "Bloody Baron", - "birth": "Post 982", - "death": "11th century", - "species": "Human (formerly)", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Slytherin"], - "books_featured_in": [1, 2, 4, 5, 7] - }, - { - "id": 53, - "name": "Stubby Boardman", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["The Hobgoblins"], - "books_featured_in": [5] - }, - { - "id": 54, - "name": "Bob", - "birth": "before 1978", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic", "Department for the Regulation and Control of Magical Creatures"], - "books_featured_in": [5] - }, - { - "id": 55, - "name": "Broderick Bode", - "birth": "Between January 1946 and January 1947", - "death": "Early January 1996", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic", "Department of Mysteries"], - "books_featured_in": [4, 5] - }, - { - "id": 56, - "name": "Bogrod", - "birth": null, - "death": "1 May, 1998", - "species": "Goblin", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Gringotts Wizarding Bank"], - "books_featured_in": [7] - }, - { - "id": 57, - "name": "Lucian Bole", - "birth": "beteween 1 September 1976 and 31 August 1977", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Bole family", "Hogwarts School of Witchcraft and Wizardry", "Slytherin", "Slytherin Quidditch team"], - "books_featured_in": [3, 5] - }, - { - "id": 58, - "name": "Pierre Bonaccord", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["International Confederation of Wizards"], - "books_featured_in": [5] - }, - { - "id": 59, - "name": "Amelia Bones' father", - "birth": null, - "death": "prior to 31 October, 1981", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff (likely)", - "associated_groups": ["Bones family"], - "books_featured_in": [1] - }, - { - "id": 60, - "name": "Edgar Bones", - "birth": null, - "death": "1981", - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Male", - "hair_color": "Reddish-brown", - "eye_color": "Grey", - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "Hufflepuff (possibly)", - "associated_groups": ["Bones family", "Order of the Phoenix"], - "books_featured_in": [1, 5] - }, - { - "id": 61, - "name": "Mungo Bonham", - "birth": "1560", - "death": "1659 (aged 98-99)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["St Mungo's Hospital for Magical Maladies and Injuries"], - "books_featured_in": [5, 6] - }, - { - "id": 62, - "name": "Terry Boot", - "birth": "between 1 September 1979 and 21 April 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [ - "Boot family", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Duelling Club", - "Dumbledore's Army" - ], - "books_featured_in": [1, 2, 5, 6, 7] - }, - { - "id": 63, - "name": "Libatius Borage", - "birth": "Pre 1909, South America", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Castelobruxo"], - "books_featured_in": [6] - }, - { - "id": 64, - "name": "Borgin", - "birth": "Between Pre-1846 and 1975", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood (most likely)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Borgin and Burkes"], - "books_featured_in": [2, 6, 7] - }, - { - "id": 65, - "name": "Boris the Bewildered", - "birth": null, - "death": "Before 1995", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [4] - }, - { - "id": 66, - "name": "Bozo", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Daily Prophet"], - "books_featured_in": [2, 4] - }, - { - "id": 67, - "name": "Rupert Brookstanton", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [6] - }, - { - "id": 68, - "name": "Lavender Brown's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor (possibly)", - "associated_groups": ["Brown family"], - "books_featured_in": [3] - }, - { - "id": 69, - "name": "Brutus", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["St Brutus's Secure Centre for Incurably Criminal Boys"], - "books_featured_in": [3, 4, 5] - }, - { - "id": 70, - "name": "Frank Bryce", - "birth": "August 1917", - "death": "16 August, 1994 (aged 76)", - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Riddle family (formerly)", - "associated_groups": [], - "books_featured_in": [4, 6] - }, - { - "id": 71, - "name": "Buckbeak", - "birth": "in or before 1993", - "death": null, - "species": "Hippogriff", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": "Orange", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Order of the Phoenix", - "Rubeus Hagrid (owner)", - "Harry Potter (owner)", - "Hermione Granger", - "Sirius Black (owner)", - "Hogwarts School of Witchcraft and Wizardry", - "Dumbledore's Army" - ], - "books_featured_in": [3, 4, 5, 6, 7] - }, - { - "id": 72, - "name": "Caractacus Burke", - "birth": "In or before 1846", - "death": "Likely before 1992 (Unconfirmed if dead)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Borgin and Burkes"], - "books_featured_in": [2, 6, 7] - }, - { - "id": 73, - "name": "Cadogan", - "birth": "Middle Ages,", - "death": "Before 1993", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": "Blackthorn and troll whisker, 9\", combustible (according to legend)", - "patronus": null, - "house": "Gryffindor", - "associated_groups": ["King Arthur", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [3, 4, 5, 7] - }, - { - "id": 74, - "name": "Cadwallader", - "birth": "31 August 1985 or earlier, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": ["Hogwarts", "Hufflepuff Quidditch team", "Hufflepuff"], - "books_featured_in": [6] - }, - { - "id": 75, - "name": "Eddie Carmichael", - "birth": "Between 1 September 1978 and 31 August 1979, (most likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Ravenclaw"], - "books_featured_in": [5] - }, - { - "id": 76, - "name": "Amycus Carrow", - "birth": "Pre 1950s or 1960s", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "None", - "house": null, - "associated_groups": ["Carrow family", "Death Eaters", "Lord Voldemort", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [6, 7] - }, - { - "id": 77, - "name": "Catchpole", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2] - }, - { - "id": 78, - "name": "Mary Cattermole's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 79, - "name": "Alfred Cattermole", - "birth": "c. Between 1987 and 1994 (possibly)", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Squib", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Cattermole family"], - "books_featured_in": [7] - }, - { - "id": 80, - "name": "Reginald Cattermole", - "birth": "Sun in Libra, moon in Virgo", - "death": null, - "species": "Human", - "ancestry": "Pure blood or Half-blood", - "gender": "Male", - "hair_color": "Greyish/Red", - "eye_color": "Green", - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["British Ministry of Magic", "Magical Maintenance Department", "Cattermole family"], - "books_featured_in": [7] - }, - { - "id": 81, - "name": "Owen Cauldwell", - "birth": "between 1 September 1982 and 31 August 1983, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 82, - "name": "Ceremony official", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [6, 7] - }, - { - "id": 83, - "name": "Chambers", - "birth": "on or before 31 August 1983, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Ravenclaw", "Ravenclaw Quidditch team"], - "books_featured_in": [5] - }, - { - "id": 84, - "name": "Cho Chang's father", - "birth": "before 1962 (most likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Chang family"], - "books_featured_in": [5] - }, - { - "id": 85, - "name": "Herbert Chorley", - "birth": "before 1979 (most likely)", - "death": null, - "species": null, - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [6] - }, - { - "id": 86, - "name": "Clive Lundquist", - "birth": "31 August 1982 or earlier", - "death": null, - "species": null, - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Unknown", - "associated_groups": [], - "books_featured_in": [3] - }, - { - "id": 87, - "name": "Connolly", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Irish National Quidditch team"], - "books_featured_in": [4] - }, - { - "id": 88, - "name": "Ritchie Coote", - "birth": "Pre 31 August 1984 (most likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Gryffindor", "Gryffindor Quidditch team"], - "books_featured_in": [6] - }, - { - "id": 89, - "name": "Michael Corner", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Brown", - "wand": null, - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": ["Corner family", "Hogwarts School of Witchcraft and Wizardry", "Ravenclaw", "Dumbledore's Army"], - "books_featured_in": [5, 6, 7] - }, - { - "id": 90, - "name": "Crabbe", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": "Slytherin (likely)", - "associated_groups": ["Crabbe family", "Lord Voldemort", "Death Eaters"], - "books_featured_in": [4, 5, 7] - }, - { - "id": 91, - "name": "Vincent Crabbe", - "birth": "between 2 September 1979 and 1 September 1980", - "death": "2 May, 1998 (aged 17/18)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "None", - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin Quidditch team", - "Inquisitorial Squad", - "Draco Malfoy's gang", - "Crabbe family", - "Lord Voldemort", - "Death Eaters (unofficially)" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 92, - "name": "Colin Creevey", - "birth": "betwen 3 May and 31 August 1981", - "death": "2 May, 1998 (aged 16)", - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Male", - "hair_color": "Mousy", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Creevey family", - "Dumbledore's Army", - "Harry Potter", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [2, 3, 4, 5, 6, 7] - }, - { - "id": 93, - "name": "Dennis Creevey", - "birth": "between 1 September 1982 and 31 August 1983", - "death": null, - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Male", - "hair_color": "Mousy brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": ["Dumbledore's Army", "Creevey family", "Hogwarts School of Witchcraft and Wizardry", "Gryffindor"], - "books_featured_in": [4, 5, 6] - }, - { - "id": 94, - "name": "Creevey brothers' father", - "birth": "Before 1963 (most likely)", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Creevey family"], - "books_featured_in": [2] - }, - { - "id": 95, - "name": "Cresswell brothers", - "birth": null, - "death": null, - "species": "Humans", - "ancestry": "Half-bloods or Squibs", - "gender": "Males", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Cresswell family"], - "books_featured_in": [7] - }, - { - "id": 96, - "name": "Dirk Cresswell", - "birth": "between 1 September 1960 and 31 August 1961", - "death": "March, 1998", - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Ministry of Magic", - "Goblin Liaison Office", - "Hogwarts School of Witchcraft and Wizardry", - "Slug Club" - ], - "books_featured_in": [6, 7] - }, - { - "id": 97, - "name": "Saul Croaker", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic", "Department of Mysteries"], - "books_featured_in": [4] - }, - { - "id": 98, - "name": "Crookshanks", - "birth": "Pre 1993", - "death": null, - "species": "Half-Kneazle", - "ancestry": null, - "gender": "Male", - "hair_color": "Ginger", - "eye_color": "Yellow", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Magical Menagerie", "Magical Menagerie saleswoman", "Hermione Granger (owner)", "Sirius Black"], - "books_featured_in": [3, 4, 5, 6, 7] - }, - { - "id": 99, - "name": "Bartemius Crouch Junior", - "birth": "c. 1962", - "death": "c.1995-1996(aged 33 - 34) (received the Dementor's Kiss on 24 June, 1995)", - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Straw blonde", - "eye_color": null, - "wand": "Harry Potter's wand (briefly)", - "patronus": "None", - "house": null, - "associated_groups": ["Lord Voldemort", "Death Eaters", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [4, 5, 6] - }, - { - "id": 100, - "name": "Bartemius Crouch Senior", - "birth": null, - "death": "27 May, 1995", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Grey, formerly Dark", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Department of Magical Law Enforcement", - "Department of International Magical Cooperation" - ], - "books_featured_in": [4, 5, 6, 7] - }, - { - "id": 101, - "name": "Bartemius Crouch Snr's grandfather", - "birth": null, - "death": "Before 1995", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Crouch family"], - "books_featured_in": [4] - }, - { - "id": 102, - "name": "Gideon Crumb", - "birth": "1975", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Weird Sisters"], - "books_featured_in": [4] - }, - { - "id": 103, - "name": "Barnabas Cuffe", - "birth": "between 1914 and 1970,", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Daily Prophet", "Slug Club"], - "books_featured_in": [6] - }, - { - "id": 104, - "name": "Hector Dagworth-Granger", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Most Extraordinary Society of Potioneers"], - "books_featured_in": [6] - }, - { - "id": 105, - "name": "Roger Davies", - "birth": "between 1 September 1977 and 31 August 1978 (likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Dark", - "eye_color": "Dark", - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": ["Davies family", "Hogwarts School of Witchcraft and Wizardry", "Ravenclaw", "Ravenclaw Quidditch team"], - "books_featured_in": [3, 4, 5, 7] - }, - { - "id": 106, - "name": "John Dawlish", - "birth": "Between 1877 and 1975,", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic", "Auror Office", "Death Eaters (indirectly)", "Dawlish family"], - "books_featured_in": [5, 6, 7] - }, - { - "id": 107, - "name": "Caradoc Dearborn", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Dearborn family", "Order of the Phoenix"], - "books_featured_in": [5] - }, - { - "id": 108, - "name": "Squat, wheezy man", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": ["Death Eaters", "Lord Voldemort"], - "books_featured_in": [7] - }, - { - "id": 109, - "name": "Delacour sisters' father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Delacour family"], - "books_featured_in": [7] - }, - { - "id": 110, - "name": "Patrick Delaney-Podmore", - "birth": null, - "death": "pre 1993", - "species": "Ghost", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Headless Hunt", "Podmore family", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [2, 7] - }, - { - "id": 111, - "name": "Dennis", - "birth": "c. 1980", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Dudley Dursley's gang"], - "books_featured_in": [1, 5] - }, - { - "id": 112, - "name": "Derek", - "birth": "c. 1981-1982", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [3] - }, - { - "id": 113, - "name": "Peregrine Derrick", - "birth": "between 1 September 1976 and 31 August 1977, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Slytherin", "Slytherin Quidditch team"], - "books_featured_in": [3, 5] - }, - { - "id": 114, - "name": "Barnabas Deverill", - "birth": "17th century (most likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown wand", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 115, - "name": "Dedalus Diggle", - "birth": "Pre 1964", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Diggle family", "Order of the Phoenix", "Advance Guard", "Harry Potter"], - "books_featured_in": [1, 5, 7] - }, - { - "id": 116, - "name": "Amos Diggory", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (likely)", - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Department for the Regulation and Control of Magical Creatures", - "Diggory family", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [4] - }, - { - "id": 117, - "name": "Cedric Diggory", - "birth": "between 1 September and 30 October 1977", - "death": "24 June, 1995 (aged 17)", - "species": "Human", - "ancestry": "Pure-blood (possibly)", - "gender": "Male", - "hair_color": "Dark", - "eye_color": "Grey", - "wand": "12¼\", Ash, unicorn hair", - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Diggory family", - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff", - "Hufflepuff Quidditch team", - "Circle of Khanna", - "Death Eaters (alternate timeline)" - ], - "books_featured_in": [3, 4, 5, 6, 7] - }, - { - "id": 118, - "name": "Ivor Dillonsby", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 119, - "name": "Vasily Dimitrov", - "birth": "before 1977, Bulgaria (possibly)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Bulgarian National Quidditch team"], - "books_featured_in": [4] - }, - { - "id": 120, - "name": "Harold Dingle", - "birth": "Late 1970s or early 1980s", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [5] - }, - { - "id": 121, - "name": "Armando Dippet", - "birth": "October, 1637", - "death": "late 1992 (aged 355)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown (youth)", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [2, 5, 6, 7] - }, - { - "id": 122, - "name": "Dishevelled Wizard", - "birth": "Prior to 1993", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Knight Bus"], - "books_featured_in": [3] - }, - { - "id": 123, - "name": "Dobby", - "birth": "28 June, unknown year", - "death": "Late March, 1998", - "species": "House-elf", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Malfoy family (formerly)", - "Harry Potter", - "Ronald Weasley", - "Hermione Granger", - "Dumbledore's Army", - "Order of the Phoenix", - "Hogwarts School of Witchcraft and Wizardry", - "S.P.E.W." - ], - "books_featured_in": [2, 3, 4, 5, 6, 7] - }, - { - "id": 124, - "name": "Elphias Doge", - "birth": "Between 1 September 1880 and 31 August 1881,", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Silver", - "eye_color": "Grey/Blue", - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Order of the Phoenix", - "Advance Guard", - "British Ministry of Magic", - "Wizengamot", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [5, 7] - }, - { - "id": 125, - "name": "Antonin Dolohov", - "birth": "pre 1950", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": ["Death Eaters", "Lord Voldemort"], - "books_featured_in": [4, 5, 6, 7] - }, - { - "id": 126, - "name": "Double-ended-newt wizard", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Magical Menagerie"], - "books_featured_in": [3] - }, - { - "id": 127, - "name": "Dragon keeper", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Romanian Dragon Sanctuary"], - "books_featured_in": [4] - }, - { - "id": 128, - "name": "Driving test examiner", - "birth": "c. 1996 or earlier", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 129, - "name": "Dudley", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Half-blood or pure-blood (possibly)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 130, - "name": "Kirley Duke", - "birth": "1971", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Weird Sisters", "McCormack family", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [4] - }, - { - "id": 131, - "name": "Aberforth Dumbledore", - "birth": "between 1 September 1883 and 31 August 1884", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Grey", - "eye_color": "Bright blue", - "wand": null, - "patronus": "Goat", - "house": null, - "associated_groups": [ - "Hog's Head Inn", - "Order of the Phoenix", - "Dumbledore family", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [4, 5, 6, 7] - }, - { - "id": 132, - "name": "Percival Dumbledore", - "birth": "Before 1864", - "death": "After 1890", - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Dumbledore family"], - "books_featured_in": [7] - }, - { - "id": 133, - "name": "Dudley Dursley", - "birth": "23 June 1980", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": "Blond", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Dursley family", "Evans family", "Smeltings Academy", "His gang (formerly)"], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 134, - "name": "Vernon Dursley", - "birth": "Pre 1954", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Dursley family", "Grunnings"], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 135, - "name": "Marietta Edgecombe's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Edgecombe family"], - "books_featured_in": [5] - }, - { - "id": 136, - "name": "Egbert the Egregious", - "birth": "Middle Ages", - "death": "Middle Ages", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 137, - "name": "Elfric the Eager", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 138, - "name": "Emeric the Evil", - "birth": "Middle Ages", - "death": "Middle Ages", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown wand", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1, 7] - }, - { - "id": 139, - "name": "Errol", - "birth": "Before 1984", - "death": null, - "species": "Great grey owl", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Weasley family (owners)"], - "books_featured_in": [2, 3, 4] - }, - { - "id": 140, - "name": "Mark Evans", - "birth": "c. 1985", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 141, - "name": "Evans sisters' father", - "birth": null, - "death": "Between 1 September 1971 and 31 October 1981", - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Evans family"], - "books_featured_in": [1, 7] - }, - { - "id": 142, - "name": "Everard", - "birth": null, - "death": "In or before 1995", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [5, 6] - }, - { - "id": 143, - "name": "Fallen Fifty", - "birth": null, - "death": "2 May, 1998", - "species": "Humans", - "ancestry": null, - "gender": "Females, Males", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Order of the Phoenix", - "Harry Potter", - "Dumbledore's Army" - ], - "books_featured_in": [7] - }, - { - "id": 144, - "name": "Fang", - "birth": "c. 1984", - "death": null, - "species": "Boarhound", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Rubeus Hagrid"], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 145, - "name": "Fat Friar", - "birth": "10th century", - "death": "Pre 1988", - "species": "Human (formerly)", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Hufflepuff", "Catholic Church (formerly)"], - "books_featured_in": [1, 2, 4, 5, 6, 7] - }, - { - "id": 146, - "name": "Father Christmas", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2, 4, 7] - }, - { - "id": 147, - "name": "Fawkes", - "birth": "Before 1938", - "death": "Immortal. Dies and is reborn from the ashes. Death dates include:", - "species": "Phoenix", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Albus Dumbledore", "Harry Potter", "Order of the Phoenix"], - "books_featured_in": [1, 2, 4, 5, 6, 7] - }, - { - "id": 148, - "name": "Benjy Fenwick", - "birth": null, - "death": "1981", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Fenwick family", "Order of the Phoenix"], - "books_featured_in": [5] - }, - { - "id": 149, - "name": "Fergus", - "birth": "Before 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (possibly)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Ireland", "Finnigan family"], - "books_featured_in": [6] - }, - { - "id": 150, - "name": "Argus Filch", - "birth": "Pre 1951", - "death": null, - "species": "Human", - "ancestry": "Squib", - "gender": "Male", - "hair_color": "Grey (balding)", - "eye_color": "Pale", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Inquisitorial Squad (formerly)", "Mrs Norris"], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 151, - "name": "Justin Finch-Fletchley", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": "Hufflepuff", - "associated_groups": [ - "Finch-Fletchley family", - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff", - "Dumbledore's Army" - ], - "books_featured_in": [1, 2, 4, 5] - }, - { - "id": 152, - "name": "Barnabus Finkley", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Barnabus Finkley Prize for Exceptional Spell-Casting"], - "books_featured_in": [7] - }, - { - "id": 153, - "name": "Seamus Finnigan's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Finnigan family"], - "books_featured_in": [1] - }, - { - "id": 154, - "name": "Seamus Finnigan", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Sandy", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Fox", - "house": "Gryffindor", - "associated_groups": ["Dumbledore's Army", "Hogwarts School of Witchcraft and Wizardry", "Gryffindor", "Finnigan family"], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 155, - "name": "Firenze", - "birth": null, - "death": null, - "species": "Centaur", - "ancestry": null, - "gender": "Male", - "hair_color": "White-blond", - "eye_color": "Astonishingly blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Forbidden Forest Centaur colony", - "Hogwarts School of Witchcraft and Wizardry", - "Order of the Phoenix (during the Battle of Hogwarts)", - "Dumbledore's Army (during the Battle of Hogwarts)" - ], - "books_featured_in": [1, 5, 6, 7] - }, - { - "id": 156, - "name": "Nicolas Flamel", - "birth": "Between 1300 and 1326", - "death": "Between 1992 and 1996 (aged between 665 and 696)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": "Dark", - "wand": "Unknown length, wood and core", - "patronus": null, - "house": null, - "associated_groups": ["Beauxbatons Academy of Magic", "Albus Dumbledore", "Flamel family"], - "books_featured_in": [1, 7] - }, - { - "id": 157, - "name": "Angus Fleet", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2] - }, - { - "id": 158, - "name": "Mundungus Fletcher", - "birth": "Before 1962, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Ginger", - "eye_color": "Brown", - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Unknown", - "associated_groups": [ - "Order of the Phoenix", - "Albus Dumbledore", - "Harry Potter", - "Fletcher family", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [2, 4, 5, 6, 7] - }, - { - "id": 159, - "name": "Marcus Flint", - "birth": "between 1 September 1975 and 31 August 1976", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (possibly)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Flint family", "Hogwarts School of Witchcraft and Wizardry", "Slytherin", "Slytherin Quidditch team"], - "books_featured_in": [1, 2, 3] - }, - { - "id": 160, - "name": "Filius Flitwick", - "birth": "17 October 1958 or earlier", - "death": null, - "species": "Human (Goblin ancestry)", - "ancestry": "Part-Goblin", - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Frog Choir", - "Flitwick family", - "Order of the Phoenix (during the Battle of the Astronomy Tower and the Battle of Hogwarts", - "Dumbledore's Army (during the Battle of the Astronomy Tower and the Battle of Hogwarts" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 161, - "name": "Florence's boyfriend", - "birth": "1950s - 1960s, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [4] - }, - { - "id": 162, - "name": "Fluffy", - "birth": "Pre 1991", - "death": null, - "species": "Three-headed dog", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Rubeus Hagrid", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1, 2, 4] - }, - { - "id": 163, - "name": "Ambrosius Flume", - "birth": "between 1914 and 1970,", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Bald", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Slug Club", "Honeydukes"], - "books_featured_in": [3, 6, 7] - }, - { - "id": 164, - "name": "Dexter Fortescue", - "birth": null, - "death": "After 1707, and before 1995", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Fortescue family"], - "books_featured_in": [5, 7] - }, - { - "id": 165, - "name": "Florean Fortescue", - "birth": null, - "death": "1996", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Fortescue family", "Florean Fortescue's Ice Cream Parlour"], - "books_featured_in": [3, 6] - }, - { - "id": 166, - "name": "Foul-smelling Snatcher", - "birth": "Before 1981", - "death": null, - "species": "Part-troll human (possibly)", - "ancestry": "Pure or Half-blood (most likely)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "10\", blackthorn, unknown core materials (formerly)", - "patronus": null, - "house": null, - "associated_groups": ["Snatchers"], - "books_featured_in": [7] - }, - { - "id": 167, - "name": "Fubster", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [3] - }, - { - "id": 168, - "name": "Cornelius Fudge", - "birth": "Pre 1964", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood (most likely)", - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Order of Merlin", - "British Ministry of Magic", - "Department of Magical Accidents and Catastrophes", - "Wizengamot", - "Fudge family", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 169, - "name": "Ulick Gamp", - "birth": "in or before 1690 (most likely)", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Wizengamot", "British Ministry of Magic", "British Government", "Gamp family"], - "books_featured_in": [6] - }, - { - "id": 170, - "name": "Marvolo Gaunt", - "birth": "Pre 1890", - "death": "Between 1925 and 1928", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Grey", - "eye_color": "Bright brown", - "wand": null, - "patronus": null, - "house": "House of Gaunt", - "associated_groups": [], - "books_featured_in": [2, 6, 7] - }, - { - "id": 171, - "name": "Morfin Gaunt", - "birth": "c. 1900", - "death": "pre 1996", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Dark", - "eye_color": "Dark", - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "House of Gaunt", - "associated_groups": [], - "books_featured_in": [6, 7] - }, - { - "id": 172, - "name": "Portly ghost", - "birth": null, - "death": "Before 1992", - "species": "Human (formerly)", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2] - }, - { - "id": 173, - "name": "Gibbon", - "birth": null, - "death": "30 June, 1997", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": ["Lord Voldemort", "Death Eaters"], - "books_featured_in": [6] - }, - { - "id": 175, - "name": "Godelot", - "birth": "Middle Ages", - "death": "Middle Ages", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown wand", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 176, - "name": "Godfrey", - "birth": null, - "death": "1978 or earlier", - "species": "Human (formerly)", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [3] - }, - { - "id": 177, - "name": "Godric's Hollow Muggle boy", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 178, - "name": "Anthony Goldstein", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Blonde", - "eye_color": "Grey", - "wand": null, - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": ["Goldstein family", "Hogwarts School of Witchcraft and Wizardry", "Ravenclaw", "Dumbledore's Army"], - "books_featured_in": [5, 7] - }, - { - "id": 179, - "name": "Golgomath", - "birth": "Before 1995", - "death": null, - "species": "Giant", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Giant colony", "Lord Voldemort", "Death Eaters"], - "books_featured_in": [5] - }, - { - "id": 180, - "name": "Gordon", - "birth": "c. 1979 or 1980", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Dudley Dursley's gang"], - "books_featured_in": [1, 5] - }, - { - "id": 182, - "name": "Dragomir Gorgovitch", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Chudley Cannons"], - "books_featured_in": [7] - }, - { - "id": 183, - "name": "Gorilla at the Zoo", - "birth": null, - "death": null, - "species": "Gorilla", - "ancestry": null, - "gender": null, - "hair_color": "Black", - "eye_color": "Dark", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 184, - "name": "Gornuk", - "birth": null, - "death": "1998", - "species": "Goblin", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Gringotts Wizarding Bank"], - "books_featured_in": [7] - }, - { - "id": 185, - "name": "Goyle", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": "Slytherin (possibly)", - "associated_groups": ["Goyle family", "Lord Voldemort", "Death Eaters"], - "books_featured_in": [4] - }, - { - "id": 186, - "name": "Gregory Goyle", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "None", - "house": "Slytherin", - "associated_groups": [ - "Goyle family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin Quidditch team", - "Inquisitorial Squad", - "Draco Malfoy's gang (formerly)", - "Lord Voldemort", - "Death Eaters (unofficially)" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 187, - "name": "Hermione Granger's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Granger family"], - "books_featured_in": [1, 2, 3, 5, 7] - }, - { - "id": 188, - "name": "Merton Graves", - "birth": "1978", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["The Weird Sisters", "Graves family"], - "books_featured_in": [4] - }, - { - "id": 189, - "name": "Grawp", - "birth": "Post 1931", - "death": null, - "species": "Giant", - "ancestry": "Giant", - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Brown-green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hagrid family", "Order of the Phoenix (during the Battle of Hogwarts)"], - "books_featured_in": [5, 6, 7] - }, - { - "id": 190, - "name": "Grawp's father", - "birth": null, - "death": null, - "species": "Giant", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 191, - "name": "Greek man", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Fluffy"], - "books_featured_in": [1] - }, - { - "id": 192, - "name": "Mykew Gregorovitch", - "birth": "In or before 1909", - "death": "2 September, 1997, Gregorovitch Zauberstäbe", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": "Gregorovitch Zauberstäbe", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [], - "books_featured_in": [4, 7] - }, - { - "id": 193, - "name": "Gregory the Smarmy", - "birth": "12th century or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Bald (Brown eyebrows)", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1, 5] - }, - { - "id": 194, - "name": "Fenrir Greyback", - "birth": "Pre 1945", - "death": null, - "species": "Werewolf (formerly Human)", - "ancestry": null, - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "None", - "house": null, - "associated_groups": ["Lord Voldemort", "Death Eaters (unofficially)", "Snatchers", "Werewolf army"], - "books_featured_in": [3, 6, 7] - }, - { - "id": 195, - "name": "Gellert Grindelwald", - "birth": "Between summer 1882 and summer 1883", - "death": "March, 1998 (aged around 115)", - "species": "Human (Seer)", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": "Blue", - "wand": "Unknown wood, core material and length", - "patronus": null, - "house": null, - "associated_groups": ["The Alliance", "Acolytes", "Durmstrang Institute"], - "books_featured_in": [1, 7] - }, - { - "id": 196, - "name": "Gringotts Guards", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 197, - "name": "Gringotts Head Goblin", - "birth": null, - "death": null, - "species": "Goblin", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Gringotts Wizarding Bank"], - "books_featured_in": [1] - }, - { - "id": 198, - "name": "Griphook", - "birth": "Pre-1990", - "death": "1 May, 1998", - "species": "Goblin", - "ancestry": null, - "gender": "Male", - "hair_color": "Silver", - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Gringotts Wizarding Bank"], - "books_featured_in": [1, 7] - }, - { - "id": 199, - "name": "Edmund Grubb", - "birth": null, - "death": "c. 1837–1901", - "species": "Human (formerly)", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1] - }, - { - "id": 200, - "name": "Grubby-looking St Mungo's patient", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Magical to unknown extent", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["St Mungo's Hospital for Magical Maladies and Injuries"], - "books_featured_in": [5] - }, - { - "id": 201, - "name": "Alberic Grunnion", - "birth": "1803", - "death": "1882 (aged 78-79)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 202, - "name": "Godric Gryffindor", - "birth": "Pre 976", - "death": "11th century (possibly)", - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": "Green", - "wand": null, - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Gryffindor"], - "books_featured_in": [1, 2, 5, 7] - }, - { - "id": 203, - "name": "Davey Gudgeon", - "birth": "c. 1960s", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Gudgeon family"], - "books_featured_in": [3] - }, - { - "id": 204, - "name": "Rubeus Hagrid's father", - "birth": null, - "death": "Between 1 September 1941 and 31 August 1942", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hagrid family"], - "books_featured_in": [4, 5, 6] - }, - { - "id": 205, - "name": "Rubeus Hagrid", - "birth": "6 December 1928", - "death": null, - "species": "Half-Human/Half-Giant", - "ancestry": "Part-Human (Half-giant)", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Black", - "wand": "16\", Oak, unknown core", - "patronus": "None", - "house": "Gryffindor", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Order of the Phoenix", - "Hagrid family", - "Albus Dumbledore", - "Harry Potter" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 206, - "name": "Ciceron Harkiss", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [6] - }, - { - "id": 207, - "name": "Harper", - "birth": "between 1 September 1980 and 31 August 1981, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": "Pure-blood (most likely)", - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Harper family", "Hogwarts School of Witchcraft and Wizardry", "Slytherin", "Slytherin Quidditch team"], - "books_featured_in": [6] - }, - { - "id": 208, - "name": "Warty Harris", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 209, - "name": "Heady", - "birth": null, - "death": null, - "species": "Shrunken Head", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Knockturn Alley"], - "books_featured_in": [2] - }, - { - "id": 210, - "name": "Hereward", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Half-blood or pure-blood (possibly)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown wand", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 211, - "name": "Hermes", - "birth": "Before 1991", - "death": null, - "species": "Screech owl", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Percy Weasley (owner)"], - "books_featured_in": [1, 2, 3, 4, 5] - }, - { - "id": 212, - "name": "Bertie Higgs", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [6] - }, - { - "id": 213, - "name": "Terence Higgs", - "birth": "31 August 1979 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Higgs family", "Hogwarts School of Witchcraft and Wizardry", "Slytherin", "Slytherin Quidditch team"], - "books_featured_in": [1] - }, - { - "id": 214, - "name": "Oakden Hobday", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 215, - "name": "Hogwarts Express conductor", - "birth": "c. 1920s-1950s", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts Express crew", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1] - }, - { - "id": 216, - "name": "Hogwarts school mice", - "birth": "Before 1994", - "death": null, - "species": "Mice", - "ancestry": null, - "gender": "Males and females", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Transfiguration department", "Minerva McGonagall"], - "books_featured_in": [5] - }, - { - "id": 217, - "name": "Phillipus von Hohenheim", - "birth": "1493", - "death": "1541 (aged 47-48)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1, 5] - }, - { - "id": 218, - "name": "Geoffrey Hooper", - "birth": "c. Pre 31 August 1983", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": ["Hooper family", "Hogwarts School of Witchcraft and Wizardry", "Gryffindor"], - "books_featured_in": [5] - }, - { - "id": 219, - "name": "Olive Hornby's brother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 220, - "name": "House of Black house-elves", - "birth": "Varied", - "death": "Varied; between 1850 and 1985", - "species": "House-elves", - "ancestry": null, - "gender": "Males", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 221, - "name": "Inigo Imago", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 222, - "name": "Joey Jenkins", - "birth": "In or before 1977", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Chudley Cannons", "Jenkins family"], - "books_featured_in": [4] - }, - { - "id": 223, - "name": "Arsenius Jigger", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Dark", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1] - }, - { - "id": 224, - "name": "Lee Jordan's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor (likely)", - "associated_groups": ["Jordan family"], - "books_featured_in": [4] - }, - { - "id": 225, - "name": "Lee Jordan", - "birth": "Between 1 September 1977 and 31 August 1978", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Black (dreadlocks)", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Jordan family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Dumbledore's Army", - "Order of the Phoenix", - "Potterwatch" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 226, - "name": "Jugson", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": ["Death Eaters", "Lord Voldemort"], - "books_featured_in": [5] - }, - { - "id": 227, - "name": "Karkaroff’s Aide", - "birth": "Before October 1977", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Hazel", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Durmstrang Institute", "Igor Karkaroff (formerly)"], - "books_featured_in": [4] - }, - { - "id": 228, - "name": "Igor Karkaroff", - "birth": "pre 1965", - "death": "24 June, 1995 – 31 July, 1996", - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Silver (formerly black)", - "eye_color": "Blue", - "wand": "Unknown length, wood and core", - "patronus": "None", - "house": null, - "associated_groups": ["Death Eaters (formerly)", "Lord Voldemort (formerly)", "Durmstrang Institute (formerly)"], - "books_featured_in": [4, 5, 6, 7] - }, - { - "id": 229, - "name": "Karkus", - "birth": null, - "death": "1995", - "species": "Giant", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 230, - "name": "Karl H.", - "birth": "Before 1993", - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [3] - }, - { - "id": 231, - "name": "Silvanus Kettleburn", - "birth": "22 November, before 1927[citation needed]", - "death": "Between 2 May, 1998 and 22 November, 2014", - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Silver", - "eye_color": "Brown", - "wand": "Chestnut and phoenix feather, 11½\", whippy", - "patronus": null, - "house": "Hufflepuff", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Hufflepuff", "Kettleburn family"], - "books_featured_in": [3] - }, - { - "id": 232, - "name": "Kevin", - "birth": "c. 1992", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Kevin's family"], - "books_featured_in": [4] - }, - { - "id": 233, - "name": "Kevin's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core materials", - "patronus": null, - "house": null, - "associated_groups": ["Kevin's family"], - "books_featured_in": [4] - }, - { - "id": 234, - "name": "King's Cross Station guard", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["King's Cross Station"], - "books_featured_in": [1, 2] - }, - { - "id": 235, - "name": "Andrew Kirke", - "birth": "31 August 1983 or earlierGreat Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Kirke family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team" - ], - "books_featured_in": [5] - }, - { - "id": 236, - "name": "Kreacher", - "birth": "Between 1351 and 1979", - "death": "Between 1 September, 2017 and 2645 (aged 666)", - "species": "House-elf", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "House of Black (formerly)", - "associated_groups": [], - "books_featured_in": [5, 6, 7] - }, - { - "id": 237, - "name": "Viktor Krum's father", - "birth": "In or before 1945 (possibly)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Krum family"], - "books_featured_in": [4] - }, - { - "id": 238, - "name": "Viktor Krum's grandfather", - "birth": null, - "death": "Pre-1945", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Krum family"], - "books_featured_in": [7] - }, - { - "id": 239, - "name": "Viktor Krum", - "birth": "April-August, 1976,", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Dark", - "eye_color": "Dark", - "wand": "10¼\", Hornbeam, dragon heartstring", - "patronus": null, - "house": null, - "associated_groups": [ - "Durmstrang Institute", - "Bulgarian National Quidditch team", - "Krum family", - "Death Eaters (Imperiused)" - ], - "books_featured_in": [4, 5, 6, 7] - }, - { - "id": 240, - "name": "Lachlan the Lanky", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [5] - }, - { - "id": 241, - "name": "Lancelot (Healer)", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["St Mungo's Hospital for Magical Maladies and Injuries", "Prewett family (possibly)"], - "books_featured_in": [7] - }, - { - "id": 242, - "name": "Lestrange", - "birth": "c. 1920s", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Tom Riddle's gang", - "Slug Club", - "Lestrange family" - ], - "books_featured_in": [6] - }, - { - "id": 243, - "name": "Rabastan Lestrange", - "birth": "Before 1964", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": ["Lord Voldemort", "Death Eaters", "Lestrange family"], - "books_featured_in": [4, 5] - }, - { - "id": 244, - "name": "Rodolphus Lestrange", - "birth": "Pre 1964", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Dark", - "eye_color": "Dark", - "wand": null, - "patronus": "None", - "house": "Lord Voldemort", - "associated_groups": [], - "books_featured_in": [4, 5, 7] - }, - { - "id": 245, - "name": "Alexei Levski", - "birth": "before 1977, Bulgaria", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Levski family", "Bulgarian National Quidditch team"], - "books_featured_in": [4] - }, - { - "id": 246, - "name": "Little Hangleton boys", - "birth": "c. 1980s", - "death": null, - "species": "Human", - "ancestry": "Muggles", - "gender": "Males", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 247, - "name": "Little Whinging postman", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 248, - "name": "Livius", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Elder, Thestral tail hair core (possibly)", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 249, - "name": "Dai Llewellyn", - "birth": null, - "death": "Before 1995,", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Caerphilly Catapults"], - "books_featured_in": [5] - }, - { - "id": 250, - "name": "Gilderoy Lockhart", - "birth": "26 January, 1964", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": "Blue", - "wand": "9\", Cherry, dragon heartstring", - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": [ - "Lockhart family", - "Hogwarts School of Witchcraft and Wizardry (formerly)", - "Ravenclaw", - "Ravenclaw Quidditch team", - "Dark Force Defence League (formerly)", - "St Mungo's Hospital for Magical Maladies and Injuries", - "Order of Merlin" - ], - "books_featured_in": [2, 3, 4, 5, 6] - }, - { - "id": 251, - "name": "Frank Longbottom's father", - "birth": "Before 1947", - "death": "Between 1980 and 1995", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Longbottom family"], - "books_featured_in": [5] - }, - { - "id": 252, - "name": "Algie Longbottom", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1, 5] - }, - { - "id": 253, - "name": "Frank Longbottom", - "birth": "c. 1 September 1957 - 31 August 1959 or earlier", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Blonde", - "eye_color": null, - "wand": "Unknown", - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Longbottom family", - "Gryffindor", - "Ministry of Magic (formerly)", - "Auror Office", - "Order of the Phoenix (formerly)" - ], - "books_featured_in": [4, 5, 6, 7] - }, - { - "id": 254, - "name": "Neville Longbottom", - "birth": "30 July, 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": null, - "wand": "Father's wand (formerly)", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Longbottom family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Herbology department", - "Slug Club (briefly)", - "Albus Dumbledore", - "Order of the Phoenix", - "Harry Potter", - "Dumbledore's Army", - "British Ministry of Magic", - "Auror Department (formerly)", - "S.P.E.W.", - "Abbott family" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 255, - "name": "Xenophilius Lovegood", - "birth": "before 1964 (most likely),", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": [ - "Lovegood family", - "The Quibbler", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Order of the Phoenix", - "Harry Potter" - ], - "books_featured_in": [4, 5, 6, 7] - }, - { - "id": 256, - "name": "Loxias", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Elder, Thestral tail hair core", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 257, - "name": "Lyall Lupin", - "birth": "1929", - "death": null, - "species": "Human", - "ancestry": "Half-blood or pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Lupin family", - "Howell family", - "Hogwarts School of Witchcraft and Wizardry", - "British Ministry of Magic", - "Department for the Regulation and Control of Magical Creatures" - ], - "books_featured_in": [3, 6] - }, - { - "id": 258, - "name": "Remus Lupin", - "birth": "10 March, 1960", - "death": "2 May, 1998 (aged 38)", - "species": "Werewolf (formerly Human)", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Light brown flecked with grey", - "eye_color": "Green", - "wand": "10¼\", Cypress, unicorn hair", - "patronus": "Wolf", - "house": "Gryffindor", - "associated_groups": [ - "Lupin family", - "Howell family", - "Tonks family", - "Potter family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Marauders", - "Order of the Phoenix", - "Advance Guard" - ], - "books_featured_in": [3, 4, 5, 6, 7] - }, - { - "id": 259, - "name": "Edward Lupin", - "birth": "April, 1998", - "death": null, - "species": "Human (Metamorphmagus)", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Variable", - "eye_color": "Variable", - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Lupin family", - "Tonks family", - "Potter family", - "Weasley family", - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff" - ], - "books_featured_in": [7] - }, - { - "id": 260, - "name": "Aidan Lynch", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Irish National Quidditch team"], - "books_featured_in": [4] - }, - { - "id": 261, - "name": "Quintius MacBoon", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["MacBoon clan"], - "books_featured_in": [6] - }, - { - "id": 262, - "name": "Ernest Macmillan", - "birth": "Between 22 April 1980 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Boar", - "house": "Hufflepuff", - "associated_groups": ["Macmillan family", "Dumbledore's Army", "Hogwarts School of Witchcraft and Wizardry", "Hufflepuff"], - "books_featured_in": [2, 3, 4, 5, 6, 7] - }, - { - "id": 263, - "name": "Walden Macnair", - "birth": "In or before 1970s", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "None", - "house": null, - "associated_groups": [ - "Death Eaters", - "Lord Voldemort", - "British Ministry of Magic (formerly)", - "Committee for the Disposal of Dangerous Creatures (formerly)" - ], - "books_featured_in": [3, 4, 5, 7] - }, - { - "id": 264, - "name": "Magorian", - "birth": null, - "death": null, - "species": "Centaur", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Forbidden Forest Centaur colony", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [5, 7] - }, - { - "id": 265, - "name": "Malcolm", - "birth": "c. 1980s", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Dudley Dursley's gang"], - "books_featured_in": [1, 5] - }, - { - "id": 266, - "name": "Abraxas Malfoy", - "birth": "before 1936 (most likely), Great Britain or Ireland", - "death": "Pre 2 September, 1996", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Malfoy family", "Hogwarts School of Witchcraft and Wizardry", "Slytherin"], - "books_featured_in": [6] - }, - { - "id": 267, - "name": "Draco Malfoy", - "birth": "5 June, 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Silver-blonde", - "eye_color": "Grey", - "wand": "10\", Hawthorn, unicorn hair (formerly)", - "patronus": "None", - "house": "Malfoy family", - "associated_groups": [], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 268, - "name": "Lucius Malfoy", - "birth": "between 9 September 1953 and 8 September 1954", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "White-blond", - "eye_color": "Grey", - "wand": "Elm and dragon heartstring (formerly)", - "patronus": "None", - "house": "Malfoy family", - "associated_groups": [], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 269, - "name": "Scorpius Malfoy", - "birth": "between 1 September 2005 and 31 August 2006", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "White-blond", - "eye_color": "Grey", - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "Malfoy family", - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 270, - "name": "Marauders", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [3, 4, 5, 6, 7] - }, - { - "id": 271, - "name": "Marius", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Magical to unknown extent", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Gringotts Wizarding Bank"], - "books_featured_in": [7] - }, - { - "id": 272, - "name": "Martin Miggs", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2, 6, 7] - }, - { - "id": 273, - "name": "Mason", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Mason family"], - "books_featured_in": [2] - }, - { - "id": 274, - "name": "Olympe Maxime's father", - "birth": null, - "death": null, - "species": "Human or Giant", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Maxime family"], - "books_featured_in": [4] - }, - { - "id": 275, - "name": "Jim McGuffin", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 276, - "name": "Cormac McLaggen", - "birth": "between 1 September 1978 and 31 August 1979", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "McLaggen family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Slug Club", - "Dumbledore's Army" - ], - "books_featured_in": [6] - }, - { - "id": 277, - "name": "Merlin", - "birth": "c. 982 or later", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": "Unconfirmed length and core, English oak (?) wood", - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Order of Merlin", "Hogwarts School of Witchcraft and Wizardry", "Slytherin", "Court of King Arthur"], - "books_featured_in": [1, 2, 4, 7] - }, - { - "id": 278, - "name": "Eloise Midgen's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood, half-blood or Muggle-born", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor (likely)", - "associated_groups": ["Midgen family"], - "books_featured_in": [6] - }, - { - "id": 279, - "name": "Nicholas de Mimsy-Porpington", - "birth": "Between 1401 and 1475,", - "death": "31 October, 1492 (aged 17- 91)", - "species": "Human (formerly)", - "ancestry": null, - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Henry VII's royal court (formerly)", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Headless Hunt (possibly)" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 280, - "name": "Marcus Minugius", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2] - }, - { - "id": 281, - "name": "Cuthbert Mockridge", - "birth": "before 1976", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Ministry of Magic"], - "books_featured_in": [4] - }, - { - "id": 282, - "name": "Graham Montague's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Montague family"], - "books_featured_in": [5] - }, - { - "id": 283, - "name": "Graham Montague", - "birth": "In or prior to c.1981,", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin Quidditch team", - "Inquisitorial Squad", - "Montague family" - ], - "books_featured_in": [3, 5, 6] - }, - { - "id": 284, - "name": "Montgomery", - "birth": "Between April 1991 and April 1992", - "death": "April 1997 (aged 5)", - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [6] - }, - { - "id": 285, - "name": "Alastor Moody", - "birth": "Pre 1960", - "death": "27 July, 1997", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Grey", - "eye_color": "One dark, one electric blue", - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Unknown", - "associated_groups": [ - "Order of the Phoenix", - "Advance Guard", - "Hogwarts School of Witchcraft and Wizardry", - "British Ministry of Magic", - "Auror Department" - ], - "books_featured_in": [4, 5, 6, 7] - }, - { - "id": 286, - "name": "Mopsus (Potter-era)", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 287, - "name": "Mortlake", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2] - }, - { - "id": 288, - "name": "Hassan Mostafa", - "birth": "Before 1977, (most likely) Egypt", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Bald", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Egypt", "International Association of Quidditch"], - "books_featured_in": [4] - }, - { - "id": 289, - "name": "Mr Paws", - "birth": "Before 1991", - "death": null, - "species": "Part-Kneazle", - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Arabella Figg"], - "books_featured_in": [1] - }, - { - "id": 290, - "name": "Mr Tibbles", - "birth": "before 1991", - "death": null, - "species": "Part-Kneazle cat", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Arabella Figg"], - "books_featured_in": [1, 5] - }, - { - "id": 291, - "name": "Red-haired Muggle boy", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 292, - "name": "Mulciber I", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": ["Lord Voldemort", "Death Eaters"], - "books_featured_in": [6] - }, - { - "id": 293, - "name": "Eric Munch", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic"], - "books_featured_in": [5] - }, - { - "id": 294, - "name": "Nicholas de Mimsy-Porpington's executioner", - "birth": "Before 1492", - "death": "After 1492", - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2] - }, - { - "id": 295, - "name": "Nott", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": ["Nott family", "Hogwarts School of Witchcraft and Wizardry", "Death Eaters", "Lord Voldemort"], - "books_featured_in": [4, 5, 6] - }, - { - "id": 296, - "name": "Theodore Nott", - "birth": "1 September, 1979 – 21 April, 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Nott family", "Hogwarts School of Witchcraft and Wizardry", "Slytherin", "Death Eaters (indirectly)"], - "books_featured_in": [1, 5, 6] - }, - { - "id": 297, - "name": "Oblansk", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Bulgarian Ministry of Magic", "Bulgarian National Quidditch team"], - "books_featured_in": [4] - }, - { - "id": 298, - "name": "Roberts' Obliviator", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Ministry of Magic"], - "books_featured_in": [4] - }, - { - "id": 299, - "name": "Odo", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core materials", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [6, 7] - }, - { - "id": 300, - "name": "Bob Ogden", - "birth": "1908 at the latest", - "death": "Some time before 7 September, 1996", - "species": "Human", - "ancestry": "Half-blood or Pure-blood (likely)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown wood, length and core materials", - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic", "Department of Magical Law Enforcement", "Ogden family"], - "books_featured_in": [6, 7] - }, - { - "id": 301, - "name": "Tiberius Ogden", - "birth": "before 1977", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Wizengamot (formally)", "Ogden family", "Ministry of Magic"], - "books_featured_in": [5] - }, - { - "id": 302, - "name": "Ogg", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [4] - }, - { - "id": 303, - "name": "Garrick Ollivander", - "birth": "25 September, pre 1908", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": "Silvery", - "wand": "Wandmaker", - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": [ - "Ollivander family", - "Ollivanders", - "Harry Potter", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw" - ], - "books_featured_in": [1, 4, 6, 7] - }, - { - "id": 304, - "name": "Painting of sinister-looking monks", - "birth": null, - "death": "Before 1993", - "species": "Human", - "ancestry": null, - "gender": "Males", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [3] - }, - { - "id": 305, - "name": "Patil twins' father", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Patil family"], - "books_featured_in": [6] - }, - { - "id": 306, - "name": "Payne", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 307, - "name": "Jimmy Peakes", - "birth": "between 1 September 1982 and 31 August 1983", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Peakes family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team" - ], - "books_featured_in": [6, 7] - }, - { - "id": 308, - "name": "Arnold Peasegood", - "birth": "1976 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Ministry of Magic"], - "books_featured_in": [4] - }, - { - "id": 309, - "name": "Peeves", - "birth": "Amortal", - "death": "Amortal", - "species": "Poltergeist", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Order of the Phoenix (during the Battle of Hogwarts)", - "Dumbledore's Army (during the Battle of Hogwarts)" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 310, - "name": "Octavius Pepper", - "birth": null, - "death": "Spring, 1997 (possibly)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [6] - }, - { - "id": 311, - "name": "Perkins", - "birth": "Before 1975", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Fluffy white", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic", "Misuse of Muggle Artefacts Office"], - "books_featured_in": [2, 4, 5, 7] - }, - { - "id": 312, - "name": "Peter Pettigrew", - "birth": "between 1 September 1959 and 31 August 1960", - "death": "Late March 1998 (aged 38 -39)", - "species": "Human", - "ancestry": "Half-blood or pure-blood", - "gender": "Male", - "hair_color": "Colourless and balding", - "eye_color": null, - "wand": "Unknown 1st wand", - "patronus": "None", - "house": "Gryffindor", - "associated_groups": [ - "Pettigrew family", - "Weasley family (as Scabbers) (formerly)", - "Hogwarts School of Witchcraft and Wizardry (formerly)", - "Gryffindor", - "Marauders", - "Order of the Phoenix (betrayed)", - "Lord Voldemort", - "Death Eaters", - "R (formerly)" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 313, - "name": "Ignotus Peverell's son", - "birth": "13th century", - "death": "After 18 May, 1292", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Peverell family"], - "books_featured_in": [7] - }, - { - "id": 314, - "name": "Antioch Peverell's enemy", - "birth": null, - "death": "Between 12 July, 1214 and 18 May, 1291", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 315, - "name": "Antioch Peverell", - "birth": "Prior to 12 July, 1214", - "death": "Prior to 19 May, 1292", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": "Unknown length, wood, and core (formerly)", - "patronus": null, - "house": null, - "associated_groups": ["Peverell family"], - "books_featured_in": [7] - }, - { - "id": 316, - "name": "Cadmus Peverell", - "birth": "Prior to 12 July, 1214", - "death": "Prior to 19 May, 1292", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Peverell family", "His fiancée"], - "books_featured_in": [7] - }, - { - "id": 317, - "name": "Ignotus Peverell", - "birth": "12 July, 1214", - "death": "19 May, 1292 (aged 77)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Peverell family"], - "books_featured_in": [7] - }, - { - "id": 318, - "name": "Arkie Philpott", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [6] - }, - { - "id": 319, - "name": "Pigwidgeon", - "birth": "Pre 1994", - "death": null, - "species": "Scops owl", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Ronald Weasley (owner)"], - "books_featured_in": [3, 4, 5, 6, 7] - }, - { - "id": 320, - "name": "Sturgis Podmore", - "birth": "Between 8 September 1956 and 7 September 1957", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Straw-coloured", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Podmore family", "Order of the Phoenix", "Advance Guard"], - "books_featured_in": [5] - }, - { - "id": 321, - "name": "Poliakoff", - "birth": "on or before 30 October 1977", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Durmstrang Institute"], - "books_featured_in": [4] - }, - { - "id": 322, - "name": "Piers Polkiss", - "birth": "c. 1980", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Dudley Dursley"], - "books_featured_in": [1, 5] - }, - { - "id": 323, - "name": "Roddy Pontner", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 324, - "name": "Albus Potter", - "birth": "Between 1 September 2005 and 31 August 2006", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Jet-black", - "eye_color": "Bright green", - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Potter family", "Weasley family", "Hogwarts School of Witchcraft and Wizardry", "Slytherin"], - "books_featured_in": [7] - }, - { - "id": 325, - "name": "Fleamont Potter", - "birth": "Pre-1909", - "death": "c. 1979", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Potter family", - "Peverell family", - "Fleamont family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [1, 5, 7] - }, - { - "id": 326, - "name": "Harry Potter", - "birth": "31 July, 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Jet-black", - "eye_color": "Bottle green", - "wand": "11\", Holly, phoenix feather", - "patronus": "Stag", - "house": "Gryffindor", - "associated_groups": [ - "Potter family", - "Weasley family", - "Albus Dumbledore", - "Dumbledore's Army", - "Order of the Phoenix", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Slug Club", - "British Ministry of Magic", - "Auror Office", - "Department of Magical Law Enforcement", - "S.P.E.W." - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 327, - "name": "James Potter I", - "birth": "27 March, 1960", - "death": "31 October, 1981 (aged 21)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Jet-black", - "eye_color": "Hazel", - "wand": "11\", Mahogany, unknown core", - "patronus": "Stag", - "house": "Gryffindor", - "associated_groups": [ - "Potter family", - "Evans family", - "Hogwarts School of Witchcraft and Wizardry", - "Marauders", - "Gryffindor", - "Gryffindor Quidditch team", - "Order of the Phoenix" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 328, - "name": "James Potter II", - "birth": "Between 1 September 2003 and 31 August 2004", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": ["Potter family", "Weasley family", "Hogwarts School of Witchcraft and Wizardry", "Gryffindor"], - "books_featured_in": [7] - }, - { - "id": 329, - "name": "Ernest Prang", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": ["Knight Bus", "Albus Dumbledore"], - "books_featured_in": [3, 5, 6] - }, - { - "id": 330, - "name": "Prentice", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 331, - "name": "Fabian Prewett", - "birth": null, - "death": "1981", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Prewett family", "Order of the Phoenix"], - "books_featured_in": [1, 5, 7] - }, - { - "id": 332, - "name": "Gideon Prewett", - "birth": null, - "death": "1981", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": "Dark grey", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Prewett family", "Order of the Phoenix"], - "books_featured_in": [5] - }, - { - "id": 333, - "name": "Molly Weasley's father", - "birth": "before 1932 (most likely)", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red (possibly)", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Prewett family"], - "books_featured_in": [1, 5] - }, - { - "id": 334, - "name": "Prime Minister's political opponent", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [6] - }, - { - "id": 335, - "name": "Prime Minister's predecessor", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Great Britain", "British Government"], - "books_featured_in": [6] - }, - { - "id": 336, - "name": "Apollyon Pringle", - "birth": "pre 1944", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [4] - }, - { - "id": 337, - "name": "Graham Pritchard", - "birth": "between 1 September 1982 and 31 August 1983, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Slytherin"], - "books_featured_in": [4] - }, - { - "id": 338, - "name": "Demetrius Prod", - "birth": "Prior to 1992", - "death": "27 November, 1998", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Kwikspell"], - "books_featured_in": [2] - }, - { - "id": 339, - "name": "Ptolemy", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 340, - "name": "Adrian Pucey", - "birth": "between 1 September 1977 and 31 August 1978", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Pucey family", "Hogwarts School of Witchcraft and Wizardry", "Slytherin Quidditch team", "Slytherin"], - "books_featured_in": [1, 2, 3, 5] - }, - { - "id": 341, - "name": "Augustus Pye", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["St Mungo's"], - "books_featured_in": [5] - }, - { - "id": 342, - "name": "Pyrites", - "birth": "Before 1981", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Death Eaters", "Lord Voldemort", "Pyrites family"], - "books_featured_in": [1] - }, - { - "id": 343, - "name": "Argo Pyrites", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Pyrites family"], - "books_featured_in": [1] - }, - { - "id": 344, - "name": "Quigley", - "birth": "before 1977, Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Irish National Quidditch team"], - "books_featured_in": [4] - }, - { - "id": 345, - "name": "Quirinus Quirrell", - "birth": "26 September,1970 or earlier", - "death": "4 June 1992", - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "9\", Alder, unicorn hair, bendy", - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry (formerly)", "Ravenclaw", "Lord Voldemort"], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 346, - "name": "Urquhart Rackharrow", - "birth": "1612", - "death": "1697 (aged 84 - 85)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["St Mungo's Hospital for Magical Maladies and Injuries"], - "books_featured_in": [5] - }, - { - "id": 347, - "name": "Ragnok", - "birth": "Before 1995", - "death": null, - "species": "Goblin", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Gringotts Wizarding Bank"], - "books_featured_in": [5] - }, - { - "id": 348, - "name": "Ragnuk", - "birth": null, - "death": null, - "species": "Goblin", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Goblins"], - "books_featured_in": [7] - }, - { - "id": 349, - "name": "Thomas Riddle", - "birth": "1880", - "death": "August, 1943 (aged 62 - 63)", - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Riddle family"], - "books_featured_in": [4, 6] - }, - { - "id": 350, - "name": "Tom Riddle (Voldemort)", - "birth": "31 December, 1926", - "death": "2 May, 1998 (aged 71)", - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Bald (formerly black)", - "eye_color": "Scarlet (formerly dark brown)", - "wand": "13½\", Yew, phoenix feather core", - "patronus": "None", - "house": "Slytherin", - "associated_groups": [ - "Death Eaters", - "Hogwarts School of Witchcraft and Wizardry (formerly)", - "Slytherin", - "Slug Club", - "British Ministry of Magic (only under his control)", - "Borgin and Burkes" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 351, - "name": "Tom Riddle Senior", - "birth": "1905", - "death": "August, 1943 (aged 37/38)", - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Riddle family"], - "books_featured_in": [2, 4, 5, 6] - }, - { - "id": 352, - "name": "Ripper", - "birth": "c. 1980s", - "death": null, - "species": "Dog (breed: bulldog)", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown and white", - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Marjorie Dursley"], - "books_featured_in": [3, 5] - }, - { - "id": 353, - "name": "Gawain Robards", - "birth": "Pre. 1969", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic", "Department of Magical Law Enforcement", "Auror Office"], - "books_featured_in": [6] - }, - { - "id": 354, - "name": "Roberts", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Roberts family"], - "books_featured_in": [4] - }, - { - "id": 355, - "name": "Roberts children", - "birth": "20th century", - "death": null, - "species": "Humans", - "ancestry": "Muggles", - "gender": "At least one boy", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Roberts family"], - "books_featured_in": [4] - }, - { - "id": 356, - "name": "Romanian vampire", - "birth": "Romania (most likely)", - "death": null, - "species": "Vampire", - "ancestry": null, - "gender": "Male (most likely)", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 357, - "name": "Ronan", - "birth": null, - "death": null, - "species": "Centaur", - "ancestry": null, - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Forbidden Forest Centaur colony", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1, 5, 7] - }, - { - "id": 358, - "name": "Augustus Rookwood", - "birth": "Pre 1964", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Brown/greying", - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": [ - "Death Eaters", - "Lord Voldemort", - "British Ministry of Magic (formerly)", - "Department of Mysteries (formerly)" - ], - "books_featured_in": [4, 5, 7] - }, - { - "id": 359, - "name": "Rosier (male)", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood (likely)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": ["Death Eaters", "Lord Voldemort", "Rosier family"], - "books_featured_in": [6] - }, - { - "id": 360, - "name": "Evan Rosier", - "birth": "Between 1953 and 1966 (most likely)", - "death": "Late 1980 - late 1981", - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": "Slytherin", - "associated_groups": ["Rosier family", "Death Eaters", "Hogwarts School of Witchcraft and Wizardry", "Slytherin"], - "books_featured_in": [4] - }, - { - "id": 361, - "name": "Rowboat owner", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 362, - "name": "Thorfinn Rowle", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": ["Rowle family", "Death Eaters", "Lord Voldemort"], - "books_featured_in": [6, 7] - }, - { - "id": 363, - "name": "Albert Runcorn", - "birth": "Runcorn family", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Dark", - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 364, - "name": "Barry Ryan", - "birth": "before 1977, Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Irish National Quidditch team"], - "books_featured_in": [4, 5] - }, - { - "id": 365, - "name": "Sanguini", - "birth": null, - "death": null, - "species": "Vampire", - "ancestry": null, - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [6] - }, - { - "id": 366, - "name": "Scabior", - "birth": "before 1980 (most likely)", - "death": "2 May, 1998", - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "None", - "house": "Slytherin", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry (formerly)", "Slytherin", "Azkaban", "Snatchers"], - "books_featured_in": [7] - }, - { - "id": 367, - "name": "Newton Scamander", - "birth": "24 February 1897", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Red brown", - "eye_color": "Blue", - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Scamander family", - "Goldstein family", - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff", - "Albus Dumbledore", - "British Ministry of Magic", - "Department for the Regulation and Control of Magical Creatures", - "Beast Division", - "Order of Merlin" - ], - "books_featured_in": [1] - }, - { - "id": 368, - "name": "Scouthibou", - "birth": null, - "death": null, - "species": "Owl", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [4] - }, - { - "id": 369, - "name": "Rufus Scrimgeour", - "birth": "Pre 1968", - "death": "1 August, 1997", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Tawny", - "eye_color": "Yellowish", - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["British Ministry of Magic", "Auror Office"], - "books_featured_in": [5, 6, 7] - }, - { - "id": 370, - "name": "Selwyn", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": "Slytherin (possibly)", - "associated_groups": ["Death Eaters", "Lord Voldemort", "British Ministry of Magic"], - "books_featured_in": [7] - }, - { - "id": 371, - "name": "Kingsley Shacklebolt", - "birth": "In or before 1960", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Bald", - "eye_color": "Black", - "wand": "Unknown length, wood and core", - "patronus": "Lynx", - "house": null, - "associated_groups": [ - "Shacklebolt family", - "British Ministry of Magic", - "Auror Department (formerly)", - "Order of the Phoenix", - "Advance Guard", - "Hogwarts School of Witchcraft and Wizardry", - "Potterwatch" - ], - "books_featured_in": [5, 6, 7] - }, - { - "id": 372, - "name": "Gaspard Shingleton", - "birth": "1959", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Silver", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 373, - "name": "Stanley Shunpike", - "birth": "Between 15 September 1974 and 13 September 1975", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-Blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Knight Bus", "Death Eaters (Imperiused)"], - "books_featured_in": [3, 4, 5, 6, 7] - }, - { - "id": 374, - "name": "Mylor Silvanus", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 375, - "name": "Wilbert Slinkhard", - "birth": "Prior to 1978", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Slinkhard family"], - "books_featured_in": [5] - }, - { - "id": 376, - "name": "Jack Sloper", - "birth": "c. Pre 31 August 1984", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Sloper family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team" - ], - "books_featured_in": [5, 6] - }, - { - "id": 377, - "name": "Horace Slughorn", - "birth": "28 April, between 1882 and 1913", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Bald", - "eye_color": "Gooseberry", - "wand": "10¼\", Cedar, dragon heartstring, fairly flexible", - "patronus": "Non-corporeal", - "house": "Slytherin", - "associated_groups": [ - "Slughorn family", - "Hogwarts School of Witchcraft and Wizardry", - "Slug Club", - "Slytherin", - "Order of the Phoenix (during the Battle of Hogwarts)", - "Dumbledore's Army (during the Battle of Hogwarts)", - "Apothecarium of Horace E. F. Slughorn" - ], - "books_featured_in": [6, 7] - }, - { - "id": 378, - "name": "Salazar Slytherin", - "birth": "Pre 976", - "death": "11th century (most likely)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Grey", - "eye_color": "Grey", - "wand": "Unknown length, snakewood, Basilisk horn", - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Slytherin", "Slytherin family"], - "books_featured_in": [2, 6, 7] - }, - { - "id": 379, - "name": "Hippocrates Smethwyck", - "birth": "before 1977", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["St Mungo's Hospital for Magical Maladies and Injuries", "Smethwyck family"], - "books_featured_in": [5] - }, - { - "id": 380, - "name": "Zacharias Smith's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Smith family"], - "books_featured_in": [6] - }, - { - "id": 381, - "name": "Zacharias Smith", - "birth": "between 1 September 1979 and 2 May 1981 (possibly)", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Smith family", - "Dumbledore's Army (abandoned)", - "Hogwarts School of Witchcraft and Wizardry (abandoned)", - "Hufflepuff", - "Hufflepuff Quidditch team" - ], - "books_featured_in": [5, 6, 7] - }, - { - "id": 382, - "name": "Severus Snape", - "birth": "9 January 1960", - "death": "2 May 1998 (aged 38)", - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Black", - "wand": "Unknown length, wood and core", - "patronus": "Doe", - "house": "Slytherin", - "associated_groups": [ - "Snape family", - "Prince family", - "Lily Potter", - "Harry Potter", - "Albus Dumbledore", - "Order of the Phoenix", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Lord Voldemort (formerly)", - "Death Eaters (defected)" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 383, - "name": "Tobias Snape", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Snape family", "Prince family"], - "books_featured_in": [5, 6, 7] - }, - { - "id": 384, - "name": "Stebbins (Potter-era)", - "birth": "c. 31 August 1980 or earlier, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Hufflepuff"], - "books_featured_in": [4] - }, - { - "id": 385, - "name": "Billy Stubbs", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Wool's orphanage"], - "books_featured_in": [6] - }, - { - "id": 386, - "name": "Stunned Death Eater", - "birth": "1980s or earlier", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (most likely)", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": ["Death Eaters", "Lord Voldemort"], - "books_featured_in": [7] - }, - { - "id": 387, - "name": "Summers", - "birth": "between 1 November 1977 and 31 August 1983,", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Hufflepuff"], - "books_featured_in": [4] - }, - { - "id": 388, - "name": "Surrey milkman", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 389, - "name": "Emeric Switch", - "birth": null, - "death": "Before the 1990s (possibly)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 390, - "name": "Robertus Tallis", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 391, - "name": "Ted", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 392, - "name": "Teffington", - "birth": null, - "death": "1 May, 1998", - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Gringotts Wizarding Bank"], - "books_featured_in": [7] - }, - { - "id": 393, - "name": "Tenebrus", - "birth": "Pre 1980s", - "death": null, - "species": "Thestral", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Rubeus Hagrid"], - "books_featured_in": [5] - }, - { - "id": 394, - "name": "Janus Thickey", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Landlady of the Green Dragon pub"], - "books_featured_in": [5] - }, - { - "id": 395, - "name": "Pius Thicknesse", - "birth": "Pre-1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (most likely)", - "gender": "Male", - "hair_color": "Black and silver", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic", "Department of Magical Law Enforcement", "Death Eaters (Imperiused)"], - "books_featured_in": [7] - }, - { - "id": 396, - "name": "Thomas Vace", - "birth": "Before 1993", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [3] - }, - { - "id": 397, - "name": "Dean Thomas", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Brown", - "wand": "Unknown 1st wand", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Thomas family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Dumbledore's Army" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 398, - "name": "Dean Thomas's father", - "birth": null, - "death": "c. 1980", - "species": "Human", - "ancestry": "Pure-blood or half-blood (likely)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 399, - "name": "Dean Thomas's stepfather", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Thomas family"], - "books_featured_in": [5, 7] - }, - { - "id": 400, - "name": "Orsino Thruston", - "birth": "1976", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Bald", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Weird Sisters"], - "books_featured_in": [4] - }, - { - "id": 401, - "name": "Tiberius", - "birth": "c. 1970 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Slug Club (formerly)", "Ministry of Magic", "McLaggen family"], - "books_featured_in": [6] - }, - { - "id": 402, - "name": "Timothy Butler", - "birth": "31 August 1982 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [3] - }, - { - "id": 403, - "name": "Tofty", - "birth": "Before 1972", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Grey, balding", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Wizarding Examinations Authority"], - "books_featured_in": [5] - }, - { - "id": 404, - "name": "Tom", - "birth": "c. 1920 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Bald", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Leaky Cauldron"], - "books_featured_in": [1, 3, 6, 7] - }, - { - "id": 405, - "name": "Edward Tonks", - "birth": null, - "death": "March, 1998", - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Male", - "hair_color": "Fair", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Tonks family", "Order of the Phoenix (indirectly)"], - "books_featured_in": [5, 7] - }, - { - "id": 406, - "name": "Kenneth Towler", - "birth": "between 1 September 1977 and 31 August 1978 (probably)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Gryffindor"], - "books_featured_in": [5] - }, - { - "id": 407, - "name": "Travers", - "birth": "Pre 1980s", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": ["Travers family", "Death Eaters", "Lord Voldemort", "Death Eater controlled Ministry of Magic"], - "books_featured_in": [4, 7] - }, - { - "id": 408, - "name": "Donaghan Tremlett", - "birth": "1972,", - "death": null, - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["The Weird Sisters", "Tremlett family"], - "books_featured_in": [4, 5, 6] - }, - { - "id": 409, - "name": "Trevor", - "birth": "pre 1991", - "death": null, - "species": "Toad", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Algie (formerly)", "Neville Longbottom", "Frog Choir (formerly)"], - "books_featured_in": [1, 3, 4, 5, 6] - }, - { - "id": 410, - "name": "Quentin Trimble", - "birth": null, - "death": "In or before 1986", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Grey (formerly brown)", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1] - }, - { - "id": 411, - "name": "Troy", - "birth": "before 1977", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Irish National Quidditch team"], - "books_featured_in": [4] - }, - { - "id": 449, - "name": "Wilkie Twycross", - "birth": "Before 1979", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Very fair", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [6] - }, - { - "id": 450, - "name": "Urg the Unclean", - "birth": "c. 18th century", - "death": null, - "species": "Goblin", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Goblinkind"], - "books_featured_in": [4] - }, - { - "id": 451, - "name": "Uric the Oddball", - "birth": "982 or later, Great Britain or Ireland", - "death": "Middle Ages", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Ravenclaw"], - "books_featured_in": [1] - }, - { - "id": 452, - "name": "Urquhart", - "birth": "31 August 1984 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Slytherin Quidditch team"], - "books_featured_in": [6] - }, - { - "id": 453, - "name": "Vaisey", - "birth": "31 August 1984 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Vaisey family", "Hogwarts School of Witchcraft and Wizardry", "Slytherin Quidditch team", "Slytherin"], - "books_featured_in": [6] - }, - { - "id": 454, - "name": "Violet-cloaked wizard", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 455, - "name": "Vindictus Viridian", - "birth": "Pre 1686 (most likely)", - "death": "In or before 1994", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Black (formerly)", - "eye_color": "Dark", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1] - }, - { - "id": 456, - "name": "Ivan Volkov", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Dark", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Bulgarian National Quidditch team"], - "books_featured_in": [4] - }, - { - "id": 457, - "name": "Pyotr Vulchanov", - "birth": "before 1977, Bulgaria", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Bulgarian National Quidditch team", "Vulchanov family"], - "books_featured_in": [4] - }, - { - "id": 458, - "name": "Adalbert Waffling", - "birth": "1899", - "death": "1981 (aged 82)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1, 3, 7] - }, - { - "id": 459, - "name": "Wagga Wagga Werewolf", - "birth": null, - "death": null, - "species": "Werewolf", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2] - }, - { - "id": 460, - "name": "Myron Wagtail", - "birth": "1970", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["The Weird Sisters", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [4, 6] - }, - { - "id": 462, - "name": "Myrtle Warren's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Warren family"], - "books_featured_in": [2] - }, - { - "id": 463, - "name": "Cassius Warrington", - "birth": "Between 1 September and 31 October 1977 (most likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin Quidditch team", - "Inquisitorial Squad" - ], - "books_featured_in": [3, 4, 5] - }, - { - "id": 464, - "name": "Weasley children's cousin", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-Blood or Half-Blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 465, - "name": "Weasley children's uncle", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-Blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 467, - "name": "Weasley family ghoul", - "birth": "Pre 1991", - "death": null, - "species": "Ghoul", - "ancestry": null, - "gender": "Male", - "hair_color": "Yellow", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Weasley family"], - "books_featured_in": [2, 7] - }, - { - "id": 468, - "name": "Molly Weasley's second cousin", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Squib (possibly)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 469, - "name": "Arthur Weasley", - "birth": "6 February, 1950", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": "Green", - "wand": "Unknown length, wood and core", - "patronus": "Weasel", - "house": "Gryffindor", - "associated_groups": [ - "Weasley family", - "Prewett family", - "Potter family", - "Order of the Phoenix", - "British Ministry of Magic", - "Department of Magical Law Enforcement", - "Misuse of Muggle Artefacts Office", - "Office for the Detection and Confiscation of Counterfeit Defensive Spells and Protective Objects", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 470, - "name": "Arthur Weasley's brothers", - "birth": "20th century", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Weasley family"], - "books_featured_in": [7] - }, - { - "id": 471, - "name": "Charles Weasley", - "birth": "12 December, 1972", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": "12\", Ash, unicorn tail hair (formerly)", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Weasley family", - "Prewett family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Circle of Khanna", - "Romanian Dragon Sanctuary", - "Order of the Phoenix" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 472, - "name": "Fred Weasley", - "birth": "1 April, 1978", - "death": "2 May, 1998 (aged 20)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Magpie", - "house": "Gryffindor", - "associated_groups": [ - "Circle of Khanna", - "Dumbledore's Army", - "Order of the Phoenix", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Weasleys' Wizard Wheezes", - "Potterwatch", - "Weasley family", - "Prewett family" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 473, - "name": "George Weasley", - "birth": "1 April, 1978", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Magpie", - "house": "Gryffindor", - "associated_groups": [ - "Circle of Khanna", - "Dumbledore's Army", - "Order of the Phoenix", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Weasley family", - "Prewett family", - "Weasleys' Wizard Wheezes" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 474, - "name": "Hugo Granger-Weasley", - "birth": "1 September 2008 or later,", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Arthur Weasley (paternal grandfather)", - "associated_groups": ["Weasley family", "Granger family", "Prewett family", "Potter family"], - "books_featured_in": [7] - }, - { - "id": 475, - "name": "Percy Weasley", - "birth": "22 August, 1976", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red, greying and balding (as of 2014)", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Weasley family", - "Prewett family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "British Ministry of Magic", - "Department of International Magical Cooperation (formerly)", - "Department of Magical Transportation" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 476, - "name": "Ronald Weasley", - "birth": "1 March, 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": "Blue", - "wand": "12\", Ash, unicorn tail hair", - "patronus": "Jack Russell terrier", - "house": "Gryffindor", - "associated_groups": [ - "Weasley family", - "Granger family", - "Prewett family", - "Potter family", - "Dumbledore's Army", - "Order of the Phoenix", - "British Ministry of Magic", - "Auror Department", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "S.P.E.W.", - "Weasleys' Wizard Wheezes", - "Chudley Cannons" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 477, - "name": "Bill Weasley", - "birth": "29 November, 1970", - "death": null, - "species": "Human (Werewolf traits)", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red, long", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Weasley family", - "Prewett family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Order of the Phoenix", - "Gringotts Wizarding Bank", - "Delacour family", - "Circle of Khanna" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 478, - "name": "Eric Whalley", - "birth": "1920s - 1930s", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Wool's Orphanage"], - "books_featured_in": [6] - }, - { - "id": 479, - "name": "Kevin Whitby", - "birth": "between 1 September 1982 and 31 August 1983, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 480, - "name": "Willy Widdershins", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic"], - "books_featured_in": [5] - }, - { - "id": 481, - "name": "Wilfred the Wistful", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [5] - }, - { - "id": 482, - "name": "Will", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 483, - "name": "Bill Weasley's Brazilian pen-friend", - "birth": "before 1980s, South America", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Castelobruxo"], - "books_featured_in": [4] - }, - { - "id": 484, - "name": "Williamson", - "birth": "Pre. 1973", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic", "Auror Department"], - "books_featured_in": [5] - }, - { - "id": 485, - "name": "Gilbert Wimple", - "birth": "Before 1976", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Committee on Experimental Charms", "Ministry of Magic"], - "books_featured_in": [4] - }, - { - "id": 486, - "name": "Herman Wintringham", - "birth": "c. 1974", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Blonde", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Weird Sisters"], - "books_featured_in": [4] - }, - { - "id": 487, - "name": "Oliver Wood's father", - "birth": "before 1975", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 488, - "name": "Oliver Wood", - "birth": "Between October 1975 - 31 August 1976", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Puddlemere United", - "Order of the Phoenix (during the Battle of Hogwarts)", - "Dumbledore's Army (during the Battle of Hogwarts" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 489, - "name": "Hengist of Woodcroft", - "birth": "982 or later", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": ["Hogsmeade", "Hogwarts School of Witchcraft and Wizardry", "Hufflepuff"], - "books_featured_in": [1] - }, - { - "id": 490, - "name": "Eldred Worple", - "birth": "between 1914 and 1970 or earlier, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Slug Club", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [6] - }, - { - "id": 491, - "name": "Bowman Wright", - "birth": "1492", - "death": "1560 (aged 67-68)", - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Quidditch"], - "books_featured_in": [7] - }, - { - "id": 492, - "name": "Corban Yaxley", - "birth": "Yaxley family", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": "Blue", - "wand": "Unknown length, wood and core", - "patronus": "None", - "house": null, - "associated_groups": [], - "books_featured_in": [6, 7] - }, - { - "id": 493, - "name": "Blaise Zabini", - "birth": "1 September, 1979 – 21 April, 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": "None", - "house": "Slytherin", - "associated_groups": [ - "Zabini family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin Quidditch team", - "Slug Club", - "Draco Malfoy's gang (formerly)" - ], - "books_featured_in": [1, 6] - }, - { - "id": 494, - "name": "Ladislaw Zamojski", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Polish National Quidditch team"], - "books_featured_in": [5] - }, - { - "id": 495, - "name": "Lev Zograf", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Silver", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Bulgarian National Quidditch team"], - "books_featured_in": [4] - }, - { - "id": 496, - "name": "Zoo director", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Zoo"], - "books_featured_in": [1] - }, - { - "id": 497, - "name": "Hannah Abbott's mother", - "birth": null, - "death": "Autumn 1996", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Abbott family"], - "books_featured_in": [6] - }, - { - "id": 498, - "name": "Hannah Abbott", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": "Hufflepuff", - "associated_groups": [ - "Abbott family", - "Longbottom family", - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff", - "Dumbledore's Army", - "Leaky Cauldron" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 499, - "name": "Agnes", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["St Mungo's Hospital for Magical Maladies and Injuries"], - "books_featured_in": [5] - }, - { - "id": 500, - "name": "Alastor Moody's spiders", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 501, - "name": "Babbitty Rabbity", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 502, - "name": "Millicent Bagnold", - "birth": "Before 1963, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": ["British Ministry of Magic", "Hogwarts School of Witchcraft and Wizardry", "Ravenclaw"], - "books_featured_in": [5] - }, - { - "id": 503, - "name": "Bathilda Bagshot", - "birth": "Pre 1873", - "death": "Pre 24 December, 1997 (aged about 124), Godric's Hollow, West Country, England, Great Britain", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Bagshot family", "Dumbledore family", "Potter family", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1, 3, 7] - }, - { - "id": 504, - "name": "Bandon Banshee", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2] - }, - { - "id": 505, - "name": "Baruffio's wife", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 506, - "name": "Hetty Bayliss", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2] - }, - { - "id": 507, - "name": "Katie Bell", - "birth": "between 1 September 1978 and 31 August 1979", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": "Brown", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Bell family", - "Dumbledore's Army", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 508, - "name": "Katie Bell's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [6] - }, - { - "id": 509, - "name": "Amy Benson", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Wool's Orphanage"], - "books_featured_in": [6] - }, - { - "id": 510, - "name": "Araminta Meliflua Black", - "birth": "approx. 1920s - no later than 1978", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Black family"], - "books_featured_in": [5] - }, - { - "id": 511, - "name": "Elladora Black", - "birth": "1850", - "death": "1931 (aged 80 - 81)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 512, - "name": "Walburga Black", - "birth": "1925", - "death": "1985 (aged 59/60)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [5, 7] - }, - { - "id": 513, - "name": "Amelia Bones' mother", - "birth": null, - "death": "Before or during 1981", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff (likely)", - "associated_groups": ["Bones family"], - "books_featured_in": [1] - }, - { - "id": 514, - "name": "Edgar Bones' wife", - "birth": null, - "death": "Second half of 1981", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Bones family"], - "books_featured_in": [5] - }, - { - "id": 515, - "name": "Amelia Bones", - "birth": "pre 12 August, 1978", - "death": "Between the 8th and the 14th of July 1996", - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": "Grey, short", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Ministry of Magic", - "Department of Magical Law Enforcement", - "Wizengamot", - "Order of the Phoenix (indirectly)" - ], - "books_featured_in": [5, 6] - }, - { - "id": 516, - "name": "Susan Bones", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "Hufflepuff", - "associated_groups": ["Bones family", "Hogwarts School of Witchcraft and Wizardry", "Hufflepuff", "Dumbledore's Army"], - "books_featured_in": [1, 5, 6] - }, - { - "id": 517, - "name": "Betty Braithwaite", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Daily Prophet"], - "books_featured_in": [7] - }, - { - "id": 518, - "name": "Eleanor Branstone", - "birth": "between 1 September 1982 and 31 August 1983", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Hufflepuff"], - "books_featured_in": [4] - }, - { - "id": 519, - "name": "Rita Skeeter", - "birth": "between January and November 1951", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (possibly)", - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Daily Prophet", "Witch Weekly", "The Quibbler", "Order of the Phoenix (indirectly)"], - "books_featured_in": [4, 5, 6, 7] - }, - { - "id": 520, - "name": "Mandy Brocklehurst", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": ["Brocklehurst family", "Hogwarts School of Witchcraft and Wizardry", "Ravenclaw"], - "books_featured_in": [1] - }, - { - "id": 521, - "name": "Lavender Brown", - "birth": "between 1 September 1979 and 31 August 1980", - "death": "2 May, 1998 (aged 17/18)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": ["Brown family", "Dumbledore's Army", "Hogwarts School of Witchcraft and Wizardry", "Gryffindor"], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 522, - "name": "Lavender Brown's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor (possibly)", - "associated_groups": ["Brown family"], - "books_featured_in": [3] - }, - { - "id": 523, - "name": "Millicent Bulstrode", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Bulstrode family", "Hogwarts School of Witchcraft and Wizardry", "Slytherin", "Inquisitorial Squad"], - "books_featured_in": [1, 2, 5] - }, - { - "id": 524, - "name": "Rosalind Bungs", - "birth": "pre 1964", - "death": null, - "species": "Human", - "ancestry": "Magical to some extent", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [6] - }, - { - "id": 525, - "name": "Charity Burbage", - "birth": "Before 1976", - "death": "Late July, 1997", - "species": "Human", - "ancestry": "Pure-blood or Half-blood (possibly)", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [7] - }, - { - "id": 526, - "name": "Alecto Carrow", - "birth": "Pre 1981", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core materials", - "patronus": "None", - "house": null, - "associated_groups": ["Death Eaters", "Lord Voldemort", "Carrow family", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [6, 7] - }, - { - "id": 527, - "name": "Greta Catchlove", - "birth": "1960", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Blonde", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2] - }, - { - "id": 528, - "name": "Mary Cattermole's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 529, - "name": "Ellie Cattermole", - "birth": "c. Between 1987 and 1994 (assumed)", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Squib", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Cattermole family"], - "books_featured_in": [7] - }, - { - "id": 530, - "name": "Maisie Cattermole", - "birth": "c. Between 1987 and 1994 (assumed)", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Squib", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Cattermole family"], - "books_featured_in": [7] - }, - { - "id": 531, - "name": "Mary Cattermole", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Female", - "hair_color": "Dark Brown", - "eye_color": "Blue", - "wand": "Cherry, 8¾\", unicorn hair", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Cattermole family"], - "books_featured_in": [7] - }, - { - "id": 532, - "name": "Cecilia", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Riddle family", "Little Hangleton"], - "books_featured_in": [6] - }, - { - "id": 533, - "name": "Cho Chang", - "birth": "between 1 September 1978 and 31 August 1979", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": "Black", - "eye_color": "Dark", - "wand": "Unknown length, wood and core", - "patronus": "Swan", - "house": "Ravenclaw", - "associated_groups": [ - "Chang family", - "Dumbledore's Army", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Ravenclaw Quidditch team" - ], - "books_featured_in": [3, 4, 5, 6, 7] - }, - { - "id": 534, - "name": "Cho Chang's mother", - "birth": "7 September, pre 1962 (most likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw (possibly)", - "associated_groups": ["British Ministry of Magic", "Chang family"], - "books_featured_in": [5] - }, - { - "id": 535, - "name": "Circe", - "birth": "Ancient Greece", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 536, - "name": "Penelope Clearwater", - "birth": "between 1 September 1976 and 31 August 1977", - "death": null, - "species": "Human", - "ancestry": "Muggle-born or half-blood", - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": ["Clearwater family", "Hogwarts School of Witchcraft and Wizardry", "Ravenclaw"], - "books_featured_in": [2, 3, 7] - }, - { - "id": 537, - "name": "Cliodna", - "birth": "Middle Ages, Ireland", - "death": "Middle Ages", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 538, - "name": "Cole", - "birth": "c. 1908", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Wool's Orphanage"], - "books_featured_in": [6] - }, - { - "id": 539, - "name": "Elfrida Cragg", - "birth": null, - "death": "Before 1995", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic"], - "books_featured_in": [5] - }, - { - "id": 540, - "name": "Dirk Cresswell's wife", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood, Half-blood or Squib", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Cresswell family"], - "books_featured_in": [7] - }, - { - "id": 541, - "name": "Doris Crockford", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Magical to unknown extent", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Leaky Cauldron"], - "books_featured_in": [1] - }, - { - "id": 542, - "name": "Bartemius Crouch Jr's mother", - "birth": "pre 1945", - "death": "Shortly after 1981", - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Crouch family"], - "books_featured_in": [4] - }, - { - "id": 543, - "name": "Roger Davies's girlfriend", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Roger Davies"], - "books_featured_in": [5] - }, - { - "id": 544, - "name": "Delacour sisters' cousins", - "birth": null, - "death": null, - "species": "Veela or part-Veela", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Delacour family"], - "books_featured_in": [7] - }, - { - "id": 545, - "name": "Apolline Delacour", - "birth": null, - "death": null, - "species": "Half-Human", - "ancestry": "Half-Veela", - "gender": "Female", - "hair_color": "Blonde", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Delacour family"], - "books_featured_in": [4, 7] - }, - { - "id": 546, - "name": "Apolline Delacour's mother", - "birth": null, - "death": null, - "species": "Veela", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Delacour family"], - "books_featured_in": [4, 7] - }, - { - "id": 547, - "name": "Fleur Delacour", - "birth": "Pre 30 October, 1977", - "death": null, - "species": "1/4 Veela", - "ancestry": "Quarter-Veela", - "gender": "Female", - "hair_color": "Silvery-blonde", - "eye_color": "Dark blue", - "wand": "9½\", Rosewood, veela hair", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Delacour family", - "Weasley family", - "Harry Potter", - "Beauxbatons Academy of Magic", - "Order of the Phoenix", - "Gringotts Wizarding Bank" - ], - "books_featured_in": [4, 5, 6, 7] - }, - { - "id": 548, - "name": "Gabrielle Delacour", - "birth": "between 31 July 1985 and 30 July 1986", - "death": null, - "species": "Human (Veela ancestry)", - "ancestry": "Quarter-Veela", - "gender": "Female", - "hair_color": "Silvery-blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Delacour family", "Beauxbatons Academy of Magic"], - "books_featured_in": [4, 5, 6, 7] - }, - { - "id": 549, - "name": "Dilys Derwent", - "birth": "Pre 1705 (most likely)", - "death": "1768", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Silver", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "St Mungo's Hospital for Magical Maladies and Injuries"], - "books_featured_in": [5, 7] - }, - { - "id": 550, - "name": "Cedric Diggory's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Diggory family"], - "books_featured_in": [4] - }, - { - "id": 551, - "name": "Emma Dobbs", - "birth": "c. 1982-1983", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [4] - }, - { - "id": 552, - "name": "Mary Dorkins", - "birth": "before 1977 (most likely)", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 553, - "name": "Dot", - "birth": "Before 1917", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 554, - "name": "Ariana Dumbledore", - "birth": "c. 1885", - "death": "Late Summer 1899 (aged 14)", - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Dumbledore family"], - "books_featured_in": [7] - }, - { - "id": 555, - "name": "Kendra Dumbledore", - "birth": "between Summer 1850 and Summer 1851", - "death": "Summer 1899 (aged 48), West Country, England, Great Britain", - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Female", - "hair_color": "Jet-black", - "eye_color": "Dark", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Dumbledore family"], - "books_featured_in": [7] - }, - { - "id": 556, - "name": "Durmstrang girl", - "birth": "before 31 October 1977", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Durmstrang Institute"], - "books_featured_in": [4] - }, - { - "id": 557, - "name": "Vernon Dursley's secretary", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Grunnings"], - "books_featured_in": [1] - }, - { - "id": 558, - "name": "Marjorie Dursley", - "birth": "Pre 1954", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Dursley family"], - "books_featured_in": [1, 3, 5] - }, - { - "id": 559, - "name": "Petunia Dursley", - "birth": "Pre 1960", - "death": "Between 1999 and 2020 (aged at least 38)", - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Evans family", "Dursley family"], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 560, - "name": "Edgecombe", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic", "Department of Magical Transportation", "Edgecombe family"], - "books_featured_in": [5] - }, - { - "id": 561, - "name": "Marietta Edgecombe", - "birth": "c. 1978-1982", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": "Reddish-blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Dumbledore's Army (betrayed)", - "British Ministry of Magic", - "Edgecombe family" - ], - "books_featured_in": [5, 6] - }, - { - "id": 562, - "name": "Enid Longbottom", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 563, - "name": "Evans sisters' mother", - "birth": null, - "death": "Between 1 September 1971 and 31 October 1981", - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Evans family"], - "books_featured_in": [1, 7] - }, - { - "id": 565, - "name": "Fat Lady", - "birth": "Great Britain or Ireland", - "death": "1960s or earlier", - "species": "Portrait; formerly Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Gryffindor Tower", "Gryffindor"], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 566, - "name": "Fawcett", - "birth": "Between 1 November 1977 and 31 August 1981, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": ["Fawcett family", "Hogwarts School of Witchcraft and Wizardry", "Ravenclaw"], - "books_featured_in": [2, 4] - }, - { - "id": 567, - "name": "Morgan le Fay", - "birth": "982 or later", - "death": "Middle Ages", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Red", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Dark Arts", "Avalon"], - "books_featured_in": [1] - }, - { - "id": 568, - "name": "Fiesella Foss", - "birth": "Before 1993", - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [3] - }, - { - "id": 569, - "name": "Arabella Figg", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Squib", - "gender": "Female", - "hair_color": "Grizzled grey flyaway hair", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Albus Dumbledore", "Order of the Phoenix", "Figg family"], - "books_featured_in": [1, 4, 5, 6] - }, - { - "id": 570, - "name": "Justin Finch-Fletchley's mother", - "birth": "Before 1962 (most likely)", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Finch-Fletchley family"], - "books_featured_in": [2] - }, - { - "id": 571, - "name": "Seamus Finnigan's mother", - "birth": "before 1963 (most likely), Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Sandy", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor (possibly)", - "associated_groups": ["Finnigan family"], - "books_featured_in": [1, 4, 5, 6] - }, - { - "id": 572, - "name": "Perenelle Flamel", - "birth": "Between 1307 and 1334", - "death": "Between 1992 and 1996 (aged between 658 and 689)", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Flamel family", "Beauxbatons Academy of Magic"], - "books_featured_in": [1] - }, - { - "id": 573, - "name": "Mopsy Fleabert", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogsmeade"], - "books_featured_in": [4] - }, - { - "id": 574, - "name": "Florence", - "birth": "1950s - 1960s, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [4] - }, - { - "id": 575, - "name": "Ambrosius Flume's wife", - "birth": "Before 1976 (most likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Honeydukes"], - "books_featured_in": [3, 6] - }, - { - "id": 576, - "name": "Fridwulfa", - "birth": null, - "death": "Between 1931 and 1995", - "species": "Giant", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hagrid family", "Giant colony"], - "books_featured_in": [4, 5] - }, - { - "id": 577, - "name": "Vicky Frobisher", - "birth": "c. Pre 31 August 1984", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": ["Frobisher family", "Hogwarts School of Witchcraft and Wizardry", "Gryffindor", "Charms Club"], - "books_featured_in": [5] - }, - { - "id": 578, - "name": "Cornelius Fudge's wife", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Ministry of Magic (indirectly)", "Fudge family"], - "books_featured_in": [4] - }, - { - "id": 579, - "name": "German-speaking woman", - "birth": null, - "death": "1 September, 1997", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["her family"], - "books_featured_in": [7] - }, - { - "id": 580, - "name": "Gloomy nuns", - "birth": null, - "death": "Before 1992", - "species": "Humans (formerly)", - "ancestry": null, - "gender": "Females", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Catholic Church"], - "books_featured_in": [2] - }, - { - "id": 583, - "name": "Leonora Gore", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Gore family"], - "books_featured_in": [2] - }, - { - "id": 584, - "name": "Gunhilda de Gorsemoor", - "birth": "1556", - "death": "1639 (aged 82-83)", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Red (formerly)", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [3] - }, - { - "id": 585, - "name": "Miranda Goshawk", - "birth": "1921", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Grey", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1, 2, 4] - }, - { - "id": 586, - "name": "Gregory Goyle's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin (most likely)", - "associated_groups": ["Death Eaters (most likely)"], - "books_featured_in": [5] - }, - { - "id": 587, - "name": "Hermione Granger", - "birth": "19 September, 1979", - "death": null, - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Female", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": "10¾\", vine wood, dragon heartstring", - "patronus": "Otter", - "house": "Gryffindor", - "associated_groups": [ - "Granger family", - "Weasley family", - "Potter family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Slug Club", - "S.P.E.W.", - "Dumbledore's Army", - "Order of the Phoenix", - "British Ministry of Magic", - "Department for the Regulation and Control of Magical Creatures", - "Department of Magical Law Enforcement" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 588, - "name": "Hermione Granger's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": "Brown", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Granger family"], - "books_featured_in": [1, 2, 3, 5, 7] - }, - { - "id": 589, - "name": "Daphne Greengrass", - "birth": "Between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Slytherin", "Greengrass family"], - "books_featured_in": [5] - }, - { - "id": 590, - "name": "Lady Grieve", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2] - }, - { - "id": 591, - "name": "Wilhelmina Grubbly-Plank", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [4, 5, 6] - }, - { - "id": 592, - "name": "Curious Gryffindor Girl", - "birth": "between 1 September 1980 and 31 August 1981 (most likely), Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 593, - "name": "Gladys Gudgeon", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Gilderoy Lockhart", "Gudgeon family"], - "books_featured_in": [2, 5] - }, - { - "id": 594, - "name": "Gimlet-eyed Hogwarts Headmistress", - "birth": null, - "death": "Before 1995", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": "\"Gimlet-eyed\"", - "wand": "Unusually thick, looks like a \"birch rod\"", - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Albus Dumbledore", - "Hogwarts Headermasters and Headmistresses", - "Harry Potter" - ], - "books_featured_in": [5, 7] - }, - { - "id": 595, - "name": "Hedwig", - "birth": "Pre 1991", - "death": "27 July, 1997", - "species": "Snowy Owl", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": "Amber", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Harry Potter (owner)", "Eeylops Owl Emporium (formerly)", "Hogwarts Owlery"], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 596, - "name": "Hedwig", - "birth": "Middle Ages", - "death": "Middle Ages", - "species": "Human", - "ancestry": null, - "gender": "Female (likely)", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 597, - "name": "Hermione Granger's sister", - "birth": "After 19 September 1979", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Granger family"], - "books_featured_in": [1] - }, - { - "id": 599, - "name": "Hokey", - "birth": "Before 1940s", - "death": "1950s-1960s", - "species": "House-elf", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hepzibah Smith"], - "books_featured_in": [6] - }, - { - "id": 600, - "name": "Rolanda Hooch", - "birth": "pre 1918", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Grey", - "eye_color": "Yellow", - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1, 2, 3, 5, 6] - }, - { - "id": 601, - "name": "Mafalda Hopkirk", - "birth": "February 19 - March 20 , in or before 1975", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["British Ministry of Magic", "Improper Use of Magic Office", "Death Eaters (indirectly)"], - "books_featured_in": [2, 5, 7] - }, - { - "id": 602, - "name": "Olive Hornby", - "birth": "c. 1926 - 1932", - "death": "Before 1995", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Hornby family"], - "books_featured_in": [2, 4] - }, - { - "id": 604, - "name": "Hope Howell", - "birth": "Pre 1938", - "death": "Pre 1981", - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Lupin family"], - "books_featured_in": [3, 7] - }, - { - "id": 605, - "name": "Helga Hufflepuff", - "birth": "Pre 976", - "death": "11th century (possibly)", - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": "Brown", - "eye_color": "Blue", - "wand": null, - "patronus": "Non-corporeal", - "house": "Hufflepuff", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff", - "Hufflepuff family", - "", - "nationality = Welsh" - ], - "books_featured_in": [2, 3, 4, 5, 6, 7] - }, - { - "id": 606, - "name": "Ice cream seller", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Zoo"], - "books_featured_in": [1] - }, - { - "id": 607, - "name": "Clara Ivanova", - "birth": "before 1977, Bulgaria (possibly)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Red", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Bulgarian National Quidditch team"], - "books_featured_in": [4] - }, - { - "id": 608, - "name": "User:Jack \"BtR\" Saxon/Hooch draft", - "birth": "c. 1900 ", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Grey", - "eye_color": "Yellow", - "wand": "Unknown", - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1, 2, 3, 5, 6] - }, - { - "id": 609, - "name": "User:Jack \"BtR\" Saxon/Trelawney draft", - "birth": "c. 1963 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Brown", - "eye_color": "Dark green", - "wand": "Unknown length, core and wood", - "patronus": "Uncorporeal", - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slug Club (possibly)", - "Order of the Phoenix (during the Battle of Hogwarts)", - "Dumbledore's Army (during the Battle of Hogwarts)", - "Divination Workshop (possibly)", - "Trelawney family" - ], - "books_featured_in": [3, 4, 5, 6, 7] - }, - { - "id": 610, - "name": "Angelina Johnson", - "birth": "24 – 30 October, 1977", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Johnson family", - "Weasley family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Dumbledore's Army" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 611, - "name": "Gwenog Jones", - "birth": "1968", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Jones family", - "Hogwarts School of Witchcraft and Wizardry", - "Slug Club", - "Holyhead Harpies", - "Welsh National Quidditch team" - ], - "books_featured_in": [6, 7] - }, - { - "id": 612, - "name": "Hestia Jones", - "birth": "Pre 1978", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (most likely)", - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Jones family", "Order of the Phoenix", "Advance Guard", "Harry Potter"], - "books_featured_in": [5, 7] - }, - { - "id": 613, - "name": "Bertha Jorkins's aunt", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 614, - "name": "Bertha Jorkins", - "birth": "1 September 1953 - 31 August 1958", - "death": "1994 (aged around 35-40), Albania", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Department of Magical Games and Sports", - "Hogwarts School of Witchcraft and Wizardry", - "Daily Prophet (formerly)", - "Jorkins family" - ], - "books_featured_in": [4] - }, - { - "id": 615, - "name": "Josephine Kay", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [3] - }, - { - "id": 616, - "name": "Karkus's wife", - "birth": null, - "death": null, - "species": "Giant", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 617, - "name": "Kevin's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Kevin's family"], - "books_featured_in": [4] - }, - { - "id": 618, - "name": "Aged witch", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Knockturn Alley"], - "books_featured_in": [2] - }, - { - "id": 619, - "name": "Kreacher's mother", - "birth": null, - "death": "Between 1850 and 1985", - "species": "House-elf", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [5] - }, - { - "id": 620, - "name": "Viktor Krum's mother", - "birth": "In or before 1945 (possibly)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Krum family"], - "books_featured_in": [4] - }, - { - "id": 621, - "name": "Leanne", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Hufflepuff", "Dumbledore's Army"], - "books_featured_in": [6] - }, - { - "id": 622, - "name": "Bellatrix Lestrange", - "birth": "1951", - "death": "2 May, 1998 (aged 46 - 47)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": "12¾\", Walnut, dragon heartstring", - "patronus": "None", - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [4, 5, 6, 7] - }, - { - "id": 623, - "name": "Alice Longbottom", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Blonde (possibly; formerly)", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Longbottom family", - "Ministry of Magic (formerly)", - "Auror Office (formerly)", - "Order of the Phoenix (formerly)" - ], - "books_featured_in": [4, 5, 6, 7] - }, - { - "id": 624, - "name": "Augusta Longbottom", - "birth": "pre 1947", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Grey", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Longbottom family", "Order of the Phoenix", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 625, - "name": "Luna Lovegood", - "birth": "13 February, 1981", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": "Dirty-blonde", - "eye_color": "Pale silvery", - "wand": "Unknown 1st wand", - "patronus": "Hare", - "house": "Ravenclaw", - "associated_groups": [ - "Lovegood family", - "Scamander family", - "Hogwarts School of Witchcraft and Wizardry ", - "Ravenclaw", - "Dumbledore's Army", - "Order of the Phoenix", - "The Quibbler" - ], - "books_featured_in": [4, 5, 6, 7] - }, - { - "id": 626, - "name": "Pandora Lovegood", - "birth": null, - "death": "Between 13 February, 1990 and 12 February, 1991", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Dirty-blonde (possibly)", - "eye_color": "Pale silvery (possibly)", - "wand": null, - "patronus": null, - "house": "Ravenclaw (possibly)", - "associated_groups": ["Lovegood family"], - "books_featured_in": [5, 7] - }, - { - "id": 627, - "name": "Mary Macdonald", - "birth": "1 September, 1958 - 31 August, 1965 (most likely)Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": "Muggle-born (possibly)", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Macdonald family"], - "books_featured_in": [7] - }, - { - "id": 628, - "name": "Morag MacDougal", - "birth": "c. 1979-1980,", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["MacDougal family", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1] - }, - { - "id": 629, - "name": "Laura Madley", - "birth": "between 1 September 1982 and 31 August 1983, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardy", "Hufflepuff"], - "books_featured_in": [4] - }, - { - "id": 630, - "name": "Mafalda", - "birth": "between 1 September 1982 and 31 August 1983, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": "Muggle-born or Half-blood (possibly)", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Prewett family", "Weasley Family", "Slytherin", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [4] - }, - { - "id": 631, - "name": "Mafalda's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 632, - "name": "Magical Menagerie saleswoman", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Grey (formerly black)", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Magical Menagerie"], - "books_featured_in": [3] - }, - { - "id": 633, - "name": "Astoria Malfoy", - "birth": "between 1 September 1981 -31 August 1982", - "death": "August 2019 (aged 37)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Dark brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Greengrass family", "Malfoy family", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [7] - }, - { - "id": 634, - "name": "Narcissa Malfoy", - "birth": "1955", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Blonde", - "eye_color": "Blue", - "wand": "Unknown 1st wand", - "patronus": null, - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [1, 4, 5, 6, 7] - }, - { - "id": 635, - "name": "Malkin", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "White", - "eye_color": "Blue", - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Madam Malkin's Robes for All Occasions"], - "books_featured_in": [1, 3, 5, 6, 7] - }, - { - "id": 636, - "name": "Griselda Marchbanks", - "birth": "No later than the 1870s", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic", "Wizengamot", "Wizarding Examinations Authority"], - "books_featured_in": [5] - }, - { - "id": 637, - "name": "Marsh", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["The Knight Bus"], - "books_featured_in": [3, 5] - }, - { - "id": 638, - "name": "Martha (British Muggle)", - "birth": "Early 20th century (most likely)", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Wool's Orphanage"], - "books_featured_in": [6] - }, - { - "id": 639, - "name": "Mason's wife", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Mason family"], - "books_featured_in": [2] - }, - { - "id": 640, - "name": "Daphne Mauboisan", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2] - }, - { - "id": 641, - "name": "Olympe Maxime", - "birth": null, - "death": null, - "species": "Half-human/Half-giant", - "ancestry": "Part-Human (Half-giant)", - "gender": "Female", - "hair_color": "Brown", - "eye_color": "Black", - "wand": "Unknown length, wood and core", - "patronus": null, - "house": null, - "associated_groups": ["Beauxbatons Academy of Magic", "Order of the Phoenix", "Maxime family"], - "books_featured_in": [4, 5, 6] - }, - { - "id": 642, - "name": "Olympe Maxime's mother", - "birth": null, - "death": null, - "species": "Human or Giantess", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Maxime family"], - "books_featured_in": [4] - }, - { - "id": 643, - "name": "Natalie McDonald", - "birth": "between 1 September 1982 and 31 August 1983, Great Britain", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 644, - "name": "Minerva McGonagall", - "birth": "4 October,", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": "9½\", Fir, dragon heartstring", - "patronus": "Cat", - "house": "Gryffindor", - "associated_groups": [ - "McGonagall family", - "Urquart family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Transfiguration department", - "British Ministry of Magic (formerly)", - "Department of Magical Law Enforcement", - "Albus Dumbledore", - "Order of the Phoenix", - "Dumbledore's Army" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 645, - "name": "Marlene McKinnon", - "birth": null, - "death": "July, 1981", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Order of the Phoenix", "McKinnon family"], - "books_featured_in": [1, 4, 5, 7] - }, - { - "id": 646, - "name": "Dorcas Meadowes", - "birth": null, - "death": "1981", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Meadowes family", "Order of the Phoenix"], - "books_featured_in": [5] - }, - { - "id": 647, - "name": "Melinda Bobbin", - "birth": "c. 1978-1985", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Slug Club"], - "books_featured_in": [6] - }, - { - "id": 648, - "name": "Galatea Merrythought", - "birth": "Pre-1878", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [6] - }, - { - "id": 649, - "name": "Eloise Midgen", - "birth": "31 August 1983 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Gryffindor", "Midgen family"], - "books_featured_in": [4, 5, 6] - }, - { - "id": 650, - "name": "Graham Montague's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Montague family"], - "books_featured_in": [5] - }, - { - "id": 651, - "name": "Montgomery children's mother", - "birth": "before 1969 (most likely)", - "death": null, - "species": "Human", - "ancestry": "Magical to unknown extent", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [6] - }, - { - "id": 652, - "name": "Montgomery sisters", - "birth": "Circa 1978-1985", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Montgomery family"], - "books_featured_in": [6] - }, - { - "id": 653, - "name": "Lily Moon", - "birth": "2 September, 1979 - 1 September, 1980", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor, Hufflepuff, or Slytherin", - "associated_groups": ["Moon family", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1] - }, - { - "id": 654, - "name": "Moran", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Irish National Quidditch team"], - "books_featured_in": [4] - }, - { - "id": 655, - "name": "Mosag", - "birth": "c. 1942", - "death": null, - "species": "Acromantula", - "ancestry": null, - "gender": "Female", - "hair_color": "Brown", - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Acromantula colony"], - "books_featured_in": [2] - }, - { - "id": 656, - "name": "Mullet", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Irish National Quidditch team"], - "books_featured_in": [4] - }, - { - "id": 657, - "name": "Murcus", - "birth": "Before 1994", - "death": null, - "species": "Selkie (Merpeople)", - "ancestry": null, - "gender": "Female", - "hair_color": "Green", - "eye_color": "Yellow", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Black Lake Selkie Colony", "Merpeople village", "Albus Dumbledore"], - "books_featured_in": [4, 6] - }, - { - "id": 658, - "name": "Muriel", - "birth": "Between 2 August, 1889 and 31 July, 1890", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Order of the Phoenix (indirectly)", "Prewett family", "Weasley family"], - "books_featured_in": [6, 7] - }, - { - "id": 659, - "name": "Muriel's mother", - "birth": "Before 2 August, 1890", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood (possibly)", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [7] - }, - { - "id": 660, - "name": "Nagini", - "birth": "Before 1927, Indonesia (possibly)", - "death": "2 May, 1998 (aged at least 71)", - "species": "Human (Maledictus affliction; formerly)", - "ancestry": "Underbeing", - "gender": "Female", - "hair_color": "Black (Human)", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Circus Arcanus (formerly)", - "Credence Barebone (formerly)", - "Newt Scamander (formerly)", - "Lord Voldemort" - ], - "books_featured_in": [4, 5, 6, 7] - }, - { - "id": 661, - "name": "Z. Nettles", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Nettles family"], - "books_featured_in": [2] - }, - { - "id": 662, - "name": "Norberta", - "birth": "Spring of 1992,", - "death": null, - "species": "Norwegian Ridgeback", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Quirinus Quirrell (as egg)", "Rubeus Hagrid", "Romanian Dragon Sanctuary"], - "books_featured_in": [1, 2, 3, 4, 5, 7] - }, - { - "id": 663, - "name": "Mrs Norris", - "birth": "1984 or earlier", - "death": null, - "species": "Cat", - "ancestry": null, - "gender": "Female", - "hair_color": "Dust-coloured fur", - "eye_color": "Yellow and lamp-like", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Argus Filch (owner)", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 664, - "name": "Pansy Parkinson's Gang", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [4, 5] - }, - { - "id": 665, - "name": "Paper shop girl", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Ottery St Catchpole paper shop"], - "books_featured_in": [6] - }, - { - "id": 666, - "name": "Pansy Parkinson", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Parkinson family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Inquisitorial Squad", - "Draco Malfoy's gang", - "Death Eaters (unofficial)" - ], - "books_featured_in": [1, 3, 4, 5, 6, 7] - }, - { - "id": 667, - "name": "Patil twins' mother", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Patil family"], - "books_featured_in": [6] - }, - { - "id": 668, - "name": "Padma Patil", - "birth": "Between 1 September, 1979 and 21 April, 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood or pure-blood", - "gender": "Female", - "hair_color": "Dark, long", - "eye_color": "Dark", - "wand": null, - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": ["Patil family", "Dumbledore's Army", "Hogwarts School of Witchcraft and Wizardry", "Ravenclaw"], - "books_featured_in": [1, 4, 5, 6, 7] - }, - { - "id": 669, - "name": "Parvati Patil", - "birth": "between 1 September 1979 and 22 April 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Female", - "hair_color": "Dark", - "eye_color": "Dark", - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": ["Patil family", "Dumbledore's Army", "Hogwarts School of Witchcraft and Wizardry", "Gryffindor"], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 670, - "name": "Sally-Anne Perks", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor, Hufflepuff, or Slytherin", - "associated_groups": ["Perks family", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1] - }, - { - "id": 671, - "name": "Peter Pettigrew's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Pettigrew family", "Order of Merlin"], - "books_featured_in": [3] - }, - { - "id": 672, - "name": "Enid Pettigrew", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [3, 4, 6, 7] - }, - { - "id": 673, - "name": "Cadmus Peverell's fiancée", - "birth": null, - "death": "c. 13th century", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Cadmus Peverell"], - "books_featured_in": [7] - }, - { - "id": 674, - "name": "Irma Pince", - "birth": "Pre 1966 (most likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Hogwarts Library"], - "books_featured_in": [1, 2, 4, 5, 6] - }, - { - "id": 675, - "name": "Piers Polkiss's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1, 5] - }, - { - "id": 676, - "name": "Poppy Pomfrey", - "birth": "pre 1954", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Albus Dumbledore", - "Hogwarts School of Witchcraft and Wizardry", - "Hospital Wing", - "Order of the Phoenix (during the Battle of the Astronomy Tower and the Battle of Hogwarts", - "Dumbledore's Army (during the Battle of the Astronomy Tower and the Battle of Hogwarts" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 677, - "name": "Portrait of a mermaid", - "birth": null, - "death": "Before late February 1994", - "species": "Mermaid", - "ancestry": null, - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Prefects' bathroom"], - "books_featured_in": [4] - }, - { - "id": 678, - "name": "Euphemia Potter", - "birth": null, - "death": "Pre-31 July, 1980", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Potter family"], - "books_featured_in": [1, 5] - }, - { - "id": 679, - "name": "Lily L. Potter", - "birth": "Between 1 September 2007 and 31 August 2008", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Potter family", - "Weasley family", - "Prewett family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [7] - }, - { - "id": 680, - "name": "Lily J. Potter", - "birth": "30 January, 1960", - "death": "31 October, 1981 (aged 21)", - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Female", - "hair_color": "Auburn", - "eye_color": "Bright green", - "wand": "10¼\", Willow, unknown core", - "patronus": "Doe", - "house": "Gryffindor", - "associated_groups": [ - "Evans family", - "Potter family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Slug Club", - "Order of the Phoenix" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 681, - "name": "Molly Weasley's mother", - "birth": "before 30 October, 1949.", - "death": null, - "species": null, - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Red (possibly)", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Prewett family"], - "books_featured_in": [5] - }, - { - "id": 682, - "name": "Prime Minister's niece", - "birth": "Pre-1990", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [6] - }, - { - "id": 683, - "name": "Eileen Prince", - "birth": "c. 1930, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": "Pure-blood (possibly)", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin (possibly)", - "associated_groups": ["Prince family", "Snape family", "Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [5, 6, 7] - }, - { - "id": 684, - "name": "Elsie Prod", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2] - }, - { - "id": 685, - "name": "Puddifoot", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Madam Puddifoot's Tea Shop"], - "books_featured_in": [5, 6, 7] - }, - { - "id": 686, - "name": "Doris Purkiss", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["The Quibbler (presumed)"], - "books_featured_in": [5] - }, - { - "id": 687, - "name": "Orla Quirke", - "birth": "between 1 September 1982 and 31 August 1983,", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 688, - "name": "Helena Ravenclaw", - "birth": "Post 982", - "death": "Sometime between 996 and 1000", - "species": "Human (formerly)", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": ["Ravenclaw family", "Hogwarts School of Witchcraft and Wizardry", "Ravenclaw"], - "books_featured_in": [1, 6, 7] - }, - { - "id": 689, - "name": "Rowena Ravenclaw", - "birth": "Pre 976", - "death": "11th century", - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": "Brown", - "wand": null, - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Ravenclaw", "Ravenclaw family"], - "books_featured_in": [2, 4, 5, 7] - }, - { - "id": 690, - "name": "Maisy Reynolds", - "birth": "on or prior to 31 August 1986,", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Ravenclaw"], - "books_featured_in": [7] - }, - { - "id": 691, - "name": "Mary Riddle", - "birth": "1883", - "death": "August, 1943 (aged 59 - 60)", - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Riddle family"], - "books_featured_in": [4, 6] - }, - { - "id": 692, - "name": "Merope Riddle", - "birth": "c. 1907", - "death": "31 December, 1926 (aged 19)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Dull", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "House of Gaunt (abandoned)", - "associated_groups": [], - "books_featured_in": [2, 4, 5, 6, 7] - }, - { - "id": 693, - "name": "Riddles' cook", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Riddle family (formerly)"], - "books_featured_in": [4] - }, - { - "id": 694, - "name": "Riddles' maid", - "birth": "Before 1943", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Riddle family"], - "books_featured_in": [4, 6] - }, - { - "id": 695, - "name": "Roberts's wife", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Roberts family"], - "books_featured_in": [4] - }, - { - "id": 696, - "name": "Demelza Robins", - "birth": "on or before 31 August 1985", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Gryffindor", "Gryffindor Quidditch team"], - "books_featured_in": [6] - }, - { - "id": 697, - "name": "C. Roemmele", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["St. Grogory's Primary School"], - "books_featured_in": [1] - }, - { - "id": 698, - "name": "Rosmerta", - "birth": "Before 1959", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Blonde", - "eye_color": "Green", - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Three Broomsticks Inn", "Draco Malfoy (while under the Imperius Curse)"], - "books_featured_in": [3, 4, 6] - }, - { - "id": 699, - "name": "Skower", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Blonde", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2, 4] - }, - { - "id": 700, - "name": "Serpent of Slytherin", - "birth": "c. 993", - "death": "29 May, 1993 (aged around 1000)", - "species": "Basilisk", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": "Yellow", - "wand": null, - "patronus": null, - "house": "Salazar Slytherin", - "associated_groups": [], - "books_featured_in": [2, 3, 4, 5, 6, 7] - }, - { - "id": 701, - "name": "Aurora Sinistra", - "birth": "Pre 1968", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Dark", - "eye_color": "Dark", - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Astronomy department"], - "books_featured_in": [2, 4, 5] - }, - { - "id": 703, - "name": "Sixth-Year Inquisitorial Squad Member", - "birth": "between 1 September 1978 and 31 August 1979, (most likely) Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood (likely)", - "gender": "Female", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Slytherin", "Inquisitorial Squad (formerly)"], - "books_featured_in": [5] - }, - { - "id": 704, - "name": "Enid Smeek", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Godric's Hollow", "Rita Skeeter"], - "books_featured_in": [7] - }, - { - "id": 705, - "name": "Smeltings nurse", - "birth": "In or prior to 1976", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Smeltings Academy"], - "books_featured_in": [4] - }, - { - "id": 706, - "name": "Veronica Smethley", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Gilderoy Lockhart"], - "books_featured_in": [2] - }, - { - "id": 707, - "name": "Hepzibah Smith", - "birth": null, - "death": "c. 1955-1961", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hufflepuff family"], - "books_featured_in": [6, 7] - }, - { - "id": 708, - "name": "Alicia Spinnet", - "birth": "between 1 September 1977 and 31 August 1978", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (possibly)", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Dumbledore's Army" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 709, - "name": "Phyllida Spore", - "birth": null, - "death": "In or before 1995", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [1] - }, - { - "id": 710, - "name": "Pomona Sprout", - "birth": "15 May", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Female", - "hair_color": "Grey", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Hufflepuff", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Herbology department", - "Hufflepuff", - "Order of the Phoenix (during Battle of the Astronomy Tower and Battle of Hogwarts)", - "Dumbledore's Army (during Battle of the Astronomy Tower and Battle of Hogwarts)" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 711, - "name": "Winged St Mungo's patient", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Magical to unknown extent", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["St Mungo's Hospital for Magical Maladies and Injuries"], - "books_featured_in": [5] - }, - { - "id": 712, - "name": "Patricia Stimpson", - "birth": "c. 1977-1978", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [5] - }, - { - "id": 713, - "name": "Miriam Strout", - "birth": "Before 1977", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["St Mungo's Hospital for Magical Maladies and Injuries", "Janus Thickey Ward"], - "books_featured_in": [5] - }, - { - "id": 714, - "name": "The Fates", - "birth": "Amortal", - "death": "Amortal", - "species": "Deity", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [3] - }, - { - "id": 715, - "name": "Theodore Nott's mother", - "birth": null, - "death": "Sometime between 1980 and 1995", - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Nott family"], - "books_featured_in": [5, 6] - }, - { - "id": 716, - "name": "Dean Thomas's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Thomas family"], - "books_featured_in": [5, 7] - }, - { - "id": 717, - "name": "Agatha Timms", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 718, - "name": "Andromeda Tonks", - "birth": "1951-1955", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Light brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "House of Black (formerly)", - "associated_groups": [], - "books_featured_in": [5, 7] - }, - { - "id": 719, - "name": "Nymphadora Tonks", - "birth": "between 1 September 1972 and 31 August 1973", - "death": "2 May, 1998 (aged 24/25)", - "species": "Human (Metamorphmagus)", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Variable (biologically light brown))", - "eye_color": "Variable (Dark)", - "wand": "Unknown length, wood and core", - "patronus": "Jack Rabbit (pre 1995)", - "house": "Hufflepuff", - "associated_groups": [ - "Tonks family", - "Lupin family", - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff", - "Circle of Khanna", - "British Ministry of Magic", - "Auror Department", - "Order of the Phoenix", - "Advance Guard" - ], - "books_featured_in": [5, 6, 7] - }, - { - "id": 720, - "name": "Cassandra Trelawney", - "birth": null, - "death": null, - "species": "Human (Seer)", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Trelawney family"], - "books_featured_in": [5, 6] - }, - { - "id": 721, - "name": "Sybill Trelawney", - "birth": "9 March, prior to 1963, Great Britain or Ireland", - "death": null, - "species": "Human (Seer)", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": "Hazel and unicorn hair, 9½ inches, very flexible", - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Slug Club (possibly)", - "Order of the Phoenix (during the Battle of Hogwarts)", - "Dumbledore's Army (during the Battle of Hogwarts)", - "Divination Workshop (possibly)", - "Trelawney family" - ], - "books_featured_in": [3, 4, 5, 6, 7] - }, - { - "id": 722, - "name": "Donaghan Tremlett's wife", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Tremlett family"], - "books_featured_in": [5] - }, - { - "id": 723, - "name": "Trolley witch", - "birth": "Before 1830", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Grey", - "eye_color": "Dark", - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Hogwarts Express", "Albus Dumbledore", "Ottaline Gambol"], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 724, - "name": "Lisa Turpin", - "birth": "Between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": ["Hogwarts school of witchcraft and wizardry", "Ravenclaw"], - "books_featured_in": [1] - }, - { - "id": 725, - "name": "Two little witches", - "birth": "Before 1994", - "death": null, - "species": "Humans", - "ancestry": null, - "gender": "Females", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 726, - "name": "Tyra Teegarden", - "birth": "31 August 1982 or earlier", - "death": null, - "species": null, - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [3] - }, - { - "id": 727, - "name": "Dolores Umbridge", - "birth": "British Ministry of Magic (formerly)", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Mouse brown (formerly)", - "eye_color": null, - "wand": "8\", Birch, dragon heartstring (formerly)", - "patronus": "Persian cat", - "house": "Slytherin", - "associated_groups": [], - "books_featured_in": [5, 6, 7] - }, - { - "id": 728, - "name": "Cassandra Vablatsky", - "birth": "1894", - "death": "1997 (aged 102 - 103)", - "species": "Human (Seer)", - "ancestry": null, - "gender": "Female", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [3] - }, - { - "id": 729, - "name": "Emmeline Vance", - "birth": "pre 1964", - "death": "Early July, 1996", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Vance family", "Order of the Phoenix", "Advance Guard"], - "books_featured_in": [5, 6] - }, - { - "id": 730, - "name": "Romilda Vane", - "birth": "between 1 September 1981 and 31 August 1982", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (possibly)", - "gender": "Female", - "hair_color": "Black", - "eye_color": "Dark", - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": ["Vane family", "Hogwarts School of Witchcraft and Wizardry", "Gryffindor", "Dumbledore's Army"], - "books_featured_in": [4, 6] - }, - { - "id": 731, - "name": "Romilda Vane's grandmother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [6] - }, - { - "id": 732, - "name": "Septima Vector", - "birth": "Before 1974", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry"], - "books_featured_in": [3, 4, 5, 6] - }, - { - "id": 733, - "name": "Verity", - "birth": "In or prior to 1979", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Weasleys' Wizard Wheezes"], - "books_featured_in": [6] - }, - { - "id": 734, - "name": "Violet", - "birth": null, - "death": "Before 1994", - "species": "Portrait", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Hogwarts School"], - "books_featured_in": [4, 6] - }, - { - "id": 735, - "name": "Wailing Widow", - "birth": null, - "death": "Before 1992", - "species": "Human (formerly)", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2] - }, - { - "id": 736, - "name": "Waitress at Luchino Caffe", - "birth": "Before 1997", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Luchino Caffe"], - "books_featured_in": [7] - }, - { - "id": 737, - "name": "Wakanda", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["British Ministry of Magic"], - "books_featured_in": [7] - }, - { - "id": 739, - "name": "Celestina Warbeck", - "birth": "18 August, 1917", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Dark", - "eye_color": null, - "wand": "10½\", Larch, phoenix feather", - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Wizarding Wireless Network", - "Witching Hour", - "Puddlemere United" - ], - "books_featured_in": [2, 6, 7] - }, - { - "id": 740, - "name": "Myrtle Warren", - "birth": "Between 14 June, 1928 and 13 June, 1929", - "death": "13 June, 1943 (aged 14)", - "species": "Human (formerly)", - "ancestry": "Muggle-born", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [ - "Warren family", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Harry Potter", - "Draco Malfoy", - "Albus Potter", - "Scorpius Malfoy" - ], - "books_featured_in": [2, 4, 6] - }, - { - "id": 741, - "name": "Myrtle Warren's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [2] - }, - { - "id": 743, - "name": "Ginny Weasley", - "birth": "11 August, 1981", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Red", - "eye_color": "Bright brown", - "wand": "Unknown length, Yew, unknown core", - "patronus": "Horse", - "house": "Gryffindor", - "associated_groups": [ - "Weasley family", - "Potter family", - "Prewett family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Slug Club", - "Dumbledore's Army", - "Order of the Phoenix", - "Holyhead Harpies", - "Daily Prophet" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 744, - "name": "Molly Weasley", - "birth": "30 October, 1949 or 1950", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Red", - "eye_color": "Bright brown", - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Weasley family", - "Prewett family", - "Potter family", - "Order of the Phoenix", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - }, - { - "id": 745, - "name": "Rose Granger-Weasley", - "birth": "between 1 September 2005 and 31 August 2006", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Weasley family", - "Granger family", - "Prewett family", - "Potter family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team" - ], - "books_featured_in": [7] - }, - { - "id": 746, - "name": "Victoire Weasley", - "birth": "2 May, early 2000s Great Britain or France", - "death": null, - "species": "Human (Veela ancestry)", - "ancestry": "One-eighth Veela", - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Septimus Weasley (paternal great-grandfather)", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Weasley family", "Delacour family", "Prewett family"], - "books_featured_in": [7] - }, - { - "id": 747, - "name": "St Mungo's Welcome Witch", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Blonde", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["St Mungo's Hospital for Magical Maladies and Injuries"], - "books_featured_in": [5] - }, - { - "id": 748, - "name": "Wendelin the Weird", - "birth": "c. 14th century", - "death": "Middle Ages", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Red", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [3] - }, - { - "id": 749, - "name": "Winky", - "birth": "Before 1981", - "death": null, - "species": "House-elf", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Crouch family (formerly)", - "Bartemius Crouch Senior", - "Bartemius Crouch Junior", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [4, 5, 6, 7] - }, - { - "id": 750, - "name": "Winky's grandmother", - "birth": null, - "death": null, - "species": "House-elf", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Crouch family"], - "books_featured_in": [4] - }, - { - "id": 751, - "name": "Winky's mother", - "birth": null, - "death": null, - "species": "House-elf", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": ["Crouch family"], - "books_featured_in": [4] - }, - { - "id": 752, - "name": "Oliver Wood's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [4] - }, - { - "id": 753, - "name": "Yvonne", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [1] - }, - { - "id": 754, - "name": "Blaise Zabini's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin (likely)", - "associated_groups": ["Zabini family"], - "books_featured_in": [6] - }, - { - "id": 755, - "name": "Rose Zeller", - "birth": "Between 1 September 1983 and 31 August 1984,", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": ["Hogwarts School of Witchcraft and Wizardry", "Hufflepuff"], - "books_featured_in": [5] - }, - { - "id": 756, - "name": "Albus Dumbledore", - "birth": "Late August 1881", - "death": "30 June, 1997 (aged 115)", - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Silver, formerly auburn", - "eye_color": "Blue", - "wand": "Unknown length, wood and core (formerly)", - "patronus": "Phoenix", - "house": "Gryffindor", - "associated_groups": [ - "Order of Merlin", - "Order of the Phoenix", - "Dumbledore's Army", - "Harry Potter", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Transfiguration department", - "British Ministry of Magic", - "Council of Magical Law", - "Wizengamot", - "International Confederation of Wizards", - "Dumbledore family" - ], - "books_featured_in": [1, 2, 3, 4, 5, 6, 7] - } - ], - funFacts: [ - { - "id": 1, - "type": "Author", - "content": "J. K. Rowling" - }, - { - "id": 2, - "type": "Protagonist", - "content": "Harry Potter" - }, - { - "id": 3, - "type": "Antatagonist", - "content": "Lord Voldemort" - }, - { - "id": 4, - "type": "Harry Potter's magic wand", - "content": "Harry Potter's wand was 11 long, made of holly, and possessed a phoenix feather core. This was described by Garrick Ollivander to be an unusual combination of wand core and wood. The feather was donated by Fawkes, Albus Dumbledore's phoenix." - }, - { - "id": 5, - "type": "Lord Voldemort's magic wand", - "content": "Lord Voldemort's wand was 11 long, made of holly, and possessed a phoenix feather core. This was described by Garrick Ollivander to be an unusual combination of wand core and wood. The feather was donated by Fawkes, Albus Dumbledore's phoenix." - }, - { - "id": 6, - "type": "Lord Voldemort's real name", - "content": "Tom Marvolo Riddle (mixing the letters it ends up being Lord Voldemort)" - }, - { - "id": 7, - "type": "Houses", - "content": "At the school Hogwarts there are four houses: Gryffindor, Ravenclaw, Hufflepuff and Slytherin" - }, - { - "id": 8, - "type": "Wands", - "content": "Harry's wand and Voldemort's wand were twins, that's why they couldn't kill each other" - } - ], - spells: [ - { - "id": 1, - "name": "Aberto", - "other_name": null, - "pronunciation": "Ah-bare-toh", - "spell_type": "Charm", - "description": null, - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 2, - "name": "Accio", - "other_name": "Summoning Charm", - "pronunciation": "Various, including: AK-ee-oh or AK-see-oh , AK-see-oh , AS-see-oh (US), and AT-chee-oh (Anglo-Catholic pronunciation)", - "spell_type": "Charm", - "description": "Summons an object towards the caster. It is able to summon objects in direct line of sight of the caster, as well as things out of view, by calling the object aloud after the incantation (unless the spell is casted nonverbally). This spell needs thought behind it, and the object must be clear in the casters mind before trying to summon it. The caster doesn't necessarily need to know the location of the target if they say the name of the object to be summoned, such as when Hermione Granger summoned some books from Dumbledore's office simply by saying \"Accio Horcrux books!\" while in Gryffindor Tower.", - "mention": "Harry Potter summoned his broom to complete the first task of the Triwizard Tournament in 1994, and to summon the Portkey to escape Voldemort and the Death Eaters in the Little Hangleton Graveyard in 1995. Also, in the Battle of the Seven Potters Harry summoned Hagrid when he fell. Molly Weasley used it to get the twins' candy. The twins used it to summon their brooms from Dolores Umbridge's office", - "etymology": "The Latin word accio means \"I call\" or \"I summon\".", - "note": null - }, - { - "id": 3, - "name": "Age Line", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Prevents people above or below a certain age from access to a target.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 4, - "name": "Aguamenti", - "other_name": "Water-Making Spell", - "pronunciation": "AH-gwah-MEN-tee", - "spell_type": "Charm, Conjuration", - "description": "Produces a clean, drinkable jet of water from the wand tip.", - "mention": "Used by Fleur Delacour in 1994 to extinguish her skirt, which had caught flame during a fight against a dragon. Harry used this spell twice in 1997, both on the same night; once to attempt to provide a drink for Dumbledore, then again to help douse Hagrid's hut after it was set aflame by Thorfinn Rowle, who used the Fire-Making Spell.", - "etymology": null, - "note": null - }, - { - "id": 5, - "name": "Alarte Ascendare", - "other_name": null, - "pronunciation": "a-LAR-tay a-SEN-der-ay", - "spell_type": "Charm", - "description": "Shoots the target high into the air.", - "mention": "Used by Gilderoy Lockhart in 1992 to send a snake high into the air during the first and last meeting of the Duelling Club.", - "etymology": null, - "note": null - }, - { - "id": 6, - "name": "Albus Dumbledore's forceful spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Spell", - "description": "This spell was, supposedly, quite powerful as when it was cast, the opponent was forced to conjure a silver shield to deflect it.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 7, - "name": "Alohomora", - "other_name": "Unlocking Charm", - "pronunciation": "ah-LOH-ho-MOR-ah", - "spell_type": "Charm", - "description": "Unlocks doors and other objects. It can also unlock doors that have been sealed with a Locking Spell, although it is possible to bewitch doors to become unaffected by this spell.", - "mention": "Used by Hermione Granger in 1991 to allow her and her friends to access the Third-floor corridor at her school, which was at the time forbidden; she used it again two years later to free Sirius's cell in her teacher's prison room.", - "etymology": null, - "note": null - }, - { - "id": 8, - "name": "Amato Animo Animato Animagus", - "other_name": "Animagus Spell", - "pronunciation": "ah-MAH-toh ah-NEE-moh ah-nee-MAH-toh an-a-MAY-jus", - "spell_type": "Transfiguration", - "description": "Spell used as part of the process of becoming an Animagus. The incantation has to be recited at sunrise and sundown, every day before the consumption of the Animagus Potion. The incantation is also recited just prior to the consumption of the potion, which has to take place just after a lightning storm starts. The incantation is recited while placing the wand's tip over one's heart.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 9, - "name": "Anapneo", - "other_name": null, - "pronunciation": "ah-NAP-nee-oh", - "spell_type": "Healing Spell, Vanishment", - "description": "Clears the target's airway if they are choking on something.", - "mention": "Used by Horace Slughorn, cast upon Marcus Belby when the latter choked on a pheasant in 1996.", - "etymology": null, - "note": null - }, - { - "id": 10, - "name": "Anteoculatia", - "other_name": null, - "pronunciation": "an-tee-oh-kyoo-LAY-chee-ah", - "spell_type": "Hex", - "description": "Causes the target to grow antlers.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 11, - "name": "Anti-Cheating Spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Used to prevent cheating.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 12, - "name": "Anti-Disapparition Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Prevents Disapparation in an area. It is used to entrap an enemy in an area.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 13, - "name": "Anti-intruder jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Prevents intruders from entering an area.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 14, - "name": "Antonin Dolohov's curse", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "An unknown curse that causes injuries that are capable of killing with enough power.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 15, - "name": "Aparecium", - "other_name": "Revealing Charm", - "pronunciation": "AH-par-EE-see-um", - "spell_type": "Charm", - "description": "Reveals secret messages written in invisible ink, or any other hidden markings. Also works against Concealing charms", - "mention": "Used (to no avail) in 1993 by Hermione Granger to attempt to reveal any hidden writing in a diary.", - "etymology": null, - "note": null - }, - { - "id": 16, - "name": "Appare Vestigium", - "other_name": "Tracking Spell", - "pronunciation": "ah-PAR-ay ves-TEE-jee-um", - "spell_type": "Charm", - "description": "Reveals traces of magic, including footprints and track marks.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 17, - "name": "Apparition", - "other_name": null, - "pronunciation": null, - "spell_type": "Transportation", - "description": "Magically transports the caster to another location instantaneously. The destination is one that the primary user has been to or seen in some fashion previously. Can be used to apparate multiple people at once if holding each other. No incantation required.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 18, - "name": "Aqua Eructo", - "other_name": "Aqua Eructo Charm", - "pronunciation": "A-kwa ee-RUCK-toh", - "spell_type": "Charm", - "description": "This spell is used to create, and control, a jet of clear water from the tip of the wand; it is probably related to Aguamenti.", - "mention": "Used multiple times to extinguish fires in 1994.", - "etymology": null, - "note": null - }, - { - "id": 19, - "name": "Arania Exumai", - "other_name": "Spider repelling spell", - "pronunciation": "ah-RAHN-ee-a EKS-su-may", - "spell_type": "Charm", - "description": "Drives away spiders, including Acromantulas.", - "mention": "Jacob's sibling used this spell to repel an Acromantula that guarded the Forest Vault in the Forbidden Forest.", - "etymology": null, - "note": null - }, - { - "id": 20, - "name": "Arresto Momentum", - "other_name": "Slowing Charm", - "pronunciation": "ah-REST-oh mo-MEN-tum", - "spell_type": "Charm", - "description": "Decreases the velocity of a moving target. Can be used on multiple targets, as well as on the caster themselves. It was invented by Daisy Pennifold in 1711 for use on the Quaffle in Quidditch.", - "mention": "Used by Dumbledore to save one of his students from a fall in 1993; Hermione Granger used it, to little effect, in 1998 to cushion an otherwise deadly fall.", - "etymology": null, - "note": null - }, - { - "id": 21, - "name": "Arrow-shooting spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Conjuration", - "description": "Fires arrows from the caster's wand.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 22, - "name": "Ascendio", - "other_name": null, - "pronunciation": "ah-SEN-dee-oh", - "spell_type": "Charm", - "description": "Lifts the caster high into the air. The charm also works underwater, propelling the caster above the surface.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 23, - "name": "Avada Kedavra", - "other_name": "Killing Curse", - "pronunciation": "ah-VAH-dah keh-DAV-rah", - "spell_type": "Curse", - "description": "", - "mention": "Used by Tom Riddle to murder many of his victims without remorse.", - "etymology": null, - "note": null - }, - { - "id": 24, - "name": "Avifors", - "other_name": "Avifors Spell", - "pronunciation": "AH-vi-fors", - "spell_type": "Transfiguration", - "description": "Transforms the target into a bird.", - "mention": "Taught in Transfiguration class.", - "etymology": null, - "note": null - }, - { - "id": 25, - "name": "Avenseguim", - "other_name": null, - "pronunciation": "ah-ven-SEH-gwim", - "spell_type": "Charm", - "description": "Turns an object into a tracking device.", - "mention": "In 1927, Newton Scamander used this spell to track the origins of a feather - a clue found during his search for Porpentina Goldstein - back to Yusuf Kama, whose hat the feather came from.", - "etymology": null, - "note": null - }, - { - "id": 26, - "name": "Avis", - "other_name": "Bird-Conjuring Charm", - "pronunciation": "AH-viss", - "spell_type": "Conjuration, Charm", - "description": "Conjures a flock of birds from the tip of the wand. When used in conjunction with Oppugno, it can be used offensively.", - "mention": "Used in 1994 by Mr Ollivander to test Viktor Krum's wand. Also employed offensively by Hermione Granger against Ron Weasley.", - "etymology": null, - "note": null - }, - { - "id": 27, - "name": "Babbling Curse", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Causes uncontrollable babbling.", - "mention": "Although he was rather untrustworthy, it may not have occurred at all, but Gilderoy Lockhart says he cured a Transylvanian farmer of this affliction.", - "etymology": null, - "note": null - }, - { - "id": 28, - "name": "Badgering", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Turns things into badgers", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 29, - "name": "Bat-Bogey Hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Transforms the target's bogeys into large bats that fly out of the victim's nose. It was invented by Miranda Goshawk.", - "mention": "Ginny Weasley was a noted practitioner of this spell, having used it at least thrice by her sixth year.", - "etymology": null, - "note": null - }, - { - "id": 30, - "name": "Baubillious", - "other_name": null, - "pronunciation": "baw-BILL-ee-us", - "spell_type": "Charm", - "description": "The exact effects of the spell are unknown, though it presumably is of damaging nature and it produces a bolt of white light from the tip of the wand.", - "mention": null, - "etymology": "Currently unclear, probably from English bauble.", - "note": "This is likely the incantation for White sparks." - }, - { - "id": 31, - "name": "Bedazzling Hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Allows the caster to disguise things.", - "mention": "When Xenophilius Lovegood explains the concept of how the Cloak of Invisibility is the only thing that can make a person truly invisible, he mentions that most cloaks of that kind are made with this spell.", - "etymology": null, - "note": null - }, - { - "id": 32, - "name": "Bewitched Snowballs", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Causes snowballs to pelt themselves at the target.", - "mention": "Twice used by Fred and George Weasley; firstly on Professor Quirrell's head, unwittingly striking Lord Voldemort in the face, and then again four years later to attack the windows of Gryffindor Tower.", - "etymology": null, - "note": null - }, - { - "id": 33, - "name": "Bluebell Flames", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Produces magical blue flames that can be held in a jar. Not as dangerous as real fire, these magical flames can be touched, penetrated and held without it burning the holder, though it is known to singe materials such as clothing and plants.", - "mention": "This spell was a speciality of Hermione Granger's. She used it to save Harry and Ron in 1991.", - "etymology": null, - "note": null - }, - { - "id": 34, - "name": "Blue sparks", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Jet of blue sparks. It can be used offensively as a minor duelling spell.", - "mention": "Following the American National Quidditch team's win at the semi-finals of the 2014 Quidditch World Cup against Liechtenstein, red, white and blue sparks filled the air so thickly it was difficult to see or breathe.", - "etymology": null, - "note": null - }, - { - "id": 35, - "name": "Bombarda", - "other_name": "Exploding Charm", - "pronunciation": "bom-BAR-dah", - "spell_type": "Charm", - "description": "Provokes a small explosion.", - "mention": "Taught in fourth year Charms class.", - "etymology": "From the word bombard, meaning \"to attack a place or person continually with bombs or other missiles\".", - "note": null - }, - { - "id": 36, - "name": "Bombarda Maxima", - "other_name": null, - "pronunciation": "BOM-bar-dah MAX-ih-mah", - "spell_type": "Charm", - "description": "Creates a large explosion capable of removing entire walls. A more advanced and more powerful form of the Exploding Charm.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 37, - "name": "Brackium Emendo", - "other_name": null, - "pronunciation": "BRA-key-um ee-MEN-doh", - "spell_type": "Charm, Healing Spell", - "description": "If used correctly, it is claimed that this spell will heal broken bones; this theory is supported by the etymology.", - "mention": "Used unsuccessfully by Gilderoy Lockhart on Harry Potter in 1992 after the latter's arm was broken by a Bludger; it vanished all the bones, making it resemble rubber.", - "etymology": null, - "note": null - }, - { - "id": 38, - "name": "Bravery Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Increases the bravery of a teammate, increasing their performance against certain foes.", - "mention": "Taught by Head of the Auror Office, Harry Potter, to members of the Statute of Secrecy Task Force, to help them address the results of the Calamity in the 2010s.", - "etymology": null, - "note": null - }, - { - "id": 39, - "name": "Bridge-conjuring spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Conjure a bridge from thin air.", - "mention": "This spell was used by Ignotus, Antioch and Cadmus Peverell in The Tale of the Three Brothers to create a bridge over a treacherous river, a bridge upon which they met Death.", - "etymology": null, - "note": null - }, - { - "id": 40, - "name": "Broom jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Used to make broomsticks try to throw their riders off through a variety of means such as sudden lurches and violent swishing movements. Constant eye contact is needed for the jinx to keep working.", - "mention": "It was used by Quirinus Quirrell against Harry Potter in 1991.", - "etymology": null, - "note": "This may be related to the Hurling Hex." - }, - { - "id": 41, - "name": "Bubble-Head Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Produces a large bubble of air around the head of the user; it is commonly used as the supernatural equivalent of a breathing set.", - "mention": "Used by Cedric Diggory and Fleur Delacour in 1995; it was used the next year by many students walking through the halls, because of horrid odours made by various pranks played on Dolores Umbridge.", - "etymology": null, - "note": null - }, - { - "id": 42, - "name": "Bubble-producing spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Produces a stream of non-bursting bubbles; there are two similar spells.", - "mention": "Used by Professor Flitwick to decorate some trees; the bubbles in this instance were golden. Used the following year by Ron Weasley when he broke his wand; these bubbles were purple.", - "etymology": null, - "note": null - }, - { - "id": 43, - "name": "Calvorio", - "other_name": "Hair-Loss Curse", - "pronunciation": "cal-VOR-ee-oh", - "spell_type": "Curse", - "description": "Removes the victim's hair.", - "mention": "The book Curses and Counter-Curses by Vindictus Viridian mentions this curse.", - "etymology": "From Latin calvus = \"bald\".", - "note": null - }, - { - "id": 44, - "name": "Cantis", - "other_name": null, - "pronunciation": "CAN-tiss", - "spell_type": "Jinx", - "description": "Causes the victim to burst uncontrollably into song.", - "mention": "Used by the Hogwarts professors to enchant suits of armour.", - "etymology": "Cantare is Latin for \"sing\".", - "note": null - }, - { - "id": 45, - "name": "Capacious extremis", - "other_name": "Extension Charm", - "pronunciation": "ca-PAY-shus ex-TREEM-us", - "spell_type": "Charm", - "description": "Expands the internal dimensions of an object without affecting the external dimensions, enhancing its capacity, and rendering its contents lighter.", - "mention": "This spell was used by Arthur Weasley to allow eight people, six large trunks, two owls, and a rat to fit comfortably inside his modified Ford Anglia in 1992. Also on the tent in which the Weasleys, Harry and Hermione stay during the Quidditch World Cup in 1994; the tent is also used by Harry, Ron and Hermione as shelter in 1997. Also, Hermione cast this spell upon her handbag in the same year.", - "etymology": null, - "note": null - }, - { - "id": 46, - "name": "Carpe Retractum", - "other_name": "Seize and Pull Charm", - "pronunciation": "CAR-pay ruh-TRACK-tum", - "spell_type": "Charm", - "description": "Produces a rope of light used to pull objects towards the caster, or, if the target is fixed in place, to pull the caster towards the target.", - "mention": "Taught in third year Charms class.", - "etymology": "From the Latin carpe, meaning \"to seize\" and retracto, meaning \"I draw back\".", - "note": null - }, - { - "id": 47, - "name": "Cascading Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Attacks multiple opponents in close proximity to each other.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 48, - "name": "Caterwauling Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Anyone entering the perimeter of this spell sets off a high-pitched shriek. This spell may be related to the Intruder Charm.", - "mention": "This spell was cast by the Death Eaters over Hogsmeade Wizarding Village to protect against intruders in 1998.", - "etymology": null, - "note": null - }, - { - "id": 49, - "name": "Cauldron to Sieve", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Transforms cauldrons into sieves.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 50, - "name": "Cauldron to badger", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Transforms cauldrons into badgers.", - "mention": null, - "etymology": null, - "note": "This spell may be Badgering." - }, - { - "id": 51, - "name": "Cave inimicum", - "other_name": null, - "pronunciation": "CAH-vay uh-NIM-i-kuhm", - "spell_type": "Charm", - "description": "Produces a boundary that keeps the caster hidden from others.", - "mention": "Used multiple times by Hermione Granger in 1997 and 1998 to protect the tent she shared with Ron Weasley and Harry Potter.", - "etymology": "The incantation is a Latin phrase which translates to \"beware of the enemy\".", - "note": null - }, - { - "id": 52, - "name": "Cheering Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Makes the target feel happy. Overuse of the spell may cause the target to break into an uncontrollable laughing fit. This spell was invented by Felix Summerbee.", - "mention": "Taught to third-year charms classes, part of the written O.W.L.", - "etymology": null, - "note": null - }, - { - "id": 53, - "name": "Circumrota", - "other_name": null, - "pronunciation": "SIR-cum-roh-tuh", - "spell_type": "Charm", - "description": "Rotates objects.", - "mention": "This spell was used by Leta Lestrange to rotate a record tower in the Records Room at the French Ministry of Magic Headquarters, revealing Newton Scamander and Porpentina Goldstein to be hiding behind the tower.", - "etymology": null, - "note": null - }, - { - "id": 54, - "name": "Cistem Aperio", - "other_name": null, - "pronunciation": "SIS-tem uh-PE-ree-o", - "spell_type": "Charm", - "description": "Opens chests and boxes.", - "mention": "This spell was used by Tom Riddle to open the chest in which Aragog was hidden.", - "etymology": "Aperio is Latin for \"uncover\" or \"open\"; Cista is Latin for \"trunk\" or \"chest\".", - "note": null - }, - { - "id": 55, - "name": "Colloportus", - "other_name": "Locking Spell", - "pronunciation": "cul-loh-POR-tus", - "spell_type": "Charm", - "description": "Locks doors and all things that can be locked. It is the counter-charm to the Unlocking Spell.", - "mention": "Used by Hermione Granger in 1996 in an attempt to prevent the Death Eaters that were following her from catching up.", - "etymology": "Perhaps a portmanteau of the Latin words colligere, which means \"gather\" and porta, which means \"gate\".", - "note": "This spell can easily be countered with Alohomora." - }, - { - "id": 56, - "name": "Colloshoo", - "other_name": "Stickfast Hex", - "pronunciation": "CAWL-low-shoo", - "spell_type": "Hex", - "description": "Sticks the target's shoes to the ground.", - "mention": "This spell is mentioned twice, once as having been used on Severus Snape during a potions class, the other when one reads Curses and Counter-Curses by Vindictus Viridian.", - "etymology": "The suffix \"shoo\" is a phonetic spelling of English \"shoe\"; the prefix collo may come from Greek \"κολάω,κολώ\" (pronounced \"colas\",\"cols\"), which means \"to glue\".", - "note": null - }, - { - "id": 57, - "name": "Colovaria", - "other_name": "Colour Change Charm", - "pronunciation": "co-loh-VA-riah", - "spell_type": "Charm", - "description": "Changes the target's colour.", - "mention": "The spell can be bought in Wiseacre's Wizarding Equipment in Diagon Alley. Used by fifth-years in their OWLs.", - "etymology": "Almost certainly a combination of English \"colour\" and \"vary\".", - "note": null - }, - { - "id": 58, - "name": "Confringo", - "other_name": "Blasting Curse", - "pronunciation": "kon-FRING-goh", - "spell_type": "Curse", - "description": "Produces a fiery explosion.", - "mention": "Used by Harry Potter to destroy the side-car of a motorbike in which he was riding during a battle against some Death Eaters in 1997; it was later used by Hermione Granger in an attempt to kill Nagini and facilitate an escape from Godric's Hollow.", - "etymology": "The incantation is direct Latin for \"destroy\".", - "note": "This spell seems to use heat for its explosion, while Expulso uses pressure instead." - }, - { - "id": 59, - "name": "Confundo", - "other_name": "Confundus Charm", - "pronunciation": "con-FUN-doh", - "spell_type": "Charm", - "description": "Causes the victim to become confused and befuddled.", - "mention": "In 1994, Severus Snape asserted that Harry, Ron and Hermione had this charm cast on them so that they would believe Sirius Black's claim of innocence; used two years later by Hermione to allow Ron to join the Gryffindor Quidditch team. It was used multiple times in 1997 and 1998.", - "etymology": "The incantation, when non-capitalised, means \"I confuse\"; the title may derive from the Latin confundere, meaning \"to confuse\" or \"to perplex.\"", - "note": null - }, - { - "id": 60, - "name": "Conjunctivitis Curse", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Causes irritation in the eyes, forcing them to swell shut. The Oculus Potion is able to counteract this curse. Dragons are particularly susceptible to this curse, as their hide makes them resistant to most spells, while their eyes remain vulnerable.", - "mention": "It was suggested by Sirius Black in his letter to Harry for him to use this spell on a dragon. Olympe Maxime used this spell on some giants in 1995.", - "etymology": "\"Conjunctivitis\" is the technical term for \"pink eye,\" demonstrating its effects of irritating the eye and causing it to shut.", - "note": null - }, - { - "id": 61, - "name": "Cornflake skin spell", - "other_name": null, - "pronunciation": null, - "spell_type": null, - "description": "This spell causes the victim's skin to appear as though it was coated in cornflakes.", - "mention": "In 1996, an unnamed student went to the hospital for treatment after he was hit with it, which was done in retaliation for the Inquisitorial Squad's recent behaviour.", - "etymology": null, - "note": null - }, - { - "id": 62, - "name": "Cracker Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "This spell is used to conjure exploding wizard crackers; it can be used in duelling to harm the opponent, but the force of the explosion may also affect the caster.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 63, - "name": "Cribbing Spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Spell", - "description": "This spell, which may possibly be a charm, is used to assist the caster in cheating on written papers, tests, and exams. It is possible that these spells can negate anti-cheating spells.", - "mention": "In 1991, an unnamed Slytherin student asked his fellow students whether any of them knew any good cribbing spells.", - "etymology": null, - "note": null - }, - { - "id": 64, - "name": "Crinus Muto", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Used to transfigure the colour and style of one's hair.", - "mention": "This maybe be the spell that caused Harry to turn his eyebrow yellow in 1996.", - "etymology": null, - "note": null - }, - { - "id": 65, - "name": "Crucio", - "other_name": "Cruciatus Curse", - "pronunciation": "KROO-see-oh", - "spell_type": "Curse", - "description": "Inflicts intense pain on the recipient of the curse. This curse does not physically harm the victim, but may in extreme cases drive them insane. The pain is described as having hot knives being driven into the victim. It cannot be cast successfully by a person who is doing so out of pure spite or anger; one must feel a true desire to cause the victim pain. If one casts this spell, he or she will receive a life sentence in Azkaban prison for it, as with the other two Unforgivable Curses.", - "mention": "Infamously used by Death Eaters Bellatrix Lestrange, Rabastan Lestrange, Rodolphus Lestrange and Bartemius Crouch Junior to torture the Aurors Frank and Alice Longbottom into insanity.", - "etymology": "Latin crucio means \"I torture\".", - "note": null - }, - { - "id": 66, - "name": "Defodio", - "other_name": "Gouging Spell", - "pronunciation": "deh-FOH-dee-oh", - "spell_type": "Charm", - "description": "Allows the caster to dig and carve through the target.", - "mention": "Used by The Trio to escape from a bank in 1998 while riding a dragon. It was later used by Harry to write the epitaph for Dobby, who had been killed.", - "etymology": "The incantation is Latin for \"I dig\".", - "note": null - }, - { - "id": 67, - "name": "Deletrius", - "other_name": "Eradication Spell", - "pronunciation": "deh-LEE-tree-us", - "spell_type": "Charm", - "description": "Counter-charm to the Reverse Spell, vanishing the image of the last spell cast. It may also disintegrate other certain images.", - "mention": "This spell was only ever seen in 1994 when Amos Diggory used Prior Incantato to detect that Winky had cast Morsmordre using Harry Potter's wand.", - "etymology": "Latin delere, meaning \"to destroy\", and English \"detritus\", meaning rubble.", - "note": null - }, - { - "id": 68, - "name": "Densaugeo", - "other_name": null, - "pronunciation": "den-SAW-jee-oh", - "spell_type": "Hex", - "description": "This hex causes the victim's teeth to grow rapidly, but can also be used to restore lost teeth, as proven when Ted Tonks did so in 1997 for Harry Potter.", - "mention": "Introduced in 1994, when Draco Malfoy's spell rebounded upon Hermione Granger; her teeth were past her collar before she was forced to run to the hospital to get them shrunk. Later used in 1997 to mend Harry Potter's broken teeth.", - "etymology": "From Latin dens, meaning \"tooth\", and augeo, meaning \"I enlarge\"; essentially, it means \"I enlarge the tooth\".", - "note": null - }, - { - "id": 69, - "name": "Deprimo", - "other_name": null, - "pronunciation": "deh-PREEM-oh", - "spell_type": "Charm", - "description": "Charm used to blast holes in the ground.", - "mention": "Hermione Granger blasted a hole through the living room floor of Xenophilius Lovegood's house in 1998 using this spell.", - "etymology": "The incantation, when non-capitalised, means \"to depress\" or \"depress\".", - "note": null - }, - { - "id": 70, - "name": "Depulso", - "other_name": "Banishing Charm", - "pronunciation": "deh-PUL-soh", - "spell_type": "Charm", - "description": "Sends the target away from the caster. It is the counter-charm to the Summoning Charm.", - "mention": "Although it is learned in the fourth-year charms class at Hogwarts, it is used multiple times in 1993, as well as in 1995.", - "etymology": "From the Latin depulsio, meaning \"drive away\".", - "note": null - }, - { - "id": 71, - "name": "Descendo", - "other_name": null, - "pronunciation": "deh-SEN-doh", - "spell_type": "Charm", - "description": "Causes object to fall or move downwards.", - "mention": "In 1997, it was used by Ron to magically cause the stairs in his bedroom, which lead to his family's attic, to descend; later that year, Crabbe used it in an attempt to cause a wall of rubbish behind which Ron was hiding to fall on him.", - "etymology": "Descendo is Latin for \"I descend\".", - "note": null - }, - { - "id": 72, - "name": "Desk Into Pig", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Turns desks into pigs.", - "mention": "Professor McGonagall used this spell as a demonstration for her class of first years in 1991, then changed the pig back into a desk.", - "etymology": null, - "note": null - }, - { - "id": 73, - "name": "Deterioration Hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Impairs foes and reduces their stamina.", - "mention": "Minerva McGonagall taught members of the Statute of Secrecy Task Force this hex to help them address the results of the Calamity in the 2010s.", - "etymology": null, - "note": null - }, - { - "id": 74, - "name": "Diffindo", - "other_name": "Severing Charm", - "pronunciation": "dih-FIN-doh", - "spell_type": "Charm", - "description": "Used to precisely cut or tear objects.", - "mention": "Used twice in 1994, the first time being by Harry Potter to cut Cedric Diggory's bag in order to talk to the latter, and the second time being by Ron Weasley to cut the lace from the cuffs of his dress robes in an attempt to make them seem less feminine. The spell was used a third time by Harry to swap the covers of his second-hand and brand-new copies of Advanced Potion-Making.", - "etymology": "Latin diffindere, meaning \"to divide\" or \"to split\".", - "note": null - }, - { - "id": 75, - "name": "Diminuendo", - "other_name": null, - "pronunciation": "dim-in-YEW-en-DOUGH", - "spell_type": "Charm", - "description": "Forces the target to shrink.", - "mention": "Performed by Nigel Wolpert in 1995, during a Dumbledore's Army meeting.", - "etymology": "The incantation derives from the musical term diminuendo, meaning \"a gradual decrease of the volume of sound\".", - "note": null - }, - { - "id": 76, - "name": "Dissendium", - "other_name": null, - "pronunciation": "dih-SEN-dee-um", - "spell_type": "Charm", - "description": "Used to open passages.", - "mention": "Used multiple times in 1993 to open the statue of Gunhilda of Gorsemoor, then again four years later in a failed attempt to open Salazar Slytherin's Locket.", - "etymology": "There are numerous suggestions.", - "note": "This may not be a spell at all in the strict sense but a password; however, when used for the statue of the hump-backed witch, one must tap the statue with their wand, indicating that it is in fact a spell." - }, - { - "id": 77, - "name": "Disillusionment Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Causes the target to blend seamlessly in with its surroundings, like a chameleon.", - "mention": "Used by Alastor Moody to disguise Harry Potter in 1995.", - "etymology": null, - "note": null - }, - { - "id": 78, - "name": "Draconifors", - "other_name": "Draconifors Spell", - "pronunciation": "drah-KOH-nih-fors", - "spell_type": "Transfiguration", - "description": "Transforms the target into a dragon.", - "mention": "Taught in third year Transfiguration class.", - "etymology": "From the Latin word draco, meaning \"dragon\", and forma meaning \"shape\".", - "note": null - }, - { - "id": 79, - "name": "Drought Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Causes puddles and ponds to dry up. Though not powerful enough to drain a body of water like a lake", - "mention": "Mentioned by Ronald Weasley in 1994 when Harry was getting ready for the Second Task of The Triwizard Tournament.", - "etymology": null, - "note": null - }, - { - "id": 80, - "name": "Ducklifors", - "other_name": "Ducklifors Jinx", - "pronunciation": "DUCK-lih-fors", - "spell_type": "Transfiguration, Jinx", - "description": "Transforms the target into a duck.", - "mention": null, - "etymology": "From the English duck, and the Latin forma meaning \"shape\".", - "note": null - }, - { - "id": 81, - "name": "Duro", - "other_name": "Hardening Charm", - "pronunciation": "DYOO-roh", - "spell_type": "Charm", - "description": "Turns an object to stone.", - "mention": "Used by Hermione Granger in 1998 while escaping from Death Eaters in the Battle of Hogwarts.", - "etymology": "Latin duro means \"harden\".", - "note": null - }, - { - "id": 82, - "name": "Ears to kumquats", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "This spell transforms the victim's ears into kumquats.", - "mention": "In 1995, Luna Lovegood read The Quibbler upside down in order to reveal the secret charm, written in Ancient Runes.", - "etymology": null, - "note": null - }, - { - "id": 83, - "name": "Ear-shrivelling Curse", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Causes the target's ears to shrivel up.", - "mention": "Sometime between 1989 and 1994, Bill Weasley's pen-friend sent him a hat with this curse on it.", - "etymology": null, - "note": null - }, - { - "id": 84, - "name": "Ebublio", - "other_name": "Ebublio Jinx", - "pronunciation": "ee-BUB-lee-oh", - "spell_type": "Jinx", - "description": "Causes the victim to inflate and explode into hundreds of bubbles; it can only be cast if an ally is using Aqua Eructo on the victim simultaneously.", - "mention": "Used often by members of the Statute of Secrecy Task Force.", - "etymology": null, - "note": null - }, - { - "id": 85, - "name": "Engorgio", - "other_name": "Engorgement Charm", - "pronunciation": "en-GOR-jee-oh", - "spell_type": "Charm", - "description": "Causes the target to swell in physical size. Its counter-charm is the Shrinking Charm.", - "mention": "Rubeus Hagrid used this spell on his pumpkins in 1992; two years later, Barty Crouch Jr cast this spell on a spider to make it easier for students to see when he cast a curse on it. Used on another spider three years later to test a new wand.", - "etymology": "The English word engorge means \"swell\".", - "note": "There is much speculation that this spell is the same as the Growth Charm, though this cannot be proven. Note that there is a difference between enlarging and engorging something, similar though they may seem." - }, - { - "id": 86, - "name": "Engorgio Skullus", - "other_name": null, - "pronunciation": "in-GORE-jee-oh SKUH-las", - "spell_type": "Hex", - "description": "Causes the victim's skull to swell disproportionately. This spell may be a variation of the Engorgement Charm, as they share the first word of the incantation. Its countercurse is Redactum Skullus.", - "mention": "This spell can be bought at Wiseacre's Wizarding Equipment in Diagon Alley.", - "etymology": "See etymology for above entry; \"skullus\" is Latin for \"skull\".", - "note": null - }, - { - "id": 87, - "name": "Entomorphis", - "other_name": "Insect Jinx", - "pronunciation": "en-TOE-morph-is", - "spell_type": "Jinx, Transfiguration", - "description": "This hex is used to transform the target into an insectoid for a short time.", - "mention": "Harry Potter contemplated using this hex against Dudley Dursley in 1995, though he decided against it.", - "etymology": null, - "note": null - }, - { - "id": 88, - "name": "Entrail-Expelling Curse", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Expels victim's entrails. Precise effects unknown. Invented by Urquhart Rackharrow.", - "mention": "When Harry Potter visited St Mungo's Hospital for Magical Maladies and Injuries in December 1995, he saw the portrait of Urquhart Rackharrow, which mentioned his invention of this curse.", - "etymology": null, - "note": null - }, - { - "id": 89, - "name": "Episkey", - "other_name": null, - "pronunciation": "ee-PIS-key", - "spell_type": "Healing Spell", - "description": "Used to heal relatively minor injuries, such as broken bones and cartilage.", - "mention": "In 1996, Nymphadora Tonks used this spell to fix Harry's broken nose after Draco Malfoy broke it on the Hogwarts Express,", - "etymology": "The word comes from Greek \"episkeui\" (\"επισκευή\"), which means \"repair\".", - "note": "This is part of a family of healing spells." - }, - { - "id": 90, - "name": "Epoximise", - "other_name": null, - "pronunciation": "ee-POX-i-mise", - "spell_type": "Transfiguration", - "description": "Adheres one object to another, as if they had been glued together.", - "mention": "This spell is often used by students to adhere each other's belongings to their desks (or, unfortunately, their hands).", - "etymology": "Epoximise comes from the English word epoxy, which is a type of adhesive.", - "note": "This spell may be the Permanent Sticking Charm or a variation." - }, - { - "id": 91, - "name": "Erecto", - "other_name": null, - "pronunciation": "eh-RECK-toh", - "spell_type": "Charm", - "description": "Used to erect a tent or other upright structure.", - "mention": "Used by Hermione Granger to construct a shelter for her, Harry Potter, and Ronald Weasley in 1997.", - "etymology": "Erectum is past principle of erigere, which is Latin for \"to erect\".", - "note": null - }, - { - "id": 92, - "name": "Evanesce", - "other_name": null, - "pronunciation": "ev-an-ES-key", - "spell_type": "Transfiguration", - "description": "Vanishes the target", - "mention": null, - "etymology": null, - "note": "This and the Vanishing Spell are almost certainly the same spell." - }, - { - "id": 93, - "name": "Evanesco", - "other_name": "Vanishing Spell", - "pronunciation": "ev-an-ES-koh", - "spell_type": "Transfiguration", - "description": "Vanishes the target. Vanished things go \"into non-being, which is to say, everything.\"", - "mention": "Used by William Weasley to vanish a bundle of old scrolls whilst cleaning 12 Grimmauld Place in 1995.", - "etymology": "From \"evanescene\", meaning \"something that is fleeting or disappears.", - "note": null - }, - { - "id": 94, - "name": "Everte Statum", - "other_name": null, - "pronunciation": "ee-VER-tay STAH-tum", - "spell_type": "Spell", - "description": "Throws the victim backward, similarly to being thrown.", - "mention": "Draco Malfoy used this spell on Harry Potter in 1992 during the Duelling Club.", - "etymology": "The Latin words everte, which means \"to throw out\" and statua, from the same language, meaning \"image\".", - "note": null - }, - { - "id": 95, - "name": "Expecto Patronum", - "other_name": "Patronus Charm", - "pronunciation": "ecks-PECK-toh pah-TROH-numb", - "spell_type": "Charm", - "description": "This charm is a highly powerful and advanced protective spell which will conjure a spirit guardian of their positive emotions to defend against dark creatures; it can also send messages to other witches or wizards. The Patronus takes the form of an animal, unique to each person who casts it. The form of a Patronus can change when one has undergone a period of heightened emotion.", - "mention": "Taught to Harry Potter by Remus Lupin during his Anti-Dementor lessons; This is the only known spell effective against Dementors or Lethifolds.", - "etymology": "Patronus means \"protector\" in Latin; in archaic Latin, it means \"father\"; considering the form Harry's takes, this is interesting. The Latin word expecto means \"I await\"", - "note": null - }, - { - "id": 96, - "name": "Expelliarmus", - "other_name": "Disarming Charm", - "pronunciation": "ex-PELL-ee-ARE-muss", - "spell_type": "Charm", - "description": "Forces whatever an opponent is holding to fly out of their hand. It was considered to be Harry Potter's signature spell.", - "mention": "Used by Severus Snape on Gilderoy Lockhart during a live duelling demonstration during the first and last meeting of the Duelling Club in 1992.", - "etymology": "Probably a combination of Latin expello, meaning \"expel\", and arma, meaning \"weapon\".", - "note": null - }, - { - "id": 97, - "name": "Expulso", - "other_name": "Expulso Curse", - "pronunciation": "ecks-PUHL-soh", - "spell_type": "Curse", - "description": "Provokes an explosion, unique in that it uses pressure to do so as opposed to heat.", - "mention": "Used by Antonin Dolohov during a fight in a cafe in 1997.", - "etymology": "From expulsum, which is past principle of expellere, which means \"expel\".", - "note": null - }, - { - "id": 98, - "name": "Extinguishing Spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Puts out fires.", - "mention": "Charlie Weasley and his friends would use this spell should something go wrong in the tournament.", - "etymology": null, - "note": null - }, - { - "id": 99, - "name": "False memory charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Implants a false memory in the victim without them realising it was not originally theirs.", - "mention": "Voldemort used this spell twice; firstly in 1943 upon his uncle Morfin Gaunt, then sometime later on the house-elf Hokey. Both instances were to hide his crimes and make the victims believe they were responsible. It is likely that Kingsley Shacklebolt used this spell on Marietta Edgecombe in 1996 in order to prevent her from revealing Dumbledore's Army to Cornelius Fudge. This is reinforced by Dumbledore stating that Shacklebolt was \"remarkably quick on the uptake\" in modifying her memory. It is possible that Professor Horace Slughorn used this in the next school year to hide his memory of Voldemort asking him about Horcruxes, although as he retained awareness of the true memory his spell may be a different one. It is also possible that he simply repressed it to such a degree that it could not be extracted from him against his will, as the memory he gave Dumbledore simple went blank at the right times and was replaced by a disembodied shouting, rather than images; this was noted to be crudely done. Hermione Granger used this in 1997 to make her parents believe they were named Wendell and Monica Wilkins respectively, that they have no daughter, and to make them move to Australia in order to protect them from Voldemort and his Death Eaters.", - "etymology": null, - "note": null - }, - { - "id": 100, - "name": "Feather-light charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Makes an object light as a feather.", - "mention": "Harry Potter contemplated using this in 1993 to lighten his trunk so that he could carry it by broom to Gringotts, though he decided against it.", - "etymology": null, - "note": null - }, - { - "id": 101, - "name": "Ferret to human", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Transforms a ferret into a human.", - "mention": "It was used by Minerva McGonagall on Draco Malfoy in 1994.", - "etymology": null, - "note": null - }, - { - "id": 102, - "name": "Ferula", - "other_name": "Bandaging Charm", - "pronunciation": "fer-ROOL-lah", - "spell_type": "Conjuration, Healing spell", - "description": "Conjures up bandages and wraps them around a wound, splinting any broken bones.", - "mention": "Used by Remus Lupin in 1994 to bind Ronald Weasley's broken leg.", - "etymology": "Latin ferula means \"walking-stick\" or \"splint\".", - "note": null - }, - { - "id": 103, - "name": "Fianto Duri", - "other_name": null, - "pronunciation": "fee-AN-toh DOO-ree", - "spell_type": "Charm", - "description": "A defensive charm which, based on the etymology, strengthens shield spells, and perhaps objects in general, in a similar way to Duro.", - "mention": "Used to protect Hogwarts School of Witchcraft and Wizardry in 1998.", - "etymology": "Latin fiant means \"become\" and duri means \"hard\".", - "note": null - }, - { - "id": 104, - "name": "Fidelius Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "An immensely complex charm used to hide secret information within the soul of the charm's recipient, who is called a Secret-Keeper. The information is irretrievable unless the Secret-Keeper willingly chooses to reveal it, and only the aforementioned person can do so.", - "mention": "In 1993, it was explained that when Harry was merely an infant, he and his parents were hidden from Voldemort with this charm; from 1995 onward it was used to protect Grimmauld Place, and in 1998 it was used to protect Shell Cottage.", - "etymology": "Latin fidelis, which means \"faithful\".", - "note": "Although when a Secret-Keeper dies the secret they held can never be revealed to anyone else, in 1997 it is apparent that upon the Keeper's death all those who had been told the secret become keepers in turn." - }, - { - "id": 105, - "name": "Fiendfyre", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Unleashes cursed fire that takes the shape of animals that actively seek out living targets and burn anything in its path, including nearly indestructable substances such as horcruxes. In addition, this fire is made even more dangerous due to the fact that it is extremely difficult to control, and cannot be extinguished with normal or enchanted water.", - "mention": "Though there are numerous instances when it may have been used, it was only proven to have been used in 1998 by Vincent Crabbe, who was killed by it.", - "etymology": null, - "note": null - }, - { - "id": 106, - "name": "Finestra", - "other_name": "Finestra spell", - "pronunciation": "fi-NESS-tra", - "spell_type": "Charm", - "description": "Shatters glass.", - "mention": "On 6 December 1926, Newt Scamander shattered the front window of the Voclain & Co. jewellery store in New York using this spell to try and recapture his escaped niffler when he saw it loose inside the store stealing things.", - "etymology": null, - "note": null - }, - { - "id": 107, - "name": "Finite Incantatem", - "other_name": "General Counter-Spell", - "pronunciation": "fi-NEE-tay in-can-TAH-tem", - "spell_type": "Counter-Spell", - "description": "Terminates all spell effects in the vicinity of the caster.", - "mention": "Severus Snape used this to restore order to the Duelling Club in 1992, after the event had descended into utter chaos.", - "etymology": "Latin finire, meaning \"to finish\", and incantatem.", - "note": null - }, - { - "id": 108, - "name": "Finger-removing jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Removes a person's fingers.", - "mention": "Gunhilda Kneen jinxed her husband with this spell.", - "etymology": null, - "note": null - }, - { - "id": 109, - "name": "Firestorm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Produces a ring of fire from the wand.", - "mention": "Albus Dumbledore used this spell to rescue Harry from Inferi in 1997.", - "etymology": null, - "note": null - }, - { - "id": 110, - "name": "Flagrante Curse", - "other_name": null, - "pronunciation": "flah-GRAHN-tay", - "spell_type": "Curse", - "description": "Causes objects to burn on contact.", - "mention": "The Lestrange Vault had this curse on it.", - "etymology": null, - "note": null - }, - { - "id": 111, - "name": "Flagrate", - "other_name": null, - "pronunciation": "flah-GRAH-tay", - "spell_type": "Charm", - "description": "Writes in midair with firey marks.", - "mention": "Tom Riddle used this spell to write his name; Hermione Granger used it three years later to mark some doors.", - "etymology": "From the Latin flagrate, meaning \"a burn\".", - "note": null - }, - { - "id": 112, - "name": "Flame-Freezing Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Causes fire to tickle those caught in it instead of burning them.", - "mention": "Third year students wrote an essay on the use of this charm in medieval witch-burnings; Wendelin the Weird was burned forty-seven times.", - "etymology": null, - "note": "This may be the spell used in Floo Network, as well as when Albus Dumbledore set Tom Riddle's wardrobe aflame in 1938." - }, - { - "id": 113, - "name": "Flask-conjuring spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Conjuration", - "description": "Conjures a glass flask", - "mention": "On 1 May, 1998, Hermione Granger used this spell to collect the memories of a dying Severus Snape.", - "etymology": null, - "note": null - }, - { - "id": 114, - "name": "Flintifors", - "other_name": null, - "pronunciation": "FLINT-i-fors", - "spell_type": "Transfiguration", - "description": "Transforms objects into matchboxes.", - "mention": "In the 1980s, this spell was covered in third year transfiguration classes.", - "etymology": null, - "note": "This may be related to, or the incantation for Match to needle." - }, - { - "id": 115, - "name": "Flipendo", - "other_name": "Knockback Jinx", - "pronunciation": "fli-PEN-doh", - "spell_type": "Jinx", - "description": "Knocks objects and creatures backwards.", - "mention": "Taught in first year Defence Against the Dark Arts and Charms class.", - "etymology": null, - "note": null - }, - { - "id": 116, - "name": "Flipendo Duo", - "other_name": "Knockback Jinx Duo", - "pronunciation": "flih-PEN-doh DOO-oh", - "spell_type": "Jinx", - "description": "A more powerful version of Flipendo.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 117, - "name": "Flipendo Tria", - "other_name": null, - "pronunciation": "flih-PEN-doh TREE-ah", - "spell_type": "Jinx", - "description": "A more powerful version of Flipendo Duo; it is said to resemble a miniature tornado.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 118, - "name": "Flying Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "This spell is cast on broomsticks and flying carpets to allow them to fly.", - "mention": "Draco Malfoy mentioned this spell when insulting Ron Weasley's broomstick, wondering why anyone would charm it.", - "etymology": null, - "note": null - }, - { - "id": 119, - "name": "Fumos", - "other_name": "Smokescreen Spell", - "pronunciation": "FYOO-moss", - "spell_type": "Charm", - "description": "Defensive smokescreen that hinders visibility.", - "mention": "This spell is covered in The Dark Forces: A Guide to Self-Protection.", - "etymology": null, - "note": null - }, - { - "id": 120, - "name": "Fumos Duo", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "A more powerful version of Fumos.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 121, - "name": "Furnunculus", - "other_name": "Pimple Jinx", - "pronunciation": "fer-NUN-kyoo-luss", - "spell_type": "Jinx", - "description": "Covers the target in boils (or pimples).", - "mention": "Used by Harry Potter on Gregory Goyle.", - "etymology": "Latin furnunculus, meaning \"petty thief\", or English furuncle, a synonym for \"boil\".", - "note": null - }, - { - "id": 122, - "name": "Fur spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Causes fur to grow on the victim.", - "mention": "Fred and George Weasley used this spell on each other.", - "etymology": null, - "note": null - }, - { - "id": 123, - "name": "Geminio", - "other_name": "Doubling Charm", - "pronunciation": "jeh-MIH-nee-oh", - "spell_type": "Charm", - "description": "Duplicates the target. When used to duplicate objects indefinitely on purpose, is known as the Gemino Curse.", - "mention": "Used by Hermione Granger on Salazar Slytherin's Locket to disguise her presence from Dolores Umbridge.", - "etymology": "The Latin word gemini means \"twins\".", - "note": null - }, - { - "id": 124, - "name": "Glacius", - "other_name": "Freezing Spell", - "pronunciation": "GLAY-see-us", - "spell_type": "Charm", - "description": "Freezes the target with icy-cold air.", - "mention": null, - "etymology": "From Latin glacies, which means \"ice\".", - "note": "Not to be confused with the Freezing Charm, which merely immobilises things." - }, - { - "id": 125, - "name": "Glacius Duo", - "other_name": null, - "pronunciation": "GLAY-see-us DOO-oh", - "spell_type": "Charm", - "description": "A more powerful version of Glacius.", - "mention": null, - "etymology": "From Latin glacies, which means \"ice\".", - "note": null - }, - { - "id": 126, - "name": "Glacius Tria", - "other_name": null, - "pronunciation": "GLAY-see-us TREE-ah", - "spell_type": "Charm", - "description": "A more powerful version of Glacius Duo.", - "mention": null, - "etymology": "From Latin glacies, which means \"ice\".", - "note": null - }, - { - "id": 127, - "name": "Glisseo", - "other_name": null, - "pronunciation": "GLISS-ee-oh", - "spell_type": "Charm", - "description": "Causes the steps on a stairway to flatten into a slide.", - "mention": "Used by Hermione Granger to escape from Death Eaters.", - "etymology": "Probably derived from French glisser, meaning \"to slide\".", - "note": null - }, - { - "id": 128, - "name": "Green Sparks", - "other_name": null, - "pronunciation": null, - "spell_type": null, - "description": "Jet of green sparks that can be used to signal an emergency or as a minor duelling spell.", - "mention": "Taught in Defence Against the Dark Arts; When Hagrid, Harry and Hermione try to find an injured unicorn, Hagrid says that if it is found, they must send up green sparks.", - "etymology": null, - "note": "The incantation is almost certainly Verdimillious." - }, - { - "id": 129, - "name": "Gripping Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Helps someone grip something more effectively.", - "mention": "Used on Quaffles to help Chasers carry them.", - "etymology": null, - "note": null - }, - { - "id": 130, - "name": "Gytrash-conjuring spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Conjuration, Dark Arts", - "description": "Conjures luminous green Gytrashes from the wand, which can be commanded by the caster to attack an opponent.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 131, - "name": "Hair-thickening Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Thickens the victim's hair.", - "mention": "Severus Snape claimed Alicia Spinnet used this spell on her eyebrows, where as in reality she was jinxed by Miles Bletchley.", - "etymology": null, - "note": null - }, - { - "id": 132, - "name": "Harmonia Nectere Passus", - "other_name": null, - "pronunciation": "har-MOH-nee-a NECK-teh-ray PASS-us", - "spell_type": "Charm", - "description": "Repairs a Vanishing Cabinet.", - "mention": "Used by Draco Malfoy to mend a cabinet in 1996.", - "etymology": "Latin harmonia, which means \"harmony\", nectere, which means \"to bind\", and passus, which means \"step\".", - "note": null - }, - { - "id": 133, - "name": "Herbifors", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "This spell causes flowers to sprout from the victim.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 134, - "name": "Herbivicus", - "other_name": "Herbivicus Charm", - "pronunciation": "her-BIV-i-cuss", - "spell_type": "Charm", - "description": "Rapidly grows plants.", - "mention": "Taught by Professor Pomona Sprout in Herbology classes.", - "etymology": null, - "note": null - }, - { - "id": 135, - "name": "Hermione Granger's jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Causes a traitor to break out in boils spelling \"SNEAK\" on his or her forehead.", - "mention": "Hermione Granger designed and placed this jinx on the parchment signed by all members of Dumbledore's Army. When Marietta Edgecombe betrayed the D.A. to Dolores Umbridge, the jinx was triggered.", - "etymology": null, - "note": "This jinx was invented by Hermione, and may have been inspired by Furnunculus." - }, - { - "id": 136, - "name": "Homing spell", - "other_name": null, - "pronunciation": null, - "spell_type": null, - "description": "Offensive spells that follow their target with a constant speed after being cast.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 137, - "name": "Homenum Revelio", - "other_name": "Human-Presence-Revealing Spell", - "pronunciation": "HOM-eh-num reh-VEH-lee-oh", - "spell_type": "Charm", - "description": "Reveals human presence in the vicinity of the caster.", - "mention": "Used multiple times by various people in 1997.", - "etymology": "Most likely from Latin homo, meaning human, and \"reveal\", though the classical Latin form would be hominem instead of homenum, which shows Portuguese influence (\"man\" is homem in Portuguese).", - "note": "It can be used non-verbally; Dumbledore does so to detect Harry underneath his Invisibility Cloak." - }, - { - "id": 138, - "name": "Homonculous Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Tracks the movements of human beings. The charm has a powerful effect in that it is not fooled by various methods of concealment and disguise, such as invisibility cloaks, the Polyjuice Potion or transformed Animagi.", - "mention": "This charm was used on Marauder's Map by James Potter, Sirius Black, Remus Lupin, and Peter Pettigrew after charting the grounds and halls of Hogwarts Castle in order to track the movements of everyone within the castle grounds.", - "etymology": null, - "note": null - }, - { - "id": 139, - "name": "Homorphus Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Causes an Animagus or transfigured object to assume its normal shape.", - "mention": "According to Lockhart, he used it to force the Wagga Wagga Werewolf to take its human form.", - "etymology": "Latin homo meaning \"person\" and Greek morphosis meaning \"shaping\"", - "note": null - }, - { - "id": 140, - "name": "Horn tongue hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Transforms the target's tongue into a horn.", - "mention": "Harry Potter came across it while perusing the index of Basic Hexes for the Busy and Vexed in search of a way to overcome the dragon he knew he would have to face in the First Task of the Triwizard Tournament. He quickly ruled it out, however, realising it would only give the dragon yet another way to attack him.", - "etymology": null, - "note": null - }, - { - "id": 141, - "name": "Horton-Keitch Braking Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Charm patented by Basil Horton and Randolph Keitch that allows for broom-riders to stop more precisely. This spell was first used on the Comet 140 to prevent players from overshooting the goal posts and from flying off-sides.", - "mention": "Enchanted on all Comet 140 broomsticks.", - "etymology": null, - "note": null - }, - { - "id": 142, - "name": "Horcrux-making spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Dark Arts", - "description": "This spell allows a part of a wizard's soul to pass into an object, thereby making the object a Horcrux. One has to commit murder and take advantage of the soul's \"splitting apart\" by this supreme act of evil in order to be able to perform this spell, and it is probably very complex. In 1943, Horace Slughorn described the spell to a young Tom Riddle as encasing a portion of the torn soul and placing it within an object. The spell itself is described in detail in a banned book known as \"Secret of the Darkest Art\", which Hermione Granger summoned from Albus Dumbledore's office near the end of their sixth year. According to the text, use of this spell to separate the soul will make the remaining portion of the soul very fragile, and can only be reversed by \"remorse\" of the wrongs the creator had made; however, the pain caused by attempting to reverse the creation of a Horcrux can destroy the individual.", - "mention": "Used by Lord Voldemort while creating his Horcruxes.", - "etymology": null, - "note": null - }, - { - "id": 143, - "name": "Hot-Air Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Conjures a stream of hot air", - "mention": "Used by Hermione Granger in 1995 to dry off her robes. Also used shortly after to melt snow. Also was used by Albus Dumbledore in 1997 to dry Harry's and his own robes.", - "etymology": null, - "note": null - }, - { - "id": 144, - "name": "Hour-Reversal Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Reverses small amounts of time (up to five hours).", - "mention": "Used to create Time-Turners, as mentioned by Professor Saul Croaker; this charm is highly unstable.", - "etymology": null, - "note": null - }, - { - "id": 145, - "name": "Hover Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Used to make the target hover. It is one of the many lesser variations of the Levitation Charm.", - "mention": "Used by Dobby to demolish a pudding.", - "etymology": null, - "note": null - }, - { - "id": 146, - "name": "Hurling Hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Causes brooms to vibrate violently in the air and try to buck their rider off.", - "mention": "Professor Flitwick suggested that Harry's confiscated Firebolt may be jinxed with this spell.", - "etymology": null, - "note": "May be related to the broom jinx." - }, - { - "id": 147, - "name": "Illegibilus", - "other_name": null, - "pronunciation": "i-LEDJ-i-bull-is", - "spell_type": "Charm", - "description": "Makes writing impossible to read.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 148, - "name": "Immobulus", - "other_name": "Freezing Charm", - "pronunciation": "ih-MOH-byoo-luhs", - "spell_type": "Charm", - "description": "Immobilises and stops the actions of the target. It works both on living and inanimate things.", - "mention": "Hermione used it 1992 to freeze two Cornish Pixies. Horace Slughorn used Freezing Charms todisable a Muggle Burglar Alarm.", - "etymology": "From the Latin “immobilis”, meaning immovable.", - "note": null - }, - { - "id": 149, - "name": "Impedimenta", - "other_name": "Impediment Jinx", - "pronunciation": "im-ped-ih-MEN-tah", - "spell_type": "Jinx", - "description": "Slows down or stops the target.", - "mention": "Used in 1995 when Harry was practising for the Third Task of the Triwizard Tournament. In 1996, Harry saw in a memory that James Potter used it on Severus Snape. Also used in 1997 by Harry against the Inferi and Snape. Stronger uses of this spell seem capable of blowing targets away.", - "etymology": "Latin impedimentum (plural impedimenta), \"a hindrance\" or \"an impediment\".", - "note": null - }, - { - "id": 150, - "name": "Imperio", - "other_name": "Imperius Curse", - "pronunciation": "im-PEER-ee-oh", - "spell_type": "Curse", - "description": "Places the victim completely under the caster's control. The victim is put into a trance-like state, and becomes very suggestible to the commands of the caster. However, those who are strong willed may learn to resist it. One of the three \"Unforgivable Curses,\" the use of this curse on another human results in capital punishment or life sentence in Azkaban.", - "mention": "Used on many occasions. First seen in 1994 when Barty Crouch Jr, impersonating ex-Auror Alastor Moody, used it on a spider and later on students during a \"class demonstration\" in a Defence Against the Dark Arts class. While breaking into Gringotts in 1998, Harry used it on a goblin and a Death Eater when they became suspicious.", - "etymology": "Latin impero, I command, and English \"imperious\".", - "note": null - }, - { - "id": 151, - "name": "Imperturbable Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Creates an invisible magical barrier on an object, such as a door. This barrier bounces objects off of it, and muffles sounds.", - "mention": "The spell was used in 1995 by Hermione to trap Rita Skeeter within a bottle while she was in beetle form. It was also used by Molly Weasley in the same year on the door of the room in which an Order of the Phoenix meeting was being held, in order to prevent her sons, Fred and George, from eavesdropping.", - "etymology": null, - "note": null - }, - { - "id": 152, - "name": "Impervius", - "other_name": "Impervius Charm", - "pronunciation": "im-PUR-vee-us", - "spell_type": "Charm", - "description": "Makes an object repel water and mist.", - "mention": "Used by Hermione Granger in 1993 on Harry's glasses while in a Quidditch match and also by the Gryffindor Quidditch team. Also used in 1997, first by Ron to protect objects in Yaxley's office from rain, and then by Hermione to protect Harry, Ron and Griphook from the burning treasure in the Lestranges' vault.", - "etymology": "It is said that the Latin impervius means (and is the source of) \"impervious\"; although it is the source of the word, it is better translated as impassable, as in a mountain peak.", - "note": null - }, - { - "id": 153, - "name": "Inanimatus Conjurus", - "other_name": "Inanimatus Conjurus Spell", - "pronunciation": "in-an-ih-MAH-tus CON-jur-us", - "spell_type": "Transfiguration", - "description": "It is a spell of unknown effect, most likely used to conjure an inanimate object.", - "mention": "Mentioned briefly in 1995.", - "etymology": null, - "note": null - }, - { - "id": 154, - "name": "Incarcerous", - "other_name": "Incarcerous Spell", - "pronunciation": "in-KAR-ser-us", - "spell_type": "Conjuration", - "description": "Ties up the target with ropes conjured from thin air.", - "mention": "First heard in 1996, when Dolores Umbridge tries to hold off Centaurs. Also used by Harry on the Inferi in Voldemort's Crystal Cave in 1997 and also attempted to use it on Severus Snape in the same year.", - "etymology": "Probably English incarcerate, \"to imprison\". Possibly linked to the Latin in carcerem, \"in(to) prison\".", - "note": "A non-verbal version of this spell may have been used to tie up Remus Lupin by Severus Snape during the encounter in the Shrieking Shack, and then later Peter Pettigrew in 1994. It may also have been used by Quirrell in 1992, although he is said to have merely \"snapped his fingers\". Also, it may have been the spell Antonin Dolohov used non-verbally to bind Ron Weasley with \"shining black ropes\" in a skirmish on Tottenham Court Road." - }, - { - "id": 155, - "name": "Incendio", - "other_name": "Fire-Making Spell", - "pronunciation": "in-SEN-dee-oh", - "spell_type": "Charm, Conjuration", - "description": "Produces fire.", - "mention": "It was used in 1994 by Arthur Weasley to create a fire in the Dursleys' hearth so that he could use Floo powder there.", - "etymology": "Latin incendere, \"to set fire (to)\". Note that the first principal part of this verb (meaning \"I set fire\") is incendo, not incendio; the incantation does not match exactly any correct conjugation of the verb. Incêndio, in Portuguese (same pronunciation as in English) means 'huge fire'. \"Encender\" in Spanish means \"to ignite\" and \"Incendie\" in French means flame. (A plausible but less likely source might be that it is a back-formation from the English word \"incendiary,\" i.e., \"causing fire.\")", - "note": null - }, - { - "id": 156, - "name": "Incendio Duo", - "other_name": null, - "pronunciation": "in-SEN-dee-oh DOO-oh", - "spell_type": "Charm", - "description": "A stronger version of Incendio.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 157, - "name": "Incendio Tria", - "other_name": null, - "pronunciation": "in-SEN-dee-oh TREE-ah", - "spell_type": "Charm", - "description": "An improvement over both Incendio and Incendio Duo.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 158, - "name": "Inflatus", - "other_name": "Inflating Charm", - "pronunciation": "in-FLAY-tus", - "spell_type": "Charm", - "description": "Inflates the target, filling it with air.", - "mention": null, - "etymology": "The prefix 'Inflate' derives from the English verb \"to expand with oxygen\".", - "note": null - }, - { - "id": 159, - "name": "Informous", - "other_name": "Informous Spell", - "pronunciation": "in-FOR-m-es", - "spell_type": "Charm", - "description": "Informous is a spell that is used to complete one's Folio Bruti. A page with a brief description (including weaknesses and strengths) of the charmed creature is added to the caster's Folio Bruti.", - "mention": null, - "etymology": "The prefix Info derives from the English verb \"to inform\".", - "note": null - }, - { - "id": 160, - "name": "Instant Scalping Hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Instantly scalps all the hair off of a target.", - "mention": "Harry Potter came across it while browsing the index of Basic Hexes for the Busy and Vexed, trying to find a way to fight the dragon he knew he would have to face for the First Task of the Triwizard Tournament. He quickly decided it would be ineffective, because dragons do not have hair.", - "etymology": null, - "note": "This spell has similar effects to the Hair-Loss Curse." - }, - { - "id": 161, - "name": "Intruder Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Detects intruders and sounds an alarm.", - "mention": "Horace Slughorn used it on a Muggle-owned house he stayed in temporarily in 1996, but did not hear it go off when Albus Dumbledore and Harry Potter arrived, as he was in the bath.", - "etymology": null, - "note": null - }, - { - "id": 162, - "name": "Locomotor Wibbly", - "other_name": "Jelly-Legs Curse", - "pronunciation": "loh-koh-MOH-tor WIB-lee", - "spell_type": "Curse, Jinx", - "description": "Causes the victim's legs to collapse as if they were turned to jelly.", - "mention": "One of the spells mentioned in Curses and Counter-Curses by Vindictus Viridian, used on Harry, practising for the Third Task of the Triwizard Tournament, by Hermione. Also, Draco Malfoy was hit with this jinx (along with another one) at the end of the term.", - "etymology": null, - "note": null - }, - { - "id": 163, - "name": "Jelly-Brain Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Reduces the target's mental processes.", - "mention": "During the September 1999 riot that took place during the Puddlemere United/Holyhead Harpies Quidditch game, a lot of Harpy supporters were using this jinx.", - "etymology": null, - "note": "This spell may have been the spell that the Death Eaters hit Ron with in Harry Potter and the Order of the Phoenix in the Battle of the Department of Mysteries." - }, - { - "id": 164, - "name": "Jelly-Fingers Curse", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Causes target's fingers to become wobbly, making it uneasy for the victim to grasp objects.", - "mention": "After a June 1999 Pride of Portree/Appleby Arrows Quidditch game, the losing Seeker accused his opposite number of putting this curse on him as they both closed in on the Snitch.", - "etymology": null, - "note": null - }, - { - "id": 165, - "name": "Knee-reversal hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Puts knees on backward.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 166, - "name": "Lacarnum Inflamari", - "other_name": null, - "pronunciation": "la-KAR-num in-flah-MAR-ee", - "spell_type": "Charm", - "description": "Ignites cloaks.", - "mention": "Used by Hermione in 1991 to stop Snape from cursing Harry. The incantation is only used in the film adaptation of Harry Potter and the Philosopher's Stone.", - "etymology": "Latin inflammo, or the verb inflammatio meaning \"to set on fire\". Lacarnum, from the Latin “lacerna”, meaning “cloak”.", - "note": null - }, - { - "id": 167, - "name": "Langlock", - "other_name": null, - "pronunciation": "LANG-lock", - "spell_type": "Jinx", - "description": "Sticks a victim's tongue to the roof of their mouth. Created by Severus Snape.", - "mention": "Used by Harry on Peeves and twice on Argus Filch, to general applause.", - "etymology": "Probably from the French langue (\"tongue\") and the English \"lock\".", - "note": null - }, - { - "id": 168, - "name": "Lapifors", - "other_name": "Lapifors Spell", - "pronunciation": "LAP-ih-forz", - "spell_type": "Transfiguration", - "description": "Transforms the target into a rabbit.", - "mention": "Taught in third year Transfiguration class.", - "etymology": "From Latin lepus meaning hare, and forma meaning \"shape\".", - "note": null - }, - { - "id": 169, - "name": "Leek Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Makes leeks sprout out of the target's ears.", - "mention": "Used by a fighting Gryffindor fourth year and sixth year Slytherin before a Quidditch match in 1992.", - "etymology": null, - "note": null - }, - { - "id": 170, - "name": "Legilimens", - "other_name": "Legilimency Spell", - "pronunciation": null, - "spell_type": "Charm", - "description": null, - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 171, - "name": "Type: Charm\n", - "other_name": null, - "pronunciation": null, - "spell_type": null, - "description": "Allows the caster to delve into the mind of the victim, allowing the caster to see the memories, thoughts, and emotions of the victim.", - "mention": "Used by Severus Snape on Harry after he had a dream about Arthur Weasley being attacked by Nagini in 1995. Also during Occlumency lessons in 1996. Also used non-verbally by Snape on Harry in 1997 to allow him to see where Harry had learned the Sectumsempra spell.", - "etymology": "Latin legere (\"to read\") and mens (\"mind\").", - "note": null - }, - { - "id": 172, - "name": "Levicorpus", - "other_name": null, - "pronunciation": "leh-vee-COR-pus", - "spell_type": "Jinx", - "description": "Hoists people up into the air by their ankle. Created by Severus Snape.", - "mention": "Apparently invented by the Half-Blood Prince; it is a non-verbal-only spell (although it is whispered by Hermione in 1997). Harry Potter learnt it by reading the notes written by the Half-Blood Prince. He used it on Ron. The previous year, Harry had seen (through the Pensieve used by Severus Snape) his father, James Potter, use the spell against Professor Snape.", - "etymology": "Latin levare, \"raise\" and corpus, \"body\" or \"corpse\".", - "note": null - }, - { - "id": 173, - "name": "Liberacorpus", - "other_name": null, - "pronunciation": "LIB-er-ah-cor-pus", - "spell_type": "Counter-Jinx", - "description": "The counter-jinx to Levicorpus.", - "mention": "Harry used the spell in 1996 to counteract Levicorpus he had inadvertently cast on Ron.", - "etymology": "Latin liberare, \"to free\", and corpus, \"body\" or \"corpse\".", - "note": "It is not clear why Levicorpus has a specific counter-spell, and is not neutralised by simply using Finite Incantatem, although this could be due to the fact that Snape invented the spell and therefore made it irreversible except by its specific counter-curse." - }, - { - "id": 174, - "name": "Locomotor", - "other_name": "Locomotion Charm", - "pronunciation": "loh-kuh-MOH-tor", - "spell_type": "Charm", - "description": "Allows a witch or wizard to levitate a target a few inches off of the ground and then move said object in any given direction. Similarly to the Summoning Charm, a specific object can be moved by calling the object aloud after saying the incantation.", - "mention": "Used by Nymphadora Tonks in Harry Potter to move Harry's trunk from his room. Filius Flitwick similarly used it to move Sybill Trelawney's trunk after Dolores Umbridge sacked her. Parvati Patil and Lavender Brown used this spell to race their pencil cases around the edges of the table. A variation seen in 1998 is Piertotum Locomotor, which caused the statues of Hogwarts to be animated.", - "etymology": "Latin locus (place) and moto, \"set in motion\" (passive motor), or English locomotion.", - "note": null - }, - { - "id": 175, - "name": "Locomotor Mortis", - "other_name": "Leg-Locker Curse", - "pronunciation": "LOH-koh-moh-tor MOR-tis", - "spell_type": "Curse", - "description": "Sticks legs together.", - "mention": "Used by Draco Malfoy on Neville Longbottom in 1991. Used by Harry Potter on Draco Malfoy, who deflected it, in 1996.", - "etymology": "English locomotion, \"movement\" + Latin mortis, \"of death\".", - "note": "It is unclear whether or how this spell is related to the Locomotor spell. It could, however, be that the curse \"locks\" any part of the body in accordance to where it is pointed, or moves the body into a position of the caster's choosing whilst placing them into an immobile state. It is possible that Draco had pointed his wand at Neville and the curse \"locked\" his legs together." - }, - { - "id": 176, - "name": "Lumos", - "other_name": "Wand-Lighting Charm", - "pronunciation": "LOO-mos", - "spell_type": "Charm", - "description": "Illuminates the tip of the caster's wand, allowing the caster to see in the dark.", - "mention": "Used by Albus Dumbledore to illuminate the dark cave in 1997.", - "etymology": "Latin lumen, \"light\".", - "note": "opposite incantation, Nox, puts the light out." - }, - { - "id": 177, - "name": "Lumos Duo", - "other_name": "Wand-Lighting Charm Duo", - "pronunciation": "LOO-mos DOO-oh", - "spell_type": "Charm", - "description": "Creates a focused beam of light from the end of the wand. It is a variant of the Wand-Lighting Charm.", - "mention": null, - "etymology": "Lumos plus Latin duo, \"two\".", - "note": null - }, - { - "id": 178, - "name": "Lumos Maxima", - "other_name": null, - "pronunciation": "LOO-mos Ma-cks-ima", - "spell_type": "Charm", - "description": "Produces a blinding flash of bright white light from the tip of the wand. It is a variant of the Wand-Lighting Charm.", - "mention": "First practised by Harry in the home of the Dursleys, then used by Dumbledore to light up the cave of the Horcrux.", - "etymology": "Lumos + maxima, Latin \"greatest.\"", - "note": null - }, - { - "id": 179, - "name": "Lumos Solem", - "other_name": "Lumos Solem Spell", - "pronunciation": "LOO-mos SO-lem", - "spell_type": "Charm", - "description": "Produce a blinding flash of sunlight. It is a variant of the Wand-Lighting Charm.", - "mention": "Used by Hermione to free Ron from the Devil's Snare. The incantation was only used in the film adaptation of Harry Potter and the Philosopher's Stone.", - "etymology": "Derived from two words; the Latin lumen, meaning \"light\", and the Latin word for \"sun\", which in its accusative case is \"solem\".", - "note": "It is possible that the quality of the light is on the warmer solar end of the spectrum; Considering the known uses that the spell has been put to, it isn't that much of a stretch to presume that the spell is used to conjure Sunlight." - }, - { - "id": 180, - "name": "Magicus Extremos", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Partnership-based charm that temporarily increases the casters' spell power.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 181, - "name": "Melofors", - "other_name": "Melofors Jinx", - "pronunciation": null, - "spell_type": "Jinx", - "description": "Encases the victim's head in a pumpkin.", - "mention": "Cornelius Fudge was rumoured to have been a victim of this jinx after having been overpowered by Albus Dumbledore in a duel in 1996.", - "etymology": null, - "note": null - }, - { - "id": 182, - "name": "Meteolojinx Recanto", - "other_name": null, - "pronunciation": "mee-tee-OH-loh-jinks reh-CAN-toh.", - "spell_type": "Counter-Charm", - "description": "Causes weather effects caused by jinxes to cease.", - "mention": "Suggested in 1997 by Arthur Weasley to Ron (disguised as Reginald Cattermole by use of Polyjuice Potion) as the best way to clear up the rain jinx on a Ministry office. Also used by Bartemius Crouch Jr (Disguised as Alastor Moody) In 1994 to cease the weather effect of the Great Hall's Ceiling insisting it is broken as he told Dumbledore to \"Fix his ceiling\".", - "etymology": "Meteorology, the study of weather, the word jinx and recant, \"to withdraw or retract\". Interestingly in modern English recant means to say that you no longer hold a belief.", - "note": null - }, - { - "id": 183, - "name": "Mimblewimble", - "other_name": "Tongue-Tying Curse", - "pronunciation": "MIM-bull-wim-bull", - "spell_type": "Curse", - "description": "Ties the target's tongue in a knot, preventing them from making coherent speech, or saying incantations correctly, making it useful in duels.", - "mention": "Seen in 1997 as a deterrent to Severus Snape, or any other unwanted visitor of 12 Grimmauld Place, from betraying their location to anyone else.", - "etymology": null, - "note": null - }, - { - "id": 184, - "name": "Ministry of Magic Fog", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Patented charm used by the Ministry for Magic to conceal certain areas from Muggle view.", - "mention": "Seen in 1997 as a deterrent to Severus Snape, or any other unwanted visitor of 12 Grimmauld Place, from betraying their location to anyone else.", - "etymology": null, - "note": "In 1999, after the Invisibility Charm debacle at the Exmoor Quidditch Stadium, the Ministry considered trying this fog to hide the stadium from view." - }, - { - "id": 185, - "name": "Mobiliarbus", - "other_name": null, - "pronunciation": "mo-bil-lee-AR-bus", - "spell_type": "Charm", - "description": "Levitates wooden objects a few inches off of the ground and moves them in any given direction.", - "mention": "In 1993, Hermione Granger used the spell to move a Christmas Tree in The Three Broomsticks beside her table to hide Harry Potter, who was in Hogsmeade illegally.", - "etymology": "Latin mobilis, \"movable\" or \"flexible\", and arbor (alternatively arbos), \"tree\".", - "note": "It is possible that Mobilicorpus and Mobiliarbus are variations of the same basic spell, since they share the \"Mobili-\" stem." - }, - { - "id": 186, - "name": "Mobilicorpus", - "other_name": null, - "pronunciation": "moh-bil-lee-COR-pus", - "spell_type": "Charm", - "description": "Levitates and moves bodies.", - "mention": "Sirius Black used it on Severus Snape in 1994. It was probably used on Peter Pettigrew by Lord Voldemort in the graveyard to make him come forward.", - "etymology": "Latin mobilis, \"movable\", and corpus, \"body\".", - "note": "It is possible that Mobiliarbus and Mobilicorpus are variations of the same basic spell, since they share the \"Mobili-\" stem." - }, - { - "id": 187, - "name": "Molliare", - "other_name": "Cushioning Charm", - "pronunciation": "mull-ee-AR-ay", - "spell_type": "Charm", - "description": "Produces an invisible cushion over the target, is used primarily in the manufacturing of broomsticks.", - "mention": "Used by Hermione Granger to cushion her, Harry, and Ron's fall in Gringotts Wizard Bank in 1998.", - "etymology": null, - "note": "This spell may be related to Arresto Momentum and Spongify." - }, - { - "id": 188, - "name": "Molly Weasley's curse", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Like the Avada Kedavra curse, it kills (or freezes) the victim. It turns the body grey/blue (or paler) while it turns to stone and then another twin jinx can blast the body into pieces.", - "mention": null, - "etymology": null, - "note": "This may be Hardening Charm or Freezing Charm, although the latter is shown to be blue in 1992." - }, - { - "id": 189, - "name": "Morsmordre", - "other_name": null, - "pronunciation": "morz-MOR-druh", - "spell_type": null, - "description": "Conjures the Dark Mark, which is the sign of the Death Eaters.", - "mention": "Used by Barty Crouch Jr in 1994. Also seen in 1997 over the castle to lure Albus Dumbledore to his death. It was apparently invented by Lord Voldemort.", - "etymology": "Latin mors, \"death\", and mordere, meaning \"to bite\" (or its French derivative mordre); this would appear to be associated with the name of Lord Voldemort's followers, the Death Eaters. The English murder might also contribute.", - "note": "A possible translation might be \"take a bite out of death\", a fitting phrase for Death Eaters." - }, - { - "id": 190, - "name": "Mucus ad Nauseam", - "other_name": "Curse of the Bogies", - "pronunciation": "MYOO-kus ahd NAW-zee-um", - "spell_type": "Curse", - "description": "Gives the victim a nasty cold and an extremely runny nose that can cause the victim to collapse if it is not treated. The cold is accompanied with constant sneezing.", - "mention": "Mentioned by Professor Quirrell to his first-year class.", - "etymology": null, - "note": null - }, - { - "id": 191, - "name": "Muffliato", - "other_name": "Muffliato Charm", - "pronunciation": "muf-lee-AH-to", - "spell_type": "Charm", - "description": "Prevents others from hearing nearby conversations by filling peoples' ears with an unidentifiable buzzing.", - "mention": "It was used in 1996 by Harry Potter and Ron Weasley on various teachers and people such as Madam Pomfrey. It was created by Severus Snape. As pointed out by Hermione, it is probably not Ministry of Magic approved. It was also used in 1997 by Hermione Granger in protection of the camp-site where Harry and she stayed in hiding.", - "etymology": "English muffle, \"to quiet\", with a pseudo-Latin or pseudo-Italian ending.", - "note": null - }, - { - "id": 192, - "name": "Multicorfors", - "other_name": "Multicorfors Spell", - "pronunciation": "mull-tee-COR-fors", - "spell_type": "Transfiguration", - "description": "Multicorfors is a charm used to change the colour and style of one's clothing.", - "mention": "It may also be the same charm as when Harry accidentally changed the colour of his eyebrow, before he asked Luna to Slughorn's Christmas party. (Unlikely, as that was performed as a Transfiguration exercise, which is rather unrelated to Charms.) Could have possibly been used when Harry accidentally changed the colour of his teachers hair, at St. Grogory's Primary School.", - "etymology": null, - "note": null - }, - { - "id": 193, - "name": "Mutatio Skullus", - "other_name": null, - "pronunciation": "myoo-TAY-toh SKULL-us", - "spell_type": "Hex", - "description": "Mutates the victim's head, causing them to grows extra heads.", - "mention": "Used by Ancient Egyptian wizards, as noted by Ron Weasley in 1993.", - "etymology": null, - "note": null - }, - { - "id": 194, - "name": "Nox", - "other_name": "Wand-Extinguishing Charm", - "pronunciation": "NOCKSS", - "spell_type": "Charm", - "description": "Extinguishes wandlight. It the counter-charm for the Wand-Lighting Charm, Lumos.", - "mention": "In 1994, Harry Potter and Hermione Granger used this spell to turn off their wand-lights in the Shrieking Shack. Used in 1998 when Harry was in the passage beneath the Whomping Willow which leads to the Shrieking Shack. Lumos's power can be arranged so that a powerful wizard can make the charm illuminate intensely or to the wizards liking by loudness of incantation. For example \"LUMOS!!!\" would be powerful and \"lumos\" would be weaker. Also used by Harry Potter in 1998 to turn off the light so he could hide the Marauder's Map from Severus Snape.", - "etymology": "Latin nox, meaning \"night\".", - "note": null - }, - { - "id": 195, - "name": "Nebulus", - "other_name": null, - "pronunciation": "NEH-bu-lus", - "spell_type": "Charm", - "description": "Creates fog from the tip of the wand.", - "mention": "In 1927, Albus Dumbledore used this spell to conjure a fog in London to provide concealment for his meeting with Newton Scamander.", - "etymology": null, - "note": "This may be the incantation for the Ministry of Magic Fog." - }, - { - "id": 196, - "name": "Oculus Reparo", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Mends eyeglasses.", - "mention": "Used by Hermione in 1991 and 1992 to fix Harry's glasses.", - "etymology": null, - "note": "This spell is a variation of Reparo." - }, - { - "id": 197, - "name": "Obliteration Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Removes footprints.", - "mention": "Used by Hermione in 1995 to remove the footprints that she, Harry, and Ron left in the snow while walking to Hagrid's hut. Also used in 1997 by Hermione to remove the footprints she and Harry left behind them in the snow as they journeyed through Godric's Hollow.", - "etymology": null, - "note": "The Obliteration Charm is only known to remove footprints. There is no explanation as to what effect it can have on other things. It could possibly destroy things, according to its name." - }, - { - "id": 198, - "name": "Obliviate", - "other_name": "Memory Charm", - "pronunciation": "oh-BLI-vee-ate", - "spell_type": "Charm", - "description": "Erases specific memories.", - "mention": "First seen in 1993 when used by Gilderoy Lockhart on Harry and Ron; the spell backfired due to a faulty wand, costing Lockhart most of his own memory. Also, Hermione Granger used this spell to wipe her parents memories in 1997. Again, it was used in 1997 when Hermione Granger used the spell on 2 Death Eaters who had followed Harry, Ron, and Hermione after their escape from Bill Weasley's and Fleur Delacour's wedding.", - "etymology": "Latin oblivisci, \"forget\". The spell is most often used against Muggles who have seen something of the Wizarding world.", - "note": "Invented by Mnemone Radford, who became the Ministry's first Obliviator. The Ministry of Magic employees assigned to modifying the memories of Muggles are called Obliviators. The charm can be broken by powerful magic, or extreme duress, as Lord Voldemort was able to torture Bertha Jorkins into remembering details that Barty Crouch Snr had forced her to forget using the charm. In this case, it was also shown that if the charm is too powerful, it can cause the target to develop a bad memory. This spell differs from the False Memory Charm." - }, - { - "id": 199, - "name": "Obscuro", - "other_name": null, - "pronunciation": "ob-SKYUR-oh", - "spell_type": "Conjuration", - "description": "Blindfolds the target.", - "mention": "Used by Hermione Granger in 1997 to obstruct the portrait of Phineas Nigellus's view of their location.", - "etymology": "English word obscure, meaning \"unclear\" or \"unnoticeable\".", - "note": "This spell might only affect characters in paintings; there are no other references to this spell." - }, - { - "id": 200, - "name": "Oppugno", - "other_name": "Oppugno Jinx", - "pronunciation": "oh-PUG-noh", - "spell_type": "Jinx", - "description": "Causes targeted objects to attack a victim. It is particularly effective in conjunction with the Bird-Conjuring Charm.", - "mention": "Used by Hermione Granger in 1996 to attack Ron Weasley with a summoned flock of canaries during an argument.", - "etymology": "Latin oppugno, \"I attack\".", - "note": null - }, - { - "id": 201, - "name": "Orbis", - "other_name": "Orbix Jinx", - "pronunciation": "OR-biss", - "spell_type": "Jinx", - "description": "Sucks the target into the ground.", - "mention": null, - "etymology": "Orbis is Latin for 'circle', which reflects the spell's physical appearance.", - "note": null - }, - { - "id": 202, - "name": "Orchideous", - "other_name": null, - "pronunciation": "or-KID-ee-us", - "spell_type": "Conjuration", - "description": "Conjures a bouquet of flowers.", - "mention": "Used in 1994 by Mr Ollivander to test Fleur Delacour's wand. Probably used non-verbally by Tom Riddle to present flowers to Mrs Smith.", - "etymology": "English orchid and Latin suffix -eous, \"of or bearing (the root word)\".", - "note": "A variation of this spell may have been used when Hermione Granger conjured a Christmas wreath to place on James and Lily Potter's graves in 1997." - }, - { - "id": 203, - "name": "Oscausi", - "other_name": null, - "pronunciation": "os-SCOW-zee", - "spell_type": "Dark charm", - "description": "Seal someone's mouth shut, making it appear it was never there.", - "mention": "Used by Leta Lestrange on a girl from Gryffindor when they were both in their third year at Hogwarts. The Gryffindor girl was speaking ill of Lestrange behind her back until Lestrange emerged from hiding nearby, and muted the Gryffindor girl with this spell.", - "etymology": "Possibly derived as a portmanteau of os, Latin for \"mouth\", and clausi (a conjugated form of claudo), Latin for \"I shut\". It may additionally be a pun or wordplay on scusi, the Italian interjection for \"excuse me\".", - "note": null - }, - { - "id": 204, - "name": "Pack", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Packs luggage.", - "mention": "Used in 1994 by Remus Lupin in his office, and in 1995 by Nymphadora Tonks, once verbally and again non-verbally.", - "etymology": null, - "note": null - }, - { - "id": 205, - "name": "Papyrus Reparo", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Mends torn pieces of paper.", - "mention": "This spell was used by Newton Scamander in 1927 to restore a torn postcard from Porpentina Goldstein addressed to Queenie Goldstein.", - "etymology": null, - "note": "This spell is a variation of Reparo." - }, - { - "id": 206, - "name": "Patented Daydream Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Gives the spell caster a highly-realistic 30-minute daydream. Side effects include mild drooling and a vacant expression.", - "mention": "These were invented by Fred and George Weasley and sold in 1996 at their joke shop, presumably in the form of some kind of physical object, similar to Skiving Snackboxes.", - "etymology": null, - "note": null - }, - { - "id": 207, - "name": "Partis Temporus", - "other_name": null, - "pronunciation": "PAR-tis temp-OAR-us", - "spell_type": "Charm", - "description": "Creates a temporary gap in the target.", - "mention": "Used by Albus Dumbledore in the Crystal Cave in 1997. He uses it so that he and Harry can pass through the ring of fire used to ward off the Inferi.", - "etymology": "Partis is a plural form of the French verb partir, which means \"to separate,\" \"to go away,\" \"to leave,\" or \"to depart.\" Temporis is Latin for \"time.\"", - "note": null - }, - { - "id": 208, - "name": "Pepper breath hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Gives the victim fiery hot breath.", - "mention": "Harry Potter learned of this hex from Basic Hexes for the Busy and Vexed while researching spells to use during the Triwizard Tournament and decided not to use it against the dragon he would face in the First Task.", - "etymology": null, - "note": null - }, - { - "id": 209, - "name": "Periculum", - "other_name": null, - "pronunciation": "pur-ICK-you-lum", - "spell_type": "Charm", - "description": "Produces a burst of red sparks.", - "mention": "Used during the third task of the Tri-wizard Tournament by Harry.", - "etymology": "Periculum is Latin for \"danger\".", - "note": null - }, - { - "id": 210, - "name": "Permanent Sticking Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Sticks objects permanently in place.", - "mention": "First mentioned in 1995, when Sirius Black suspected that his mother's painting was fixed to the wall with such a Charm. It is implied that the portrait in the Muggle Prime Minister's office also has such a charm on it.", - "etymology": null, - "note": "It is never said whether the charm prevents the object from being removed by cutting away the section of wall. The incantation could be gluten sempra, meaning glue forever, or adher sempra, which means stick forever." - }, - { - "id": 211, - "name": "Peskipiksi Pesternomi", - "other_name": null, - "pronunciation": "PES-key PIX-ee PES-ter NO-mee", - "spell_type": "Charm", - "description": "The one time it was used, it had absolutely no effect.", - "mention": "Used by Lockhart to attempt to remove Cornish Pixies.", - "etymology": "English pesky meaning \"annoying\", English pixie meaning \"a supernatural being\", English pester meaning \"to annoy\", English no for negative and English me for the first person pronoun.", - "note": "It is not known if the spell works or not. It also suspiciously sounds like \"Pesky pixie pester no me.\"" - }, - { - "id": 212, - "name": "Petrificus Totalus", - "other_name": "Full Body-Bind Curse", - "pronunciation": "pe-TRI-fi-cus to-TAH-lus", - "spell_type": "Curse", - "description": "Used to temporarily bind the victim's body in a position much like that of a soldier at attention; the victim will usually fall to the ground.", - "mention": "Used in 1991 by Hermione, who was trying to prevent Neville from stopping her, Ron, and Harry from leaving the common room to hunt for the Philosopher's Stone, in the Hall of Prophecy during the Battle of the Department of Mysteries to petrify one of the Death Eaters pursuing the group, and used on Harry by Draco Malfoy in the Hogwarts Express in 1996.", - "etymology": "Latin petra, meaning \"stone\", and fieri (past participle factus), meaning \"to become\"; totalus comes from Latin \"totus\", meaning \"complete\".", - "note": null - }, - { - "id": 213, - "name": "Piertotum Locomotor", - "other_name": null, - "pronunciation": "peer-TOH-tuhm loh-kuh-MOH-tor", - "spell_type": "Charm", - "description": "Brings animates inanimate targets.", - "mention": "In the Battle of Hogwarts, Professor McGonagall used this spell to animate the suits of armour and statues within Hogwarts, to defend the castle. Possibly used by Albus Dumbledore to enchant the statues on the fountain in the entrance to the Ministry of Magic Department.", - "etymology": "Pier means \"friend\" or \"colleague\", totum refers to \"the whole\" or \"total\", and locomotor means \"the movement of\".", - "note": null - }, - { - "id": 214, - "name": "Piscifors", - "other_name": null, - "pronunciation": "PIS-ee-fors", - "spell_type": "Transfiguration", - "description": "Transforms things into fish.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 215, - "name": "Placement Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Maigcally places an object in or on a specific location. Placement Charms can be used to place a bridle on a Kelpie to render it harmless and docile.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 216, - "name": "Point Me", - "other_name": "Four-Point Spell", - "pronunciation": null, - "spell_type": "Spell", - "description": "Makes the caster's wand point due north.", - "mention": "Hermione Granger taught it to Harry Potter, who used it during the Triwizard Tournament, particularly to navigate the hedge maze during the Third Task.", - "etymology": null, - "note": null - }, - { - "id": 217, - "name": "Portus", - "other_name": null, - "pronunciation": "POR-tus", - "spell_type": "Charm", - "description": "Turns an object into a portkey.", - "mention": "Used by Albus Dumbledore in 1996.", - "etymology": "Latin porta, meaning \"gate\", or portare, meaning \"to carry\" (as in to carry the caster or target to another location). There is a Latin word portus, meaning \"harbour\", but it is inappropriate in this context.", - "note": "Portkeys were first seen in 1994 as a means for Harry, Hermione, and the Weasleys to go to the Quidditch World Cup. However, the spell used in its creation was not seen until 1995." - }, - { - "id": 218, - "name": "Prior Incantato", - "other_name": "Reverse Spell", - "pronunciation": "pri-OR in-can-TAH-toh", - "spell_type": "Charm", - "description": "Forces a wand to show an \"echo\" of the last spell it performed.", - "mention": "Used by Amos Diggory in 1994 to discover the last spell cast by Harry's wand after it was found in the hands of Winky, a house-elf.", - "etymology": "Latin prior, \"previous\", and incantare, \"to speak a spell\" (past participle incantatum).", - "note": "Can manifest in the form of the Reverse Spell effect, or Priori Incantatem, when wands with the same core attempt to do battle." - }, - { - "id": 219, - "name": "Protean Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Causes copies of an object to be remotely affected by changes made to the original.", - "mention": "First used in 1995. Hermione Granger put the charm on a number of fake Galleons. Instead of the serial number around the edge of the coin, the time and date of the next meeting of Dumbledore's Army appeared. It is possible that this charm is used on the Death Eaters' Dark Marks.", - "etymology": "The English word Protean derives from Proteus, a god in Greek Mythology. Proteus was a shape-shifter, able to take many forms. As a result, the word Protean has come to refer to versatility, flexibility, or an ability to assume many forms. \"Protean\" is also similar to \"protein\", derived from the same root, meaning a variable, flexible substance which forms strong bonds between its constituent parts.", - "note": "On Hermione's fake galleons, when the date changes, the coin becomes hot, alerting the owner to look at the coin. This may not be a feature of the original charm. It may be a Flagrante Curse, when the Protean Charm changes the coin the curse may activate. It would seem from this that you can decide what the effects on the charmed objects are. Possibly by saying something along the lines of \"Protean flagrante.\" although this is just speculation." - }, - { - "id": 220, - "name": "Protego", - "other_name": "Shield Charm", - "pronunciation": "pro-TAY-goh", - "spell_type": "Charm", - "description": "Invisible shield that reflects spells and blocks physical entities.", - "mention": "First seen in 1995, in which Harry is taught this spell by Hermione in preparation for the third task in the Triwizard Tournament. Albus Dumbledore uses a similar spell which reverses the construction of glass back into sand when Voldemort sent shards of glass to try to stab Dumbledore. Fred and George Weasley enchanted hats they dubbed \"shield hats\" with this spell in 1997.", - "etymology": "Latin protego, \"I cover\" or \"I protect\".", - "note": "The original description of this spell states that it rebounds minor jinxes to the caster. However, it is shown that it can also be used to reflect or lessen the effects of more powerful spells, depending on the skill of the caster. In 1998, it is also shown to be able to create a sort of force-field across an area, and is used frequently to prevent two participants in an argument from reaching each other." - }, - { - "id": 221, - "name": "Protego Diabolica", - "other_name": null, - "pronunciation": "pro-TAY-goh dia-BOHL-i-cub", - "spell_type": "Dark Arts", - "description": "Conjures a protective ring of black fire around the caster that only affects their enemies.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 222, - "name": "Protego Horribilis", - "other_name": null, - "pronunciation": "pro-TAY-goh horr-uh-BIHL-ihs", - "spell_type": "Charm", - "description": "A powerful shield charm against dark magic.", - "mention": "Cast by Professor Flitwick in an attempt to strengthen the castle's defences in the Battle of Hogwarts.", - "etymology": "Latin Protego, \"I protect\", and Horribilis, \"horrible , frightful, dreadful\".", - "note": null - }, - { - "id": 223, - "name": "Protego Maxima", - "other_name": null, - "pronunciation": "pro-TAY-goh MAX-ee-Ma \t\"TwoProtego\"", - "spell_type": "Charm", - "description": "A powerful shield charm against dark magic. A stronger and bigger version of Protego, especially when combined with other wizards casting it at the same time. Was so powerful that it could also disintegrate people that came too close and tried to enter it.", - "mention": "Cast by Professor Flitwick, Professor McGonagall, Professor Slughorn and Mrs Weasley in an attempt to strengthen the castle's defences in the Battle of Hogwarts.", - "etymology": "Latin Protego, \"I protect\"", - "note": null - }, - { - "id": 224, - "name": "Protego totalum", - "other_name": null, - "pronunciation": "pro-TAY-goh toh-TAH-lum", - "spell_type": "Charm", - "description": "Protects an area for an extended period of time.", - "mention": "In 1997, this was one of the spells used by Hermione Granger and Harry Potter to protect their camp site from unwanted visitors.", - "etymology": "Latin protego meaning \"to protect\" and Latin totus meaning \"as a whole\".", - "note": null - }, - { - "id": 225, - "name": "Purple Firecrackers", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Causes purple firecrackers to shoot out from the tip of one's wand.", - "mention": "On 31 October 1991, Albus Dumbledore used this spell to get the attention of panicking diners in the Great Hall when a troll was loose in the castle.", - "etymology": null, - "note": null - }, - { - "id": 226, - "name": "Pus-squirting hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Causes yellowish goo to squirt from one's nose.", - "mention": "Morfin Gaunt used this hex on Bob Ogden.", - "etymology": null, - "note": null - }, - { - "id": 227, - "name": "Quietus", - "other_name": "Quietening Charm", - "pronunciation": "KWIY-uh-tus", - "spell_type": "Charm", - "description": "Makes a target sound quieter. It is the counter-charm to the Amplifying Charm.", - "mention": "Used in 1994 by Ludo Bagman.", - "etymology": "Latin quietus, \"calm\" or \"quiet\".", - "note": null - }, - { - "id": 228, - "name": "Redactum Skullus", - "other_name": "Head Shrink Spell", - "pronunciation": "reh-DAK-tum SKULL-us", - "spell_type": "Hex", - "description": "Shrinks the head of the target. It is the counter-spell to Engorgio Skullus.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 229, - "name": "Reducio", - "other_name": "Shrinking Charm", - "pronunciation": "re-DOO-see-oh", - "spell_type": "Charm", - "description": "Makes an object shrink in size. Its counter-charm is the Engorgement Charm.", - "mention": "In 1997, Harry Potter, after checking his Blackthorn wand on the Bluebell flames with Engorgio, casts this spell to shorten the formerly enlarged flames.", - "etymology": "English reduce, \"to shrink\". (Latin has a verb reducere, present tense reduco. This is the source of the English \"reduce\", but has a different meaning.) Also in Italian Riduco first person present tense of Ridurre, same root of Latin Reducere.", - "note": "Whether Reducio could also be used by itself rather than countering Engorgio is unknown. If it could, it would shrink normal sized items into miniature versions of themselves. References in 1992 by Arthur Weasley to \"shrinking door keys\" make this seem likely." - }, - { - "id": 230, - "name": "Reducto", - "other_name": "Reductor Curse", - "pronunciation": "re-DUK-toh", - "spell_type": "Curse", - "description": "Breaks objects. In stronger usages, disintegrates them.", - "mention": "In 1995, Harry used it on one of the hedges of the Triwizard maze and ends up burning a small hole in it; in 1995, Gryffindors in Harry Potter's year referenced Parvati Patil as being able to reduce a table full of Dark Detectors to ashes, and Harry and his friends later used the spell in the Department of Mysteries against the Death Eaters, shattering many Prophecy Orbs in the process; in 1997, a member of the Order of the Phoenix attempted to use this spell to break down a door which Death Eaters had blocked when the Death Eaters had cornered Dumbledore in the Lightning Struck Tower.", - "etymology": "English reduce, \"to bring down;destroy\".", - "note": null - }, - { - "id": 231, - "name": "Refilling Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Refills whatever the caster points at with the drink originally in the container.", - "mention": "Used in 1996, when Harry noticed that Hagrid and Slughorn were running out of wine.", - "etymology": null, - "note": null - }, - { - "id": 232, - "name": "Reparifors", - "other_name": null, - "pronunciation": "re-PAR-i-fors", - "spell_type": "Healing Spell", - "description": "Reverts minor magically-induced ailments, such as paralysis and poisoning.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 233, - "name": "Reverte", - "other_name": null, - "pronunciation": "ree-VUHR-tay", - "spell_type": "Charm", - "description": "Returns objects to their original positions or states.", - "mention": "In 1927, Leta Lestrange used this spell on the record towers in the French Ministry of Magic Records Room at the French Ministry of Magic Headquarters, in an attempt to flee from pursuing Matagots. This sent all the record towers - previously summoned by Lestrange - flying backwards and spinning back into their original positions in the ground.", - "etymology": "Reverte is derived from Latin for \"you shall return\", being a second-person imperative form (singular, present, active) of the verb reverto (\"I return, or turn back\").", - "note": null - }, - { - "id": 234, - "name": "Relashio", - "other_name": "Revulsion Jinx", - "pronunciation": "ruh-LASH-ee-oh", - "spell_type": "Jinx", - "description": "Forces the target to release its grip on whatever it is holding.", - "mention": "Used by Harry Potter against Grindylows in the second task of the Triwizard Tournament. Also used in 1997 and 1998, when Hermione used this spell to free Mrs Cattermole from the chained chair and to free the Ukrainian Ironbelly on which they were to get out from Gringotts.", - "etymology": "Probably from the French verb relâcher =\"to release, to set free\", or Italian rilascio (pronounced the same way as the spell)= \"I release\".", - "note": null - }, - { - "id": 235, - "name": "Rennervate", - "other_name": "Reviving Spell", - "pronunciation": "RENN-a-vate", - "spell_type": "Charm", - "description": "Awakens an unconscious victim. It is consequently the counter-charm to the Stunning Spell.", - "mention": "In 1994, Amos Diggory used it to wake up Winky and Albus Dumbledore used it to wake up Viktor Krum. Harry Potter later used it to try and reawaken a cursed Dumbledore in the seaside cave.", - "etymology": "Rennervate means \"to energise.", - "note": null - }, - { - "id": 236, - "name": "Reparifarge", - "other_name": null, - "pronunciation": "reh-PAR-i-farj", - "spell_type": "Untransfiguration", - "description": "Used to reverse incomplete transformations.", - "mention": "Found in A Beginner's Guide to Transfiguration.", - "etymology": null, - "note": null - }, - { - "id": 237, - "name": "Reparo", - "other_name": "Mending Charm", - "pronunciation": "reh-PAH-roh", - "spell_type": "Charm", - "description": "Seamlessly repairs broken objects.", - "mention": "Used by Albus Dumbledore and Horace Slughorn to repair damage the latter had done to a Muggle home in Budleigh Babberton where he had been hiding.", - "etymology": "Latin reparo meaning \"to renew\" or \"repair\".", - "note": "Reparo has been seen to repair non-magical items, however it seems to have an inability at repairing magical items or items that have magic placed upon them. An example is Harry's Nimbus 2000 shown in 1993 which he is told is irreparable after it is destroyed by the Whomping Willow. Wands are also irreparable, as shown in 1992 when Ron's wand snapped after he and Harry crashed onto the Hogwarts grounds. Despite his use of Spellotape, Ron's wand malfunctioned throughout the year. Another example is in 1997 when Hermione tried to fix Harry's broken wand, which was snapped by her errant Blasting Curse. However, Harry repaired his wand with the Elder Wand. Since the Elder Wand is the most powerful wand in creation, it makes sense that it would produce the most powerful Mending Charm." - }, - { - "id": 238, - "name": "Repello Muggletum", - "other_name": "Muggle-Repelling Charm", - "pronunciation": "ruh-PEL-oh MUH-guhl-tuhm", - "spell_type": "Charm", - "description": "Keeps Muggles away from wizarding places by causing them to remember important meetings they missed and to cause the Muggles in question to forget what they were doing.", - "mention": "It was used to keep Muggles away from the Quidditch World Cup. Hogwarts was also said to be guarded by the Muggle-Repelling Charm. It was also used by Harry and Hermione on numerous occasions, among many other spells, to protect and hide their camp site in 1997.", - "etymology": null, - "note": null - }, - { - "id": 239, - "name": "Repello Inimicum", - "other_name": null, - "pronunciation": "re-PEH-lloh ee-nee-MEE-cum", - "spell_type": "Charm", - "description": "Disintegrates the persons entering this charm.", - "mention": "This spell was used by professors Filius Flitwick and Horace Slughorn along with Order of the Phoenix member Molly Weasley to protect Hogwarts Castle in 1998.", - "etymology": "Latin \"Repello\", meaning \"Push Back\" and \"inimicum\", the accusative singular form of \"inimīcus\" meaning \"foe\" or \"enemy\".", - "note": null - }, - { - "id": 240, - "name": "Revelio", - "other_name": "Revelio Charm", - "pronunciation": "reh-VEL-ee-oh", - "spell_type": "Charm", - "description": "Reveals secrets about a person or object.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 241, - "name": "Rictusempra", - "other_name": "Tickling Charm", - "pronunciation": "ric-tuhs-SEM-pra", - "spell_type": "Charm", - "description": "Tickles the target until they become weak with laughter.", - "mention": "By Harry Potter on Draco Malfoy in 1992, when they fought in the Duelling Club.", - "etymology": "Possibly the sum of two words; The Latin rictus, meaning \"The expanse of an open mouth\", and semper, meaning \"Always\". Rictus is generally used as an expression of terror, however, \"always an open mouth\" would, in most cases, correspond to the act of laughing uncontrollably.", - "note": null - }, - { - "id": 242, - "name": "Riddikulus", - "other_name": "Boggart Banishing Spell", - "pronunciation": "rih-dih-KUL-lus", - "spell_type": "Charm", - "description": "A spell used when fighting a Boggart, \"Riddikulus\" forces the Boggart to take the appearance of an object the caster is focusing on. Best results can be achieved if the caster is focusing on something humorous, with the desire that laughter will weaken the Boggart.", - "mention": "Taught by Remus Lupin during third year Defence Against the Dark Arts, where his students had the opportunity to practise the spell on an actual Boggart.", - "etymology": "Latin word ridiculus, \"laughable\" (but perhaps \"absurd\" or \"silly\" in this context).", - "note": "The effect of the spell seems to rely primarily on the state of mind of the caster. It doesn't actually change the shape of a boggart into something humorous, but rather whatever the caster is concentrating on at the moment of the casting, as when Neville was thinking of his grandmother's dress. Presumably, Mrs Weasley couldn't take her mind off of her fears for her family, so the Boggart was changed into other members of the family rather than something humorous." - }, - { - "id": 243, - "name": "Rose Growth", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Causes rosebushes grow at an unusually fast pace.", - "mention": null, - "etymology": null, - "note": "This spell may be related to Herbivicus." - }, - { - "id": 244, - "name": "Rowboat spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Makes boats row themselves.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 245, - "name": "Salvio Hexia", - "other_name": null, - "pronunciation": "SAL-vee-oh HECKS-ee-ah", - "spell_type": "Charm", - "description": "Protects against hexes.", - "mention": "Harry and Hermione cast this spell to strengthen their camp-site's defences against intruders in 1997.", - "etymology": "Possibly derived from the Latin \"salveo,\" meaning \"to be in good health,\" and used as a form of greeting and farewell, and a pseudo-Latin derivative of the English word \"hex\"—hence, \"Farewell, hexes!\"", - "note": "Possibly the Hex Deflection spells the fake Moody mentioned in 1994." - }, - { - "id": 246, - "name": "Sardine hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Makes the victim sneeze out sardines.", - "mention": "Rubeus Hagrid once had this hex used on him.", - "etymology": null, - "note": null - }, - { - "id": 247, - "name": "Sauce-making spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Conjuration", - "description": "Conjures a creamy sauce from the tip of the wand.", - "mention": "Molly Weasley used this spell in August of 1994 to pour some sauce in a pot to make dinner for her family, Harry Potter and Hermione Granger.", - "etymology": null, - "note": "According to Gamp's Law of Elemental Transfiguration, food can't be conjured. This implies that sauce is not considered \"good food,\" as things suitable for consumption may created with the spell, such as birds." - }, - { - "id": 248, - "name": "Scorching Spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Produces dancing flames which presumably scorch the opponent.", - "mention": "Professor McGonagall used this spell on Professor Snape in 1998.", - "etymology": null, - "note": null - }, - { - "id": 249, - "name": "Scourgify", - "other_name": "Scouring Charm", - "pronunciation": "SKUR-ji-fy", - "spell_type": "Charm", - "description": "Cleans objects", - "mention": "First used by Nymphadora Tonks to clean Hedwig's cage in 1995. Later, Ginny Weasley performed the spell to clean up the Stinksap on the Hogwarts Express, also used by James Potter on Severus Snape after he shouted various curses and obscenities at him.", - "etymology": "Perhaps related to English scour, \"clean\". -ify is a common English suffix meaning \"to make ...\". Therefore scourgify could mean \"to make clean\".", - "note": null - }, - { - "id": 250, - "name": "Sealant Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Magically seals envelopes.", - "mention": "All applicants for wand permits in the United States were required by the Magical Congress of the United States of America to close the envelope in which they sent their applications back to the Wand Permit Office with this spell.", - "etymology": null, - "note": "This may be the parchment-sealing spell that Dolores Umbridge used in 1995." - }, - { - "id": 251, - "name": "Sea urchin jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "This spell begins to transform the victim into a sea urchin.", - "mention": "This spell was used on 2 May, 1998, during the Battle of Hogwarts, by Percy Weasley on an Imperiused Pius Thicknesse.", - "etymology": null, - "note": null - }, - { - "id": 252, - "name": "Sectumsempra", - "other_name": null, - "pronunciation": "sec-tum-SEMP-rah", - "spell_type": "Curse", - "description": "Lacerates the target, as if they have been \"slashed by a sword.\" Subsequently, the target can easily bleed to death from the wounds. This curse was invented by Severus Snape, to be used against his personal enemies.", - "mention": "Used by Harry in 1997 against Draco Malfoy, and then later against both the Inferi in Lord Voldemort's Horcrux chamber, and Snape used it against George Weasley (was unintentional; aimed for a Death Eater that tried to curse Lupin) in the Order's flight from Privet Drive. Harry learned it in Snape's old Potions textbook. In 1998, the spell is said to be Severus Snape's \"signature\" spell.", - "etymology": "Latin sectum, \"cut\", and semper, \"always\".", - "note": "The spell can apparently be used against any object, but was not effective when used against Inferi because they could not feel pain or bleed. The movement of the wand seems to affect how someone is cut, suggested by the erratic patterns of slashes left on Draco Malfoy's face and chest, produced by Harry Potter's wild wand-swings while using the spell against Draco. Wounds caused by this spell can be healed as proved by Severus Snape who after Harry hit Draco Malfoy with this spell he healed Draco's wounds and told him to go and get treated with dittany at once so that he would even avoid any sign of any wound. However it seems that it depends on the caster's magical abilities because Molly Weasley could not heal and restore George Weasley's ear that was cursed off by this spell." - }, - { - "id": 253, - "name": "Shield penetration spell", - "other_name": null, - "pronunciation": "unknown", - "spell_type": "Spell", - "description": "Annihilates magical enchantments and shields.", - "mention": "Used by Voldemort to break the enchantments placed around Hogwarts School of Witchcraft and Wizardry in 1998 by Filius Flitwick, Minerva McGonagall, and Molly Weasley.", - "etymology": null, - "note": null - }, - { - "id": 254, - "name": "Shooting Spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Spell", - "description": "Used to shoot objects", - "mention": "This spell was used by Harry Potter and Ronald Weasley in 1997 on their Horcrux hunt in an attempt to catch a rabbit for food.", - "etymology": null, - "note": null - }, - { - "id": 255, - "name": "Smashing spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Spell", - "description": "Produces explosions", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 256, - "name": "Serpensortia", - "other_name": "Snake Summons Spell", - "pronunciation": "ser-pen-SOR-shah, SER-pehn-SOR-tee-ah", - "spell_type": "Conjuration", - "description": "Conjures a serpent from the caster's wand.", - "mention": "Used by Draco Malfoy while duelling Harry Potter in 1992.", - "etymology": "Latin serpens meaning \"a snake\" and Latin ortis meaning \"source\".", - "note": null - }, - { - "id": 257, - "name": "Silencio", - "other_name": "Silencing Charm", - "pronunciation": "sih-LEN-see-oh", - "spell_type": "Charm", - "description": "Makes something silent.", - "mention": "First used by Hermione in 1996 to silence a frog and a raven in Charms class, then later used to silence a Death Eater that was trying to tell his comrades where they were.", - "etymology": "Probably Latin silentium, \"silence\". Also, silencio and silêncio (which is closer to the English pronunciation) mean \"silence\" in Spanish and Portuguese, respectively.", - "note": null - }, - { - "id": 258, - "name": "Skurge", - "other_name": "Skurge Charm", - "pronunciation": "SKURJ", - "spell_type": "Charm", - "description": "Cleans up ectoplasm and frightens ghosts and other spirits.", - "mention": "Taught in second year Charms class.", - "etymology": null, - "note": null - }, - { - "id": 259, - "name": "Slippery Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Makes an object slippery and difficult to hold.", - "mention": "Mentioned in Harry Potter: Hogwarts Mystery", - "etymology": null, - "note": null - }, - { - "id": 260, - "name": "Slugulus Eructo", - "other_name": "Slug-vomiting Charm", - "pronunciation": null, - "spell_type": "Curse", - "description": "Forces the victim to burp up slimy slugs.", - "mention": "In 1992, Ronald Weasley attempted to curse Draco Malfoy with this spell after the latter insulted Hermione Granger, but was unsuccessful as his wand at the time was broken, and thus his curse backfired on himself.", - "etymology": null, - "note": null - }, - { - "id": 261, - "name": "Sonorous Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "This charm emits a magnified roar from the tip of the wand. This noise disrupts all in its path, and can even be used to harm opponents.", - "mention": null, - "etymology": null, - "note": "Not to be confused with the Amplifying Charm, Sonorus." - }, - { - "id": 262, - "name": "Sonorus", - "other_name": "Amplifying Charm", - "pronunciation": "soh-NOHR-uhs", - "spell_type": "Charm", - "description": "Makes the target sound louder. The counter-charm is the Quietening Charm, Quietus.", - "mention": "By Ludo Bagman in 1994 at the beginning of the Quidditch World Cup and by Albus Dumbledore several times in the Triwizard Championship. Used by Lord Voldemort several times during the Battle of Hogwarts in 1998.", - "etymology": "Latin sonorus, \"loud; noisy\".", - "note": null - }, - { - "id": 263, - "name": "Specialis Revelio", - "other_name": null, - "pronunciation": "spe-see-AL-is reh-VEL-ee-oh", - "spell_type": "Charm", - "description": "Reveals spells cast on objects or potions.", - "mention": "Used by Hermione Granger to find out more of Harry's Advanced Potion-Making book in 1996. Used by Ernie Macmillan to find out ingredients of a potion.", - "etymology": "Latin specialis, \"particular;individual\" and revelare (present tense revelo), \"unveil\".", - "note": "In 1994, Severus Snape cast a similar spell, but with different words (\"Reveal your secrets!\"), on the Marauder's Map, though he may have just been saying those words as he cast the spell non-verbally." - }, - { - "id": 264, - "name": "Sponge-Knees Curse", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Makes the target's legs spongy, making it difficult for them to walk.", - "mention": "Used during the September 1999 riot that took place at a Puddlemere vs. Holyhead Harpies match. The Puddlemere supporters used this curse against the Holyhead Harpies supporters in retaliation to the Jelly-Brain Jinx.", - "etymology": null, - "note": "This spell is similar in effect to the Jelly-Legs Curse." - }, - { - "id": 265, - "name": "Spongify", - "other_name": "Softening Charm", - "pronunciation": "SPUN-ji-fye", - "spell_type": "Charm", - "description": "Softens objects, making them rubbery and bouncy.", - "mention": "This charm is found in The Standard Book of Spells, Grade 1.", - "etymology": null, - "note": null - }, - { - "id": 266, - "name": "Squiggle Quill", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Transforms writing quills into worms.", - "mention": null, - "etymology": null, - "note": "This spell may be Vermiculus." - }, - { - "id": 267, - "name": "Stealth Sensoring Spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Detects those under magical disguise.", - "mention": "In 1996, Professor Umbridge cast this around her office.", - "etymology": null, - "note": null - }, - { - "id": 268, - "name": "Steleus", - "other_name": null, - "pronunciation": "STEH-lee-us, or perhaps STEH-nee-us", - "spell_type": "Hex", - "description": "A hex that causes the victim to sneeze for a short period of time. This spell is used in duelling to distract the opponent.", - "mention": null, - "etymology": "Steleus derives from the Latin sternuo, meaning I sneeze.", - "note": null - }, - { - "id": 269, - "name": "Stinging Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Stings the flesh of a target. This spell is also known as", - "mention": "Harry Potter inadvertently used one on Severus Snape during Occlumency lessons in 1996. It was non-debilitating in that instance, but it is stronger when intentionally cast, as shown by the results of Hermione Granger's Stinging Hex used on Harry Potter in 1998 to purposefully distort Harry's appearance.", - "etymology": null, - "note": "Also known as the Stinging Hex." - }, - { - "id": 270, - "name": "Stretching Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Stretches the target.", - "mention": "Molly Weasley remarked in 1996 that recent growth spurts had made her son Ron and his friend, Harry Potter, look as if this jinx had been cast upon them both.", - "etymology": null, - "note": null - }, - { - "id": 271, - "name": "Stupefy", - "other_name": "Stunning Spell", - "pronunciation": "STOO-puh-fye", - "spell_type": "Charm", - "description": "Stuns the target, rendering them unconscious.", - "mention": "Often; particularly by a number of wizards and witches (including Dolores Umbridge) against Minerva McGonagall in 1996. It's also taught by Harry in his D.A. meetings.", - "etymology": "English stupefy, which means 'to put into a stupor', a temporary vegetative state.", - "note": "The physical manifestation of the spell is a beam of red light emanating from the caster's wand. The spell wears off after a short time, and can be countered by Rennervate. Nearly useless on magic-resistant creatures such as dragons, trolls and giants unless more than one Stupefy spell is used at the same time. The force of the spell is additive or perhaps even exponential, and it can cause severe injury if many spells are used on a target that is not normally resistant to its effects. Hagrid, as a half-giant, was impervious to this spell - or at least, a lone one." - }, - { - "id": 272, - "name": "Supersensory Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Grants the caster to have enhanced senses, or to be able to sense things they would not normally sense.", - "mention": "Mentioned by Ron outside of the Hogwarts Express in 2017 as a potential substitute for using mirrors while driving a Muggle auto mobile.", - "etymology": null, - "note": null - }, - { - "id": 273, - "name": "Surgito", - "other_name": null, - "pronunciation": "SUR-jee-toh", - "spell_type": "Counter-charm", - "description": "Counter-charm that can be used to remove enchantments.", - "mention": "In 1927, Newton Scamander used Surgito to lift an enchantment that was placed on Jacob Kowalski. As a result of the spell, Kowalski awoke from the dreamlike enchanted state, and regained an awareness of reality in the present.", - "etymology": "Surgito is a Latin word in the imperative form meaning \"you/he/she shall arise, or get up\", and is a conjugation of the verb surgo (\"I arise\"). The etymology is appropriate, considering that the effects of the spell on Jacob Kowalski can be likened to waking up from a confused, dreamlike state.", - "note": null - }, - { - "id": 274, - "name": "Switching Spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Switches two targets simultaneously.", - "mention": "Harry contemplated using this spell against his dragon in the first task of the Triwizard Tournament. ((He considered swapping its fangs for wine gums)). Neville Longbottom misuses the spell, transplanting his ears onto a cactus.", - "etymology": null, - "note": null - }, - { - "id": 275, - "name": "Taboo", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "A jinx which may be placed upon a word or a name, so that whenever that word is spoken, a magical disturbance is created which alerts the caster of the Taboo to the location of the speaker. Any protective enchantments in effect around the speaker are broken when the Tabooed word is spoken aloud.", - "mention": "This curse was placed on the word \"Voldemort\"; Harry, Ron and Hermione are tracked this way to Tottenham Court Road. Ron tells the other two to stop using the word as he began to fear the name might be a curse, later discovering it to be a Taboo. Later, Harry accidentally says Voldemort's name again, resulting in the trio being caught by Death Eaters and taken to Malfoy Manor.", - "etymology": null, - "note": null - }, - { - "id": 276, - "name": "Tail-growing hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Causes the victim to grow a tail.", - "mention": "When Miranda Goshawk had her Book of Spells printed, she gave copies to her sisters that had various misprints in them; one such misprint somehow gave her sister Romilda a tail. Timothy Blenkinsop was hit with this hex when he was caught in the crossfire of a Puddlemere United vs. Holyhead Harpies riot.", - "etymology": null, - "note": null - }, - { - "id": 277, - "name": "Tarantallegra", - "other_name": "Dancing Feet Spell", - "pronunciation": "ta-RON-ta-LEG-gra", - "spell_type": "Jinx", - "description": "Makes a target's legs spasm wildly out of control, making it appear as though they are dancing.", - "mention": "First used by Draco Malfoy on Harry Potter in the Duelling Club in 1992.", - "etymology": "Italian tarantella, a kind of fast country dance once popular in parts of Italy, supposedly from the frantic motion caused by the bite of a tarantula; and allegro, a musical term meaning \"quick\".", - "note": null - }, - { - "id": 278, - "name": "Teacup to tortoise", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Transforms a teacup into a tortoise.", - "mention": "Seen on the Scholastic Harry Potter Official Site.", - "etymology": null, - "note": "May be related to the Teapot to tortoise spell covered in the third year at Hogwarts School of Witchcraft and Wizardry." - }, - { - "id": 279, - "name": "Teapot to tortoise", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Transforms a teapot into a tortoise.", - "mention": "Third years at Hogwarts School of Witchcraft and Wizardry were required to cast the spell during their final exams.", - "etymology": null, - "note": "May be related to the teapot to Teacup to tortoise spell." - }, - { - "id": 280, - "name": "Teeth-straightening spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Straightens crooked teeth.", - "mention": "Sir Nicholas de Mimsy-Porpington attempted to use this spell on Lady Grieve at her request, but failed and gave her a tusk instead. He was executed the following morning. After he returned as a ghost, Nearly-Headless Nick recounted the incident in a ballad.", - "etymology": null, - "note": null - }, - { - "id": 281, - "name": "Teleportation Spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Spell", - "description": "Vanishes objects which then appear elsewhere.", - "mention": "In 1996, Albus Dumbledore used this to transport Harry Potter's school supplies, clothes, and owl to the Burrow.", - "etymology": null, - "note": null - }, - { - "id": 282, - "name": "Tentaclifors", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration, Jinx", - "description": "Transfigures the target's head into a tentacle.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 283, - "name": "Tergeo", - "other_name": null, - "pronunciation": "TUR-jee-oh", - "spell_type": "Charm", - "description": "Siphons liquid and cleans objects.", - "mention": "Hermione Granger used the spell in 1996 to remove blood from Harry's face. It is later used to remove spilled ink from parchment. It was also used in 1997 to clean off a handkerchief by Ron and to dust off a picture of Gellert Grindelwald in Bathilda Bagshot's house by Harry Potter.", - "etymology": "Latin tergere, \"wipe off; cleanse\".", - "note": null - }, - { - "id": 284, - "name": "Titillando", - "other_name": "Tickling Hex", - "pronunciation": "ti-tee-LAN-do", - "spell_type": "Hex", - "description": "Tickles and weakens the victim.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 285, - "name": "Toenail-growing hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Causes the toenails to grow at an extreme and uncontrollable rate.", - "mention": "In 1996, Harry used this to much applause from classmates, on Vincent Crabbe.", - "etymology": null, - "note": "This is a hex that is probably not approved by the Ministry of Magic, as it was invented by Severus Snape." - }, - { - "id": 286, - "name": "Transmogrifian Torture", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Tortures the victim to death.", - "mention": "Gilderoy Lockhart suggested that it was this curse that \"killed\" Mrs Norris after she was really found petrified on a torch bracket.", - "etymology": "English \"transmogrify\", meaning \"to change or alter greatly, often to grotesque effect\", possibly implying that the curse changes the shape of the victim to cause pain.", - "note": "The incantation to this curse is possibly Transmogrify." - }, - { - "id": 287, - "name": "Trip Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Forces the target to trip and fall over.", - "mention": "Seen in 1996. It was cast successfully on Harry Potter by Draco Malfoy, when he and other members of the Inquisitorial Squad attempted to round up members of Dumbledore's Army.", - "etymology": null, - "note": null - }, - { - "id": 288, - "name": "Twitchy-Ears Hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Causes the victim's ears to twitch.", - "mention": "Miranda Goshawk recommended this hex to be cast on somebody practising the Shield Charm.", - "etymology": null, - "note": ". During the fourth year Hex-deflection test for Defence Against the Dark Arts, Harry Potter was hexed with this spell by Bartemius Crouch Junior (then disguised as Alastor Moody)." - }, - { - "id": 289, - "name": "Unbreakable Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Makes objects unbreakable.", - "mention": "Hermione Granger used the charm on a jar, in which she put Rita Skeeter in her Animagus beetle form to prevent her from transforming back into a human.", - "etymology": null, - "note": null - }, - { - "id": 290, - "name": "Unbreakable Vow", - "other_name": null, - "pronunciation": null, - "spell_type": "Spell", - "description": "Causes a vow taken by a witch or wizard to be inviolable; if they should break it, the consequence is death.", - "mention": "Snape made an Unbreakable Vow with Narcissa Malfoy at the beginning of Half-Blood Prince, vowing to help Narcissa's son Draco with a task given to him by Voldemort, and to finish the task should Draco prove incapable. Fred and George attempted to force an Unbreakable Vow upon Ron as children. According to Ron, it causes death when the vow is broken.", - "etymology": null, - "note": null - }, - { - "id": 291, - "name": "Unsupported flight", - "other_name": null, - "pronunciation": null, - "spell_type": "Spell", - "description": "Allows a witch or wizard to fly through the air unaided. Technique invented by Lord Voldemort", - "mention": "Demonstrated by Tom Riddle during the Battle of the Seven Potters, and by Severus Snape before his ousting.", - "etymology": null, - "note": null - }, - { - "id": 292, - "name": "Vacuum cleaner spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Cleans objects by using the wand to suck up dust like a vacuum cleaner.", - "mention": "Used by Madam Malkin in 1996.", - "etymology": null, - "note": null - }, - { - "id": 293, - "name": "Ventus", - "other_name": "Ventus Jinx", - "pronunciation": "VEN-tuss", - "spell_type": "Jinx", - "description": "Shoots a jet of strong spiralling wind from the tip of the wand.", - "mention": "Used by Newton Scamander to send away Stebbins on a London street, much to the bemusement of passing Muggles.", - "etymology": "Ventus is a Latin word, meaning \"wind\".", - "note": null - }, - { - "id": 294, - "name": "Ventus Duo", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "A stronger version of the Ventus Jinx", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 295, - "name": "Vera Verto", - "other_name": null, - "pronunciation": "vair-uh-VAIR-toh", - "spell_type": "Transfiguration", - "description": "Turn animals to water goblets.", - "mention": "Taught by Minerva McGonagall in her Transfiguration class. Also used by Ronald Weasley unsuccessfully in one of her second year classes thanks to his damaged wand.", - "etymology": "From Latin vera meaning \"right\" or \"proper\", and verto, meaning “I turn”.", - "note": null - }, - { - "id": 296, - "name": "Verdillious", - "other_name": null, - "pronunciation": "ver-DILL-ee-us", - "spell_type": "Charm", - "description": "A spell used to shoot green sparks from the end of the wand.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 297, - "name": "Verdimillious", - "other_name": "Verdimillious Charm", - "pronunciation": "vur-duh-MILL-ee-us", - "spell_type": "Charm", - "description": "Produces a jet of green sparks that can be used in duelling, or to reveal things hidden by dark magic.", - "mention": "Taught in first year Defence Against the Dark Arts teacher's office class.", - "etymology": null, - "note": "This spell is almost certainly the incantation for Green Sparks." - }, - { - "id": 298, - "name": "Verdimillious Duo", - "other_name": null, - "pronunciation": "VERD-dee-MILL-lee-us", - "spell_type": "Charm", - "description": "A more powerful version of Verdimillious.", - "mention": "Learned in first year Defence Against the Dark Arts.", - "etymology": null, - "note": null - }, - { - "id": 299, - "name": "Vermiculus", - "other_name": "Vermiculus Jinx", - "pronunciation": "vur-MICK-yoo-luhs", - "spell_type": "Transfiguration", - "description": "Transforms things into worms.", - "mention": "Appeared in Harry Potter and the Goblet of Fire (video game).", - "etymology": null, - "note": "This spell may have some connection with Squiggle Quill." - }, - { - "id": 300, - "name": "Vermillious", - "other_name": "Red Sparks", - "pronunciation": "vur-MILL-ee-us", - "spell_type": "Charm", - "description": "Jet of red sparks that can be used to signal an emergency or as a minor duelling spell.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 301, - "name": "Vipera Evanesca", - "other_name": "Snake-Vanishing Spell", - "pronunciation": "vee-PAIR-uh eh-vuh-NES-kuh", - "spell_type": "Vanishment", - "description": "Vanishes snakes. Subsequently, it is the counter-spell for the Snake Summons Spell.", - "mention": "Severus Snape cast this spell in 1992 at the Duelling Club to vanish a snake that Draco Malfoy had conjured while duelling Harry Potter.", - "etymology": "Vipera is a genus of venomous vipers, a type of snake. Evanesca likely shares its origin with Evanesco, which means \"disappear\" in Latin.", - "note": null - }, - { - "id": 302, - "name": "Vulnera Sanentur", - "other_name": null, - "pronunciation": "VUL-ner-ah sah-NEN-tour", - "spell_type": "Healing Spell", - "description": "Healing spell that slows blood flow, clears residue, and knits wounds. It is the counter-curse to Sectumsempra.", - "mention": "Used by Severus Snape to heal the wounds of Draco Malfoy caused by the Sectumsempra curse cast by Harry Potter in 1997.", - "etymology": "Vulnera Sanentur derives from the Latin vulnus, \"wound,\"", - "note": null - }, - { - "id": 303, - "name": "Waddiwasi", - "other_name": null, - "pronunciation": "wah-deh-WAH-see", - "spell_type": "Charm", - "description": "Used to shoot small, soft masses of whatever the caster so desires at the target", - "mention": "Cast by Remus Lupin in 1993, on Peeves the Poltergeist, sending a wad of chewing gum up his nose.", - "etymology": "\"Waddiwasi\" comes from two words. \"Vadd\" and \"vas-y\". \"Vadd\" is a Swedish word that can mean \"wadding\" and \"vas-y\" is French term that means \"go ahead\" or \"Come on!\" Together, they can roughly mean \"The wad goes ahead.\"", - "note": "This spell may be related to the Oppugno Jinx." - }, - { - "id": 304, - "name": "Washing up spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Enchanted dirty dishes to wash themselves.", - "mention": "It was used non-verbally by Molly Weasley after preparing breakfast for Harry Potter upon his arrival to The Burrow on 4 August, 1992.", - "etymology": null, - "note": null - }, - { - "id": 305, - "name": "Wingardium Leviosa", - "other_name": "Levitation Charm", - "pronunciation": "win-GAR-dee-um lev-ee-OH-sa", - "spell_type": "Charm", - "description": "Makes objects fly, or levitate.", - "mention": "This spell is taught in early first-year charms classes; this came into good use later in that year, when Ron Weasley performed the spell to knock out a mountain troll; six years later, Harry uses the charm to levitate the side-car of his godfather's flying motorbike; Ron used it again this year to make a twig poke a tree.", - "etymology": "\"Wingardium\" almost certainly contains English wing, meaning \"fly\". \"Leviosa\" probably originates from Latin levis, meaning \"light\".", - "note": null - } - ], - potions: [ - { - "id": 1, - "name": "Ageing Potion", - "description": "A potion that, depending on the amount taken, ages the drinker to various ages." - }, - { - "id": 2, - "name": "Alihotsy Draught", - "description": "A potion from the Alihotsy plant; causes hysterical laughter." - }, - { - "id": 3, - "name": "Amortentia", - "description": "The world's strongest Love Potion; does not create real love, just powerful obsession." - }, - { - "id": 4, - "name": "Angel's Trumpet Draught", - "description": "Effects and usage of this potion are unknown." - }, - { - "id": 5, - "name": "Anti-Paralysis Potion", - "description": "A potion that heals paralysis." - }, - { - "id": 6, - "name": "Antidote to Common Poisons", - "description": "A potion that reverses the effects of common poisons. Contains Bezoar, Mistletoe Berries, and Unicorn Horns." - }, - { - "id": 7, - "name": "Antidote to Uncommon Poisons", - "description": "A potion that reverses the effects of uncommon poisons." - }, - { - "id": 8, - "name": "Antidote to Veritaserum", - "description": "A potion that removes the effects of Veritaserum." - }, - { - "id": 9, - "name": "Armadillo Bile Mixture", - "description": "Unknown" - }, - { - "id": 10, - "name": "Babbling Beverage", - "description": "A potion that causes uncontrollable speaking of nonsense." - }, - { - "id": 11, - "name": "Baneberry Potion", - "description": "A poisonous brew of unknown exact effect." - }, - { - "id": 12, - "name": "Baruffio's Brain Elixir", - "description": "A potion that apparently increases the taker's brain power." - }, - { - "id": 13, - "name": "Beautification Potion", - "description": "A potion that makes the taker very beautiful." - }, - { - "id": 14, - "name": "Befuddlement Draught", - "description": "A potion that makes the taker confused and reckless." - }, - { - "id": 15, - "name": "Beguiling Bubbles", - "description": "A Love Potion sold at Weasleys' Wizard Wheezes." - }, - { - "id": 16, - "name": "Black Fire Potion", - "description": "A potion that makes the taker able to move through black fire uninjured." - }, - { - "id": 17, - "name": "Blemish Blitzer", - "description": "A potion that most likely gets rid of acne." - }, - { - "id": 18, - "name": "Blood-Replenishing Potion", - "description": "A potion that replenishes the taker's blood if they have been injured and lost blood." - }, - { - "id": 19, - "name": "Bloodroot Poison", - "description": "A poisonous potion." - }, - { - "id": 20, - "name": "Bruise removal paste", - "description": "A paste invented by Fred and George Weasley to remove bruises." - }, - { - "id": 21, - "name": "Bulgeye Potion", - "description": "Presumed to make the taker's eyes swell." - }, - { - "id": 22, - "name": "Bundimun Pomade", - "description": "A potion that is presumably a hair pomade containing Bundimun secretion." - }, - { - "id": 23, - "name": "Bundimun Secretion", - "description": "A magical substance that, when diluted, is known to be used in some magical cleaning products." - }, - { - "id": 24, - "name": "Burn-Healing Paste", - "description": "A thick paste used to heal burns." - }, - { - "id": 25, - "name": "Burning Bitterroot Balm", - "description": "Presumably a soothing balsam made from the Bitterroot plant." - }, - { - "id": 26, - "name": "Calming Draught", - "description": "A potion that calms the user of shock, trauma, etc." - }, - { - "id": 27, - "name": "Caxambu Style Borborygmus Potion", - "description": "Provokes stomach growling" - }, - { - "id": 28, - "name": "Cheese-Based Potions", - "description": "Potions whose main ingredients are cheese." - }, - { - "id": 29, - "name": "Chelidonium Miniscula", - "description": "The effects of this potion are unknown." - }, - { - "id": 30, - "name": "Confusing Concoction", - "description": "A potion that confuses the taker." - }, - { - "id": 31, - "name": "Cough Potion", - "description": "A potion that soothes and reduces coughs." - }, - { - "id": 32, - "name": "Cupid Crystals", - "description": "A Love Potion sold at Weasleys' Wizard Wheezes." - }, - { - "id": 33, - "name": "Cure for Boils", - "description": "A potion that cures boils. Seen/Mentioned: Taught to first years in Potions class." - }, - { - "id": 34, - "name": "Dawdle Draught", - "description": "Helps the drinker deal with traces." - }, - { - "id": 35, - "name": "Death potion", - "description": "Kills those who come into contact with it" - }, - { - "id": 36, - "name": "Death-Cap Draught", - "description": "Effects of this potion are unknown, but it is possibly a poison." - }, - { - "id": 37, - "name": "Deflating Draught", - "description": "A potion that deflates anything swollen by magical means." - }, - { - "id": 38, - "name": "Developing Solution", - "description": "A potion used in the developing of magical photographs, making them move." - }, - { - "id": 39, - "name": "Dizziness Draught", - "description": "A potion that makes the taker dizzy and lightheaded." - }, - { - "id": 40, - "name": "Dogbane Potion", - "description": "The effects of this potion are unknown, but it is possibly poisonous to dogs." - }, - { - "id": 41, - "name": "Dogbreath Potion", - "description": "Gives the drinker a fiery breath. Has a purple hue" - }, - { - "id": 42, - "name": "Doxycide", - "description": "A solution that kills Doxys" - }, - { - "id": 43, - "name": "Dr Ubbly's Oblivious Unction", - "description": "Heals wounds given by thoughts." - }, - { - "id": 44, - "name": "Dragon Poison", - "description": "A poisonous potion most likely taken from dragons." - }, - { - "id": 45, - "name": "Dragon Tonic", - "description": "A tonic used to heal sickly dragons." - }, - { - "id": 46, - "name": "Dragon dung fertiliser", - "description": "A solution that helps plants grow." - }, - { - "id": 47, - "name": "Draught of Living Death", - "description": "A potion that places the taker in a state of sleep that makes them seem like they are dead. Seen/Mentioned: Severus Snape asked a question related to this potion to Harry in 1991; Horace Slughorn showed it to 6th years in 1996." - }, - { - "id": 48, - "name": "Draught of Peace", - "description": "A potion that relieves anxiety." - }, - { - "id": 49, - "name": "Dreamless Sleep Potion", - "description": "A potion that places the taker in a sleep that is dreamless." - }, - { - "id": 50, - "name": "Drink of Despair", - "description": "A potion that puts the taker in extreme pain." - }, - { - "id": 51, - "name": "Drowsiness Draught", - "description": "Makes drinker drowsy" - }, - { - "id": 52, - "name": "Elixir of Life", - "description": "A potion created from the Philosopher's Stone that extend the taker's life. Seen/Mentioned: Hermione Granger told Harry and Ron about this in 1991. Nicolas Flamel and his wife are known to be using it and they lived upto more that 600 years." - }, - { - "id": 53, - "name": "Elixir to Induce Euphoria", - "description": "A potion that induces a sense of inexplicable, irrational happiness upon the drinker." - }, - { - "id": 54, - "name": "Erumpent Potion", - "description": "A potion that is highly explosive when it touches or is touched by an outside source." - }, - { - "id": 55, - "name": "Everklena", - "description": "A supposed cleaning product that in reality caused grime to spawn." - }, - { - "id": 56, - "name": "Essence of Insanity", - "description": "A potion which presumably causes irrational behaviour, possibly inflicting the condition of insanity. Seen/Mentioned: Ronald Weasley and Hermione Granger thought Harry had accidentally consumed it, due to his strange behaviour after consuming the Felix Felicis." - }, - { - "id": 57, - "name": "Everlasting Elixirs", - "description": "A potion with the effect to either never run out of potion or to work forever." - }, - { - "id": 58, - "name": "Exploding Potion", - "description": "A very volatile potion, and when completed, can be used to create explosions." - }, - { - "id": 59, - "name": "Exstimulo Potion", - "description": "Boosts the spell power of the drinker." - }, - { - "id": 60, - "name": "Fake Protective Potions", - "description": "A potion that claimed to protect the taker from Dark magic, but did not." - }, - { - "id": 61, - "name": "Fatiguing Infusion", - "description": "A potion that, when either drank or inhaled, caused fatigue." - }, - { - "id": 62, - "name": "Felix Felicis (Also known as Liquid Luck)", - "description": "A magical potion that makes the taker successful in all their endeavours." - }, - { - "id": 63, - "name": "Fergus Fungal Budge", - "description": "A fungicidal product that treated ringworm infections on the feet." - }, - { - "id": 64, - "name": "Fire Protection Potion", - "description": "A potion that protects the taker from being burnt." - }, - { - "id": 65, - "name": "Flesh-Eating Slug Repellent", - "description": "A pesticide that repels flesh-eating slugs." - }, - { - "id": 66, - "name": "Forgetfulness Potion", - "description": "A potion that makes the taker forgetful." - }, - { - "id": 67, - "name": "Frog Parts Mixture", - "description": "A packet of potion ingredients that most likely contained frog parts." - }, - { - "id": 68, - "name": "Fungiface Potion", - "description": "A potion that makes the taker's face break out in fungi." - }, - { - "id": 69, - "name": "Garrotting Gas", - "description": "A gas that induces choking and possibly suffocates the taker." - }, - { - "id": 70, - "name": "Girding Potion", - "description": "A potion that gives the taker extra endurance." - }, - { - "id": 71, - "name": "Grand Pepperup Potion", - "description": "A stronger version of Pepperup Potion." - }, - { - "id": 72, - "name": "Grand Wiggenweld Potion", - "description": "Most likely a stronger version of Wiggenweld Potion." - }, - { - "id": 73, - "name": "Gregory's Unctuous Unction", - "description": "A potion that causes the drinker to believe that whomever gave the potion to them is their best friend." - }, - { - "id": 74, - "name": "Hair-Raising Potion", - "description": "A potion that causes the taker's hair to stand on end." - }, - { - "id": 75, - "name": "Hate Potion", - "description": "A potion that shows the taker's worst traits and habits." - }, - { - "id": 76, - "name": "Heartbreak Teardrops", - "description": "A potion sold by Fred and George Weasley at Weasleys' Wizard Wheezes." - }, - { - "id": 77, - "name": "Herbicide Potion", - "description": "A potion that either kills or damages plants. Contains Flobberworm mucus, Horclump juice, and Spines of lionfish. Seen/Mentioned: Magical Drafts and Potions  by Arsenius Jiggles." - }, - { - "id": 78, - "name": "Hiccoughing Solution", - "description": "A potion that most likely cures hiccups." - }, - { - "id": 79, - "name": "Invigoration Draught", - "description": "A potion that is presumed to give the taker an energy boost." - }, - { - "id": 80, - "name": "Invisibility Potion", - "description": "A potion that makes the taker invisible." - }, - { - "id": 81, - "name": "Jawbind Potion", - "description": "A potion that induces lockjaw" - }, - { - "id": 82, - "name": "Kissing Concoction", - "description": "A potion created by Fred and George Weasley sold at Weasleys' Wizard Wheezes." - }, - { - "id": 83, - "name": "Laugh-inducing Potion", - "description": "A potion that makes the taker laugh uncontrollably." - }, - { - "id": 84, - "name": "Laxative Potion", - "description": "A potion that is most likely a laxative." - }, - { - "id": 85, - "name": "Love Potion", - "description": "Any of a large number of potions that make the taker fall in love with the person that has given it to them." - }, - { - "id": 86, - "name": "Love Potion Antidote", - "description": "Antidote to love potions." - }, - { - "id": 87, - "name": "Lung Clearing Potion", - "description": "A potion whose effects are unknown; most likely cures the taker of lung infections." - }, - { - "id": 88, - "name": "Magi-Me-More", - "description": "Magical pills that allegedly allow the regaining power and concentration that some elderly wizards lose over the years." - }, - { - "id": 89, - "name": "Madame Glossy's Silver Polish", - "description": "A magical cleaning solution." - }, - { - "id": 90, - "name": "Malevolent Mixture", - "description": "A potion that is most likely a poison or produces other bad effects." - }, - { - "id": 91, - "name": "Mandrake Restorative Draught", - "description": "A potion made from Mandrakes that restores a person that has been petrified to their original state." - }, - { - "id": 92, - "name": "Manegro Potion", - "description": "Causes hair on drinker's head to grow out rapidly" - }, - { - "id": 93, - "name": "Maximum Turbo Farts Potion", - "description": "resumably causes the drinker to rapidly develop flatulence" - }, - { - "id": 94, - "name": "Memory Potion", - "description": "Enhances the drinker's memory" - }, - { - "id": 95, - "name": "Moonseed Poison", - "description": "A poison made with moonseed" - }, - { - "id": 96, - "name": "Mopsus Potion", - "description": "presumably gives one Seer-like power possibly the ability to manipulate objects telekinetically." - }, - { - "id": 97, - "name": "Mouth Itching Antidote", - "description": "Cures Mouth Itching (possibly)" - }, - { - "id": 98, - "name": "Muffling Draught", - "description": "A potion most likely used to silence people and/or various objects" - }, - { - "id": 99, - "name": "Mrs Scower's All-Purpose Magical Mess Remover", - "description": "Removes stains" - }, - { - "id": 100, - "name": "Murtlap Essence", - "description": "Soothes and heals painful cuts and abrasions" - }, - { - "id": 101, - "name": "Noxious Potion", - "description": "Releases green clouds of smoke when completed. Exact effects are unknown, but it is possibly used as a poison." - }, - { - "id": 102, - "name": "Oculus Potion", - "description": "Restores the drinker's sight Counteracts the Conjunctivitis Curse" - }, - { - "id": 103, - "name": "Pepperup Potion", - "description": "Relieves and/or cures cold symptoms. Seen/Mentioned: Madam Pomfrey uses it on students in 1992." - }, - { - "id": 104, - "name": "Poison Antidote", - "description": "" - }, - { - "id": 105, - "name": "Polyjuice Potion", - "description": "Temporarily transforms the drinker into another person. The drinker will take on the appearance of the person whose hair, fingernails, etc., are added to the potion. Not to be used for transforming into an animal. Seen/Mentioned: In 1992 used by Harry and Ron to enter Slytherin common Room; Severus Snape thought Harry was stealing his ingredients to make a polyjuice potion; Used multiple times in 1997 and 1998." - }, - { - "id": 106, - "name": "Pompion Potion", - "description": "Temporarily turns the drinker's head into a pumpkin" - }, - { - "id": 107, - "name": "Potion N. 220", - "description": "" - }, - { - "id": 108, - "name": "Potion No. 07", - "description": "Experimental mix Poisonous" - }, - { - "id": 109, - "name": "Potion No. 113", - "description": "Most likely an experimental mix" - }, - { - "id": 110, - "name": "Potion No. 86", - "description": "Highly poisonous" - }, - { - "id": 111, - "name": "Potion No. 329", - "description": "" - }, - { - "id": 112, - "name": "Quodpot solution", - "description": "Prevents the Quod from exploding." - }, - { - "id": 113, - "name": "Rano Potion", - "description": "" - }, - { - "id": 114, - "name": "Rat Spleen Mixture", - "description": "" - }, - { - "id": 115, - "name": "Rat tonic", - "description": "Healing potion for rats." - }, - { - "id": 116, - "name": "Regeneration Potion", - "description": "Helps restore non-corporeal wizards to their bodies." - }, - { - "id": 117, - "name": "Regerminating Potion", - "description": "Forces the germination of a plant" - }, - { - "id": 118, - "name": "Replenishing Potion", - "description": "A potion used to replenish" - }, - { - "id": 119, - "name": "Restoration Potion", - "description": "Reverts spell effects." - }, - { - "id": 120, - "name": "Revive Potion", - "description": "Awakens an unconscious person" - }, - { - "id": 121, - "name": "Rudimentary Body Potion", - "description": "Helps restore non-corporeal wizards to a rudimentary bodies/sustains rudimentary bodies" - }, - { - "id": 122, - "name": "Scintillation Solution", - "description": "Unknown effect" - }, - { - "id": 123, - "name": "Screaming Snakes Hair Potion", - "description": "A kind of hair potion, the exact effects of which are unknown" - }, - { - "id": 124, - "name": "Shrinking Solution", - "description": "Causes the drinker to shrink" - }, - { - "id": 125, - "name": "Skele-Gro", - "description": "Regrows missing bones" - }, - { - "id": 126, - "name": "Sleekeazy's Hair Potion", - "description": "Makes hair more manageable" - }, - { - "id": 127, - "name": "Sleeping Draught", - "description": "Made the drinker quickly fall into a deep but temporary sleep" - }, - { - "id": 128, - "name": "Snuffling Potion", - "description": "Causes the drinker to sniff (possibly)" - }, - { - "id": 129, - "name": "Solution 078", - "description": "" - }, - { - "id": 130, - "name": "Solution 125", - "description": "" - }, - { - "id": 131, - "name": "Star Grass Salve", - "description": "Healing potion for soothing injuries" - }, - { - "id": 132, - "name": "Strength Potion", - "description": "Gives drinker increased strength It may be related to the Strengthening Solution]." - }, - { - "id": 133, - "name": "Strengthening Solution", - "description": "Presumably increases the strength of the one who drinks it It may be related to the Strength Potion." - }, - { - "id": 134, - "name": "Strong Exstimulo Potion", - "description": "More powerful version of the Exstimulo Potion, which significantly boosts the spell power of the drinker." - }, - { - "id": 135, - "name": "Strong Invigoration Draught", - "description": "More powerful version of the Invigoration Draught." - }, - { - "id": 136, - "name": "Swelling Solution", - "description": "Causes enlargement on contact" - }, - { - "id": 137, - "name": "Ten-Second Pimple Vanisher", - "description": "Treats acne" - }, - { - "id": 138, - "name": "Thick golden potion", - "description": "Healing, curse quarantining. Was used by Professor Severus Snape in the summer of 1996 to treat the effects that the curse on the Ring Horcrux had on Albus Dumbledore." - }, - { - "id": 139, - "name": "Truth Serum", - "description": "Makes the drinker tell the truth" - }, - { - "id": 140, - "name": "Twilight Moonbeams", - "description": "Causes the drinker to become infatuated with the giver of the potion" - }, - { - "id": 141, - "name": "Venomous Tentacula Juice", - "description": "Acts like a (non-fatal) poison." - }, - { - "id": 142, - "name": "Veritaserum", - "description": "Forces the taker to tell the truth." - }, - { - "id": 143, - "name": "Vitamix Potion", - "description": "Gives energy to the drinker" - }, - { - "id": 144, - "name": "Volubilis Potion", - "description": "Alters the drinker's voice" - }, - { - "id": 145, - "name": "Weakness Potion", - "description": "Weakens the drinker" - }, - { - "id": 146, - "name": "Weedosoros", - "description": "Poison" - }, - { - "id": 147, - "name": "Wideye Potion", - "description": "Prevents the drinker from falling asleep. Also awakens from drugging or concussion." - }, - { - "id": 148, - "name": "Wiggenweld Potion", - "description": "Cures minor damage Awakens a person from magically-induced sleep (and hence can cure Draught of Living Death)." - }, - { - "id": 149, - "name": "Wit-Sharpening Potion", - "description": "Presumably enhances the clarity of thought of the drinker" - }, - { - "id": 150, - "name": "Wolfsbane Potion", - "description": "Eases the symptoms of lycanthropy; prevents werewolves from losing their minds post-transformation." - } - ], - books: [ - { - "id": 1, - "title": "Harry Potter and the Sorcerer's Stone", - "releaseDay": "June 26, 1997", - "author": "J. K. Rowling", - "description": "On his birthday, Harry Potter discovers that he is the son of two well-known wizards, from whom he has inherited magical powers. He must attend a famous school of magic and sorcery, where he establishes a friendship with two young men who will become his companions on his adventure. During his first year at Hogwarts, he discovers that a malevolent and powerful wizard named Voldemort is in search of a philosopher's stone that prolongs the life of its owner." - }, - { - "id": 2, - "title": "Harry Potter and the chamber of secrets", - "releaseDay": "July 2, 1998", - "author": "J. K. Rowling", - "description": "Harry Potter and the sophomores investigate a malevolent threat to their Hogwarts classmates, a menacing beast that hides within the castle." - }, - { - "id": 3, - "title": "Harry Potter and the Prisoner of Azkaban", - "releseDay": "July 8, 1999", - "author": "J. K. Rowling", - "description": "Harry's third year of studies at Hogwarts is threatened by Sirius Black's escape from Azkaban prison. Apparently, it is a dangerous wizard who was an accomplice of Lord Voldemort and who will try to take revenge on Harry Potter." - }, - { - "id": 4, - "title": "Harry Potter and the Goblet of Fire", - "releaseDay": "July 8, 2000", - "author": "J. K. Rowling", - "description": "Hogwarts prepares for the Triwizard Tournament, in which three schools of wizardry will compete. To everyone's surprise, Harry Potter is chosen to participate in the competition, in which he must fight dragons, enter the water and face his greatest fears." - }, - { - "id": 5, - "title": "Harry Potter and the Order of the Phoenix", - "releaseDay": "June 21, 2003", - "author": "J. K. Rowling", - "description": "In his fifth year at Hogwarts, Harry discovers that many members of the wizarding community do not know the truth about his encounter with Lord Voldemort. Cornelius Fudge, Minister of Magic, appoints Dolores Umbridge as Defense Against the Dark Arts teacher because he believes that Professor Dumbledore plans to take over her job. But his teachings are inadequate, so Harry prepares the students to defend the school against evil." - }, - { - "id": 6, - "title": "Harry Potter and the Half-Blood Prince", - "releaseDay": "July 16, 2005", - "author": "J. K. Rowling", - "description": "Harry discovers a powerful book and, while trying to discover its origins, collaborates with Dumbledore in the search for a series of magical objects that will aid in the destruction of Lord Voldemort." - }, - { - "id": 7, - "title": "Harry Potter and the Deathly Hallows", - "releaseDay": "July 21, 2007", - "author": "J. K. Rowling", - "description": "Harry, Ron and Hermione go on a dangerous mission to locate and destroy the secret of Voldemort's immortality and destruction - the Horcruces. Alone, without the guidance of their teachers or the protection of Professor Dumbledore, the three friends must lean on each other more than ever. But there are Dark Forces in between that threaten to tear them apart. Harry Potter is getting closer and closer to the task for which he has been preparing since the first day he set foot in Hogwarts: the last battle with Voldemort." - }, - { - "id": 8, - "title": "Harry Potter and the Cursed Child", - "releaseDay": "July 30, 2016", - "author": "J. K. Rowling", - "description": "Harry's second son entered Hogwarts, but in Slytherin. His relationship with Harry is getting worse and he became close friends with Draco's son, Scorpius Malfoy who is said to be Lord Voldemort's son." - } - ] -} \ No newline at end of file diff --git a/src/data/harrypotter/harry.json b/src/data/harrypotter/harry.json deleted file mode 100644 index f2beb395..00000000 --- a/src/data/harrypotter/harry.json +++ /dev/null @@ -1,19672 +0,0 @@ -{ - "characters": [ - { - "id": 1, - "name": "Euan Abercrombie", - "birth": "between 1 September 1983 and 31 August 1984", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 2, - "name": "Stewart Ackerley", - "birth": "between 1 September 1982and 31 August 1983", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 3, - "name": "African prince", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle-born or half-blood (possibly)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Africa" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 4, - "name": "Agnes's son", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 5, - "name": "Cornelius Agrippa", - "birth": "1486", - "death": "1535 (aged 48 - 49)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 6, - "name": "Albino peacock", - "birth": "Pre 1997", - "death": null, - "species": "Peacock", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Lucius Malfoy (owner)" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 7, - "name": "Arkie Alderton", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Arkie Alderton's Kwik-Repair Shop" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 8, - "name": "Angus", - "birth": "c. 1980s", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 9, - "name": "Antioch Peverell's killer", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown wand", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 10, - "name": "Apothecary shopkeeper", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Apothecary" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 11, - "name": "Aragog", - "birth": "c. 1942", - "death": "20 April, 1997 (aged around 55)", - "species": "Acromantula", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Black & Grey/Milky-White (Blind)", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Rubeus Hagrid", - "Forbidden Forest Acromantula colony" - ], - "books_featured_in": [ - 2, - 5, - 6, - 7 - ] - }, - { - "id": 12, - "name": "Arcus", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 13, - "name": "Arkie Alderton's alleged son", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle-born or half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Alderton family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 14, - "name": "Armenian warlock", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2 - ] - }, - { - "id": 15, - "name": "Arnold", - "birth": "c. 1996", - "death": null, - "species": "Pygmy Puff", - "ancestry": null, - "gender": "Male", - "hair_color": "Purple", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Ginny Weasley" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 16, - "name": "Bertram Aubrey", - "birth": "c. 1950s - 1960s, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 17, - "name": "Avery I", - "birth": "Between 1926 and 1932", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood (likely)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Avery family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Tom Riddle's gang", - "Slug Club" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 18, - "name": "Avery II", - "birth": "Late 1950s or early 1960s, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": "Slytherin", - "associated_groups": [ - "Avery family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Death Eaters", - "Lord Voldemort" - ], - "books_featured_in": [ - 4, - 5, - 6, - 7 - ] - }, - { - "id": 19, - "name": "Archie Aymslowe", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Fresh Air Refreshes Totally (F.A.R.T.)" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 20, - "name": "Malcolm Baddock", - "birth": "between 1 September 1982 and 31 August 1983", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 21, - "name": "Badgered Boy", - "birth": "1970s - 1980s", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Unknown (human)", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 2 - ] - }, - { - "id": 22, - "name": "Ludovic Bagman's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Bagman family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 23, - "name": "Ludovic Bagman", - "birth": "Before 1964 (most likely)", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": "Baby blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Wimbourne Wasps (formerly)", - "British Ministry of Magic", - "Department of Magical Games and Sports", - "Bagman family", - "English National Quidditch team" - ], - "books_featured_in": [ - 4, - 5 - ] - }, - { - "id": 24, - "name": "Otto Bagman", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Bagman family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 25, - "name": "Bane", - "birth": null, - "death": null, - "species": "Centaur", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Forbidden Forest Centaur colony", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1, - 5, - 7 - ] - }, - { - "id": 26, - "name": "Heathcote Barbary", - "birth": "1974", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "The Weird Sisters" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 27, - "name": "Barnabas the Barmy", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Magical to unknown extent", - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Trolls", - "Ballet" - ], - "books_featured_in": [ - 5, - 6 - ] - }, - { - "id": 28, - "name": "Baruffio", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1, - 5 - ] - }, - { - "id": 29, - "name": "Ali Bashir", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Flying carpets" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 30, - "name": "Basil", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Department of Magical Transportation" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 31, - "name": "Beedle the Bard", - "birth": "c. 15th century", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 32, - "name": "Damocles Belby", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Order of Merlin", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 33, - "name": "Marcus Belby", - "birth": "between 1 September 1978 and 31 August 1979, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Dark", - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Slug Club", - "Belby family" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 34, - "name": "Marcus Belby's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw (likely)", - "associated_groups": [ - "Belby family" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 35, - "name": "Humphrey Belcher", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6 - ] - }, - { - "id": 36, - "name": "Katie Bell's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Bell family" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 37, - "name": "Bem", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Dark", - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Dumbledore's Army" - ], - "books_featured_in": [ - 3, - 5 - ] - }, - { - "id": 38, - "name": "Benjamin Hater", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": "Male (likely)", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 3 - ] - }, - { - "id": 39, - "name": "Bernie", - "birth": "Before 1980", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 40, - "name": "Bilius", - "birth": null, - "death": "Between 1 March, 1980 and September, 1993", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Weasley family", - "Prewett family" - ], - "books_featured_in": [ - 3, - 7 - ] - }, - { - "id": 41, - "name": "Binky", - "birth": "Early 1990s (possibly)", - "death": "15 October, 1993", - "species": "Rabbit", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Lavender Brown (owner)" - ], - "books_featured_in": [ - 3 - ] - }, - { - "id": 42, - "name": "Cuthbert Binns", - "birth": null, - "death": "Pre 1970s, Staffroom, Hogwarts Castle", - "species": "Human (formerly)", - "ancestry": null, - "gender": "Male", - "hair_color": "White (balding)", - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Binns family" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 7 - ] - }, - { - "id": 43, - "name": "Dennis Bishop", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Wool's Orphanage" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 44, - "name": "Black Knight", - "birth": null, - "death": null, - "species": "Human (formerly)", - "ancestry": null, - "gender": "Male (likely)", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 45, - "name": "Alphard Black", - "birth": "Between 1925 and 1938; Great Britain", - "death": "Between 3 November 1976 and 3 November 1977 (aged 38 - 52)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "House of Black (disowned posthumously)", - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 46, - "name": "Arcturus Black III", - "birth": "1901", - "death": "1991 (aged 89-90)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 47, - "name": "Orion Black", - "birth": "1929", - "death": "1979 (aged 49 - 50)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 48, - "name": "Phineas Nigellus Black", - "birth": "1847", - "death": "1925 (aged 77 - 78)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Dark, shrewd and narrow", - "wand": null, - "patronus": null, - "house": "Hogwarts School of Witchcraft and Wizardry", - "associated_groups": [], - "books_featured_in": [ - 5, - 6, - 7 - ] - }, - { - "id": 49, - "name": "Regulus Black", - "birth": "1961", - "death": "1979 (aged 18)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [ - 5, - 6, - 7 - ] - }, - { - "id": 50, - "name": "Sirius Black", - "birth": "3 November, 1959", - "death": "18 June, 1996 (aged 36)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Grey", - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Black family (formerly)", - "Potter family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Marauders", - "Order of the Phoenix" - ], - "books_featured_in": [ - 1, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 51, - "name": "Miles Bletchley", - "birth": "c. 1977-1979, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin Quidditch team", - "Bletchley family" - ], - "books_featured_in": [ - 1, - 3, - 5 - ] - }, - { - "id": 52, - "name": "Bloody Baron", - "birth": "Post 982", - "death": "11th century", - "species": "Human (formerly)", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin" - ], - "books_featured_in": [ - 1, - 2, - 4, - 5, - 7 - ] - }, - { - "id": 53, - "name": "Stubby Boardman", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "The Hobgoblins" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 54, - "name": "Bob", - "birth": "before 1978", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Department for the Regulation and Control of Magical Creatures" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 55, - "name": "Broderick Bode", - "birth": "Between January 1946 and January 1947", - "death": "Early January 1996", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Department of Mysteries" - ], - "books_featured_in": [ - 4, - 5 - ] - }, - { - "id": 56, - "name": "Bogrod", - "birth": null, - "death": "1 May, 1998", - "species": "Goblin", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Gringotts Wizarding Bank" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 57, - "name": "Lucian Bole", - "birth": "beteween 1 September 1976 and 31 August 1977", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Bole family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin Quidditch team" - ], - "books_featured_in": [ - 3, - 5 - ] - }, - { - "id": 58, - "name": "Pierre Bonaccord", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "International Confederation of Wizards" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 59, - "name": "Amelia Bones' father", - "birth": null, - "death": "prior to 31 October, 1981", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff (likely)", - "associated_groups": [ - "Bones family" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 60, - "name": "Edgar Bones", - "birth": null, - "death": "1981", - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Male", - "hair_color": "Reddish-brown", - "eye_color": "Grey", - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "Hufflepuff (possibly)", - "associated_groups": [ - "Bones family", - "Order of the Phoenix" - ], - "books_featured_in": [ - 1, - 5 - ] - }, - { - "id": 61, - "name": "Mungo Bonham", - "birth": "1560", - "death": "1659 (aged 98-99)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "St Mungo's Hospital for Magical Maladies and Injuries" - ], - "books_featured_in": [ - 5, - 6 - ] - }, - { - "id": 62, - "name": "Terry Boot", - "birth": "between 1 September 1979 and 21 April 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [ - "Boot family", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Duelling Club", - "Dumbledore's Army" - ], - "books_featured_in": [ - 1, - 2, - 5, - 6, - 7 - ] - }, - { - "id": 63, - "name": "Libatius Borage", - "birth": "Pre 1909, South America", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Castelobruxo" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 64, - "name": "Borgin", - "birth": "Between Pre-1846 and 1975", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood (most likely)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Borgin and Burkes" - ], - "books_featured_in": [ - 2, - 6, - 7 - ] - }, - { - "id": 65, - "name": "Boris the Bewildered", - "birth": null, - "death": "Before 1995", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 66, - "name": "Bozo", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Daily Prophet" - ], - "books_featured_in": [ - 2, - 4 - ] - }, - { - "id": 67, - "name": "Rupert Brookstanton", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6 - ] - }, - { - "id": 68, - "name": "Lavender Brown's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor (possibly)", - "associated_groups": [ - "Brown family" - ], - "books_featured_in": [ - 3 - ] - }, - { - "id": 69, - "name": "Brutus", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "St Brutus's Secure Centre for Incurably Criminal Boys" - ], - "books_featured_in": [ - 3, - 4, - 5 - ] - }, - { - "id": 70, - "name": "Frank Bryce", - "birth": "August 1917", - "death": "16 August, 1994 (aged 76)", - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Riddle family (formerly)", - "associated_groups": [], - "books_featured_in": [ - 4, - 6 - ] - }, - { - "id": 71, - "name": "Buckbeak", - "birth": "in or before 1993", - "death": null, - "species": "Hippogriff", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": "Orange", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Order of the Phoenix", - "Rubeus Hagrid (owner)", - "Harry Potter (owner)", - "Hermione Granger", - "Sirius Black (owner)", - "Hogwarts School of Witchcraft and Wizardry", - "Dumbledore's Army" - ], - "books_featured_in": [ - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 72, - "name": "Caractacus Burke", - "birth": "In or before 1846", - "death": "Likely before 1992 (Unconfirmed if dead)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Borgin and Burkes" - ], - "books_featured_in": [ - 2, - 6, - 7 - ] - }, - { - "id": 73, - "name": "Cadogan", - "birth": "Middle Ages,", - "death": "Before 1993", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": "Blackthorn and troll whisker, 9\", combustible (according to legend)", - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "King Arthur", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 3, - 4, - 5, - 7 - ] - }, - { - "id": 74, - "name": "Cadwallader", - "birth": "31 August 1985 or earlier, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Hogwarts", - "Hufflepuff Quidditch team", - "Hufflepuff" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 75, - "name": "Eddie Carmichael", - "birth": "Between 1 September 1978 and 31 August 1979, (most likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 76, - "name": "Amycus Carrow", - "birth": "Pre 1950s or 1960s", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "None", - "house": null, - "associated_groups": [ - "Carrow family", - "Death Eaters", - "Lord Voldemort", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 6, - 7 - ] - }, - { - "id": 77, - "name": "Catchpole", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2 - ] - }, - { - "id": 78, - "name": "Mary Cattermole's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 79, - "name": "Alfred Cattermole", - "birth": "c. Between 1987 and 1994 (possibly)", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Squib", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Cattermole family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 80, - "name": "Reginald Cattermole", - "birth": "Sun in Libra, moon in Virgo", - "death": null, - "species": "Human", - "ancestry": "Pure blood or Half-blood", - "gender": "Male", - "hair_color": "Greyish/Red", - "eye_color": "Green", - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Magical Maintenance Department", - "Cattermole family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 81, - "name": "Owen Cauldwell", - "birth": "between 1 September 1982 and 31 August 1983, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 82, - "name": "Ceremony official", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6, - 7 - ] - }, - { - "id": 83, - "name": "Chambers", - "birth": "on or before 31 August 1983, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Ravenclaw Quidditch team" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 84, - "name": "Cho Chang's father", - "birth": "before 1962 (most likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Chang family" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 85, - "name": "Herbert Chorley", - "birth": "before 1979 (most likely)", - "death": null, - "species": null, - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6 - ] - }, - { - "id": 86, - "name": "Clive Lundquist", - "birth": "31 August 1982 or earlier", - "death": null, - "species": null, - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Unknown", - "associated_groups": [], - "books_featured_in": [ - 3 - ] - }, - { - "id": 87, - "name": "Connolly", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Irish National Quidditch team" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 88, - "name": "Ritchie Coote", - "birth": "Pre 31 August 1984 (most likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 89, - "name": "Michael Corner", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Brown", - "wand": null, - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": [ - "Corner family", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Dumbledore's Army" - ], - "books_featured_in": [ - 5, - 6, - 7 - ] - }, - { - "id": 90, - "name": "Crabbe", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": "Slytherin (likely)", - "associated_groups": [ - "Crabbe family", - "Lord Voldemort", - "Death Eaters" - ], - "books_featured_in": [ - 4, - 5, - 7 - ] - }, - { - "id": 91, - "name": "Vincent Crabbe", - "birth": "between 2 September 1979 and 1 September 1980", - "death": "2 May, 1998 (aged 17/18)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "None", - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin Quidditch team", - "Inquisitorial Squad", - "Draco Malfoy's gang", - "Crabbe family", - "Lord Voldemort", - "Death Eaters (unofficially)" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 92, - "name": "Colin Creevey", - "birth": "betwen 3 May and 31 August 1981", - "death": "2 May, 1998 (aged 16)", - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Male", - "hair_color": "Mousy", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Creevey family", - "Dumbledore's Army", - "Harry Potter", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [ - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 93, - "name": "Dennis Creevey", - "birth": "between 1 September 1982 and 31 August 1983", - "death": null, - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Male", - "hair_color": "Mousy brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Dumbledore's Army", - "Creevey family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [ - 4, - 5, - 6 - ] - }, - { - "id": 94, - "name": "Creevey brothers' father", - "birth": "Before 1963 (most likely)", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Creevey family" - ], - "books_featured_in": [ - 2 - ] - }, - { - "id": 95, - "name": "Cresswell brothers", - "birth": null, - "death": null, - "species": "Humans", - "ancestry": "Half-bloods or Squibs", - "gender": "Males", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Cresswell family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 96, - "name": "Dirk Cresswell", - "birth": "between 1 September 1960 and 31 August 1961", - "death": "March, 1998", - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Ministry of Magic", - "Goblin Liaison Office", - "Hogwarts School of Witchcraft and Wizardry", - "Slug Club" - ], - "books_featured_in": [ - 6, - 7 - ] - }, - { - "id": 97, - "name": "Saul Croaker", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Department of Mysteries" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 98, - "name": "Crookshanks", - "birth": "Pre 1993", - "death": null, - "species": "Half-Kneazle", - "ancestry": null, - "gender": "Male", - "hair_color": "Ginger", - "eye_color": "Yellow", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Magical Menagerie", - "Magical Menagerie saleswoman", - "Hermione Granger (owner)", - "Sirius Black" - ], - "books_featured_in": [ - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 99, - "name": "Bartemius Crouch Junior", - "birth": "c. 1962", - "death": "c.1995-1996(aged 33 - 34) (received the Dementor's Kiss on 24 June, 1995)", - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Straw blonde", - "eye_color": null, - "wand": "Harry Potter's wand (briefly)", - "patronus": "None", - "house": null, - "associated_groups": [ - "Lord Voldemort", - "Death Eaters", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 4, - 5, - 6 - ] - }, - { - "id": 100, - "name": "Bartemius Crouch Senior", - "birth": null, - "death": "27 May, 1995", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Grey, formerly Dark", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Department of Magical Law Enforcement", - "Department of International Magical Cooperation" - ], - "books_featured_in": [ - 4, - 5, - 6, - 7 - ] - }, - { - "id": 101, - "name": "Bartemius Crouch Snr's grandfather", - "birth": null, - "death": "Before 1995", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Crouch family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 102, - "name": "Gideon Crumb", - "birth": "1975", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Weird Sisters" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 103, - "name": "Barnabas Cuffe", - "birth": "between 1914 and 1970,", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Daily Prophet", - "Slug Club" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 104, - "name": "Hector Dagworth-Granger", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Most Extraordinary Society of Potioneers" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 105, - "name": "Roger Davies", - "birth": "between 1 September 1977 and 31 August 1978 (likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Dark", - "eye_color": "Dark", - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [ - "Davies family", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Ravenclaw Quidditch team" - ], - "books_featured_in": [ - 3, - 4, - 5, - 7 - ] - }, - { - "id": 106, - "name": "John Dawlish", - "birth": "Between 1877 and 1975,", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Auror Office", - "Death Eaters (indirectly)", - "Dawlish family" - ], - "books_featured_in": [ - 5, - 6, - 7 - ] - }, - { - "id": 107, - "name": "Caradoc Dearborn", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Dearborn family", - "Order of the Phoenix" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 108, - "name": "Squat, wheezy man", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": [ - "Death Eaters", - "Lord Voldemort" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 109, - "name": "Delacour sisters' father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Delacour family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 110, - "name": "Patrick Delaney-Podmore", - "birth": null, - "death": "pre 1993", - "species": "Ghost", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Headless Hunt", - "Podmore family", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 2, - 7 - ] - }, - { - "id": 111, - "name": "Dennis", - "birth": "c. 1980", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Dudley Dursley's gang" - ], - "books_featured_in": [ - 1, - 5 - ] - }, - { - "id": 112, - "name": "Derek", - "birth": "c. 1981-1982", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 3 - ] - }, - { - "id": 113, - "name": "Peregrine Derrick", - "birth": "between 1 September 1976 and 31 August 1977, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin Quidditch team" - ], - "books_featured_in": [ - 3, - 5 - ] - }, - { - "id": 114, - "name": "Barnabas Deverill", - "birth": "17th century (most likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown wand", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 115, - "name": "Dedalus Diggle", - "birth": "Pre 1964", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Diggle family", - "Order of the Phoenix", - "Advance Guard", - "Harry Potter" - ], - "books_featured_in": [ - 1, - 5, - 7 - ] - }, - { - "id": 116, - "name": "Amos Diggory", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (likely)", - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Department for the Regulation and Control of Magical Creatures", - "Diggory family", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 117, - "name": "Cedric Diggory", - "birth": "between 1 September and 30 October 1977", - "death": "24 June, 1995 (aged 17)", - "species": "Human", - "ancestry": "Pure-blood (possibly)", - "gender": "Male", - "hair_color": "Dark", - "eye_color": "Grey", - "wand": "12¼\", Ash, unicorn hair", - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Diggory family", - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff", - "Hufflepuff Quidditch team", - "Circle of Khanna", - "Death Eaters (alternate timeline)" - ], - "books_featured_in": [ - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 118, - "name": "Ivor Dillonsby", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 119, - "name": "Vasily Dimitrov", - "birth": "before 1977, Bulgaria (possibly)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Bulgarian National Quidditch team" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 120, - "name": "Harold Dingle", - "birth": "Late 1970s or early 1980s", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 121, - "name": "Armando Dippet", - "birth": "October, 1637", - "death": "late 1992 (aged 355)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown (youth)", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 2, - 5, - 6, - 7 - ] - }, - { - "id": 122, - "name": "Dishevelled Wizard", - "birth": "Prior to 1993", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Knight Bus" - ], - "books_featured_in": [ - 3 - ] - }, - { - "id": 123, - "name": "Dobby", - "birth": "28 June, unknown year", - "death": "Late March, 1998", - "species": "House-elf", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Malfoy family (formerly)", - "Harry Potter", - "Ronald Weasley", - "Hermione Granger", - "Dumbledore's Army", - "Order of the Phoenix", - "Hogwarts School of Witchcraft and Wizardry", - "S.P.E.W." - ], - "books_featured_in": [ - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 124, - "name": "Elphias Doge", - "birth": "Between 1 September 1880 and 31 August 1881,", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Silver", - "eye_color": "Grey/Blue", - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Order of the Phoenix", - "Advance Guard", - "British Ministry of Magic", - "Wizengamot", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 5, - 7 - ] - }, - { - "id": 125, - "name": "Antonin Dolohov", - "birth": "pre 1950", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": [ - "Death Eaters", - "Lord Voldemort" - ], - "books_featured_in": [ - 4, - 5, - 6, - 7 - ] - }, - { - "id": 126, - "name": "Double-ended-newt wizard", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Magical Menagerie" - ], - "books_featured_in": [ - 3 - ] - }, - { - "id": 127, - "name": "Dragon keeper", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Romanian Dragon Sanctuary" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 128, - "name": "Driving test examiner", - "birth": "c. 1996 or earlier", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 129, - "name": "Dudley", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Half-blood or pure-blood (possibly)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 130, - "name": "Kirley Duke", - "birth": "1971", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Weird Sisters", - "McCormack family", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 131, - "name": "Aberforth Dumbledore", - "birth": "between 1 September 1883 and 31 August 1884", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Grey", - "eye_color": "Bright blue", - "wand": null, - "patronus": "Goat", - "house": null, - "associated_groups": [ - "Hog's Head Inn", - "Order of the Phoenix", - "Dumbledore family", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 4, - 5, - 6, - 7 - ] - }, - { - "id": 132, - "name": "Percival Dumbledore", - "birth": "Before 1864", - "death": "After 1890", - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Dumbledore family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 133, - "name": "Dudley Dursley", - "birth": "23 June 1980", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": "Blond", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Dursley family", - "Evans family", - "Smeltings Academy", - "His gang (formerly)" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 134, - "name": "Vernon Dursley", - "birth": "Pre 1954", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Dursley family", - "Grunnings" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 135, - "name": "Marietta Edgecombe's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Edgecombe family" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 136, - "name": "Egbert the Egregious", - "birth": "Middle Ages", - "death": "Middle Ages", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 137, - "name": "Elfric the Eager", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 138, - "name": "Emeric the Evil", - "birth": "Middle Ages", - "death": "Middle Ages", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown wand", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1, - 7 - ] - }, - { - "id": 139, - "name": "Errol", - "birth": "Before 1984", - "death": null, - "species": "Great grey owl", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Weasley family (owners)" - ], - "books_featured_in": [ - 2, - 3, - 4 - ] - }, - { - "id": 140, - "name": "Mark Evans", - "birth": "c. 1985", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 141, - "name": "Evans sisters' father", - "birth": null, - "death": "Between 1 September 1971 and 31 October 1981", - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Evans family" - ], - "books_featured_in": [ - 1, - 7 - ] - }, - { - "id": 142, - "name": "Everard", - "birth": null, - "death": "In or before 1995", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 5, - 6 - ] - }, - { - "id": 143, - "name": "Fallen Fifty", - "birth": null, - "death": "2 May, 1998", - "species": "Humans", - "ancestry": null, - "gender": "Females, Males", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Order of the Phoenix", - "Harry Potter", - "Dumbledore's Army" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 144, - "name": "Fang", - "birth": "c. 1984", - "death": null, - "species": "Boarhound", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Rubeus Hagrid" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 145, - "name": "Fat Friar", - "birth": "10th century", - "death": "Pre 1988", - "species": "Human (formerly)", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff", - "Catholic Church (formerly)" - ], - "books_featured_in": [ - 1, - 2, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 146, - "name": "Father Christmas", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2, - 4, - 7 - ] - }, - { - "id": 147, - "name": "Fawkes", - "birth": "Before 1938", - "death": "Immortal. Dies and is reborn from the ashes. Death dates include:", - "species": "Phoenix", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Albus Dumbledore", - "Harry Potter", - "Order of the Phoenix" - ], - "books_featured_in": [ - 1, - 2, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 148, - "name": "Benjy Fenwick", - "birth": null, - "death": "1981", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Fenwick family", - "Order of the Phoenix" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 149, - "name": "Fergus", - "birth": "Before 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (possibly)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Ireland", - "Finnigan family" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 150, - "name": "Argus Filch", - "birth": "Pre 1951", - "death": null, - "species": "Human", - "ancestry": "Squib", - "gender": "Male", - "hair_color": "Grey (balding)", - "eye_color": "Pale", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Inquisitorial Squad (formerly)", - "Mrs Norris" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 151, - "name": "Justin Finch-Fletchley", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": "Hufflepuff", - "associated_groups": [ - "Finch-Fletchley family", - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff", - "Dumbledore's Army" - ], - "books_featured_in": [ - 1, - 2, - 4, - 5 - ] - }, - { - "id": 152, - "name": "Barnabus Finkley", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Barnabus Finkley Prize for Exceptional Spell-Casting" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 153, - "name": "Seamus Finnigan's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Finnigan family" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 154, - "name": "Seamus Finnigan", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Sandy", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Fox", - "house": "Gryffindor", - "associated_groups": [ - "Dumbledore's Army", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Finnigan family" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 155, - "name": "Firenze", - "birth": null, - "death": null, - "species": "Centaur", - "ancestry": null, - "gender": "Male", - "hair_color": "White-blond", - "eye_color": "Astonishingly blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Forbidden Forest Centaur colony", - "Hogwarts School of Witchcraft and Wizardry", - "Order of the Phoenix (during the Battle of Hogwarts)", - "Dumbledore's Army (during the Battle of Hogwarts)" - ], - "books_featured_in": [ - 1, - 5, - 6, - 7 - ] - }, - { - "id": 156, - "name": "Nicolas Flamel", - "birth": "Between 1300 and 1326", - "death": "Between 1992 and 1996 (aged between 665 and 696)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": "Dark", - "wand": "Unknown length, wood and core", - "patronus": null, - "house": null, - "associated_groups": [ - "Beauxbatons Academy of Magic", - "Albus Dumbledore", - "Flamel family" - ], - "books_featured_in": [ - 1, - 7 - ] - }, - { - "id": 157, - "name": "Angus Fleet", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2 - ] - }, - { - "id": 158, - "name": "Mundungus Fletcher", - "birth": "Before 1962, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Ginger", - "eye_color": "Brown", - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Unknown", - "associated_groups": [ - "Order of the Phoenix", - "Albus Dumbledore", - "Harry Potter", - "Fletcher family", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 2, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 159, - "name": "Marcus Flint", - "birth": "between 1 September 1975 and 31 August 1976", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (possibly)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Flint family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin Quidditch team" - ], - "books_featured_in": [ - 1, - 2, - 3 - ] - }, - { - "id": 160, - "name": "Filius Flitwick", - "birth": "17 October 1958 or earlier", - "death": null, - "species": "Human (Goblin ancestry)", - "ancestry": "Part-Goblin", - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Frog Choir", - "Flitwick family", - "Order of the Phoenix (during the Battle of the Astronomy Tower and the Battle of Hogwarts", - "Dumbledore's Army (during the Battle of the Astronomy Tower and the Battle of Hogwarts" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 161, - "name": "Florence's boyfriend", - "birth": "1950s - 1960s, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 162, - "name": "Fluffy", - "birth": "Pre 1991", - "death": null, - "species": "Three-headed dog", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Rubeus Hagrid", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1, - 2, - 4 - ] - }, - { - "id": 163, - "name": "Ambrosius Flume", - "birth": "between 1914 and 1970,", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Bald", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slug Club", - "Honeydukes" - ], - "books_featured_in": [ - 3, - 6, - 7 - ] - }, - { - "id": 164, - "name": "Dexter Fortescue", - "birth": null, - "death": "After 1707, and before 1995", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Fortescue family" - ], - "books_featured_in": [ - 5, - 7 - ] - }, - { - "id": 165, - "name": "Florean Fortescue", - "birth": null, - "death": "1996", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Fortescue family", - "Florean Fortescue's Ice Cream Parlour" - ], - "books_featured_in": [ - 3, - 6 - ] - }, - { - "id": 166, - "name": "Foul-smelling Snatcher", - "birth": "Before 1981", - "death": null, - "species": "Part-troll human (possibly)", - "ancestry": "Pure or Half-blood (most likely)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "10\", blackthorn, unknown core materials (formerly)", - "patronus": null, - "house": null, - "associated_groups": [ - "Snatchers" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 167, - "name": "Fubster", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 3 - ] - }, - { - "id": 168, - "name": "Cornelius Fudge", - "birth": "Pre 1964", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood (most likely)", - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Order of Merlin", - "British Ministry of Magic", - "Department of Magical Accidents and Catastrophes", - "Wizengamot", - "Fudge family", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 169, - "name": "Ulick Gamp", - "birth": "in or before 1690 (most likely)", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Wizengamot", - "British Ministry of Magic", - "British Government", - "Gamp family" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 170, - "name": "Marvolo Gaunt", - "birth": "Pre 1890", - "death": "Between 1925 and 1928", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Grey", - "eye_color": "Bright brown", - "wand": null, - "patronus": null, - "house": "House of Gaunt", - "associated_groups": [], - "books_featured_in": [ - 2, - 6, - 7 - ] - }, - { - "id": 171, - "name": "Morfin Gaunt", - "birth": "c. 1900", - "death": "pre 1996", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Dark", - "eye_color": "Dark", - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "House of Gaunt", - "associated_groups": [], - "books_featured_in": [ - 6, - 7 - ] - }, - { - "id": 172, - "name": "Portly ghost", - "birth": null, - "death": "Before 1992", - "species": "Human (formerly)", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2 - ] - }, - { - "id": 173, - "name": "Gibbon", - "birth": null, - "death": "30 June, 1997", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": [ - "Lord Voldemort", - "Death Eaters" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 175, - "name": "Godelot", - "birth": "Middle Ages", - "death": "Middle Ages", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown wand", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 176, - "name": "Godfrey", - "birth": null, - "death": "1978 or earlier", - "species": "Human (formerly)", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 3 - ] - }, - { - "id": 177, - "name": "Godric's Hollow Muggle boy", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 178, - "name": "Anthony Goldstein", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Blonde", - "eye_color": "Grey", - "wand": null, - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": [ - "Goldstein family", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Dumbledore's Army" - ], - "books_featured_in": [ - 5, - 7 - ] - }, - { - "id": 179, - "name": "Golgomath", - "birth": "Before 1995", - "death": null, - "species": "Giant", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Giant colony", - "Lord Voldemort", - "Death Eaters" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 180, - "name": "Gordon", - "birth": "c. 1979 or 1980", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Dudley Dursley's gang" - ], - "books_featured_in": [ - 1, - 5 - ] - }, - { - "id": 182, - "name": "Dragomir Gorgovitch", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Chudley Cannons" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 183, - "name": "Gorilla at the Zoo", - "birth": null, - "death": null, - "species": "Gorilla", - "ancestry": null, - "gender": null, - "hair_color": "Black", - "eye_color": "Dark", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 184, - "name": "Gornuk", - "birth": null, - "death": "1998", - "species": "Goblin", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Gringotts Wizarding Bank" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 185, - "name": "Goyle", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": "Slytherin (possibly)", - "associated_groups": [ - "Goyle family", - "Lord Voldemort", - "Death Eaters" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 186, - "name": "Gregory Goyle", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "None", - "house": "Slytherin", - "associated_groups": [ - "Goyle family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin Quidditch team", - "Inquisitorial Squad", - "Draco Malfoy's gang (formerly)", - "Lord Voldemort", - "Death Eaters (unofficially)" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 187, - "name": "Hermione Granger's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Granger family" - ], - "books_featured_in": [ - 1, - 2, - 3, - 5, - 7 - ] - }, - { - "id": 188, - "name": "Merton Graves", - "birth": "1978", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "The Weird Sisters", - "Graves family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 189, - "name": "Grawp", - "birth": "Post 1931", - "death": null, - "species": "Giant", - "ancestry": "Giant", - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Brown-green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hagrid family", - "Order of the Phoenix (during the Battle of Hogwarts)" - ], - "books_featured_in": [ - 5, - 6, - 7 - ] - }, - { - "id": 190, - "name": "Grawp's father", - "birth": null, - "death": null, - "species": "Giant", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 191, - "name": "Greek man", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Fluffy" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 192, - "name": "Mykew Gregorovitch", - "birth": "In or before 1909", - "death": "2 September, 1997, Gregorovitch Zauberstäbe", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": "Gregorovitch Zauberstäbe", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [], - "books_featured_in": [ - 4, - 7 - ] - }, - { - "id": 193, - "name": "Gregory the Smarmy", - "birth": "12th century or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Bald (Brown eyebrows)", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1, - 5 - ] - }, - { - "id": 194, - "name": "Fenrir Greyback", - "birth": "Pre 1945", - "death": null, - "species": "Werewolf (formerly Human)", - "ancestry": null, - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "None", - "house": null, - "associated_groups": [ - "Lord Voldemort", - "Death Eaters (unofficially)", - "Snatchers", - "Werewolf army" - ], - "books_featured_in": [ - 3, - 6, - 7 - ] - }, - { - "id": 195, - "name": "Gellert Grindelwald", - "birth": "Between summer 1882 and summer 1883", - "death": "March, 1998 (aged around 115)", - "species": "Human (Seer)", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": "Blue", - "wand": "Unknown wood, core material and length", - "patronus": null, - "house": null, - "associated_groups": [ - "The Alliance", - "Acolytes", - "Durmstrang Institute" - ], - "books_featured_in": [ - 1, - 7 - ] - }, - { - "id": 196, - "name": "Gringotts Guards", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 197, - "name": "Gringotts Head Goblin", - "birth": null, - "death": null, - "species": "Goblin", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Gringotts Wizarding Bank" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 198, - "name": "Griphook", - "birth": "Pre-1990", - "death": "1 May, 1998", - "species": "Goblin", - "ancestry": null, - "gender": "Male", - "hair_color": "Silver", - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Gringotts Wizarding Bank" - ], - "books_featured_in": [ - 1, - 7 - ] - }, - { - "id": 199, - "name": "Edmund Grubb", - "birth": null, - "death": "c. 1837–1901", - "species": "Human (formerly)", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 200, - "name": "Grubby-looking St Mungo's patient", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Magical to unknown extent", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "St Mungo's Hospital for Magical Maladies and Injuries" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 201, - "name": "Alberic Grunnion", - "birth": "1803", - "death": "1882 (aged 78-79)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 202, - "name": "Godric Gryffindor", - "birth": "Pre 976", - "death": "11th century (possibly)", - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": "Green", - "wand": null, - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [ - 1, - 2, - 5, - 7 - ] - }, - { - "id": 203, - "name": "Davey Gudgeon", - "birth": "c. 1960s", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Gudgeon family" - ], - "books_featured_in": [ - 3 - ] - }, - { - "id": 204, - "name": "Rubeus Hagrid's father", - "birth": null, - "death": "Between 1 September 1941 and 31 August 1942", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hagrid family" - ], - "books_featured_in": [ - 4, - 5, - 6 - ] - }, - { - "id": 205, - "name": "Rubeus Hagrid", - "birth": "6 December 1928", - "death": null, - "species": "Half-Human/Half-Giant", - "ancestry": "Part-Human (Half-giant)", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Black", - "wand": "16\", Oak, unknown core", - "patronus": "None", - "house": "Gryffindor", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Order of the Phoenix", - "Hagrid family", - "Albus Dumbledore", - "Harry Potter" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 206, - "name": "Ciceron Harkiss", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6 - ] - }, - { - "id": 207, - "name": "Harper", - "birth": "between 1 September 1980 and 31 August 1981, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": "Pure-blood (most likely)", - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Harper family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin Quidditch team" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 208, - "name": "Warty Harris", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 209, - "name": "Heady", - "birth": null, - "death": null, - "species": "Shrunken Head", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Knockturn Alley" - ], - "books_featured_in": [ - 2 - ] - }, - { - "id": 210, - "name": "Hereward", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Half-blood or pure-blood (possibly)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown wand", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 211, - "name": "Hermes", - "birth": "Before 1991", - "death": null, - "species": "Screech owl", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Percy Weasley (owner)" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5 - ] - }, - { - "id": 212, - "name": "Bertie Higgs", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6 - ] - }, - { - "id": 213, - "name": "Terence Higgs", - "birth": "31 August 1979 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Higgs family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin Quidditch team" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 214, - "name": "Oakden Hobday", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 215, - "name": "Hogwarts Express conductor", - "birth": "c. 1920s-1950s", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts Express crew", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 216, - "name": "Hogwarts school mice", - "birth": "Before 1994", - "death": null, - "species": "Mice", - "ancestry": null, - "gender": "Males and females", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Transfiguration department", - "Minerva McGonagall" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 217, - "name": "Phillipus von Hohenheim", - "birth": "1493", - "death": "1541 (aged 47-48)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1, - 5 - ] - }, - { - "id": 218, - "name": "Geoffrey Hooper", - "birth": "c. Pre 31 August 1983", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Hooper family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 219, - "name": "Olive Hornby's brother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 220, - "name": "House of Black house-elves", - "birth": "Varied", - "death": "Varied; between 1850 and 1985", - "species": "House-elves", - "ancestry": null, - "gender": "Males", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 221, - "name": "Inigo Imago", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 222, - "name": "Joey Jenkins", - "birth": "In or before 1977", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Chudley Cannons", - "Jenkins family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 223, - "name": "Arsenius Jigger", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Dark", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 224, - "name": "Lee Jordan's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor (likely)", - "associated_groups": [ - "Jordan family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 225, - "name": "Lee Jordan", - "birth": "Between 1 September 1977 and 31 August 1978", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Black (dreadlocks)", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Jordan family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Dumbledore's Army", - "Order of the Phoenix", - "Potterwatch" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 226, - "name": "Jugson", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": [ - "Death Eaters", - "Lord Voldemort" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 227, - "name": "Karkaroff’s Aide", - "birth": "Before October 1977", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Hazel", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Durmstrang Institute", - "Igor Karkaroff (formerly)" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 228, - "name": "Igor Karkaroff", - "birth": "pre 1965", - "death": "24 June, 1995 – 31 July, 1996", - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Silver (formerly black)", - "eye_color": "Blue", - "wand": "Unknown length, wood and core", - "patronus": "None", - "house": null, - "associated_groups": [ - "Death Eaters (formerly)", - "Lord Voldemort (formerly)", - "Durmstrang Institute (formerly)" - ], - "books_featured_in": [ - 4, - 5, - 6, - 7 - ] - }, - { - "id": 229, - "name": "Karkus", - "birth": null, - "death": "1995", - "species": "Giant", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 230, - "name": "Karl H.", - "birth": "Before 1993", - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 3 - ] - }, - { - "id": 231, - "name": "Silvanus Kettleburn", - "birth": "22 November, before 1927[citation needed]", - "death": "Between 2 May, 1998 and 22 November, 2014", - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Silver", - "eye_color": "Brown", - "wand": "Chestnut and phoenix feather, 11½\", whippy", - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff", - "Kettleburn family" - ], - "books_featured_in": [ - 3 - ] - }, - { - "id": 232, - "name": "Kevin", - "birth": "c. 1992", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Kevin's family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 233, - "name": "Kevin's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core materials", - "patronus": null, - "house": null, - "associated_groups": [ - "Kevin's family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 234, - "name": "King's Cross Station guard", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "King's Cross Station" - ], - "books_featured_in": [ - 1, - 2 - ] - }, - { - "id": 235, - "name": "Andrew Kirke", - "birth": "31 August 1983 or earlierGreat Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Kirke family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 236, - "name": "Kreacher", - "birth": "Between 1351 and 1979", - "death": "Between 1 September, 2017 and 2645 (aged 666)", - "species": "House-elf", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "House of Black (formerly)", - "associated_groups": [], - "books_featured_in": [ - 5, - 6, - 7 - ] - }, - { - "id": 237, - "name": "Viktor Krum's father", - "birth": "In or before 1945 (possibly)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Krum family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 238, - "name": "Viktor Krum's grandfather", - "birth": null, - "death": "Pre-1945", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Krum family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 239, - "name": "Viktor Krum", - "birth": "April-August, 1976,", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Dark", - "eye_color": "Dark", - "wand": "10¼\", Hornbeam, dragon heartstring", - "patronus": null, - "house": null, - "associated_groups": [ - "Durmstrang Institute", - "Bulgarian National Quidditch team", - "Krum family", - "Death Eaters (Imperiused)" - ], - "books_featured_in": [ - 4, - 5, - 6, - 7 - ] - }, - { - "id": 240, - "name": "Lachlan the Lanky", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 241, - "name": "Lancelot (Healer)", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "St Mungo's Hospital for Magical Maladies and Injuries", - "Prewett family (possibly)" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 242, - "name": "Lestrange", - "birth": "c. 1920s", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Tom Riddle's gang", - "Slug Club", - "Lestrange family" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 243, - "name": "Rabastan Lestrange", - "birth": "Before 1964", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": [ - "Lord Voldemort", - "Death Eaters", - "Lestrange family" - ], - "books_featured_in": [ - 4, - 5 - ] - }, - { - "id": 244, - "name": "Rodolphus Lestrange", - "birth": "Pre 1964", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Dark", - "eye_color": "Dark", - "wand": null, - "patronus": "None", - "house": "Lord Voldemort", - "associated_groups": [], - "books_featured_in": [ - 4, - 5, - 7 - ] - }, - { - "id": 245, - "name": "Alexei Levski", - "birth": "before 1977, Bulgaria", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Levski family", - "Bulgarian National Quidditch team" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 246, - "name": "Little Hangleton boys", - "birth": "c. 1980s", - "death": null, - "species": "Human", - "ancestry": "Muggles", - "gender": "Males", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 247, - "name": "Little Whinging postman", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 248, - "name": "Livius", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Elder, Thestral tail hair core (possibly)", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 249, - "name": "Dai Llewellyn", - "birth": null, - "death": "Before 1995,", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Caerphilly Catapults" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 250, - "name": "Gilderoy Lockhart", - "birth": "26 January, 1964", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": "Blue", - "wand": "9\", Cherry, dragon heartstring", - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": [ - "Lockhart family", - "Hogwarts School of Witchcraft and Wizardry (formerly)", - "Ravenclaw", - "Ravenclaw Quidditch team", - "Dark Force Defence League (formerly)", - "St Mungo's Hospital for Magical Maladies and Injuries", - "Order of Merlin" - ], - "books_featured_in": [ - 2, - 3, - 4, - 5, - 6 - ] - }, - { - "id": 251, - "name": "Frank Longbottom's father", - "birth": "Before 1947", - "death": "Between 1980 and 1995", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Longbottom family" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 252, - "name": "Algie Longbottom", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1, - 5 - ] - }, - { - "id": 253, - "name": "Frank Longbottom", - "birth": "c. 1 September 1957 - 31 August 1959 or earlier", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Blonde", - "eye_color": null, - "wand": "Unknown", - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Longbottom family", - "Gryffindor", - "Ministry of Magic (formerly)", - "Auror Office", - "Order of the Phoenix (formerly)" - ], - "books_featured_in": [ - 4, - 5, - 6, - 7 - ] - }, - { - "id": 254, - "name": "Neville Longbottom", - "birth": "30 July, 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": null, - "wand": "Father's wand (formerly)", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Longbottom family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Herbology department", - "Slug Club (briefly)", - "Albus Dumbledore", - "Order of the Phoenix", - "Harry Potter", - "Dumbledore's Army", - "British Ministry of Magic", - "Auror Department (formerly)", - "S.P.E.W.", - "Abbott family" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 255, - "name": "Xenophilius Lovegood", - "birth": "before 1964 (most likely),", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": [ - "Lovegood family", - "The Quibbler", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Order of the Phoenix", - "Harry Potter" - ], - "books_featured_in": [ - 4, - 5, - 6, - 7 - ] - }, - { - "id": 256, - "name": "Loxias", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Elder, Thestral tail hair core", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 257, - "name": "Lyall Lupin", - "birth": "1929", - "death": null, - "species": "Human", - "ancestry": "Half-blood or pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Lupin family", - "Howell family", - "Hogwarts School of Witchcraft and Wizardry", - "British Ministry of Magic", - "Department for the Regulation and Control of Magical Creatures" - ], - "books_featured_in": [ - 3, - 6 - ] - }, - { - "id": 258, - "name": "Remus Lupin", - "birth": "10 March, 1960", - "death": "2 May, 1998 (aged 38)", - "species": "Werewolf (formerly Human)", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Light brown flecked with grey", - "eye_color": "Green", - "wand": "10¼\", Cypress, unicorn hair", - "patronus": "Wolf", - "house": "Gryffindor", - "associated_groups": [ - "Lupin family", - "Howell family", - "Tonks family", - "Potter family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Marauders", - "Order of the Phoenix", - "Advance Guard" - ], - "books_featured_in": [ - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 259, - "name": "Edward Lupin", - "birth": "April, 1998", - "death": null, - "species": "Human (Metamorphmagus)", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Variable", - "eye_color": "Variable", - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Lupin family", - "Tonks family", - "Potter family", - "Weasley family", - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 260, - "name": "Aidan Lynch", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Irish National Quidditch team" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 261, - "name": "Quintius MacBoon", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "MacBoon clan" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 262, - "name": "Ernest Macmillan", - "birth": "Between 22 April 1980 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Boar", - "house": "Hufflepuff", - "associated_groups": [ - "Macmillan family", - "Dumbledore's Army", - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff" - ], - "books_featured_in": [ - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 263, - "name": "Walden Macnair", - "birth": "In or before 1970s", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "None", - "house": null, - "associated_groups": [ - "Death Eaters", - "Lord Voldemort", - "British Ministry of Magic (formerly)", - "Committee for the Disposal of Dangerous Creatures (formerly)" - ], - "books_featured_in": [ - 3, - 4, - 5, - 7 - ] - }, - { - "id": 264, - "name": "Magorian", - "birth": null, - "death": null, - "species": "Centaur", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Forbidden Forest Centaur colony", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 5, - 7 - ] - }, - { - "id": 265, - "name": "Malcolm", - "birth": "c. 1980s", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Dudley Dursley's gang" - ], - "books_featured_in": [ - 1, - 5 - ] - }, - { - "id": 266, - "name": "Abraxas Malfoy", - "birth": "before 1936 (most likely), Great Britain or Ireland", - "death": "Pre 2 September, 1996", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Malfoy family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 267, - "name": "Draco Malfoy", - "birth": "5 June, 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Silver-blonde", - "eye_color": "Grey", - "wand": "10\", Hawthorn, unicorn hair (formerly)", - "patronus": "None", - "house": "Malfoy family", - "associated_groups": [], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 268, - "name": "Lucius Malfoy", - "birth": "between 9 September 1953 and 8 September 1954", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "White-blond", - "eye_color": "Grey", - "wand": "Elm and dragon heartstring (formerly)", - "patronus": "None", - "house": "Malfoy family", - "associated_groups": [], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 269, - "name": "Scorpius Malfoy", - "birth": "between 1 September 2005 and 31 August 2006", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "White-blond", - "eye_color": "Grey", - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "Malfoy family", - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 270, - "name": "Marauders", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 271, - "name": "Marius", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Magical to unknown extent", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Gringotts Wizarding Bank" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 272, - "name": "Martin Miggs", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2, - 6, - 7 - ] - }, - { - "id": 273, - "name": "Mason", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Mason family" - ], - "books_featured_in": [ - 2 - ] - }, - { - "id": 274, - "name": "Olympe Maxime's father", - "birth": null, - "death": null, - "species": "Human or Giant", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Maxime family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 275, - "name": "Jim McGuffin", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 276, - "name": "Cormac McLaggen", - "birth": "between 1 September 1978 and 31 August 1979", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "McLaggen family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Slug Club", - "Dumbledore's Army" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 277, - "name": "Merlin", - "birth": "c. 982 or later", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": "Unconfirmed length and core, English oak (?) wood", - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Order of Merlin", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Court of King Arthur" - ], - "books_featured_in": [ - 1, - 2, - 4, - 7 - ] - }, - { - "id": 278, - "name": "Eloise Midgen's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood, half-blood or Muggle-born", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor (likely)", - "associated_groups": [ - "Midgen family" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 279, - "name": "Nicholas de Mimsy-Porpington", - "birth": "Between 1401 and 1475,", - "death": "31 October, 1492 (aged 17- 91)", - "species": "Human (formerly)", - "ancestry": null, - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Henry VII's royal court (formerly)", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Headless Hunt (possibly)" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 280, - "name": "Marcus Minugius", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2 - ] - }, - { - "id": 281, - "name": "Cuthbert Mockridge", - "birth": "before 1976", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Ministry of Magic" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 282, - "name": "Graham Montague's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Montague family" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 283, - "name": "Graham Montague", - "birth": "In or prior to c.1981,", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin Quidditch team", - "Inquisitorial Squad", - "Montague family" - ], - "books_featured_in": [ - 3, - 5, - 6 - ] - }, - { - "id": 284, - "name": "Montgomery", - "birth": "Between April 1991 and April 1992", - "death": "April 1997 (aged 5)", - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6 - ] - }, - { - "id": 285, - "name": "Alastor Moody", - "birth": "Pre 1960", - "death": "27 July, 1997", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Grey", - "eye_color": "One dark, one electric blue", - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Unknown", - "associated_groups": [ - "Order of the Phoenix", - "Advance Guard", - "Hogwarts School of Witchcraft and Wizardry", - "British Ministry of Magic", - "Auror Department" - ], - "books_featured_in": [ - 4, - 5, - 6, - 7 - ] - }, - { - "id": 286, - "name": "Mopsus (Potter-era)", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 287, - "name": "Mortlake", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2 - ] - }, - { - "id": 288, - "name": "Hassan Mostafa", - "birth": "Before 1977, (most likely) Egypt", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Bald", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Egypt", - "International Association of Quidditch" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 289, - "name": "Mr Paws", - "birth": "Before 1991", - "death": null, - "species": "Part-Kneazle", - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Arabella Figg" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 290, - "name": "Mr Tibbles", - "birth": "before 1991", - "death": null, - "species": "Part-Kneazle cat", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Arabella Figg" - ], - "books_featured_in": [ - 1, - 5 - ] - }, - { - "id": 291, - "name": "Red-haired Muggle boy", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 292, - "name": "Mulciber I", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": [ - "Lord Voldemort", - "Death Eaters" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 293, - "name": "Eric Munch", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 294, - "name": "Nicholas de Mimsy-Porpington's executioner", - "birth": "Before 1492", - "death": "After 1492", - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2 - ] - }, - { - "id": 295, - "name": "Nott", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": [ - "Nott family", - "Hogwarts School of Witchcraft and Wizardry", - "Death Eaters", - "Lord Voldemort" - ], - "books_featured_in": [ - 4, - 5, - 6 - ] - }, - { - "id": 296, - "name": "Theodore Nott", - "birth": "1 September, 1979 – 21 April, 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Nott family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Death Eaters (indirectly)" - ], - "books_featured_in": [ - 1, - 5, - 6 - ] - }, - { - "id": 297, - "name": "Oblansk", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Bulgarian Ministry of Magic", - "Bulgarian National Quidditch team" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 298, - "name": "Roberts' Obliviator", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Ministry of Magic" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 299, - "name": "Odo", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core materials", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6, - 7 - ] - }, - { - "id": 300, - "name": "Bob Ogden", - "birth": "1908 at the latest", - "death": "Some time before 7 September, 1996", - "species": "Human", - "ancestry": "Half-blood or Pure-blood (likely)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown wood, length and core materials", - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Department of Magical Law Enforcement", - "Ogden family" - ], - "books_featured_in": [ - 6, - 7 - ] - }, - { - "id": 301, - "name": "Tiberius Ogden", - "birth": "before 1977", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Wizengamot (formally)", - "Ogden family", - "Ministry of Magic" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 302, - "name": "Ogg", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 303, - "name": "Garrick Ollivander", - "birth": "25 September, pre 1908", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": "Silvery", - "wand": "Wandmaker", - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": [ - "Ollivander family", - "Ollivanders", - "Harry Potter", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw" - ], - "books_featured_in": [ - 1, - 4, - 6, - 7 - ] - }, - { - "id": 304, - "name": "Painting of sinister-looking monks", - "birth": null, - "death": "Before 1993", - "species": "Human", - "ancestry": null, - "gender": "Males", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 3 - ] - }, - { - "id": 305, - "name": "Patil twins' father", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Patil family" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 306, - "name": "Payne", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 307, - "name": "Jimmy Peakes", - "birth": "between 1 September 1982 and 31 August 1983", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Peakes family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team" - ], - "books_featured_in": [ - 6, - 7 - ] - }, - { - "id": 308, - "name": "Arnold Peasegood", - "birth": "1976 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Ministry of Magic" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 309, - "name": "Peeves", - "birth": "Amortal", - "death": "Amortal", - "species": "Poltergeist", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Order of the Phoenix (during the Battle of Hogwarts)", - "Dumbledore's Army (during the Battle of Hogwarts)" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 310, - "name": "Octavius Pepper", - "birth": null, - "death": "Spring, 1997 (possibly)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6 - ] - }, - { - "id": 311, - "name": "Perkins", - "birth": "Before 1975", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Fluffy white", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Misuse of Muggle Artefacts Office" - ], - "books_featured_in": [ - 2, - 4, - 5, - 7 - ] - }, - { - "id": 312, - "name": "Peter Pettigrew", - "birth": "between 1 September 1959 and 31 August 1960", - "death": "Late March 1998 (aged 38 -39)", - "species": "Human", - "ancestry": "Half-blood or pure-blood", - "gender": "Male", - "hair_color": "Colourless and balding", - "eye_color": null, - "wand": "Unknown 1st wand", - "patronus": "None", - "house": "Gryffindor", - "associated_groups": [ - "Pettigrew family", - "Weasley family (as Scabbers) (formerly)", - "Hogwarts School of Witchcraft and Wizardry (formerly)", - "Gryffindor", - "Marauders", - "Order of the Phoenix (betrayed)", - "Lord Voldemort", - "Death Eaters", - "R (formerly)" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 313, - "name": "Ignotus Peverell's son", - "birth": "13th century", - "death": "After 18 May, 1292", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Peverell family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 314, - "name": "Antioch Peverell's enemy", - "birth": null, - "death": "Between 12 July, 1214 and 18 May, 1291", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 315, - "name": "Antioch Peverell", - "birth": "Prior to 12 July, 1214", - "death": "Prior to 19 May, 1292", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": "Unknown length, wood, and core (formerly)", - "patronus": null, - "house": null, - "associated_groups": [ - "Peverell family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 316, - "name": "Cadmus Peverell", - "birth": "Prior to 12 July, 1214", - "death": "Prior to 19 May, 1292", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Peverell family", - "His fiancée" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 317, - "name": "Ignotus Peverell", - "birth": "12 July, 1214", - "death": "19 May, 1292 (aged 77)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Peverell family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 318, - "name": "Arkie Philpott", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6 - ] - }, - { - "id": 319, - "name": "Pigwidgeon", - "birth": "Pre 1994", - "death": null, - "species": "Scops owl", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Ronald Weasley (owner)" - ], - "books_featured_in": [ - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 320, - "name": "Sturgis Podmore", - "birth": "Between 8 September 1956 and 7 September 1957", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Straw-coloured", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Podmore family", - "Order of the Phoenix", - "Advance Guard" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 321, - "name": "Poliakoff", - "birth": "on or before 30 October 1977", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Durmstrang Institute" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 322, - "name": "Piers Polkiss", - "birth": "c. 1980", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Dudley Dursley" - ], - "books_featured_in": [ - 1, - 5 - ] - }, - { - "id": 323, - "name": "Roddy Pontner", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 324, - "name": "Albus Potter", - "birth": "Between 1 September 2005 and 31 August 2006", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Jet-black", - "eye_color": "Bright green", - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Potter family", - "Weasley family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 325, - "name": "Fleamont Potter", - "birth": "Pre-1909", - "death": "c. 1979", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Potter family", - "Peverell family", - "Fleamont family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [ - 1, - 5, - 7 - ] - }, - { - "id": 326, - "name": "Harry Potter", - "birth": "31 July, 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Jet-black", - "eye_color": "Bottle green", - "wand": "11\", Holly, phoenix feather", - "patronus": "Stag", - "house": "Gryffindor", - "associated_groups": [ - "Potter family", - "Weasley family", - "Albus Dumbledore", - "Dumbledore's Army", - "Order of the Phoenix", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Slug Club", - "British Ministry of Magic", - "Auror Office", - "Department of Magical Law Enforcement", - "S.P.E.W." - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 327, - "name": "James Potter I", - "birth": "27 March, 1960", - "death": "31 October, 1981 (aged 21)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Jet-black", - "eye_color": "Hazel", - "wand": "11\", Mahogany, unknown core", - "patronus": "Stag", - "house": "Gryffindor", - "associated_groups": [ - "Potter family", - "Evans family", - "Hogwarts School of Witchcraft and Wizardry", - "Marauders", - "Gryffindor", - "Gryffindor Quidditch team", - "Order of the Phoenix" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 328, - "name": "James Potter II", - "birth": "Between 1 September 2003 and 31 August 2004", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Potter family", - "Weasley family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 329, - "name": "Ernest Prang", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": [ - "Knight Bus", - "Albus Dumbledore" - ], - "books_featured_in": [ - 3, - 5, - 6 - ] - }, - { - "id": 330, - "name": "Prentice", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 331, - "name": "Fabian Prewett", - "birth": null, - "death": "1981", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Prewett family", - "Order of the Phoenix" - ], - "books_featured_in": [ - 1, - 5, - 7 - ] - }, - { - "id": 332, - "name": "Gideon Prewett", - "birth": null, - "death": "1981", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": "Dark grey", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Prewett family", - "Order of the Phoenix" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 333, - "name": "Molly Weasley's father", - "birth": "before 1932 (most likely)", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red (possibly)", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Prewett family" - ], - "books_featured_in": [ - 1, - 5 - ] - }, - { - "id": 334, - "name": "Prime Minister's political opponent", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6 - ] - }, - { - "id": 335, - "name": "Prime Minister's predecessor", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Great Britain", - "British Government" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 336, - "name": "Apollyon Pringle", - "birth": "pre 1944", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 337, - "name": "Graham Pritchard", - "birth": "between 1 September 1982 and 31 August 1983, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 338, - "name": "Demetrius Prod", - "birth": "Prior to 1992", - "death": "27 November, 1998", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Kwikspell" - ], - "books_featured_in": [ - 2 - ] - }, - { - "id": 339, - "name": "Ptolemy", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 340, - "name": "Adrian Pucey", - "birth": "between 1 September 1977 and 31 August 1978", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Pucey family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin Quidditch team", - "Slytherin" - ], - "books_featured_in": [ - 1, - 2, - 3, - 5 - ] - }, - { - "id": 341, - "name": "Augustus Pye", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "St Mungo's" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 342, - "name": "Pyrites", - "birth": "Before 1981", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Death Eaters", - "Lord Voldemort", - "Pyrites family" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 343, - "name": "Argo Pyrites", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Pyrites family" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 344, - "name": "Quigley", - "birth": "before 1977, Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Irish National Quidditch team" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 345, - "name": "Quirinus Quirrell", - "birth": "26 September,1970 or earlier", - "death": "4 June 1992", - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "9\", Alder, unicorn hair, bendy", - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry (formerly)", - "Ravenclaw", - "Lord Voldemort" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 346, - "name": "Urquhart Rackharrow", - "birth": "1612", - "death": "1697 (aged 84 - 85)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "St Mungo's Hospital for Magical Maladies and Injuries" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 347, - "name": "Ragnok", - "birth": "Before 1995", - "death": null, - "species": "Goblin", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Gringotts Wizarding Bank" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 348, - "name": "Ragnuk", - "birth": null, - "death": null, - "species": "Goblin", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Goblins" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 349, - "name": "Thomas Riddle", - "birth": "1880", - "death": "August, 1943 (aged 62 - 63)", - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Riddle family" - ], - "books_featured_in": [ - 4, - 6 - ] - }, - { - "id": 350, - "name": "Tom Riddle (Voldemort)", - "birth": "31 December, 1926", - "death": "2 May, 1998 (aged 71)", - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Bald (formerly black)", - "eye_color": "Scarlet (formerly dark brown)", - "wand": "13½\", Yew, phoenix feather core", - "patronus": "None", - "house": "Slytherin", - "associated_groups": [ - "Death Eaters", - "Hogwarts School of Witchcraft and Wizardry (formerly)", - "Slytherin", - "Slug Club", - "British Ministry of Magic (only under his control)", - "Borgin and Burkes" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 351, - "name": "Tom Riddle Senior", - "birth": "1905", - "death": "August, 1943 (aged 37/38)", - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Riddle family" - ], - "books_featured_in": [ - 2, - 4, - 5, - 6 - ] - }, - { - "id": 352, - "name": "Ripper", - "birth": "c. 1980s", - "death": null, - "species": "Dog (breed: bulldog)", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown and white", - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Marjorie Dursley" - ], - "books_featured_in": [ - 3, - 5 - ] - }, - { - "id": 353, - "name": "Gawain Robards", - "birth": "Pre. 1969", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Department of Magical Law Enforcement", - "Auror Office" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 354, - "name": "Roberts", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Roberts family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 355, - "name": "Roberts children", - "birth": "20th century", - "death": null, - "species": "Humans", - "ancestry": "Muggles", - "gender": "At least one boy", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Roberts family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 356, - "name": "Romanian vampire", - "birth": "Romania (most likely)", - "death": null, - "species": "Vampire", - "ancestry": null, - "gender": "Male (most likely)", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 357, - "name": "Ronan", - "birth": null, - "death": null, - "species": "Centaur", - "ancestry": null, - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Forbidden Forest Centaur colony", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1, - 5, - 7 - ] - }, - { - "id": 358, - "name": "Augustus Rookwood", - "birth": "Pre 1964", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Brown/greying", - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": [ - "Death Eaters", - "Lord Voldemort", - "British Ministry of Magic (formerly)", - "Department of Mysteries (formerly)" - ], - "books_featured_in": [ - 4, - 5, - 7 - ] - }, - { - "id": 359, - "name": "Rosier (male)", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood (likely)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": [ - "Death Eaters", - "Lord Voldemort", - "Rosier family" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 360, - "name": "Evan Rosier", - "birth": "Between 1953 and 1966 (most likely)", - "death": "Late 1980 - late 1981", - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": "Slytherin", - "associated_groups": [ - "Rosier family", - "Death Eaters", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 361, - "name": "Rowboat owner", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 362, - "name": "Thorfinn Rowle", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": [ - "Rowle family", - "Death Eaters", - "Lord Voldemort" - ], - "books_featured_in": [ - 6, - 7 - ] - }, - { - "id": 363, - "name": "Albert Runcorn", - "birth": "Runcorn family", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Dark", - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 364, - "name": "Barry Ryan", - "birth": "before 1977, Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Irish National Quidditch team" - ], - "books_featured_in": [ - 4, - 5 - ] - }, - { - "id": 365, - "name": "Sanguini", - "birth": null, - "death": null, - "species": "Vampire", - "ancestry": null, - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6 - ] - }, - { - "id": 366, - "name": "Scabior", - "birth": "before 1980 (most likely)", - "death": "2 May, 1998", - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "None", - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry (formerly)", - "Slytherin", - "Azkaban", - "Snatchers" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 367, - "name": "Newton Scamander", - "birth": "24 February 1897", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Red brown", - "eye_color": "Blue", - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Scamander family", - "Goldstein family", - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff", - "Albus Dumbledore", - "British Ministry of Magic", - "Department for the Regulation and Control of Magical Creatures", - "Beast Division", - "Order of Merlin" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 368, - "name": "Scouthibou", - "birth": null, - "death": null, - "species": "Owl", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 369, - "name": "Rufus Scrimgeour", - "birth": "Pre 1968", - "death": "1 August, 1997", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Tawny", - "eye_color": "Yellowish", - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Auror Office" - ], - "books_featured_in": [ - 5, - 6, - 7 - ] - }, - { - "id": 370, - "name": "Selwyn", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": "Slytherin (possibly)", - "associated_groups": [ - "Death Eaters", - "Lord Voldemort", - "British Ministry of Magic" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 371, - "name": "Kingsley Shacklebolt", - "birth": "In or before 1960", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Bald", - "eye_color": "Black", - "wand": "Unknown length, wood and core", - "patronus": "Lynx", - "house": null, - "associated_groups": [ - "Shacklebolt family", - "British Ministry of Magic", - "Auror Department (formerly)", - "Order of the Phoenix", - "Advance Guard", - "Hogwarts School of Witchcraft and Wizardry", - "Potterwatch" - ], - "books_featured_in": [ - 5, - 6, - 7 - ] - }, - { - "id": 372, - "name": "Gaspard Shingleton", - "birth": "1959", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Silver", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 373, - "name": "Stanley Shunpike", - "birth": "Between 15 September 1974 and 13 September 1975", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-Blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Knight Bus", - "Death Eaters (Imperiused)" - ], - "books_featured_in": [ - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 374, - "name": "Mylor Silvanus", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 375, - "name": "Wilbert Slinkhard", - "birth": "Prior to 1978", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Slinkhard family" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 376, - "name": "Jack Sloper", - "birth": "c. Pre 31 August 1984", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Sloper family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team" - ], - "books_featured_in": [ - 5, - 6 - ] - }, - { - "id": 377, - "name": "Horace Slughorn", - "birth": "28 April, between 1882 and 1913", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Bald", - "eye_color": "Gooseberry", - "wand": "10¼\", Cedar, dragon heartstring, fairly flexible", - "patronus": "Non-corporeal", - "house": "Slytherin", - "associated_groups": [ - "Slughorn family", - "Hogwarts School of Witchcraft and Wizardry", - "Slug Club", - "Slytherin", - "Order of the Phoenix (during the Battle of Hogwarts)", - "Dumbledore's Army (during the Battle of Hogwarts)", - "Apothecarium of Horace E. F. Slughorn" - ], - "books_featured_in": [ - 6, - 7 - ] - }, - { - "id": 378, - "name": "Salazar Slytherin", - "birth": "Pre 976", - "death": "11th century (most likely)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Grey", - "eye_color": "Grey", - "wand": "Unknown length, snakewood, Basilisk horn", - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin family" - ], - "books_featured_in": [ - 2, - 6, - 7 - ] - }, - { - "id": 379, - "name": "Hippocrates Smethwyck", - "birth": "before 1977", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "St Mungo's Hospital for Magical Maladies and Injuries", - "Smethwyck family" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 380, - "name": "Zacharias Smith's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Smith family" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 381, - "name": "Zacharias Smith", - "birth": "between 1 September 1979 and 2 May 1981 (possibly)", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Smith family", - "Dumbledore's Army (abandoned)", - "Hogwarts School of Witchcraft and Wizardry (abandoned)", - "Hufflepuff", - "Hufflepuff Quidditch team" - ], - "books_featured_in": [ - 5, - 6, - 7 - ] - }, - { - "id": 382, - "name": "Severus Snape", - "birth": "9 January 1960", - "death": "2 May 1998 (aged 38)", - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Black", - "wand": "Unknown length, wood and core", - "patronus": "Doe", - "house": "Slytherin", - "associated_groups": [ - "Snape family", - "Prince family", - "Lily Potter", - "Harry Potter", - "Albus Dumbledore", - "Order of the Phoenix", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Lord Voldemort (formerly)", - "Death Eaters (defected)" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 383, - "name": "Tobias Snape", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Snape family", - "Prince family" - ], - "books_featured_in": [ - 5, - 6, - 7 - ] - }, - { - "id": 384, - "name": "Stebbins (Potter-era)", - "birth": "c. 31 August 1980 or earlier, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 385, - "name": "Billy Stubbs", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Wool's orphanage" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 386, - "name": "Stunned Death Eater", - "birth": "1980s or earlier", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (most likely)", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": [ - "Death Eaters", - "Lord Voldemort" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 387, - "name": "Summers", - "birth": "between 1 November 1977 and 31 August 1983,", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 388, - "name": "Surrey milkman", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 389, - "name": "Emeric Switch", - "birth": null, - "death": "Before the 1990s (possibly)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 390, - "name": "Robertus Tallis", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 391, - "name": "Ted", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 392, - "name": "Teffington", - "birth": null, - "death": "1 May, 1998", - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Gringotts Wizarding Bank" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 393, - "name": "Tenebrus", - "birth": "Pre 1980s", - "death": null, - "species": "Thestral", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Rubeus Hagrid" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 394, - "name": "Janus Thickey", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Landlady of the Green Dragon pub" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 395, - "name": "Pius Thicknesse", - "birth": "Pre-1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (most likely)", - "gender": "Male", - "hair_color": "Black and silver", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Department of Magical Law Enforcement", - "Death Eaters (Imperiused)" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 396, - "name": "Thomas Vace", - "birth": "Before 1993", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 3 - ] - }, - { - "id": 397, - "name": "Dean Thomas", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Brown", - "wand": "Unknown 1st wand", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Thomas family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Dumbledore's Army" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 398, - "name": "Dean Thomas's father", - "birth": null, - "death": "c. 1980", - "species": "Human", - "ancestry": "Pure-blood or half-blood (likely)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 399, - "name": "Dean Thomas's stepfather", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Thomas family" - ], - "books_featured_in": [ - 5, - 7 - ] - }, - { - "id": 400, - "name": "Orsino Thruston", - "birth": "1976", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Bald", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Weird Sisters" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 401, - "name": "Tiberius", - "birth": "c. 1970 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Slug Club (formerly)", - "Ministry of Magic", - "McLaggen family" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 402, - "name": "Timothy Butler", - "birth": "31 August 1982 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 3 - ] - }, - { - "id": 403, - "name": "Tofty", - "birth": "Before 1972", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Grey, balding", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Wizarding Examinations Authority" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 404, - "name": "Tom", - "birth": "c. 1920 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Bald", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Leaky Cauldron" - ], - "books_featured_in": [ - 1, - 3, - 6, - 7 - ] - }, - { - "id": 405, - "name": "Edward Tonks", - "birth": null, - "death": "March, 1998", - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Male", - "hair_color": "Fair", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Tonks family", - "Order of the Phoenix (indirectly)" - ], - "books_featured_in": [ - 5, - 7 - ] - }, - { - "id": 406, - "name": "Kenneth Towler", - "birth": "between 1 September 1977 and 31 August 1978 (probably)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 407, - "name": "Travers", - "birth": "Pre 1980s", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": "None", - "house": null, - "associated_groups": [ - "Travers family", - "Death Eaters", - "Lord Voldemort", - "Death Eater controlled Ministry of Magic" - ], - "books_featured_in": [ - 4, - 7 - ] - }, - { - "id": 408, - "name": "Donaghan Tremlett", - "birth": "1972,", - "death": null, - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "The Weird Sisters", - "Tremlett family" - ], - "books_featured_in": [ - 4, - 5, - 6 - ] - }, - { - "id": 409, - "name": "Trevor", - "birth": "pre 1991", - "death": null, - "species": "Toad", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Algie (formerly)", - "Neville Longbottom", - "Frog Choir (formerly)" - ], - "books_featured_in": [ - 1, - 3, - 4, - 5, - 6 - ] - }, - { - "id": 410, - "name": "Quentin Trimble", - "birth": null, - "death": "In or before 1986", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Grey (formerly brown)", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 411, - "name": "Troy", - "birth": "before 1977", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Irish National Quidditch team" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 449, - "name": "Wilkie Twycross", - "birth": "Before 1979", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Very fair", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 450, - "name": "Urg the Unclean", - "birth": "c. 18th century", - "death": null, - "species": "Goblin", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Goblinkind" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 451, - "name": "Uric the Oddball", - "birth": "982 or later, Great Britain or Ireland", - "death": "Middle Ages", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "White", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 452, - "name": "Urquhart", - "birth": "31 August 1984 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin Quidditch team" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 453, - "name": "Vaisey", - "birth": "31 August 1984 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Vaisey family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin Quidditch team", - "Slytherin" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 454, - "name": "Violet-cloaked wizard", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 455, - "name": "Vindictus Viridian", - "birth": "Pre 1686 (most likely)", - "death": "In or before 1994", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Black (formerly)", - "eye_color": "Dark", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 456, - "name": "Ivan Volkov", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Dark", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Bulgarian National Quidditch team" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 457, - "name": "Pyotr Vulchanov", - "birth": "before 1977, Bulgaria", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Bulgarian National Quidditch team", - "Vulchanov family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 458, - "name": "Adalbert Waffling", - "birth": "1899", - "death": "1981 (aged 82)", - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1, - 3, - 7 - ] - }, - { - "id": 459, - "name": "Wagga Wagga Werewolf", - "birth": null, - "death": null, - "species": "Werewolf", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2 - ] - }, - { - "id": 460, - "name": "Myron Wagtail", - "birth": "1970", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "The Weird Sisters", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 4, - 6 - ] - }, - { - "id": 462, - "name": "Myrtle Warren's father", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Warren family" - ], - "books_featured_in": [ - 2 - ] - }, - { - "id": 463, - "name": "Cassius Warrington", - "birth": "Between 1 September and 31 October 1977 (most likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin Quidditch team", - "Inquisitorial Squad" - ], - "books_featured_in": [ - 3, - 4, - 5 - ] - }, - { - "id": 464, - "name": "Weasley children's cousin", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-Blood or Half-Blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 465, - "name": "Weasley children's uncle", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-Blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 467, - "name": "Weasley family ghoul", - "birth": "Pre 1991", - "death": null, - "species": "Ghoul", - "ancestry": null, - "gender": "Male", - "hair_color": "Yellow", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Weasley family" - ], - "books_featured_in": [ - 2, - 7 - ] - }, - { - "id": 468, - "name": "Molly Weasley's second cousin", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Squib (possibly)", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 469, - "name": "Arthur Weasley", - "birth": "6 February, 1950", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": "Green", - "wand": "Unknown length, wood and core", - "patronus": "Weasel", - "house": "Gryffindor", - "associated_groups": [ - "Weasley family", - "Prewett family", - "Potter family", - "Order of the Phoenix", - "British Ministry of Magic", - "Department of Magical Law Enforcement", - "Misuse of Muggle Artefacts Office", - "Office for the Detection and Confiscation of Counterfeit Defensive Spells and Protective Objects", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 470, - "name": "Arthur Weasley's brothers", - "birth": "20th century", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Weasley family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 471, - "name": "Charles Weasley", - "birth": "12 December, 1972", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": "12\", Ash, unicorn tail hair (formerly)", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Weasley family", - "Prewett family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Circle of Khanna", - "Romanian Dragon Sanctuary", - "Order of the Phoenix" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 472, - "name": "Fred Weasley", - "birth": "1 April, 1978", - "death": "2 May, 1998 (aged 20)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Magpie", - "house": "Gryffindor", - "associated_groups": [ - "Circle of Khanna", - "Dumbledore's Army", - "Order of the Phoenix", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Weasleys' Wizard Wheezes", - "Potterwatch", - "Weasley family", - "Prewett family" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 473, - "name": "George Weasley", - "birth": "1 April, 1978", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Magpie", - "house": "Gryffindor", - "associated_groups": [ - "Circle of Khanna", - "Dumbledore's Army", - "Order of the Phoenix", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Weasley family", - "Prewett family", - "Weasleys' Wizard Wheezes" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 474, - "name": "Hugo Granger-Weasley", - "birth": "1 September 2008 or later,", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Arthur Weasley (paternal grandfather)", - "associated_groups": [ - "Weasley family", - "Granger family", - "Prewett family", - "Potter family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 475, - "name": "Percy Weasley", - "birth": "22 August, 1976", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red, greying and balding (as of 2014)", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Weasley family", - "Prewett family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "British Ministry of Magic", - "Department of International Magical Cooperation (formerly)", - "Department of Magical Transportation" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 476, - "name": "Ronald Weasley", - "birth": "1 March, 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red", - "eye_color": "Blue", - "wand": "12\", Ash, unicorn tail hair", - "patronus": "Jack Russell terrier", - "house": "Gryffindor", - "associated_groups": [ - "Weasley family", - "Granger family", - "Prewett family", - "Potter family", - "Dumbledore's Army", - "Order of the Phoenix", - "British Ministry of Magic", - "Auror Department", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "S.P.E.W.", - "Weasleys' Wizard Wheezes", - "Chudley Cannons" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 477, - "name": "Bill Weasley", - "birth": "29 November, 1970", - "death": null, - "species": "Human (Werewolf traits)", - "ancestry": "Pure-blood", - "gender": "Male", - "hair_color": "Red, long", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Weasley family", - "Prewett family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Order of the Phoenix", - "Gringotts Wizarding Bank", - "Delacour family", - "Circle of Khanna" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 478, - "name": "Eric Whalley", - "birth": "1920s - 1930s", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Wool's Orphanage" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 479, - "name": "Kevin Whitby", - "birth": "between 1 September 1982 and 31 August 1983, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 480, - "name": "Willy Widdershins", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 481, - "name": "Wilfred the Wistful", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 482, - "name": "Will", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 483, - "name": "Bill Weasley's Brazilian pen-friend", - "birth": "before 1980s, South America", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Castelobruxo" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 484, - "name": "Williamson", - "birth": "Pre. 1973", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Auror Department" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 485, - "name": "Gilbert Wimple", - "birth": "Before 1976", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Committee on Experimental Charms", - "Ministry of Magic" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 486, - "name": "Herman Wintringham", - "birth": "c. 1974", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Blonde", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Weird Sisters" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 487, - "name": "Oliver Wood's father", - "birth": "before 1975", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 488, - "name": "Oliver Wood", - "birth": "Between October 1975 - 31 August 1976", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Puddlemere United", - "Order of the Phoenix (during the Battle of Hogwarts)", - "Dumbledore's Army (during the Battle of Hogwarts" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 489, - "name": "Hengist of Woodcroft", - "birth": "982 or later", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Hogsmeade", - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 490, - "name": "Eldred Worple", - "birth": "between 1914 and 1970 or earlier, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Slug Club", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 491, - "name": "Bowman Wright", - "birth": "1492", - "death": "1560 (aged 67-68)", - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Quidditch" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 492, - "name": "Corban Yaxley", - "birth": "Yaxley family", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Male", - "hair_color": "Blond", - "eye_color": "Blue", - "wand": "Unknown length, wood and core", - "patronus": "None", - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6, - 7 - ] - }, - { - "id": 493, - "name": "Blaise Zabini", - "birth": "1 September, 1979 – 21 April, 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Male", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": "None", - "house": "Slytherin", - "associated_groups": [ - "Zabini family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Slytherin Quidditch team", - "Slug Club", - "Draco Malfoy's gang (formerly)" - ], - "books_featured_in": [ - 1, - 6 - ] - }, - { - "id": 494, - "name": "Ladislaw Zamojski", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Polish National Quidditch team" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 495, - "name": "Lev Zograf", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Male", - "hair_color": "Silver", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Bulgarian National Quidditch team" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 496, - "name": "Zoo director", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Male", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Zoo" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 497, - "name": "Hannah Abbott's mother", - "birth": null, - "death": "Autumn 1996", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Abbott family" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 498, - "name": "Hannah Abbott", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": "Hufflepuff", - "associated_groups": [ - "Abbott family", - "Longbottom family", - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff", - "Dumbledore's Army", - "Leaky Cauldron" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 499, - "name": "Agnes", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "St Mungo's Hospital for Magical Maladies and Injuries" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 500, - "name": "Alastor Moody's spiders", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 501, - "name": "Babbitty Rabbity", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 502, - "name": "Millicent Bagnold", - "birth": "Before 1963, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [ - "British Ministry of Magic", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 503, - "name": "Bathilda Bagshot", - "birth": "Pre 1873", - "death": "Pre 24 December, 1997 (aged about 124), Godric's Hollow, West Country, England, Great Britain", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Bagshot family", - "Dumbledore family", - "Potter family", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1, - 3, - 7 - ] - }, - { - "id": 504, - "name": "Bandon Banshee", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2 - ] - }, - { - "id": 505, - "name": "Baruffio's wife", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 506, - "name": "Hetty Bayliss", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2 - ] - }, - { - "id": 507, - "name": "Katie Bell", - "birth": "between 1 September 1978 and 31 August 1979", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": "Brown", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Bell family", - "Dumbledore's Army", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 508, - "name": "Katie Bell's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6 - ] - }, - { - "id": 509, - "name": "Amy Benson", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Wool's Orphanage" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 510, - "name": "Araminta Meliflua Black", - "birth": "approx. 1920s - no later than 1978", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Black family" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 511, - "name": "Elladora Black", - "birth": "1850", - "death": "1931 (aged 80 - 81)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 512, - "name": "Walburga Black", - "birth": "1925", - "death": "1985 (aged 59/60)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "None", - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [ - 5, - 7 - ] - }, - { - "id": 513, - "name": "Amelia Bones' mother", - "birth": null, - "death": "Before or during 1981", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff (likely)", - "associated_groups": [ - "Bones family" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 514, - "name": "Edgar Bones' wife", - "birth": null, - "death": "Second half of 1981", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Bones family" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 515, - "name": "Amelia Bones", - "birth": "pre 12 August, 1978", - "death": "Between the 8th and the 14th of July 1996", - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": "Grey, short", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Ministry of Magic", - "Department of Magical Law Enforcement", - "Wizengamot", - "Order of the Phoenix (indirectly)" - ], - "books_featured_in": [ - 5, - 6 - ] - }, - { - "id": 516, - "name": "Susan Bones", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Bones family", - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff", - "Dumbledore's Army" - ], - "books_featured_in": [ - 1, - 5, - 6 - ] - }, - { - "id": 517, - "name": "Betty Braithwaite", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Daily Prophet" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 518, - "name": "Eleanor Branstone", - "birth": "between 1 September 1982 and 31 August 1983", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 519, - "name": "Rita Skeeter", - "birth": "between January and November 1951", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (possibly)", - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Daily Prophet", - "Witch Weekly", - "The Quibbler", - "Order of the Phoenix (indirectly)" - ], - "books_featured_in": [ - 4, - 5, - 6, - 7 - ] - }, - { - "id": 520, - "name": "Mandy Brocklehurst", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [ - "Brocklehurst family", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 521, - "name": "Lavender Brown", - "birth": "between 1 September 1979 and 31 August 1980", - "death": "2 May, 1998 (aged 17/18)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Brown family", - "Dumbledore's Army", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 522, - "name": "Lavender Brown's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor (possibly)", - "associated_groups": [ - "Brown family" - ], - "books_featured_in": [ - 3 - ] - }, - { - "id": 523, - "name": "Millicent Bulstrode", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Bulstrode family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Inquisitorial Squad" - ], - "books_featured_in": [ - 1, - 2, - 5 - ] - }, - { - "id": 524, - "name": "Rosalind Bungs", - "birth": "pre 1964", - "death": null, - "species": "Human", - "ancestry": "Magical to some extent", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6 - ] - }, - { - "id": 525, - "name": "Charity Burbage", - "birth": "Before 1976", - "death": "Late July, 1997", - "species": "Human", - "ancestry": "Pure-blood or Half-blood (possibly)", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 526, - "name": "Alecto Carrow", - "birth": "Pre 1981", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core materials", - "patronus": "None", - "house": null, - "associated_groups": [ - "Death Eaters", - "Lord Voldemort", - "Carrow family", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 6, - 7 - ] - }, - { - "id": 527, - "name": "Greta Catchlove", - "birth": "1960", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Blonde", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2 - ] - }, - { - "id": 528, - "name": "Mary Cattermole's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 529, - "name": "Ellie Cattermole", - "birth": "c. Between 1987 and 1994 (assumed)", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Squib", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Cattermole family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 530, - "name": "Maisie Cattermole", - "birth": "c. Between 1987 and 1994 (assumed)", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Squib", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Cattermole family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 531, - "name": "Mary Cattermole", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Female", - "hair_color": "Dark Brown", - "eye_color": "Blue", - "wand": "Cherry, 8¾\", unicorn hair", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Cattermole family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 532, - "name": "Cecilia", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Riddle family", - "Little Hangleton" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 533, - "name": "Cho Chang", - "birth": "between 1 September 1978 and 31 August 1979", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": "Black", - "eye_color": "Dark", - "wand": "Unknown length, wood and core", - "patronus": "Swan", - "house": "Ravenclaw", - "associated_groups": [ - "Chang family", - "Dumbledore's Army", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Ravenclaw Quidditch team" - ], - "books_featured_in": [ - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 534, - "name": "Cho Chang's mother", - "birth": "7 September, pre 1962 (most likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw (possibly)", - "associated_groups": [ - "British Ministry of Magic", - "Chang family" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 535, - "name": "Circe", - "birth": "Ancient Greece", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 536, - "name": "Penelope Clearwater", - "birth": "between 1 September 1976 and 31 August 1977", - "death": null, - "species": "Human", - "ancestry": "Muggle-born or half-blood", - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": [ - "Clearwater family", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw" - ], - "books_featured_in": [ - 2, - 3, - 7 - ] - }, - { - "id": 537, - "name": "Cliodna", - "birth": "Middle Ages, Ireland", - "death": "Middle Ages", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 538, - "name": "Cole", - "birth": "c. 1908", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Wool's Orphanage" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 539, - "name": "Elfrida Cragg", - "birth": null, - "death": "Before 1995", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 540, - "name": "Dirk Cresswell's wife", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood, Half-blood or Squib", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Cresswell family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 541, - "name": "Doris Crockford", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Magical to unknown extent", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Leaky Cauldron" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 542, - "name": "Bartemius Crouch Jr's mother", - "birth": "pre 1945", - "death": "Shortly after 1981", - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Crouch family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 543, - "name": "Roger Davies's girlfriend", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Roger Davies" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 544, - "name": "Delacour sisters' cousins", - "birth": null, - "death": null, - "species": "Veela or part-Veela", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Delacour family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 545, - "name": "Apolline Delacour", - "birth": null, - "death": null, - "species": "Half-Human", - "ancestry": "Half-Veela", - "gender": "Female", - "hair_color": "Blonde", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Delacour family" - ], - "books_featured_in": [ - 4, - 7 - ] - }, - { - "id": 546, - "name": "Apolline Delacour's mother", - "birth": null, - "death": null, - "species": "Veela", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Delacour family" - ], - "books_featured_in": [ - 4, - 7 - ] - }, - { - "id": 547, - "name": "Fleur Delacour", - "birth": "Pre 30 October, 1977", - "death": null, - "species": "1/4 Veela", - "ancestry": "Quarter-Veela", - "gender": "Female", - "hair_color": "Silvery-blonde", - "eye_color": "Dark blue", - "wand": "9½\", Rosewood, veela hair", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Delacour family", - "Weasley family", - "Harry Potter", - "Beauxbatons Academy of Magic", - "Order of the Phoenix", - "Gringotts Wizarding Bank" - ], - "books_featured_in": [ - 4, - 5, - 6, - 7 - ] - }, - { - "id": 548, - "name": "Gabrielle Delacour", - "birth": "between 31 July 1985 and 30 July 1986", - "death": null, - "species": "Human (Veela ancestry)", - "ancestry": "Quarter-Veela", - "gender": "Female", - "hair_color": "Silvery-blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Delacour family", - "Beauxbatons Academy of Magic" - ], - "books_featured_in": [ - 4, - 5, - 6, - 7 - ] - }, - { - "id": 549, - "name": "Dilys Derwent", - "birth": "Pre 1705 (most likely)", - "death": "1768", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Silver", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "St Mungo's Hospital for Magical Maladies and Injuries" - ], - "books_featured_in": [ - 5, - 7 - ] - }, - { - "id": 550, - "name": "Cedric Diggory's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Diggory family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 551, - "name": "Emma Dobbs", - "birth": "c. 1982-1983", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 552, - "name": "Mary Dorkins", - "birth": "before 1977 (most likely)", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 553, - "name": "Dot", - "birth": "Before 1917", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 554, - "name": "Ariana Dumbledore", - "birth": "c. 1885", - "death": "Late Summer 1899 (aged 14)", - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Dumbledore family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 555, - "name": "Kendra Dumbledore", - "birth": "between Summer 1850 and Summer 1851", - "death": "Summer 1899 (aged 48), West Country, England, Great Britain", - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Female", - "hair_color": "Jet-black", - "eye_color": "Dark", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Dumbledore family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 556, - "name": "Durmstrang girl", - "birth": "before 31 October 1977", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Durmstrang Institute" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 557, - "name": "Vernon Dursley's secretary", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Grunnings" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 558, - "name": "Marjorie Dursley", - "birth": "Pre 1954", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Dursley family" - ], - "books_featured_in": [ - 1, - 3, - 5 - ] - }, - { - "id": 559, - "name": "Petunia Dursley", - "birth": "Pre 1960", - "death": "Between 1999 and 2020 (aged at least 38)", - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Evans family", - "Dursley family" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 560, - "name": "Edgecombe", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Department of Magical Transportation", - "Edgecombe family" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 561, - "name": "Marietta Edgecombe", - "birth": "c. 1978-1982", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": "Reddish-blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Dumbledore's Army (betrayed)", - "British Ministry of Magic", - "Edgecombe family" - ], - "books_featured_in": [ - 5, - 6 - ] - }, - { - "id": 562, - "name": "Enid Longbottom", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 563, - "name": "Evans sisters' mother", - "birth": null, - "death": "Between 1 September 1971 and 31 October 1981", - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Evans family" - ], - "books_featured_in": [ - 1, - 7 - ] - }, - { - "id": 565, - "name": "Fat Lady", - "birth": "Great Britain or Ireland", - "death": "1960s or earlier", - "species": "Portrait; formerly Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor Tower", - "Gryffindor" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 566, - "name": "Fawcett", - "birth": "Between 1 November 1977 and 31 August 1981, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [ - "Fawcett family", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw" - ], - "books_featured_in": [ - 2, - 4 - ] - }, - { - "id": 567, - "name": "Morgan le Fay", - "birth": "982 or later", - "death": "Middle Ages", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Red", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Dark Arts", - "Avalon" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 568, - "name": "Fiesella Foss", - "birth": "Before 1993", - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 3 - ] - }, - { - "id": 569, - "name": "Arabella Figg", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Squib", - "gender": "Female", - "hair_color": "Grizzled grey flyaway hair", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Albus Dumbledore", - "Order of the Phoenix", - "Figg family" - ], - "books_featured_in": [ - 1, - 4, - 5, - 6 - ] - }, - { - "id": 570, - "name": "Justin Finch-Fletchley's mother", - "birth": "Before 1962 (most likely)", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Finch-Fletchley family" - ], - "books_featured_in": [ - 2 - ] - }, - { - "id": 571, - "name": "Seamus Finnigan's mother", - "birth": "before 1963 (most likely), Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Sandy", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor (possibly)", - "associated_groups": [ - "Finnigan family" - ], - "books_featured_in": [ - 1, - 4, - 5, - 6 - ] - }, - { - "id": 572, - "name": "Perenelle Flamel", - "birth": "Between 1307 and 1334", - "death": "Between 1992 and 1996 (aged between 658 and 689)", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Flamel family", - "Beauxbatons Academy of Magic" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 573, - "name": "Mopsy Fleabert", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogsmeade" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 574, - "name": "Florence", - "birth": "1950s - 1960s, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 575, - "name": "Ambrosius Flume's wife", - "birth": "Before 1976 (most likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Honeydukes" - ], - "books_featured_in": [ - 3, - 6 - ] - }, - { - "id": 576, - "name": "Fridwulfa", - "birth": null, - "death": "Between 1931 and 1995", - "species": "Giant", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hagrid family", - "Giant colony" - ], - "books_featured_in": [ - 4, - 5 - ] - }, - { - "id": 577, - "name": "Vicky Frobisher", - "birth": "c. Pre 31 August 1984", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Frobisher family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Charms Club" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 578, - "name": "Cornelius Fudge's wife", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Ministry of Magic (indirectly)", - "Fudge family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 579, - "name": "German-speaking woman", - "birth": null, - "death": "1 September, 1997", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "her family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 580, - "name": "Gloomy nuns", - "birth": null, - "death": "Before 1992", - "species": "Humans (formerly)", - "ancestry": null, - "gender": "Females", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Catholic Church" - ], - "books_featured_in": [ - 2 - ] - }, - { - "id": 583, - "name": "Leonora Gore", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Gore family" - ], - "books_featured_in": [ - 2 - ] - }, - { - "id": 584, - "name": "Gunhilda de Gorsemoor", - "birth": "1556", - "death": "1639 (aged 82-83)", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Red (formerly)", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 3 - ] - }, - { - "id": 585, - "name": "Miranda Goshawk", - "birth": "1921", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Grey", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1, - 2, - 4 - ] - }, - { - "id": 586, - "name": "Gregory Goyle's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin (most likely)", - "associated_groups": [ - "Death Eaters (most likely)" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 587, - "name": "Hermione Granger", - "birth": "19 September, 1979", - "death": null, - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Female", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": "10¾\", vine wood, dragon heartstring", - "patronus": "Otter", - "house": "Gryffindor", - "associated_groups": [ - "Granger family", - "Weasley family", - "Potter family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Slug Club", - "S.P.E.W.", - "Dumbledore's Army", - "Order of the Phoenix", - "British Ministry of Magic", - "Department for the Regulation and Control of Magical Creatures", - "Department of Magical Law Enforcement" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 588, - "name": "Hermione Granger's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": "Brown", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Granger family" - ], - "books_featured_in": [ - 1, - 2, - 3, - 5, - 7 - ] - }, - { - "id": 589, - "name": "Daphne Greengrass", - "birth": "Between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Greengrass family" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 590, - "name": "Lady Grieve", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2 - ] - }, - { - "id": 591, - "name": "Wilhelmina Grubbly-Plank", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 4, - 5, - 6 - ] - }, - { - "id": 592, - "name": "Curious Gryffindor Girl", - "birth": "between 1 September 1980 and 31 August 1981 (most likely), Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 593, - "name": "Gladys Gudgeon", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Gilderoy Lockhart", - "Gudgeon family" - ], - "books_featured_in": [ - 2, - 5 - ] - }, - { - "id": 594, - "name": "Gimlet-eyed Hogwarts Headmistress", - "birth": null, - "death": "Before 1995", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": "\"Gimlet-eyed\"", - "wand": "Unusually thick, looks like a \"birch rod\"", - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Albus Dumbledore", - "Hogwarts Headermasters and Headmistresses", - "Harry Potter" - ], - "books_featured_in": [ - 5, - 7 - ] - }, - { - "id": 595, - "name": "Hedwig", - "birth": "Pre 1991", - "death": "27 July, 1997", - "species": "Snowy Owl", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": "Amber", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Harry Potter (owner)", - "Eeylops Owl Emporium (formerly)", - "Hogwarts Owlery" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 596, - "name": "Hedwig", - "birth": "Middle Ages", - "death": "Middle Ages", - "species": "Human", - "ancestry": null, - "gender": "Female (likely)", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 597, - "name": "Hermione Granger's sister", - "birth": "After 19 September 1979", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Granger family" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 599, - "name": "Hokey", - "birth": "Before 1940s", - "death": "1950s-1960s", - "species": "House-elf", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hepzibah Smith" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 600, - "name": "Rolanda Hooch", - "birth": "pre 1918", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Grey", - "eye_color": "Yellow", - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1, - 2, - 3, - 5, - 6 - ] - }, - { - "id": 601, - "name": "Mafalda Hopkirk", - "birth": "February 19 - March 20 , in or before 1975", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Improper Use of Magic Office", - "Death Eaters (indirectly)" - ], - "books_featured_in": [ - 2, - 5, - 7 - ] - }, - { - "id": 602, - "name": "Olive Hornby", - "birth": "c. 1926 - 1932", - "death": "Before 1995", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Hornby family" - ], - "books_featured_in": [ - 2, - 4 - ] - }, - { - "id": 604, - "name": "Hope Howell", - "birth": "Pre 1938", - "death": "Pre 1981", - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Lupin family" - ], - "books_featured_in": [ - 3, - 7 - ] - }, - { - "id": 605, - "name": "Helga Hufflepuff", - "birth": "Pre 976", - "death": "11th century (possibly)", - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": "Brown", - "eye_color": "Blue", - "wand": null, - "patronus": "Non-corporeal", - "house": "Hufflepuff", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff", - "Hufflepuff family", - "", - "nationality = Welsh" - ], - "books_featured_in": [ - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 606, - "name": "Ice cream seller", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Zoo" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 607, - "name": "Clara Ivanova", - "birth": "before 1977, Bulgaria (possibly)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Red", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Bulgarian National Quidditch team" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 608, - "name": "User:Jack \"BtR\" Saxon/Hooch draft", - "birth": "c. 1900 ", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Grey", - "eye_color": "Yellow", - "wand": "Unknown", - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1, - 2, - 3, - 5, - 6 - ] - }, - { - "id": 609, - "name": "User:Jack \"BtR\" Saxon/Trelawney draft", - "birth": "c. 1963 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Brown", - "eye_color": "Dark green", - "wand": "Unknown length, core and wood", - "patronus": "Uncorporeal", - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slug Club (possibly)", - "Order of the Phoenix (during the Battle of Hogwarts)", - "Dumbledore's Army (during the Battle of Hogwarts)", - "Divination Workshop (possibly)", - "Trelawney family" - ], - "books_featured_in": [ - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 610, - "name": "Angelina Johnson", - "birth": "24 – 30 October, 1977", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Johnson family", - "Weasley family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Dumbledore's Army" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 611, - "name": "Gwenog Jones", - "birth": "1968", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Jones family", - "Hogwarts School of Witchcraft and Wizardry", - "Slug Club", - "Holyhead Harpies", - "Welsh National Quidditch team" - ], - "books_featured_in": [ - 6, - 7 - ] - }, - { - "id": 612, - "name": "Hestia Jones", - "birth": "Pre 1978", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (most likely)", - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Jones family", - "Order of the Phoenix", - "Advance Guard", - "Harry Potter" - ], - "books_featured_in": [ - 5, - 7 - ] - }, - { - "id": 613, - "name": "Bertha Jorkins's aunt", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 614, - "name": "Bertha Jorkins", - "birth": "1 September 1953 - 31 August 1958", - "death": "1994 (aged around 35-40), Albania", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Department of Magical Games and Sports", - "Hogwarts School of Witchcraft and Wizardry", - "Daily Prophet (formerly)", - "Jorkins family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 615, - "name": "Josephine Kay", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 3 - ] - }, - { - "id": 616, - "name": "Karkus's wife", - "birth": null, - "death": null, - "species": "Giant", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 617, - "name": "Kevin's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Kevin's family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 618, - "name": "Aged witch", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Knockturn Alley" - ], - "books_featured_in": [ - 2 - ] - }, - { - "id": 619, - "name": "Kreacher's mother", - "birth": null, - "death": "Between 1850 and 1985", - "species": "House-elf", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [ - 5 - ] - }, - { - "id": 620, - "name": "Viktor Krum's mother", - "birth": "In or before 1945 (possibly)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Krum family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 621, - "name": "Leanne", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff", - "Dumbledore's Army" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 622, - "name": "Bellatrix Lestrange", - "birth": "1951", - "death": "2 May, 1998 (aged 46 - 47)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": "12¾\", Walnut, dragon heartstring", - "patronus": "None", - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [ - 4, - 5, - 6, - 7 - ] - }, - { - "id": 623, - "name": "Alice Longbottom", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Blonde (possibly; formerly)", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Longbottom family", - "Ministry of Magic (formerly)", - "Auror Office (formerly)", - "Order of the Phoenix (formerly)" - ], - "books_featured_in": [ - 4, - 5, - 6, - 7 - ] - }, - { - "id": 624, - "name": "Augusta Longbottom", - "birth": "pre 1947", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Grey", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Longbottom family", - "Order of the Phoenix", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 625, - "name": "Luna Lovegood", - "birth": "13 February, 1981", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": "Dirty-blonde", - "eye_color": "Pale silvery", - "wand": "Unknown 1st wand", - "patronus": "Hare", - "house": "Ravenclaw", - "associated_groups": [ - "Lovegood family", - "Scamander family", - "Hogwarts School of Witchcraft and Wizardry ", - "Ravenclaw", - "Dumbledore's Army", - "Order of the Phoenix", - "The Quibbler" - ], - "books_featured_in": [ - 4, - 5, - 6, - 7 - ] - }, - { - "id": 626, - "name": "Pandora Lovegood", - "birth": null, - "death": "Between 13 February, 1990 and 12 February, 1991", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Dirty-blonde (possibly)", - "eye_color": "Pale silvery (possibly)", - "wand": null, - "patronus": null, - "house": "Ravenclaw (possibly)", - "associated_groups": [ - "Lovegood family" - ], - "books_featured_in": [ - 5, - 7 - ] - }, - { - "id": 627, - "name": "Mary Macdonald", - "birth": "1 September, 1958 - 31 August, 1965 (most likely)Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": "Muggle-born (possibly)", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Macdonald family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 628, - "name": "Morag MacDougal", - "birth": "c. 1979-1980,", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "MacDougal family", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 629, - "name": "Laura Madley", - "birth": "between 1 September 1982 and 31 August 1983, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardy", - "Hufflepuff" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 630, - "name": "Mafalda", - "birth": "between 1 September 1982 and 31 August 1983, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": "Muggle-born or Half-blood (possibly)", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Prewett family", - "Weasley Family", - "Slytherin", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 631, - "name": "Mafalda's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 632, - "name": "Magical Menagerie saleswoman", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Grey (formerly black)", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Magical Menagerie" - ], - "books_featured_in": [ - 3 - ] - }, - { - "id": 633, - "name": "Astoria Malfoy", - "birth": "between 1 September 1981 -31 August 1982", - "death": "August 2019 (aged 37)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Dark brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Greengrass family", - "Malfoy family", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 634, - "name": "Narcissa Malfoy", - "birth": "1955", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Blonde", - "eye_color": "Blue", - "wand": "Unknown 1st wand", - "patronus": null, - "house": "House of Black", - "associated_groups": [], - "books_featured_in": [ - 1, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 635, - "name": "Malkin", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "White", - "eye_color": "Blue", - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Madam Malkin's Robes for All Occasions" - ], - "books_featured_in": [ - 1, - 3, - 5, - 6, - 7 - ] - }, - { - "id": 636, - "name": "Griselda Marchbanks", - "birth": "No later than the 1870s", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic", - "Wizengamot", - "Wizarding Examinations Authority" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 637, - "name": "Marsh", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "The Knight Bus" - ], - "books_featured_in": [ - 3, - 5 - ] - }, - { - "id": 638, - "name": "Martha (British Muggle)", - "birth": "Early 20th century (most likely)", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Wool's Orphanage" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 639, - "name": "Mason's wife", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": "Grey", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Mason family" - ], - "books_featured_in": [ - 2 - ] - }, - { - "id": 640, - "name": "Daphne Mauboisan", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2 - ] - }, - { - "id": 641, - "name": "Olympe Maxime", - "birth": null, - "death": null, - "species": "Half-human/Half-giant", - "ancestry": "Part-Human (Half-giant)", - "gender": "Female", - "hair_color": "Brown", - "eye_color": "Black", - "wand": "Unknown length, wood and core", - "patronus": null, - "house": null, - "associated_groups": [ - "Beauxbatons Academy of Magic", - "Order of the Phoenix", - "Maxime family" - ], - "books_featured_in": [ - 4, - 5, - 6 - ] - }, - { - "id": 642, - "name": "Olympe Maxime's mother", - "birth": null, - "death": null, - "species": "Human or Giantess", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Maxime family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 643, - "name": "Natalie McDonald", - "birth": "between 1 September 1982 and 31 August 1983, Great Britain", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 644, - "name": "Minerva McGonagall", - "birth": "4 October,", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": "9½\", Fir, dragon heartstring", - "patronus": "Cat", - "house": "Gryffindor", - "associated_groups": [ - "McGonagall family", - "Urquart family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Transfiguration department", - "British Ministry of Magic (formerly)", - "Department of Magical Law Enforcement", - "Albus Dumbledore", - "Order of the Phoenix", - "Dumbledore's Army" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 645, - "name": "Marlene McKinnon", - "birth": null, - "death": "July, 1981", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Order of the Phoenix", - "McKinnon family" - ], - "books_featured_in": [ - 1, - 4, - 5, - 7 - ] - }, - { - "id": 646, - "name": "Dorcas Meadowes", - "birth": null, - "death": "1981", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Meadowes family", - "Order of the Phoenix" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 647, - "name": "Melinda Bobbin", - "birth": "c. 1978-1985", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slug Club" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 648, - "name": "Galatea Merrythought", - "birth": "Pre-1878", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 649, - "name": "Eloise Midgen", - "birth": "31 August 1983 or earlier", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Midgen family" - ], - "books_featured_in": [ - 4, - 5, - 6 - ] - }, - { - "id": 650, - "name": "Graham Montague's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Montague family" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 651, - "name": "Montgomery children's mother", - "birth": "before 1969 (most likely)", - "death": null, - "species": "Human", - "ancestry": "Magical to unknown extent", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6 - ] - }, - { - "id": 652, - "name": "Montgomery sisters", - "birth": "Circa 1978-1985", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Montgomery family" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 653, - "name": "Lily Moon", - "birth": "2 September, 1979 - 1 September, 1980", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor, Hufflepuff, or Slytherin", - "associated_groups": [ - "Moon family", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 654, - "name": "Moran", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Irish National Quidditch team" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 655, - "name": "Mosag", - "birth": "c. 1942", - "death": null, - "species": "Acromantula", - "ancestry": null, - "gender": "Female", - "hair_color": "Brown", - "eye_color": "Black", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Acromantula colony" - ], - "books_featured_in": [ - 2 - ] - }, - { - "id": 656, - "name": "Mullet", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Irish National Quidditch team" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 657, - "name": "Murcus", - "birth": "Before 1994", - "death": null, - "species": "Selkie (Merpeople)", - "ancestry": null, - "gender": "Female", - "hair_color": "Green", - "eye_color": "Yellow", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Black Lake Selkie Colony", - "Merpeople village", - "Albus Dumbledore" - ], - "books_featured_in": [ - 4, - 6 - ] - }, - { - "id": 658, - "name": "Muriel", - "birth": "Between 2 August, 1889 and 31 July, 1890", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": "White", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Order of the Phoenix (indirectly)", - "Prewett family", - "Weasley family" - ], - "books_featured_in": [ - 6, - 7 - ] - }, - { - "id": 659, - "name": "Muriel's mother", - "birth": "Before 2 August, 1890", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood (possibly)", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 7 - ] - }, - { - "id": 660, - "name": "Nagini", - "birth": "Before 1927, Indonesia (possibly)", - "death": "2 May, 1998 (aged at least 71)", - "species": "Human (Maledictus affliction; formerly)", - "ancestry": "Underbeing", - "gender": "Female", - "hair_color": "Black (Human)", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Circus Arcanus (formerly)", - "Credence Barebone (formerly)", - "Newt Scamander (formerly)", - "Lord Voldemort" - ], - "books_featured_in": [ - 4, - 5, - 6, - 7 - ] - }, - { - "id": 661, - "name": "Z. Nettles", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Nettles family" - ], - "books_featured_in": [ - 2 - ] - }, - { - "id": 662, - "name": "Norberta", - "birth": "Spring of 1992,", - "death": null, - "species": "Norwegian Ridgeback", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Quirinus Quirrell (as egg)", - "Rubeus Hagrid", - "Romanian Dragon Sanctuary" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 7 - ] - }, - { - "id": 663, - "name": "Mrs Norris", - "birth": "1984 or earlier", - "death": null, - "species": "Cat", - "ancestry": null, - "gender": "Female", - "hair_color": "Dust-coloured fur", - "eye_color": "Yellow and lamp-like", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Argus Filch (owner)", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 664, - "name": "Pansy Parkinson's Gang", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": null, - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 4, - 5 - ] - }, - { - "id": 665, - "name": "Paper shop girl", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Ottery St Catchpole paper shop" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 666, - "name": "Pansy Parkinson", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Parkinson family", - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Inquisitorial Squad", - "Draco Malfoy's gang", - "Death Eaters (unofficial)" - ], - "books_featured_in": [ - 1, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 667, - "name": "Patil twins' mother", - "birth": null, - "death": null, - "species": null, - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Patil family" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 668, - "name": "Padma Patil", - "birth": "Between 1 September, 1979 and 21 April, 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood or pure-blood", - "gender": "Female", - "hair_color": "Dark, long", - "eye_color": "Dark", - "wand": null, - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": [ - "Patil family", - "Dumbledore's Army", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw" - ], - "books_featured_in": [ - 1, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 669, - "name": "Parvati Patil", - "birth": "between 1 September 1979 and 22 April 1980", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Female", - "hair_color": "Dark", - "eye_color": "Dark", - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Patil family", - "Dumbledore's Army", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 670, - "name": "Sally-Anne Perks", - "birth": "between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor, Hufflepuff, or Slytherin", - "associated_groups": [ - "Perks family", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 671, - "name": "Peter Pettigrew's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Pettigrew family", - "Order of Merlin" - ], - "books_featured_in": [ - 3 - ] - }, - { - "id": 672, - "name": "Enid Pettigrew", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 3, - 4, - 6, - 7 - ] - }, - { - "id": 673, - "name": "Cadmus Peverell's fiancée", - "birth": null, - "death": "c. 13th century", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Cadmus Peverell" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 674, - "name": "Irma Pince", - "birth": "Pre 1966 (most likely)", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Hogwarts Library" - ], - "books_featured_in": [ - 1, - 2, - 4, - 5, - 6 - ] - }, - { - "id": 675, - "name": "Piers Polkiss's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1, - 5 - ] - }, - { - "id": 676, - "name": "Poppy Pomfrey", - "birth": "pre 1954", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Albus Dumbledore", - "Hogwarts School of Witchcraft and Wizardry", - "Hospital Wing", - "Order of the Phoenix (during the Battle of the Astronomy Tower and the Battle of Hogwarts", - "Dumbledore's Army (during the Battle of the Astronomy Tower and the Battle of Hogwarts" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 677, - "name": "Portrait of a mermaid", - "birth": null, - "death": "Before late February 1994", - "species": "Mermaid", - "ancestry": null, - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Prefects' bathroom" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 678, - "name": "Euphemia Potter", - "birth": null, - "death": "Pre-31 July, 1980", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Potter family" - ], - "books_featured_in": [ - 1, - 5 - ] - }, - { - "id": 679, - "name": "Lily L. Potter", - "birth": "Between 1 September 2007 and 31 August 2008", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Potter family", - "Weasley family", - "Prewett family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 680, - "name": "Lily J. Potter", - "birth": "30 January, 1960", - "death": "31 October, 1981 (aged 21)", - "species": "Human", - "ancestry": "Muggle-born", - "gender": "Female", - "hair_color": "Auburn", - "eye_color": "Bright green", - "wand": "10¼\", Willow, unknown core", - "patronus": "Doe", - "house": "Gryffindor", - "associated_groups": [ - "Evans family", - "Potter family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Slug Club", - "Order of the Phoenix" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 681, - "name": "Molly Weasley's mother", - "birth": "before 30 October, 1949.", - "death": null, - "species": null, - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Red (possibly)", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Prewett family" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 682, - "name": "Prime Minister's niece", - "birth": "Pre-1990", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6 - ] - }, - { - "id": 683, - "name": "Eileen Prince", - "birth": "c. 1930, Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": "Pure-blood (possibly)", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin (possibly)", - "associated_groups": [ - "Prince family", - "Snape family", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 5, - 6, - 7 - ] - }, - { - "id": 684, - "name": "Elsie Prod", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2 - ] - }, - { - "id": 685, - "name": "Puddifoot", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Madam Puddifoot's Tea Shop" - ], - "books_featured_in": [ - 5, - 6, - 7 - ] - }, - { - "id": 686, - "name": "Doris Purkiss", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "The Quibbler (presumed)" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 687, - "name": "Orla Quirke", - "birth": "between 1 September 1982 and 31 August 1983,", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 688, - "name": "Helena Ravenclaw", - "birth": "Post 982", - "death": "Sometime between 996 and 1000", - "species": "Human (formerly)", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [ - "Ravenclaw family", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw" - ], - "books_featured_in": [ - 1, - 6, - 7 - ] - }, - { - "id": 689, - "name": "Rowena Ravenclaw", - "birth": "Pre 976", - "death": "11th century", - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": "Brown", - "wand": null, - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Ravenclaw family" - ], - "books_featured_in": [ - 2, - 4, - 5, - 7 - ] - }, - { - "id": 690, - "name": "Maisy Reynolds", - "birth": "on or prior to 31 August 1986,", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 691, - "name": "Mary Riddle", - "birth": "1883", - "death": "August, 1943 (aged 59 - 60)", - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Riddle family" - ], - "books_featured_in": [ - 4, - 6 - ] - }, - { - "id": 692, - "name": "Merope Riddle", - "birth": "c. 1907", - "death": "31 December, 1926 (aged 19)", - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Dull", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": null, - "house": "House of Gaunt (abandoned)", - "associated_groups": [], - "books_featured_in": [ - 2, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 693, - "name": "Riddles' cook", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Riddle family (formerly)" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 694, - "name": "Riddles' maid", - "birth": "Before 1943", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Riddle family" - ], - "books_featured_in": [ - 4, - 6 - ] - }, - { - "id": 695, - "name": "Roberts's wife", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Roberts family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 696, - "name": "Demelza Robins", - "birth": "on or before 31 August 1985", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 697, - "name": "C. Roemmele", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "St. Grogory's Primary School" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 698, - "name": "Rosmerta", - "birth": "Before 1959", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Blonde", - "eye_color": "Green", - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Three Broomsticks Inn", - "Draco Malfoy (while under the Imperius Curse)" - ], - "books_featured_in": [ - 3, - 4, - 6 - ] - }, - { - "id": 699, - "name": "Skower", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Blonde", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2, - 4 - ] - }, - { - "id": 700, - "name": "Serpent of Slytherin", - "birth": "c. 993", - "death": "29 May, 1993 (aged around 1000)", - "species": "Basilisk", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": "Yellow", - "wand": null, - "patronus": null, - "house": "Salazar Slytherin", - "associated_groups": [], - "books_featured_in": [ - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 701, - "name": "Aurora Sinistra", - "birth": "Pre 1968", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Dark", - "eye_color": "Dark", - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Astronomy department" - ], - "books_featured_in": [ - 2, - 4, - 5 - ] - }, - { - "id": 703, - "name": "Sixth-Year Inquisitorial Squad Member", - "birth": "between 1 September 1978 and 31 August 1979, (most likely) Great Britain or Ireland", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or Half-blood (likely)", - "gender": "Female", - "hair_color": "Dark", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Slytherin", - "Inquisitorial Squad (formerly)" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 704, - "name": "Enid Smeek", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Godric's Hollow", - "Rita Skeeter" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 705, - "name": "Smeltings nurse", - "birth": "In or prior to 1976", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Smeltings Academy" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 706, - "name": "Veronica Smethley", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Gilderoy Lockhart" - ], - "books_featured_in": [ - 2 - ] - }, - { - "id": 707, - "name": "Hepzibah Smith", - "birth": null, - "death": "c. 1955-1961", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hufflepuff family" - ], - "books_featured_in": [ - 6, - 7 - ] - }, - { - "id": 708, - "name": "Alicia Spinnet", - "birth": "between 1 September 1977 and 31 August 1978", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (possibly)", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Dumbledore's Army" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 709, - "name": "Phyllida Spore", - "birth": null, - "death": "In or before 1995", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 710, - "name": "Pomona Sprout", - "birth": "15 May", - "death": null, - "species": "Human", - "ancestry": "Half-blood or Pure-blood", - "gender": "Female", - "hair_color": "Grey", - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Hufflepuff", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Herbology department", - "Hufflepuff", - "Order of the Phoenix (during Battle of the Astronomy Tower and Battle of Hogwarts)", - "Dumbledore's Army (during Battle of the Astronomy Tower and Battle of Hogwarts)" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 711, - "name": "Winged St Mungo's patient", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Magical to unknown extent", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "St Mungo's Hospital for Magical Maladies and Injuries" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 712, - "name": "Patricia Stimpson", - "birth": "c. 1977-1978", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 713, - "name": "Miriam Strout", - "birth": "Before 1977", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "St Mungo's Hospital for Magical Maladies and Injuries", - "Janus Thickey Ward" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 714, - "name": "The Fates", - "birth": "Amortal", - "death": "Amortal", - "species": "Deity", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 3 - ] - }, - { - "id": 715, - "name": "Theodore Nott's mother", - "birth": null, - "death": "Sometime between 1980 and 1995", - "species": "Human", - "ancestry": "Pure-blood or Half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Nott family" - ], - "books_featured_in": [ - 5, - 6 - ] - }, - { - "id": 716, - "name": "Dean Thomas's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Thomas family" - ], - "books_featured_in": [ - 5, - 7 - ] - }, - { - "id": 717, - "name": "Agatha Timms", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 718, - "name": "Andromeda Tonks", - "birth": "1951-1955", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Light brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "House of Black (formerly)", - "associated_groups": [], - "books_featured_in": [ - 5, - 7 - ] - }, - { - "id": 719, - "name": "Nymphadora Tonks", - "birth": "between 1 September 1972 and 31 August 1973", - "death": "2 May, 1998 (aged 24/25)", - "species": "Human (Metamorphmagus)", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Variable (biologically light brown))", - "eye_color": "Variable (Dark)", - "wand": "Unknown length, wood and core", - "patronus": "Jack Rabbit (pre 1995)", - "house": "Hufflepuff", - "associated_groups": [ - "Tonks family", - "Lupin family", - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff", - "Circle of Khanna", - "British Ministry of Magic", - "Auror Department", - "Order of the Phoenix", - "Advance Guard" - ], - "books_featured_in": [ - 5, - 6, - 7 - ] - }, - { - "id": 720, - "name": "Cassandra Trelawney", - "birth": null, - "death": null, - "species": "Human (Seer)", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Trelawney family" - ], - "books_featured_in": [ - 5, - 6 - ] - }, - { - "id": 721, - "name": "Sybill Trelawney", - "birth": "9 March, prior to 1963, Great Britain or Ireland", - "death": null, - "species": "Human (Seer)", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": "Hazel and unicorn hair, 9½ inches, very flexible", - "patronus": "Non-corporeal", - "house": "Ravenclaw", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Slug Club (possibly)", - "Order of the Phoenix (during the Battle of Hogwarts)", - "Dumbledore's Army (during the Battle of Hogwarts)", - "Divination Workshop (possibly)", - "Trelawney family" - ], - "books_featured_in": [ - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 722, - "name": "Donaghan Tremlett's wife", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Tremlett family" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 723, - "name": "Trolley witch", - "birth": "Before 1830", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Grey", - "eye_color": "Dark", - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Hogwarts Express", - "Albus Dumbledore", - "Ottaline Gambol" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 724, - "name": "Lisa Turpin", - "birth": "Between 1 September 1979 and 31 August 1980", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Brown", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [ - "Hogwarts school of witchcraft and wizardry", - "Ravenclaw" - ], - "books_featured_in": [ - 1 - ] - }, - { - "id": 725, - "name": "Two little witches", - "birth": "Before 1994", - "death": null, - "species": "Humans", - "ancestry": null, - "gender": "Females", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 726, - "name": "Tyra Teegarden", - "birth": "31 August 1982 or earlier", - "death": null, - "species": null, - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 3 - ] - }, - { - "id": 727, - "name": "Dolores Umbridge", - "birth": "British Ministry of Magic (formerly)", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Mouse brown (formerly)", - "eye_color": null, - "wand": "8\", Birch, dragon heartstring (formerly)", - "patronus": "Persian cat", - "house": "Slytherin", - "associated_groups": [], - "books_featured_in": [ - 5, - 6, - 7 - ] - }, - { - "id": 728, - "name": "Cassandra Vablatsky", - "birth": "1894", - "death": "1997 (aged 102 - 103)", - "species": "Human (Seer)", - "ancestry": null, - "gender": "Female", - "hair_color": "Brown", - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 3 - ] - }, - { - "id": 729, - "name": "Emmeline Vance", - "birth": "pre 1964", - "death": "Early July, 1996", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Vance family", - "Order of the Phoenix", - "Advance Guard" - ], - "books_featured_in": [ - 5, - 6 - ] - }, - { - "id": 730, - "name": "Romilda Vane", - "birth": "between 1 September 1981 and 31 August 1982", - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood (possibly)", - "gender": "Female", - "hair_color": "Black", - "eye_color": "Dark", - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Vane family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Dumbledore's Army" - ], - "books_featured_in": [ - 4, - 6 - ] - }, - { - "id": 731, - "name": "Romilda Vane's grandmother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 6 - ] - }, - { - "id": 732, - "name": "Septima Vector", - "birth": "Before 1974", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Black", - "eye_color": null, - "wand": null, - "patronus": "Non-corporeal", - "house": null, - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 3, - 4, - 5, - 6 - ] - }, - { - "id": 733, - "name": "Verity", - "birth": "In or prior to 1979", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Weasleys' Wizard Wheezes" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 734, - "name": "Violet", - "birth": null, - "death": "Before 1994", - "species": "Portrait", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Hogwarts School" - ], - "books_featured_in": [ - 4, - 6 - ] - }, - { - "id": 735, - "name": "Wailing Widow", - "birth": null, - "death": "Before 1992", - "species": "Human (formerly)", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2 - ] - }, - { - "id": 736, - "name": "Waitress at Luchino Caffe", - "birth": "Before 1997", - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Luchino Caffe" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 737, - "name": "Wakanda", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "British Ministry of Magic" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 739, - "name": "Celestina Warbeck", - "birth": "18 August, 1917", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Dark", - "eye_color": null, - "wand": "10½\", Larch, phoenix feather", - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Wizarding Wireless Network", - "Witching Hour", - "Puddlemere United" - ], - "books_featured_in": [ - 2, - 6, - 7 - ] - }, - { - "id": 740, - "name": "Myrtle Warren", - "birth": "Between 14 June, 1928 and 13 June, 1929", - "death": "13 June, 1943 (aged 14)", - "species": "Human (formerly)", - "ancestry": "Muggle-born", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Ravenclaw", - "associated_groups": [ - "Warren family", - "Hogwarts School of Witchcraft and Wizardry", - "Ravenclaw", - "Harry Potter", - "Draco Malfoy", - "Albus Potter", - "Scorpius Malfoy" - ], - "books_featured_in": [ - 2, - 4, - 6 - ] - }, - { - "id": 741, - "name": "Myrtle Warren's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 2 - ] - }, - { - "id": 743, - "name": "Ginny Weasley", - "birth": "11 August, 1981", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Red", - "eye_color": "Bright brown", - "wand": "Unknown length, Yew, unknown core", - "patronus": "Horse", - "house": "Gryffindor", - "associated_groups": [ - "Weasley family", - "Potter family", - "Prewett family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team", - "Slug Club", - "Dumbledore's Army", - "Order of the Phoenix", - "Holyhead Harpies", - "Daily Prophet" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 744, - "name": "Molly Weasley", - "birth": "30 October, 1949 or 1950", - "death": null, - "species": "Human", - "ancestry": "Pure-blood", - "gender": "Female", - "hair_color": "Red", - "eye_color": "Bright brown", - "wand": "Unknown length, wood and core", - "patronus": "Non-corporeal", - "house": "Gryffindor", - "associated_groups": [ - "Weasley family", - "Prewett family", - "Potter family", - "Order of the Phoenix", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - }, - { - "id": 745, - "name": "Rose Granger-Weasley", - "birth": "between 1 September 2005 and 31 August 2006", - "death": null, - "species": "Human", - "ancestry": "Half-blood", - "gender": "Female", - "hair_color": "Red", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Gryffindor", - "associated_groups": [ - "Weasley family", - "Granger family", - "Prewett family", - "Potter family", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Gryffindor Quidditch team" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 746, - "name": "Victoire Weasley", - "birth": "2 May, early 2000s Great Britain or France", - "death": null, - "species": "Human (Veela ancestry)", - "ancestry": "One-eighth Veela", - "gender": "Female", - "hair_color": "Blonde", - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Septimus Weasley (paternal great-grandfather)", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Weasley family", - "Delacour family", - "Prewett family" - ], - "books_featured_in": [ - 7 - ] - }, - { - "id": 747, - "name": "St Mungo's Welcome Witch", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Blonde", - "eye_color": "Blue", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "St Mungo's Hospital for Magical Maladies and Injuries" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 748, - "name": "Wendelin the Weird", - "birth": "c. 14th century", - "death": "Middle Ages", - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": "Red", - "eye_color": "Green", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 3 - ] - }, - { - "id": 749, - "name": "Winky", - "birth": "Before 1981", - "death": null, - "species": "House-elf", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": "Brown", - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Crouch family (formerly)", - "Bartemius Crouch Senior", - "Bartemius Crouch Junior", - "Hogwarts School of Witchcraft and Wizardry" - ], - "books_featured_in": [ - 4, - 5, - 6, - 7 - ] - }, - { - "id": 750, - "name": "Winky's grandmother", - "birth": null, - "death": null, - "species": "House-elf", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Crouch family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 751, - "name": "Winky's mother", - "birth": null, - "death": null, - "species": "House-elf", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [ - "Crouch family" - ], - "books_featured_in": [ - 4 - ] - }, - { - "id": 752, - "name": "Oliver Wood's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 4 - ] - }, - { - "id": 753, - "name": "Yvonne", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Muggle", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": null, - "associated_groups": [], - "books_featured_in": [ - 1 - ] - }, - { - "id": 754, - "name": "Blaise Zabini's mother", - "birth": null, - "death": null, - "species": "Human", - "ancestry": "Pure-blood or half-blood", - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Slytherin (likely)", - "associated_groups": [ - "Zabini family" - ], - "books_featured_in": [ - 6 - ] - }, - { - "id": 755, - "name": "Rose Zeller", - "birth": "Between 1 September 1983 and 31 August 1984,", - "death": null, - "species": "Human", - "ancestry": null, - "gender": "Female", - "hair_color": null, - "eye_color": null, - "wand": null, - "patronus": null, - "house": "Hufflepuff", - "associated_groups": [ - "Hogwarts School of Witchcraft and Wizardry", - "Hufflepuff" - ], - "books_featured_in": [ - 5 - ] - }, - { - "id": 756, - "name": "Albus Dumbledore", - "birth": "Late August 1881", - "death": "30 June, 1997 (aged 115)", - "species": "Human", - "ancestry": "Half-blood", - "gender": "Male", - "hair_color": "Silver, formerly auburn", - "eye_color": "Blue", - "wand": "Unknown length, wood and core (formerly)", - "patronus": "Phoenix", - "house": "Gryffindor", - "associated_groups": [ - "Order of Merlin", - "Order of the Phoenix", - "Dumbledore's Army", - "Harry Potter", - "Hogwarts School of Witchcraft and Wizardry", - "Gryffindor", - "Transfiguration department", - "British Ministry of Magic", - "Council of Magical Law", - "Wizengamot", - "International Confederation of Wizards", - "Dumbledore family" - ], - "books_featured_in": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7 - ] - } - ], - "funFacts": [ - { - "id": 1, - "type": "Author", - "content": "J. K. Rowling" - }, - { - "id": 2, - "type": "Protagonist", - "content": "Harry Potter" - }, - { - "id": 3, - "type": "Antatagonist", - "content": "Lord Voldemort" - }, - { - "id": 4, - "type": "Harry Potter's magic wand", - "content": "Harry Potter's wand was 11 long, made of holly, and possessed a phoenix feather core. This was described by Garrick Ollivander to be an unusual combination of wand core and wood. The feather was donated by Fawkes, Albus Dumbledore's phoenix." - }, - { - "id": 5, - "type": "Lord Voldemort's magic wand", - "content": "Lord Voldemort's wand was 11 long, made of holly, and possessed a phoenix feather core. This was described by Garrick Ollivander to be an unusual combination of wand core and wood. The feather was donated by Fawkes, Albus Dumbledore's phoenix." - }, - { - "id": 6, - "type": "Lord Voldemort's real name", - "content": "Tom Marvolo Riddle (mixing the letters it ends up being Lord Voldemort)" - }, - { - "id": 7, - "type": "Houses", - "content": "At the school Hogwarts there are four houses: Gryffindor, Ravenclaw, Hufflepuff and Slytherin" - }, - { - "id": 8, - "type": "Wands", - "content": "Harry's wand and Voldemort's wand were twins, that's why they couldn't kill each other" - } - ], - "spells": [ - { - "id": 1, - "name": "Aberto", - "other_name": null, - "pronunciation": "Ah-bare-toh", - "spell_type": "Charm", - "description": null, - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 2, - "name": "Accio", - "other_name": "Summoning Charm", - "pronunciation": "Various, including: AK-ee-oh or AK-see-oh , AK-see-oh , AS-see-oh (US), and AT-chee-oh (Anglo-Catholic pronunciation)", - "spell_type": "Charm", - "description": "Summons an object towards the caster. It is able to summon objects in direct line of sight of the caster, as well as things out of view, by calling the object aloud after the incantation (unless the spell is casted nonverbally). This spell needs thought behind it, and the object must be clear in the casters mind before trying to summon it. The caster doesn't necessarily need to know the location of the target if they say the name of the object to be summoned, such as when Hermione Granger summoned some books from Dumbledore's office simply by saying \"Accio Horcrux books!\" while in Gryffindor Tower.", - "mention": "Harry Potter summoned his broom to complete the first task of the Triwizard Tournament in 1994, and to summon the Portkey to escape Voldemort and the Death Eaters in the Little Hangleton Graveyard in 1995. Also, in the Battle of the Seven Potters Harry summoned Hagrid when he fell. Molly Weasley used it to get the twins' candy. The twins used it to summon their brooms from Dolores Umbridge's office", - "etymology": "The Latin word accio means \"I call\" or \"I summon\".", - "note": null - }, - { - "id": 3, - "name": "Age Line", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Prevents people above or below a certain age from access to a target.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 4, - "name": "Aguamenti", - "other_name": "Water-Making Spell", - "pronunciation": "AH-gwah-MEN-tee", - "spell_type": "Charm, Conjuration", - "description": "Produces a clean, drinkable jet of water from the wand tip.", - "mention": "Used by Fleur Delacour in 1994 to extinguish her skirt, which had caught flame during a fight against a dragon. Harry used this spell twice in 1997, both on the same night; once to attempt to provide a drink for Dumbledore, then again to help douse Hagrid's hut after it was set aflame by Thorfinn Rowle, who used the Fire-Making Spell.", - "etymology": null, - "note": null - }, - { - "id": 5, - "name": "Alarte Ascendare", - "other_name": null, - "pronunciation": "a-LAR-tay a-SEN-der-ay", - "spell_type": "Charm", - "description": "Shoots the target high into the air.", - "mention": "Used by Gilderoy Lockhart in 1992 to send a snake high into the air during the first and last meeting of the Duelling Club.", - "etymology": null, - "note": null - }, - { - "id": 6, - "name": "Albus Dumbledore's forceful spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Spell", - "description": "This spell was, supposedly, quite powerful as when it was cast, the opponent was forced to conjure a silver shield to deflect it.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 7, - "name": "Alohomora", - "other_name": "Unlocking Charm", - "pronunciation": "ah-LOH-ho-MOR-ah", - "spell_type": "Charm", - "description": "Unlocks doors and other objects. It can also unlock doors that have been sealed with a Locking Spell, although it is possible to bewitch doors to become unaffected by this spell.", - "mention": "Used by Hermione Granger in 1991 to allow her and her friends to access the Third-floor corridor at her school, which was at the time forbidden; she used it again two years later to free Sirius's cell in her teacher's prison room.", - "etymology": null, - "note": null - }, - { - "id": 8, - "name": "Amato Animo Animato Animagus", - "other_name": "Animagus Spell", - "pronunciation": "ah-MAH-toh ah-NEE-moh ah-nee-MAH-toh an-a-MAY-jus", - "spell_type": "Transfiguration", - "description": "Spell used as part of the process of becoming an Animagus. The incantation has to be recited at sunrise and sundown, every day before the consumption of the Animagus Potion. The incantation is also recited just prior to the consumption of the potion, which has to take place just after a lightning storm starts. The incantation is recited while placing the wand's tip over one's heart.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 9, - "name": "Anapneo", - "other_name": null, - "pronunciation": "ah-NAP-nee-oh", - "spell_type": "Healing Spell, Vanishment", - "description": "Clears the target's airway if they are choking on something.", - "mention": "Used by Horace Slughorn, cast upon Marcus Belby when the latter choked on a pheasant in 1996.", - "etymology": null, - "note": null - }, - { - "id": 10, - "name": "Anteoculatia", - "other_name": null, - "pronunciation": "an-tee-oh-kyoo-LAY-chee-ah", - "spell_type": "Hex", - "description": "Causes the target to grow antlers.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 11, - "name": "Anti-Cheating Spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Used to prevent cheating.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 12, - "name": "Anti-Disapparition Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Prevents Disapparation in an area. It is used to entrap an enemy in an area.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 13, - "name": "Anti-intruder jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Prevents intruders from entering an area.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 14, - "name": "Antonin Dolohov's curse", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "An unknown curse that causes injuries that are capable of killing with enough power.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 15, - "name": "Aparecium", - "other_name": "Revealing Charm", - "pronunciation": "AH-par-EE-see-um", - "spell_type": "Charm", - "description": "Reveals secret messages written in invisible ink, or any other hidden markings. Also works against Concealing charms", - "mention": "Used (to no avail) in 1993 by Hermione Granger to attempt to reveal any hidden writing in a diary.", - "etymology": null, - "note": null - }, - { - "id": 16, - "name": "Appare Vestigium", - "other_name": "Tracking Spell", - "pronunciation": "ah-PAR-ay ves-TEE-jee-um", - "spell_type": "Charm", - "description": "Reveals traces of magic, including footprints and track marks.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 17, - "name": "Apparition", - "other_name": null, - "pronunciation": null, - "spell_type": "Transportation", - "description": "Magically transports the caster to another location instantaneously. The destination is one that the primary user has been to or seen in some fashion previously. Can be used to apparate multiple people at once if holding each other. No incantation required.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 18, - "name": "Aqua Eructo", - "other_name": "Aqua Eructo Charm", - "pronunciation": "A-kwa ee-RUCK-toh", - "spell_type": "Charm", - "description": "This spell is used to create, and control, a jet of clear water from the tip of the wand; it is probably related to Aguamenti.", - "mention": "Used multiple times to extinguish fires in 1994.", - "etymology": null, - "note": null - }, - { - "id": 19, - "name": "Arania Exumai", - "other_name": "Spider repelling spell", - "pronunciation": "ah-RAHN-ee-a EKS-su-may", - "spell_type": "Charm", - "description": "Drives away spiders, including Acromantulas.", - "mention": "Jacob's sibling used this spell to repel an Acromantula that guarded the Forest Vault in the Forbidden Forest.", - "etymology": null, - "note": null - }, - { - "id": 20, - "name": "Arresto Momentum", - "other_name": "Slowing Charm", - "pronunciation": "ah-REST-oh mo-MEN-tum", - "spell_type": "Charm", - "description": "Decreases the velocity of a moving target. Can be used on multiple targets, as well as on the caster themselves. It was invented by Daisy Pennifold in 1711 for use on the Quaffle in Quidditch.", - "mention": "Used by Dumbledore to save one of his students from a fall in 1993; Hermione Granger used it, to little effect, in 1998 to cushion an otherwise deadly fall.", - "etymology": null, - "note": null - }, - { - "id": 21, - "name": "Arrow-shooting spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Conjuration", - "description": "Fires arrows from the caster's wand.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 22, - "name": "Ascendio", - "other_name": null, - "pronunciation": "ah-SEN-dee-oh", - "spell_type": "Charm", - "description": "Lifts the caster high into the air. The charm also works underwater, propelling the caster above the surface.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 23, - "name": "Avada Kedavra", - "other_name": "Killing Curse", - "pronunciation": "ah-VAH-dah keh-DAV-rah", - "spell_type": "Curse", - "description": "", - "mention": "Used by Tom Riddle to murder many of his victims without remorse.", - "etymology": null, - "note": null - }, - { - "id": 24, - "name": "Avifors", - "other_name": "Avifors Spell", - "pronunciation": "AH-vi-fors", - "spell_type": "Transfiguration", - "description": "Transforms the target into a bird.", - "mention": "Taught in Transfiguration class.", - "etymology": null, - "note": null - }, - { - "id": 25, - "name": "Avenseguim", - "other_name": null, - "pronunciation": "ah-ven-SEH-gwim", - "spell_type": "Charm", - "description": "Turns an object into a tracking device.", - "mention": "In 1927, Newton Scamander used this spell to track the origins of a feather - a clue found during his search for Porpentina Goldstein - back to Yusuf Kama, whose hat the feather came from.", - "etymology": null, - "note": null - }, - { - "id": 26, - "name": "Avis", - "other_name": "Bird-Conjuring Charm", - "pronunciation": "AH-viss", - "spell_type": "Conjuration, Charm", - "description": "Conjures a flock of birds from the tip of the wand. When used in conjunction with Oppugno, it can be used offensively.", - "mention": "Used in 1994 by Mr Ollivander to test Viktor Krum's wand. Also employed offensively by Hermione Granger against Ron Weasley.", - "etymology": null, - "note": null - }, - { - "id": 27, - "name": "Babbling Curse", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Causes uncontrollable babbling.", - "mention": "Although he was rather untrustworthy, it may not have occurred at all, but Gilderoy Lockhart says he cured a Transylvanian farmer of this affliction.", - "etymology": null, - "note": null - }, - { - "id": 28, - "name": "Badgering", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Turns things into badgers", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 29, - "name": "Bat-Bogey Hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Transforms the target's bogeys into large bats that fly out of the victim's nose. It was invented by Miranda Goshawk.", - "mention": "Ginny Weasley was a noted practitioner of this spell, having used it at least thrice by her sixth year.", - "etymology": null, - "note": null - }, - { - "id": 30, - "name": "Baubillious", - "other_name": null, - "pronunciation": "baw-BILL-ee-us", - "spell_type": "Charm", - "description": "The exact effects of the spell are unknown, though it presumably is of damaging nature and it produces a bolt of white light from the tip of the wand.", - "mention": null, - "etymology": "Currently unclear, probably from English bauble.", - "note": "This is likely the incantation for White sparks." - }, - { - "id": 31, - "name": "Bedazzling Hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Allows the caster to disguise things.", - "mention": "When Xenophilius Lovegood explains the concept of how the Cloak of Invisibility is the only thing that can make a person truly invisible, he mentions that most cloaks of that kind are made with this spell.", - "etymology": null, - "note": null - }, - { - "id": 32, - "name": "Bewitched Snowballs", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Causes snowballs to pelt themselves at the target.", - "mention": "Twice used by Fred and George Weasley; firstly on Professor Quirrell's head, unwittingly striking Lord Voldemort in the face, and then again four years later to attack the windows of Gryffindor Tower.", - "etymology": null, - "note": null - }, - { - "id": 33, - "name": "Bluebell Flames", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Produces magical blue flames that can be held in a jar. Not as dangerous as real fire, these magical flames can be touched, penetrated and held without it burning the holder, though it is known to singe materials such as clothing and plants.", - "mention": "This spell was a speciality of Hermione Granger's. She used it to save Harry and Ron in 1991.", - "etymology": null, - "note": null - }, - { - "id": 34, - "name": "Blue sparks", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Jet of blue sparks. It can be used offensively as a minor duelling spell.", - "mention": "Following the American National Quidditch team's win at the semi-finals of the 2014 Quidditch World Cup against Liechtenstein, red, white and blue sparks filled the air so thickly it was difficult to see or breathe.", - "etymology": null, - "note": null - }, - { - "id": 35, - "name": "Bombarda", - "other_name": "Exploding Charm", - "pronunciation": "bom-BAR-dah", - "spell_type": "Charm", - "description": "Provokes a small explosion.", - "mention": "Taught in fourth year Charms class.", - "etymology": "From the word bombard, meaning \"to attack a place or person continually with bombs or other missiles\".", - "note": null - }, - { - "id": 36, - "name": "Bombarda Maxima", - "other_name": null, - "pronunciation": "BOM-bar-dah MAX-ih-mah", - "spell_type": "Charm", - "description": "Creates a large explosion capable of removing entire walls. A more advanced and more powerful form of the Exploding Charm.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 37, - "name": "Brackium Emendo", - "other_name": null, - "pronunciation": "BRA-key-um ee-MEN-doh", - "spell_type": "Charm, Healing Spell", - "description": "If used correctly, it is claimed that this spell will heal broken bones; this theory is supported by the etymology.", - "mention": "Used unsuccessfully by Gilderoy Lockhart on Harry Potter in 1992 after the latter's arm was broken by a Bludger; it vanished all the bones, making it resemble rubber.", - "etymology": null, - "note": null - }, - { - "id": 38, - "name": "Bravery Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Increases the bravery of a teammate, increasing their performance against certain foes.", - "mention": "Taught by Head of the Auror Office, Harry Potter, to members of the Statute of Secrecy Task Force, to help them address the results of the Calamity in the 2010s.", - "etymology": null, - "note": null - }, - { - "id": 39, - "name": "Bridge-conjuring spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Conjure a bridge from thin air.", - "mention": "This spell was used by Ignotus, Antioch and Cadmus Peverell in The Tale of the Three Brothers to create a bridge over a treacherous river, a bridge upon which they met Death.", - "etymology": null, - "note": null - }, - { - "id": 40, - "name": "Broom jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Used to make broomsticks try to throw their riders off through a variety of means such as sudden lurches and violent swishing movements. Constant eye contact is needed for the jinx to keep working.", - "mention": "It was used by Quirinus Quirrell against Harry Potter in 1991.", - "etymology": null, - "note": "This may be related to the Hurling Hex." - }, - { - "id": 41, - "name": "Bubble-Head Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Produces a large bubble of air around the head of the user; it is commonly used as the supernatural equivalent of a breathing set.", - "mention": "Used by Cedric Diggory and Fleur Delacour in 1995; it was used the next year by many students walking through the halls, because of horrid odours made by various pranks played on Dolores Umbridge.", - "etymology": null, - "note": null - }, - { - "id": 42, - "name": "Bubble-producing spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Produces a stream of non-bursting bubbles; there are two similar spells.", - "mention": "Used by Professor Flitwick to decorate some trees; the bubbles in this instance were golden. Used the following year by Ron Weasley when he broke his wand; these bubbles were purple.", - "etymology": null, - "note": null - }, - { - "id": 43, - "name": "Calvorio", - "other_name": "Hair-Loss Curse", - "pronunciation": "cal-VOR-ee-oh", - "spell_type": "Curse", - "description": "Removes the victim's hair.", - "mention": "The book Curses and Counter-Curses by Vindictus Viridian mentions this curse.", - "etymology": "From Latin calvus = \"bald\".", - "note": null - }, - { - "id": 44, - "name": "Cantis", - "other_name": null, - "pronunciation": "CAN-tiss", - "spell_type": "Jinx", - "description": "Causes the victim to burst uncontrollably into song.", - "mention": "Used by the Hogwarts professors to enchant suits of armour.", - "etymology": "Cantare is Latin for \"sing\".", - "note": null - }, - { - "id": 45, - "name": "Capacious extremis", - "other_name": "Extension Charm", - "pronunciation": "ca-PAY-shus ex-TREEM-us", - "spell_type": "Charm", - "description": "Expands the internal dimensions of an object without affecting the external dimensions, enhancing its capacity, and rendering its contents lighter.", - "mention": "This spell was used by Arthur Weasley to allow eight people, six large trunks, two owls, and a rat to fit comfortably inside his modified Ford Anglia in 1992. Also on the tent in which the Weasleys, Harry and Hermione stay during the Quidditch World Cup in 1994; the tent is also used by Harry, Ron and Hermione as shelter in 1997. Also, Hermione cast this spell upon her handbag in the same year.", - "etymology": null, - "note": null - }, - { - "id": 46, - "name": "Carpe Retractum", - "other_name": "Seize and Pull Charm", - "pronunciation": "CAR-pay ruh-TRACK-tum", - "spell_type": "Charm", - "description": "Produces a rope of light used to pull objects towards the caster, or, if the target is fixed in place, to pull the caster towards the target.", - "mention": "Taught in third year Charms class.", - "etymology": "From the Latin carpe, meaning \"to seize\" and retracto, meaning \"I draw back\".", - "note": null - }, - { - "id": 47, - "name": "Cascading Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Attacks multiple opponents in close proximity to each other.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 48, - "name": "Caterwauling Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Anyone entering the perimeter of this spell sets off a high-pitched shriek. This spell may be related to the Intruder Charm.", - "mention": "This spell was cast by the Death Eaters over Hogsmeade Wizarding Village to protect against intruders in 1998.", - "etymology": null, - "note": null - }, - { - "id": 49, - "name": "Cauldron to Sieve", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Transforms cauldrons into sieves.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 50, - "name": "Cauldron to badger", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Transforms cauldrons into badgers.", - "mention": null, - "etymology": null, - "note": "This spell may be Badgering." - }, - { - "id": 51, - "name": "Cave inimicum", - "other_name": null, - "pronunciation": "CAH-vay uh-NIM-i-kuhm", - "spell_type": "Charm", - "description": "Produces a boundary that keeps the caster hidden from others.", - "mention": "Used multiple times by Hermione Granger in 1997 and 1998 to protect the tent she shared with Ron Weasley and Harry Potter.", - "etymology": "The incantation is a Latin phrase which translates to \"beware of the enemy\".", - "note": null - }, - { - "id": 52, - "name": "Cheering Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Makes the target feel happy. Overuse of the spell may cause the target to break into an uncontrollable laughing fit. This spell was invented by Felix Summerbee.", - "mention": "Taught to third-year charms classes, part of the written O.W.L.", - "etymology": null, - "note": null - }, - { - "id": 53, - "name": "Circumrota", - "other_name": null, - "pronunciation": "SIR-cum-roh-tuh", - "spell_type": "Charm", - "description": "Rotates objects.", - "mention": "This spell was used by Leta Lestrange to rotate a record tower in the Records Room at the French Ministry of Magic Headquarters, revealing Newton Scamander and Porpentina Goldstein to be hiding behind the tower.", - "etymology": null, - "note": null - }, - { - "id": 54, - "name": "Cistem Aperio", - "other_name": null, - "pronunciation": "SIS-tem uh-PE-ree-o", - "spell_type": "Charm", - "description": "Opens chests and boxes.", - "mention": "This spell was used by Tom Riddle to open the chest in which Aragog was hidden.", - "etymology": "Aperio is Latin for \"uncover\" or \"open\"; Cista is Latin for \"trunk\" or \"chest\".", - "note": null - }, - { - "id": 55, - "name": "Colloportus", - "other_name": "Locking Spell", - "pronunciation": "cul-loh-POR-tus", - "spell_type": "Charm", - "description": "Locks doors and all things that can be locked. It is the counter-charm to the Unlocking Spell.", - "mention": "Used by Hermione Granger in 1996 in an attempt to prevent the Death Eaters that were following her from catching up.", - "etymology": "Perhaps a portmanteau of the Latin words colligere, which means \"gather\" and porta, which means \"gate\".", - "note": "This spell can easily be countered with Alohomora." - }, - { - "id": 56, - "name": "Colloshoo", - "other_name": "Stickfast Hex", - "pronunciation": "CAWL-low-shoo", - "spell_type": "Hex", - "description": "Sticks the target's shoes to the ground.", - "mention": "This spell is mentioned twice, once as having been used on Severus Snape during a potions class, the other when one reads Curses and Counter-Curses by Vindictus Viridian.", - "etymology": "The suffix \"shoo\" is a phonetic spelling of English \"shoe\"; the prefix collo may come from Greek \"κολάω,κολώ\" (pronounced \"colas\",\"cols\"), which means \"to glue\".", - "note": null - }, - { - "id": 57, - "name": "Colovaria", - "other_name": "Colour Change Charm", - "pronunciation": "co-loh-VA-riah", - "spell_type": "Charm", - "description": "Changes the target's colour.", - "mention": "The spell can be bought in Wiseacre's Wizarding Equipment in Diagon Alley. Used by fifth-years in their OWLs.", - "etymology": "Almost certainly a combination of English \"colour\" and \"vary\".", - "note": null - }, - { - "id": 58, - "name": "Confringo", - "other_name": "Blasting Curse", - "pronunciation": "kon-FRING-goh", - "spell_type": "Curse", - "description": "Produces a fiery explosion.", - "mention": "Used by Harry Potter to destroy the side-car of a motorbike in which he was riding during a battle against some Death Eaters in 1997; it was later used by Hermione Granger in an attempt to kill Nagini and facilitate an escape from Godric's Hollow.", - "etymology": "The incantation is direct Latin for \"destroy\".", - "note": "This spell seems to use heat for its explosion, while Expulso uses pressure instead." - }, - { - "id": 59, - "name": "Confundo", - "other_name": "Confundus Charm", - "pronunciation": "con-FUN-doh", - "spell_type": "Charm", - "description": "Causes the victim to become confused and befuddled.", - "mention": "In 1994, Severus Snape asserted that Harry, Ron and Hermione had this charm cast on them so that they would believe Sirius Black's claim of innocence; used two years later by Hermione to allow Ron to join the Gryffindor Quidditch team. It was used multiple times in 1997 and 1998.", - "etymology": "The incantation, when non-capitalised, means \"I confuse\"; the title may derive from the Latin confundere, meaning \"to confuse\" or \"to perplex.\"", - "note": null - }, - { - "id": 60, - "name": "Conjunctivitis Curse", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Causes irritation in the eyes, forcing them to swell shut. The Oculus Potion is able to counteract this curse. Dragons are particularly susceptible to this curse, as their hide makes them resistant to most spells, while their eyes remain vulnerable.", - "mention": "It was suggested by Sirius Black in his letter to Harry for him to use this spell on a dragon. Olympe Maxime used this spell on some giants in 1995.", - "etymology": "\"Conjunctivitis\" is the technical term for \"pink eye,\" demonstrating its effects of irritating the eye and causing it to shut.", - "note": null - }, - { - "id": 61, - "name": "Cornflake skin spell", - "other_name": null, - "pronunciation": null, - "spell_type": null, - "description": "This spell causes the victim's skin to appear as though it was coated in cornflakes.", - "mention": "In 1996, an unnamed student went to the hospital for treatment after he was hit with it, which was done in retaliation for the Inquisitorial Squad's recent behaviour.", - "etymology": null, - "note": null - }, - { - "id": 62, - "name": "Cracker Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "This spell is used to conjure exploding wizard crackers; it can be used in duelling to harm the opponent, but the force of the explosion may also affect the caster.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 63, - "name": "Cribbing Spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Spell", - "description": "This spell, which may possibly be a charm, is used to assist the caster in cheating on written papers, tests, and exams. It is possible that these spells can negate anti-cheating spells.", - "mention": "In 1991, an unnamed Slytherin student asked his fellow students whether any of them knew any good cribbing spells.", - "etymology": null, - "note": null - }, - { - "id": 64, - "name": "Crinus Muto", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Used to transfigure the colour and style of one's hair.", - "mention": "This maybe be the spell that caused Harry to turn his eyebrow yellow in 1996.", - "etymology": null, - "note": null - }, - { - "id": 65, - "name": "Crucio", - "other_name": "Cruciatus Curse", - "pronunciation": "KROO-see-oh", - "spell_type": "Curse", - "description": "Inflicts intense pain on the recipient of the curse. This curse does not physically harm the victim, but may in extreme cases drive them insane. The pain is described as having hot knives being driven into the victim. It cannot be cast successfully by a person who is doing so out of pure spite or anger; one must feel a true desire to cause the victim pain. If one casts this spell, he or she will receive a life sentence in Azkaban prison for it, as with the other two Unforgivable Curses.", - "mention": "Infamously used by Death Eaters Bellatrix Lestrange, Rabastan Lestrange, Rodolphus Lestrange and Bartemius Crouch Junior to torture the Aurors Frank and Alice Longbottom into insanity.", - "etymology": "Latin crucio means \"I torture\".", - "note": null - }, - { - "id": 66, - "name": "Defodio", - "other_name": "Gouging Spell", - "pronunciation": "deh-FOH-dee-oh", - "spell_type": "Charm", - "description": "Allows the caster to dig and carve through the target.", - "mention": "Used by The Trio to escape from a bank in 1998 while riding a dragon. It was later used by Harry to write the epitaph for Dobby, who had been killed.", - "etymology": "The incantation is Latin for \"I dig\".", - "note": null - }, - { - "id": 67, - "name": "Deletrius", - "other_name": "Eradication Spell", - "pronunciation": "deh-LEE-tree-us", - "spell_type": "Charm", - "description": "Counter-charm to the Reverse Spell, vanishing the image of the last spell cast. It may also disintegrate other certain images.", - "mention": "This spell was only ever seen in 1994 when Amos Diggory used Prior Incantato to detect that Winky had cast Morsmordre using Harry Potter's wand.", - "etymology": "Latin delere, meaning \"to destroy\", and English \"detritus\", meaning rubble.", - "note": null - }, - { - "id": 68, - "name": "Densaugeo", - "other_name": null, - "pronunciation": "den-SAW-jee-oh", - "spell_type": "Hex", - "description": "This hex causes the victim's teeth to grow rapidly, but can also be used to restore lost teeth, as proven when Ted Tonks did so in 1997 for Harry Potter.", - "mention": "Introduced in 1994, when Draco Malfoy's spell rebounded upon Hermione Granger; her teeth were past her collar before she was forced to run to the hospital to get them shrunk. Later used in 1997 to mend Harry Potter's broken teeth.", - "etymology": "From Latin dens, meaning \"tooth\", and augeo, meaning \"I enlarge\"; essentially, it means \"I enlarge the tooth\".", - "note": null - }, - { - "id": 69, - "name": "Deprimo", - "other_name": null, - "pronunciation": "deh-PREEM-oh", - "spell_type": "Charm", - "description": "Charm used to blast holes in the ground.", - "mention": "Hermione Granger blasted a hole through the living room floor of Xenophilius Lovegood's house in 1998 using this spell.", - "etymology": "The incantation, when non-capitalised, means \"to depress\" or \"depress\".", - "note": null - }, - { - "id": 70, - "name": "Depulso", - "other_name": "Banishing Charm", - "pronunciation": "deh-PUL-soh", - "spell_type": "Charm", - "description": "Sends the target away from the caster. It is the counter-charm to the Summoning Charm.", - "mention": "Although it is learned in the fourth-year charms class at Hogwarts, it is used multiple times in 1993, as well as in 1995.", - "etymology": "From the Latin depulsio, meaning \"drive away\".", - "note": null - }, - { - "id": 71, - "name": "Descendo", - "other_name": null, - "pronunciation": "deh-SEN-doh", - "spell_type": "Charm", - "description": "Causes object to fall or move downwards.", - "mention": "In 1997, it was used by Ron to magically cause the stairs in his bedroom, which lead to his family's attic, to descend; later that year, Crabbe used it in an attempt to cause a wall of rubbish behind which Ron was hiding to fall on him.", - "etymology": "Descendo is Latin for \"I descend\".", - "note": null - }, - { - "id": 72, - "name": "Desk Into Pig", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Turns desks into pigs.", - "mention": "Professor McGonagall used this spell as a demonstration for her class of first years in 1991, then changed the pig back into a desk.", - "etymology": null, - "note": null - }, - { - "id": 73, - "name": "Deterioration Hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Impairs foes and reduces their stamina.", - "mention": "Minerva McGonagall taught members of the Statute of Secrecy Task Force this hex to help them address the results of the Calamity in the 2010s.", - "etymology": null, - "note": null - }, - { - "id": 74, - "name": "Diffindo", - "other_name": "Severing Charm", - "pronunciation": "dih-FIN-doh", - "spell_type": "Charm", - "description": "Used to precisely cut or tear objects.", - "mention": "Used twice in 1994, the first time being by Harry Potter to cut Cedric Diggory's bag in order to talk to the latter, and the second time being by Ron Weasley to cut the lace from the cuffs of his dress robes in an attempt to make them seem less feminine. The spell was used a third time by Harry to swap the covers of his second-hand and brand-new copies of Advanced Potion-Making.", - "etymology": "Latin diffindere, meaning \"to divide\" or \"to split\".", - "note": null - }, - { - "id": 75, - "name": "Diminuendo", - "other_name": null, - "pronunciation": "dim-in-YEW-en-DOUGH", - "spell_type": "Charm", - "description": "Forces the target to shrink.", - "mention": "Performed by Nigel Wolpert in 1995, during a Dumbledore's Army meeting.", - "etymology": "The incantation derives from the musical term diminuendo, meaning \"a gradual decrease of the volume of sound\".", - "note": null - }, - { - "id": 76, - "name": "Dissendium", - "other_name": null, - "pronunciation": "dih-SEN-dee-um", - "spell_type": "Charm", - "description": "Used to open passages.", - "mention": "Used multiple times in 1993 to open the statue of Gunhilda of Gorsemoor, then again four years later in a failed attempt to open Salazar Slytherin's Locket.", - "etymology": "There are numerous suggestions.", - "note": "This may not be a spell at all in the strict sense but a password; however, when used for the statue of the hump-backed witch, one must tap the statue with their wand, indicating that it is in fact a spell." - }, - { - "id": 77, - "name": "Disillusionment Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Causes the target to blend seamlessly in with its surroundings, like a chameleon.", - "mention": "Used by Alastor Moody to disguise Harry Potter in 1995.", - "etymology": null, - "note": null - }, - { - "id": 78, - "name": "Draconifors", - "other_name": "Draconifors Spell", - "pronunciation": "drah-KOH-nih-fors", - "spell_type": "Transfiguration", - "description": "Transforms the target into a dragon.", - "mention": "Taught in third year Transfiguration class.", - "etymology": "From the Latin word draco, meaning \"dragon\", and forma meaning \"shape\".", - "note": null - }, - { - "id": 79, - "name": "Drought Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Causes puddles and ponds to dry up. Though not powerful enough to drain a body of water like a lake", - "mention": "Mentioned by Ronald Weasley in 1994 when Harry was getting ready for the Second Task of The Triwizard Tournament.", - "etymology": null, - "note": null - }, - { - "id": 80, - "name": "Ducklifors", - "other_name": "Ducklifors Jinx", - "pronunciation": "DUCK-lih-fors", - "spell_type": "Transfiguration, Jinx", - "description": "Transforms the target into a duck.", - "mention": null, - "etymology": "From the English duck, and the Latin forma meaning \"shape\".", - "note": null - }, - { - "id": 81, - "name": "Duro", - "other_name": "Hardening Charm", - "pronunciation": "DYOO-roh", - "spell_type": "Charm", - "description": "Turns an object to stone.", - "mention": "Used by Hermione Granger in 1998 while escaping from Death Eaters in the Battle of Hogwarts.", - "etymology": "Latin duro means \"harden\".", - "note": null - }, - { - "id": 82, - "name": "Ears to kumquats", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "This spell transforms the victim's ears into kumquats.", - "mention": "In 1995, Luna Lovegood read The Quibbler upside down in order to reveal the secret charm, written in Ancient Runes.", - "etymology": null, - "note": null - }, - { - "id": 83, - "name": "Ear-shrivelling Curse", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Causes the target's ears to shrivel up.", - "mention": "Sometime between 1989 and 1994, Bill Weasley's pen-friend sent him a hat with this curse on it.", - "etymology": null, - "note": null - }, - { - "id": 84, - "name": "Ebublio", - "other_name": "Ebublio Jinx", - "pronunciation": "ee-BUB-lee-oh", - "spell_type": "Jinx", - "description": "Causes the victim to inflate and explode into hundreds of bubbles; it can only be cast if an ally is using Aqua Eructo on the victim simultaneously.", - "mention": "Used often by members of the Statute of Secrecy Task Force.", - "etymology": null, - "note": null - }, - { - "id": 85, - "name": "Engorgio", - "other_name": "Engorgement Charm", - "pronunciation": "en-GOR-jee-oh", - "spell_type": "Charm", - "description": "Causes the target to swell in physical size. Its counter-charm is the Shrinking Charm.", - "mention": "Rubeus Hagrid used this spell on his pumpkins in 1992; two years later, Barty Crouch Jr cast this spell on a spider to make it easier for students to see when he cast a curse on it. Used on another spider three years later to test a new wand.", - "etymology": "The English word engorge means \"swell\".", - "note": "There is much speculation that this spell is the same as the Growth Charm, though this cannot be proven. Note that there is a difference between enlarging and engorging something, similar though they may seem." - }, - { - "id": 86, - "name": "Engorgio Skullus", - "other_name": null, - "pronunciation": "in-GORE-jee-oh SKUH-las", - "spell_type": "Hex", - "description": "Causes the victim's skull to swell disproportionately. This spell may be a variation of the Engorgement Charm, as they share the first word of the incantation. Its countercurse is Redactum Skullus.", - "mention": "This spell can be bought at Wiseacre's Wizarding Equipment in Diagon Alley.", - "etymology": "See etymology for above entry; \"skullus\" is Latin for \"skull\".", - "note": null - }, - { - "id": 87, - "name": "Entomorphis", - "other_name": "Insect Jinx", - "pronunciation": "en-TOE-morph-is", - "spell_type": "Jinx, Transfiguration", - "description": "This hex is used to transform the target into an insectoid for a short time.", - "mention": "Harry Potter contemplated using this hex against Dudley Dursley in 1995, though he decided against it.", - "etymology": null, - "note": null - }, - { - "id": 88, - "name": "Entrail-Expelling Curse", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Expels victim's entrails. Precise effects unknown. Invented by Urquhart Rackharrow.", - "mention": "When Harry Potter visited St Mungo's Hospital for Magical Maladies and Injuries in December 1995, he saw the portrait of Urquhart Rackharrow, which mentioned his invention of this curse.", - "etymology": null, - "note": null - }, - { - "id": 89, - "name": "Episkey", - "other_name": null, - "pronunciation": "ee-PIS-key", - "spell_type": "Healing Spell", - "description": "Used to heal relatively minor injuries, such as broken bones and cartilage.", - "mention": "In 1996, Nymphadora Tonks used this spell to fix Harry's broken nose after Draco Malfoy broke it on the Hogwarts Express,", - "etymology": "The word comes from Greek \"episkeui\" (\"επισκευή\"), which means \"repair\".", - "note": "This is part of a family of healing spells." - }, - { - "id": 90, - "name": "Epoximise", - "other_name": null, - "pronunciation": "ee-POX-i-mise", - "spell_type": "Transfiguration", - "description": "Adheres one object to another, as if they had been glued together.", - "mention": "This spell is often used by students to adhere each other's belongings to their desks (or, unfortunately, their hands).", - "etymology": "Epoximise comes from the English word epoxy, which is a type of adhesive.", - "note": "This spell may be the Permanent Sticking Charm or a variation." - }, - { - "id": 91, - "name": "Erecto", - "other_name": null, - "pronunciation": "eh-RECK-toh", - "spell_type": "Charm", - "description": "Used to erect a tent or other upright structure.", - "mention": "Used by Hermione Granger to construct a shelter for her, Harry Potter, and Ronald Weasley in 1997.", - "etymology": "Erectum is past principle of erigere, which is Latin for \"to erect\".", - "note": null - }, - { - "id": 92, - "name": "Evanesce", - "other_name": null, - "pronunciation": "ev-an-ES-key", - "spell_type": "Transfiguration", - "description": "Vanishes the target", - "mention": null, - "etymology": null, - "note": "This and the Vanishing Spell are almost certainly the same spell." - }, - { - "id": 93, - "name": "Evanesco", - "other_name": "Vanishing Spell", - "pronunciation": "ev-an-ES-koh", - "spell_type": "Transfiguration", - "description": "Vanishes the target. Vanished things go \"into non-being, which is to say, everything.\"", - "mention": "Used by William Weasley to vanish a bundle of old scrolls whilst cleaning 12 Grimmauld Place in 1995.", - "etymology": "From \"evanescene\", meaning \"something that is fleeting or disappears.", - "note": null - }, - { - "id": 94, - "name": "Everte Statum", - "other_name": null, - "pronunciation": "ee-VER-tay STAH-tum", - "spell_type": "Spell", - "description": "Throws the victim backward, similarly to being thrown.", - "mention": "Draco Malfoy used this spell on Harry Potter in 1992 during the Duelling Club.", - "etymology": "The Latin words everte, which means \"to throw out\" and statua, from the same language, meaning \"image\".", - "note": null - }, - { - "id": 95, - "name": "Expecto Patronum", - "other_name": "Patronus Charm", - "pronunciation": "ecks-PECK-toh pah-TROH-numb", - "spell_type": "Charm", - "description": "This charm is a highly powerful and advanced protective spell which will conjure a spirit guardian of their positive emotions to defend against dark creatures; it can also send messages to other witches or wizards. The Patronus takes the form of an animal, unique to each person who casts it. The form of a Patronus can change when one has undergone a period of heightened emotion.", - "mention": "Taught to Harry Potter by Remus Lupin during his Anti-Dementor lessons; This is the only known spell effective against Dementors or Lethifolds.", - "etymology": "Patronus means \"protector\" in Latin; in archaic Latin, it means \"father\"; considering the form Harry's takes, this is interesting. The Latin word expecto means \"I await\"", - "note": null - }, - { - "id": 96, - "name": "Expelliarmus", - "other_name": "Disarming Charm", - "pronunciation": "ex-PELL-ee-ARE-muss", - "spell_type": "Charm", - "description": "Forces whatever an opponent is holding to fly out of their hand. It was considered to be Harry Potter's signature spell.", - "mention": "Used by Severus Snape on Gilderoy Lockhart during a live duelling demonstration during the first and last meeting of the Duelling Club in 1992.", - "etymology": "Probably a combination of Latin expello, meaning \"expel\", and arma, meaning \"weapon\".", - "note": null - }, - { - "id": 97, - "name": "Expulso", - "other_name": "Expulso Curse", - "pronunciation": "ecks-PUHL-soh", - "spell_type": "Curse", - "description": "Provokes an explosion, unique in that it uses pressure to do so as opposed to heat.", - "mention": "Used by Antonin Dolohov during a fight in a cafe in 1997.", - "etymology": "From expulsum, which is past principle of expellere, which means \"expel\".", - "note": null - }, - { - "id": 98, - "name": "Extinguishing Spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Puts out fires.", - "mention": "Charlie Weasley and his friends would use this spell should something go wrong in the tournament.", - "etymology": null, - "note": null - }, - { - "id": 99, - "name": "False memory charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Implants a false memory in the victim without them realising it was not originally theirs.", - "mention": "Voldemort used this spell twice; firstly in 1943 upon his uncle Morfin Gaunt, then sometime later on the house-elf Hokey. Both instances were to hide his crimes and make the victims believe they were responsible. It is likely that Kingsley Shacklebolt used this spell on Marietta Edgecombe in 1996 in order to prevent her from revealing Dumbledore's Army to Cornelius Fudge. This is reinforced by Dumbledore stating that Shacklebolt was \"remarkably quick on the uptake\" in modifying her memory. It is possible that Professor Horace Slughorn used this in the next school year to hide his memory of Voldemort asking him about Horcruxes, although as he retained awareness of the true memory his spell may be a different one. It is also possible that he simply repressed it to such a degree that it could not be extracted from him against his will, as the memory he gave Dumbledore simple went blank at the right times and was replaced by a disembodied shouting, rather than images; this was noted to be crudely done. Hermione Granger used this in 1997 to make her parents believe they were named Wendell and Monica Wilkins respectively, that they have no daughter, and to make them move to Australia in order to protect them from Voldemort and his Death Eaters.", - "etymology": null, - "note": null - }, - { - "id": 100, - "name": "Feather-light charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Makes an object light as a feather.", - "mention": "Harry Potter contemplated using this in 1993 to lighten his trunk so that he could carry it by broom to Gringotts, though he decided against it.", - "etymology": null, - "note": null - }, - { - "id": 101, - "name": "Ferret to human", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Transforms a ferret into a human.", - "mention": "It was used by Minerva McGonagall on Draco Malfoy in 1994.", - "etymology": null, - "note": null - }, - { - "id": 102, - "name": "Ferula", - "other_name": "Bandaging Charm", - "pronunciation": "fer-ROOL-lah", - "spell_type": "Conjuration, Healing spell", - "description": "Conjures up bandages and wraps them around a wound, splinting any broken bones.", - "mention": "Used by Remus Lupin in 1994 to bind Ronald Weasley's broken leg.", - "etymology": "Latin ferula means \"walking-stick\" or \"splint\".", - "note": null - }, - { - "id": 103, - "name": "Fianto Duri", - "other_name": null, - "pronunciation": "fee-AN-toh DOO-ree", - "spell_type": "Charm", - "description": "A defensive charm which, based on the etymology, strengthens shield spells, and perhaps objects in general, in a similar way to Duro.", - "mention": "Used to protect Hogwarts School of Witchcraft and Wizardry in 1998.", - "etymology": "Latin fiant means \"become\" and duri means \"hard\".", - "note": null - }, - { - "id": 104, - "name": "Fidelius Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "An immensely complex charm used to hide secret information within the soul of the charm's recipient, who is called a Secret-Keeper. The information is irretrievable unless the Secret-Keeper willingly chooses to reveal it, and only the aforementioned person can do so.", - "mention": "In 1993, it was explained that when Harry was merely an infant, he and his parents were hidden from Voldemort with this charm; from 1995 onward it was used to protect Grimmauld Place, and in 1998 it was used to protect Shell Cottage.", - "etymology": "Latin fidelis, which means \"faithful\".", - "note": "Although when a Secret-Keeper dies the secret they held can never be revealed to anyone else, in 1997 it is apparent that upon the Keeper's death all those who had been told the secret become keepers in turn." - }, - { - "id": 105, - "name": "Fiendfyre", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Unleashes cursed fire that takes the shape of animals that actively seek out living targets and burn anything in its path, including nearly indestructable substances such as horcruxes. In addition, this fire is made even more dangerous due to the fact that it is extremely difficult to control, and cannot be extinguished with normal or enchanted water.", - "mention": "Though there are numerous instances when it may have been used, it was only proven to have been used in 1998 by Vincent Crabbe, who was killed by it.", - "etymology": null, - "note": null - }, - { - "id": 106, - "name": "Finestra", - "other_name": "Finestra spell", - "pronunciation": "fi-NESS-tra", - "spell_type": "Charm", - "description": "Shatters glass.", - "mention": "On 6 December 1926, Newt Scamander shattered the front window of the Voclain & Co. jewellery store in New York using this spell to try and recapture his escaped niffler when he saw it loose inside the store stealing things.", - "etymology": null, - "note": null - }, - { - "id": 107, - "name": "Finite Incantatem", - "other_name": "General Counter-Spell", - "pronunciation": "fi-NEE-tay in-can-TAH-tem", - "spell_type": "Counter-Spell", - "description": "Terminates all spell effects in the vicinity of the caster.", - "mention": "Severus Snape used this to restore order to the Duelling Club in 1992, after the event had descended into utter chaos.", - "etymology": "Latin finire, meaning \"to finish\", and incantatem.", - "note": null - }, - { - "id": 108, - "name": "Finger-removing jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Removes a person's fingers.", - "mention": "Gunhilda Kneen jinxed her husband with this spell.", - "etymology": null, - "note": null - }, - { - "id": 109, - "name": "Firestorm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Produces a ring of fire from the wand.", - "mention": "Albus Dumbledore used this spell to rescue Harry from Inferi in 1997.", - "etymology": null, - "note": null - }, - { - "id": 110, - "name": "Flagrante Curse", - "other_name": null, - "pronunciation": "flah-GRAHN-tay", - "spell_type": "Curse", - "description": "Causes objects to burn on contact.", - "mention": "The Lestrange Vault had this curse on it.", - "etymology": null, - "note": null - }, - { - "id": 111, - "name": "Flagrate", - "other_name": null, - "pronunciation": "flah-GRAH-tay", - "spell_type": "Charm", - "description": "Writes in midair with firey marks.", - "mention": "Tom Riddle used this spell to write his name; Hermione Granger used it three years later to mark some doors.", - "etymology": "From the Latin flagrate, meaning \"a burn\".", - "note": null - }, - { - "id": 112, - "name": "Flame-Freezing Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Causes fire to tickle those caught in it instead of burning them.", - "mention": "Third year students wrote an essay on the use of this charm in medieval witch-burnings; Wendelin the Weird was burned forty-seven times.", - "etymology": null, - "note": "This may be the spell used in Floo Network, as well as when Albus Dumbledore set Tom Riddle's wardrobe aflame in 1938." - }, - { - "id": 113, - "name": "Flask-conjuring spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Conjuration", - "description": "Conjures a glass flask", - "mention": "On 1 May, 1998, Hermione Granger used this spell to collect the memories of a dying Severus Snape.", - "etymology": null, - "note": null - }, - { - "id": 114, - "name": "Flintifors", - "other_name": null, - "pronunciation": "FLINT-i-fors", - "spell_type": "Transfiguration", - "description": "Transforms objects into matchboxes.", - "mention": "In the 1980s, this spell was covered in third year transfiguration classes.", - "etymology": null, - "note": "This may be related to, or the incantation for Match to needle." - }, - { - "id": 115, - "name": "Flipendo", - "other_name": "Knockback Jinx", - "pronunciation": "fli-PEN-doh", - "spell_type": "Jinx", - "description": "Knocks objects and creatures backwards.", - "mention": "Taught in first year Defence Against the Dark Arts and Charms class.", - "etymology": null, - "note": null - }, - { - "id": 116, - "name": "Flipendo Duo", - "other_name": "Knockback Jinx Duo", - "pronunciation": "flih-PEN-doh DOO-oh", - "spell_type": "Jinx", - "description": "A more powerful version of Flipendo.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 117, - "name": "Flipendo Tria", - "other_name": null, - "pronunciation": "flih-PEN-doh TREE-ah", - "spell_type": "Jinx", - "description": "A more powerful version of Flipendo Duo; it is said to resemble a miniature tornado.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 118, - "name": "Flying Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "This spell is cast on broomsticks and flying carpets to allow them to fly.", - "mention": "Draco Malfoy mentioned this spell when insulting Ron Weasley's broomstick, wondering why anyone would charm it.", - "etymology": null, - "note": null - }, - { - "id": 119, - "name": "Fumos", - "other_name": "Smokescreen Spell", - "pronunciation": "FYOO-moss", - "spell_type": "Charm", - "description": "Defensive smokescreen that hinders visibility.", - "mention": "This spell is covered in The Dark Forces: A Guide to Self-Protection.", - "etymology": null, - "note": null - }, - { - "id": 120, - "name": "Fumos Duo", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "A more powerful version of Fumos.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 121, - "name": "Furnunculus", - "other_name": "Pimple Jinx", - "pronunciation": "fer-NUN-kyoo-luss", - "spell_type": "Jinx", - "description": "Covers the target in boils (or pimples).", - "mention": "Used by Harry Potter on Gregory Goyle.", - "etymology": "Latin furnunculus, meaning \"petty thief\", or English furuncle, a synonym for \"boil\".", - "note": null - }, - { - "id": 122, - "name": "Fur spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Causes fur to grow on the victim.", - "mention": "Fred and George Weasley used this spell on each other.", - "etymology": null, - "note": null - }, - { - "id": 123, - "name": "Geminio", - "other_name": "Doubling Charm", - "pronunciation": "jeh-MIH-nee-oh", - "spell_type": "Charm", - "description": "Duplicates the target. When used to duplicate objects indefinitely on purpose, is known as the Gemino Curse.", - "mention": "Used by Hermione Granger on Salazar Slytherin's Locket to disguise her presence from Dolores Umbridge.", - "etymology": "The Latin word gemini means \"twins\".", - "note": null - }, - { - "id": 124, - "name": "Glacius", - "other_name": "Freezing Spell", - "pronunciation": "GLAY-see-us", - "spell_type": "Charm", - "description": "Freezes the target with icy-cold air.", - "mention": null, - "etymology": "From Latin glacies, which means \"ice\".", - "note": "Not to be confused with the Freezing Charm, which merely immobilises things." - }, - { - "id": 125, - "name": "Glacius Duo", - "other_name": null, - "pronunciation": "GLAY-see-us DOO-oh", - "spell_type": "Charm", - "description": "A more powerful version of Glacius.", - "mention": null, - "etymology": "From Latin glacies, which means \"ice\".", - "note": null - }, - { - "id": 126, - "name": "Glacius Tria", - "other_name": null, - "pronunciation": "GLAY-see-us TREE-ah", - "spell_type": "Charm", - "description": "A more powerful version of Glacius Duo.", - "mention": null, - "etymology": "From Latin glacies, which means \"ice\".", - "note": null - }, - { - "id": 127, - "name": "Glisseo", - "other_name": null, - "pronunciation": "GLISS-ee-oh", - "spell_type": "Charm", - "description": "Causes the steps on a stairway to flatten into a slide.", - "mention": "Used by Hermione Granger to escape from Death Eaters.", - "etymology": "Probably derived from French glisser, meaning \"to slide\".", - "note": null - }, - { - "id": 128, - "name": "Green Sparks", - "other_name": null, - "pronunciation": null, - "spell_type": null, - "description": "Jet of green sparks that can be used to signal an emergency or as a minor duelling spell.", - "mention": "Taught in Defence Against the Dark Arts; When Hagrid, Harry and Hermione try to find an injured unicorn, Hagrid says that if it is found, they must send up green sparks.", - "etymology": null, - "note": "The incantation is almost certainly Verdimillious." - }, - { - "id": 129, - "name": "Gripping Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Helps someone grip something more effectively.", - "mention": "Used on Quaffles to help Chasers carry them.", - "etymology": null, - "note": null - }, - { - "id": 130, - "name": "Gytrash-conjuring spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Conjuration, Dark Arts", - "description": "Conjures luminous green Gytrashes from the wand, which can be commanded by the caster to attack an opponent.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 131, - "name": "Hair-thickening Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Thickens the victim's hair.", - "mention": "Severus Snape claimed Alicia Spinnet used this spell on her eyebrows, where as in reality she was jinxed by Miles Bletchley.", - "etymology": null, - "note": null - }, - { - "id": 132, - "name": "Harmonia Nectere Passus", - "other_name": null, - "pronunciation": "har-MOH-nee-a NECK-teh-ray PASS-us", - "spell_type": "Charm", - "description": "Repairs a Vanishing Cabinet.", - "mention": "Used by Draco Malfoy to mend a cabinet in 1996.", - "etymology": "Latin harmonia, which means \"harmony\", nectere, which means \"to bind\", and passus, which means \"step\".", - "note": null - }, - { - "id": 133, - "name": "Herbifors", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "This spell causes flowers to sprout from the victim.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 134, - "name": "Herbivicus", - "other_name": "Herbivicus Charm", - "pronunciation": "her-BIV-i-cuss", - "spell_type": "Charm", - "description": "Rapidly grows plants.", - "mention": "Taught by Professor Pomona Sprout in Herbology classes.", - "etymology": null, - "note": null - }, - { - "id": 135, - "name": "Hermione Granger's jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Causes a traitor to break out in boils spelling \"SNEAK\" on his or her forehead.", - "mention": "Hermione Granger designed and placed this jinx on the parchment signed by all members of Dumbledore's Army. When Marietta Edgecombe betrayed the D.A. to Dolores Umbridge, the jinx was triggered.", - "etymology": null, - "note": "This jinx was invented by Hermione, and may have been inspired by Furnunculus." - }, - { - "id": 136, - "name": "Homing spell", - "other_name": null, - "pronunciation": null, - "spell_type": null, - "description": "Offensive spells that follow their target with a constant speed after being cast.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 137, - "name": "Homenum Revelio", - "other_name": "Human-Presence-Revealing Spell", - "pronunciation": "HOM-eh-num reh-VEH-lee-oh", - "spell_type": "Charm", - "description": "Reveals human presence in the vicinity of the caster.", - "mention": "Used multiple times by various people in 1997.", - "etymology": "Most likely from Latin homo, meaning human, and \"reveal\", though the classical Latin form would be hominem instead of homenum, which shows Portuguese influence (\"man\" is homem in Portuguese).", - "note": "It can be used non-verbally; Dumbledore does so to detect Harry underneath his Invisibility Cloak." - }, - { - "id": 138, - "name": "Homonculous Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Tracks the movements of human beings. The charm has a powerful effect in that it is not fooled by various methods of concealment and disguise, such as invisibility cloaks, the Polyjuice Potion or transformed Animagi.", - "mention": "This charm was used on Marauder's Map by James Potter, Sirius Black, Remus Lupin, and Peter Pettigrew after charting the grounds and halls of Hogwarts Castle in order to track the movements of everyone within the castle grounds.", - "etymology": null, - "note": null - }, - { - "id": 139, - "name": "Homorphus Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Causes an Animagus or transfigured object to assume its normal shape.", - "mention": "According to Lockhart, he used it to force the Wagga Wagga Werewolf to take its human form.", - "etymology": "Latin homo meaning \"person\" and Greek morphosis meaning \"shaping\"", - "note": null - }, - { - "id": 140, - "name": "Horn tongue hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Transforms the target's tongue into a horn.", - "mention": "Harry Potter came across it while perusing the index of Basic Hexes for the Busy and Vexed in search of a way to overcome the dragon he knew he would have to face in the First Task of the Triwizard Tournament. He quickly ruled it out, however, realising it would only give the dragon yet another way to attack him.", - "etymology": null, - "note": null - }, - { - "id": 141, - "name": "Horton-Keitch Braking Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Charm patented by Basil Horton and Randolph Keitch that allows for broom-riders to stop more precisely. This spell was first used on the Comet 140 to prevent players from overshooting the goal posts and from flying off-sides.", - "mention": "Enchanted on all Comet 140 broomsticks.", - "etymology": null, - "note": null - }, - { - "id": 142, - "name": "Horcrux-making spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Dark Arts", - "description": "This spell allows a part of a wizard's soul to pass into an object, thereby making the object a Horcrux. One has to commit murder and take advantage of the soul's \"splitting apart\" by this supreme act of evil in order to be able to perform this spell, and it is probably very complex. In 1943, Horace Slughorn described the spell to a young Tom Riddle as encasing a portion of the torn soul and placing it within an object. The spell itself is described in detail in a banned book known as \"Secret of the Darkest Art\", which Hermione Granger summoned from Albus Dumbledore's office near the end of their sixth year. According to the text, use of this spell to separate the soul will make the remaining portion of the soul very fragile, and can only be reversed by \"remorse\" of the wrongs the creator had made; however, the pain caused by attempting to reverse the creation of a Horcrux can destroy the individual.", - "mention": "Used by Lord Voldemort while creating his Horcruxes.", - "etymology": null, - "note": null - }, - { - "id": 143, - "name": "Hot-Air Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Conjures a stream of hot air", - "mention": "Used by Hermione Granger in 1995 to dry off her robes. Also used shortly after to melt snow. Also was used by Albus Dumbledore in 1997 to dry Harry's and his own robes.", - "etymology": null, - "note": null - }, - { - "id": 144, - "name": "Hour-Reversal Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Reverses small amounts of time (up to five hours).", - "mention": "Used to create Time-Turners, as mentioned by Professor Saul Croaker; this charm is highly unstable.", - "etymology": null, - "note": null - }, - { - "id": 145, - "name": "Hover Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Used to make the target hover. It is one of the many lesser variations of the Levitation Charm.", - "mention": "Used by Dobby to demolish a pudding.", - "etymology": null, - "note": null - }, - { - "id": 146, - "name": "Hurling Hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Causes brooms to vibrate violently in the air and try to buck their rider off.", - "mention": "Professor Flitwick suggested that Harry's confiscated Firebolt may be jinxed with this spell.", - "etymology": null, - "note": "May be related to the broom jinx." - }, - { - "id": 147, - "name": "Illegibilus", - "other_name": null, - "pronunciation": "i-LEDJ-i-bull-is", - "spell_type": "Charm", - "description": "Makes writing impossible to read.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 148, - "name": "Immobulus", - "other_name": "Freezing Charm", - "pronunciation": "ih-MOH-byoo-luhs", - "spell_type": "Charm", - "description": "Immobilises and stops the actions of the target. It works both on living and inanimate things.", - "mention": "Hermione used it 1992 to freeze two Cornish Pixies. Horace Slughorn used Freezing Charms todisable a Muggle Burglar Alarm.", - "etymology": "From the Latin “immobilis”, meaning immovable.", - "note": null - }, - { - "id": 149, - "name": "Impedimenta", - "other_name": "Impediment Jinx", - "pronunciation": "im-ped-ih-MEN-tah", - "spell_type": "Jinx", - "description": "Slows down or stops the target.", - "mention": "Used in 1995 when Harry was practising for the Third Task of the Triwizard Tournament. In 1996, Harry saw in a memory that James Potter used it on Severus Snape. Also used in 1997 by Harry against the Inferi and Snape. Stronger uses of this spell seem capable of blowing targets away.", - "etymology": "Latin impedimentum (plural impedimenta), \"a hindrance\" or \"an impediment\".", - "note": null - }, - { - "id": 150, - "name": "Imperio", - "other_name": "Imperius Curse", - "pronunciation": "im-PEER-ee-oh", - "spell_type": "Curse", - "description": "Places the victim completely under the caster's control. The victim is put into a trance-like state, and becomes very suggestible to the commands of the caster. However, those who are strong willed may learn to resist it. One of the three \"Unforgivable Curses,\" the use of this curse on another human results in capital punishment or life sentence in Azkaban.", - "mention": "Used on many occasions. First seen in 1994 when Barty Crouch Jr, impersonating ex-Auror Alastor Moody, used it on a spider and later on students during a \"class demonstration\" in a Defence Against the Dark Arts class. While breaking into Gringotts in 1998, Harry used it on a goblin and a Death Eater when they became suspicious.", - "etymology": "Latin impero, I command, and English \"imperious\".", - "note": null - }, - { - "id": 151, - "name": "Imperturbable Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Creates an invisible magical barrier on an object, such as a door. This barrier bounces objects off of it, and muffles sounds.", - "mention": "The spell was used in 1995 by Hermione to trap Rita Skeeter within a bottle while she was in beetle form. It was also used by Molly Weasley in the same year on the door of the room in which an Order of the Phoenix meeting was being held, in order to prevent her sons, Fred and George, from eavesdropping.", - "etymology": null, - "note": null - }, - { - "id": 152, - "name": "Impervius", - "other_name": "Impervius Charm", - "pronunciation": "im-PUR-vee-us", - "spell_type": "Charm", - "description": "Makes an object repel water and mist.", - "mention": "Used by Hermione Granger in 1993 on Harry's glasses while in a Quidditch match and also by the Gryffindor Quidditch team. Also used in 1997, first by Ron to protect objects in Yaxley's office from rain, and then by Hermione to protect Harry, Ron and Griphook from the burning treasure in the Lestranges' vault.", - "etymology": "It is said that the Latin impervius means (and is the source of) \"impervious\"; although it is the source of the word, it is better translated as impassable, as in a mountain peak.", - "note": null - }, - { - "id": 153, - "name": "Inanimatus Conjurus", - "other_name": "Inanimatus Conjurus Spell", - "pronunciation": "in-an-ih-MAH-tus CON-jur-us", - "spell_type": "Transfiguration", - "description": "It is a spell of unknown effect, most likely used to conjure an inanimate object.", - "mention": "Mentioned briefly in 1995.", - "etymology": null, - "note": null - }, - { - "id": 154, - "name": "Incarcerous", - "other_name": "Incarcerous Spell", - "pronunciation": "in-KAR-ser-us", - "spell_type": "Conjuration", - "description": "Ties up the target with ropes conjured from thin air.", - "mention": "First heard in 1996, when Dolores Umbridge tries to hold off Centaurs. Also used by Harry on the Inferi in Voldemort's Crystal Cave in 1997 and also attempted to use it on Severus Snape in the same year.", - "etymology": "Probably English incarcerate, \"to imprison\". Possibly linked to the Latin in carcerem, \"in(to) prison\".", - "note": "A non-verbal version of this spell may have been used to tie up Remus Lupin by Severus Snape during the encounter in the Shrieking Shack, and then later Peter Pettigrew in 1994. It may also have been used by Quirrell in 1992, although he is said to have merely \"snapped his fingers\". Also, it may have been the spell Antonin Dolohov used non-verbally to bind Ron Weasley with \"shining black ropes\" in a skirmish on Tottenham Court Road." - }, - { - "id": 155, - "name": "Incendio", - "other_name": "Fire-Making Spell", - "pronunciation": "in-SEN-dee-oh", - "spell_type": "Charm, Conjuration", - "description": "Produces fire.", - "mention": "It was used in 1994 by Arthur Weasley to create a fire in the Dursleys' hearth so that he could use Floo powder there.", - "etymology": "Latin incendere, \"to set fire (to)\". Note that the first principal part of this verb (meaning \"I set fire\") is incendo, not incendio; the incantation does not match exactly any correct conjugation of the verb. Incêndio, in Portuguese (same pronunciation as in English) means 'huge fire'. \"Encender\" in Spanish means \"to ignite\" and \"Incendie\" in French means flame. (A plausible but less likely source might be that it is a back-formation from the English word \"incendiary,\" i.e., \"causing fire.\")", - "note": null - }, - { - "id": 156, - "name": "Incendio Duo", - "other_name": null, - "pronunciation": "in-SEN-dee-oh DOO-oh", - "spell_type": "Charm", - "description": "A stronger version of Incendio.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 157, - "name": "Incendio Tria", - "other_name": null, - "pronunciation": "in-SEN-dee-oh TREE-ah", - "spell_type": "Charm", - "description": "An improvement over both Incendio and Incendio Duo.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 158, - "name": "Inflatus", - "other_name": "Inflating Charm", - "pronunciation": "in-FLAY-tus", - "spell_type": "Charm", - "description": "Inflates the target, filling it with air.", - "mention": null, - "etymology": "The prefix 'Inflate' derives from the English verb \"to expand with oxygen\".", - "note": null - }, - { - "id": 159, - "name": "Informous", - "other_name": "Informous Spell", - "pronunciation": "in-FOR-m-es", - "spell_type": "Charm", - "description": "Informous is a spell that is used to complete one's Folio Bruti. A page with a brief description (including weaknesses and strengths) of the charmed creature is added to the caster's Folio Bruti.", - "mention": null, - "etymology": "The prefix Info derives from the English verb \"to inform\".", - "note": null - }, - { - "id": 160, - "name": "Instant Scalping Hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Instantly scalps all the hair off of a target.", - "mention": "Harry Potter came across it while browsing the index of Basic Hexes for the Busy and Vexed, trying to find a way to fight the dragon he knew he would have to face for the First Task of the Triwizard Tournament. He quickly decided it would be ineffective, because dragons do not have hair.", - "etymology": null, - "note": "This spell has similar effects to the Hair-Loss Curse." - }, - { - "id": 161, - "name": "Intruder Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Detects intruders and sounds an alarm.", - "mention": "Horace Slughorn used it on a Muggle-owned house he stayed in temporarily in 1996, but did not hear it go off when Albus Dumbledore and Harry Potter arrived, as he was in the bath.", - "etymology": null, - "note": null - }, - { - "id": 162, - "name": "Locomotor Wibbly", - "other_name": "Jelly-Legs Curse", - "pronunciation": "loh-koh-MOH-tor WIB-lee", - "spell_type": "Curse, Jinx", - "description": "Causes the victim's legs to collapse as if they were turned to jelly.", - "mention": "One of the spells mentioned in Curses and Counter-Curses by Vindictus Viridian, used on Harry, practising for the Third Task of the Triwizard Tournament, by Hermione. Also, Draco Malfoy was hit with this jinx (along with another one) at the end of the term.", - "etymology": null, - "note": null - }, - { - "id": 163, - "name": "Jelly-Brain Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Reduces the target's mental processes.", - "mention": "During the September 1999 riot that took place during the Puddlemere United/Holyhead Harpies Quidditch game, a lot of Harpy supporters were using this jinx.", - "etymology": null, - "note": "This spell may have been the spell that the Death Eaters hit Ron with in Harry Potter and the Order of the Phoenix in the Battle of the Department of Mysteries." - }, - { - "id": 164, - "name": "Jelly-Fingers Curse", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Causes target's fingers to become wobbly, making it uneasy for the victim to grasp objects.", - "mention": "After a June 1999 Pride of Portree/Appleby Arrows Quidditch game, the losing Seeker accused his opposite number of putting this curse on him as they both closed in on the Snitch.", - "etymology": null, - "note": null - }, - { - "id": 165, - "name": "Knee-reversal hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Puts knees on backward.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 166, - "name": "Lacarnum Inflamari", - "other_name": null, - "pronunciation": "la-KAR-num in-flah-MAR-ee", - "spell_type": "Charm", - "description": "Ignites cloaks.", - "mention": "Used by Hermione in 1991 to stop Snape from cursing Harry. The incantation is only used in the film adaptation of Harry Potter and the Philosopher's Stone.", - "etymology": "Latin inflammo, or the verb inflammatio meaning \"to set on fire\". Lacarnum, from the Latin “lacerna”, meaning “cloak”.", - "note": null - }, - { - "id": 167, - "name": "Langlock", - "other_name": null, - "pronunciation": "LANG-lock", - "spell_type": "Jinx", - "description": "Sticks a victim's tongue to the roof of their mouth. Created by Severus Snape.", - "mention": "Used by Harry on Peeves and twice on Argus Filch, to general applause.", - "etymology": "Probably from the French langue (\"tongue\") and the English \"lock\".", - "note": null - }, - { - "id": 168, - "name": "Lapifors", - "other_name": "Lapifors Spell", - "pronunciation": "LAP-ih-forz", - "spell_type": "Transfiguration", - "description": "Transforms the target into a rabbit.", - "mention": "Taught in third year Transfiguration class.", - "etymology": "From Latin lepus meaning hare, and forma meaning \"shape\".", - "note": null - }, - { - "id": 169, - "name": "Leek Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Makes leeks sprout out of the target's ears.", - "mention": "Used by a fighting Gryffindor fourth year and sixth year Slytherin before a Quidditch match in 1992.", - "etymology": null, - "note": null - }, - { - "id": 170, - "name": "Legilimens", - "other_name": "Legilimency Spell", - "pronunciation": null, - "spell_type": "Charm", - "description": null, - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 171, - "name": "Type: Charm\n", - "other_name": null, - "pronunciation": null, - "spell_type": null, - "description": "Allows the caster to delve into the mind of the victim, allowing the caster to see the memories, thoughts, and emotions of the victim.", - "mention": "Used by Severus Snape on Harry after he had a dream about Arthur Weasley being attacked by Nagini in 1995. Also during Occlumency lessons in 1996. Also used non-verbally by Snape on Harry in 1997 to allow him to see where Harry had learned the Sectumsempra spell.", - "etymology": "Latin legere (\"to read\") and mens (\"mind\").", - "note": null - }, - { - "id": 172, - "name": "Levicorpus", - "other_name": null, - "pronunciation": "leh-vee-COR-pus", - "spell_type": "Jinx", - "description": "Hoists people up into the air by their ankle. Created by Severus Snape.", - "mention": "Apparently invented by the Half-Blood Prince; it is a non-verbal-only spell (although it is whispered by Hermione in 1997). Harry Potter learnt it by reading the notes written by the Half-Blood Prince. He used it on Ron. The previous year, Harry had seen (through the Pensieve used by Severus Snape) his father, James Potter, use the spell against Professor Snape.", - "etymology": "Latin levare, \"raise\" and corpus, \"body\" or \"corpse\".", - "note": null - }, - { - "id": 173, - "name": "Liberacorpus", - "other_name": null, - "pronunciation": "LIB-er-ah-cor-pus", - "spell_type": "Counter-Jinx", - "description": "The counter-jinx to Levicorpus.", - "mention": "Harry used the spell in 1996 to counteract Levicorpus he had inadvertently cast on Ron.", - "etymology": "Latin liberare, \"to free\", and corpus, \"body\" or \"corpse\".", - "note": "It is not clear why Levicorpus has a specific counter-spell, and is not neutralised by simply using Finite Incantatem, although this could be due to the fact that Snape invented the spell and therefore made it irreversible except by its specific counter-curse." - }, - { - "id": 174, - "name": "Locomotor", - "other_name": "Locomotion Charm", - "pronunciation": "loh-kuh-MOH-tor", - "spell_type": "Charm", - "description": "Allows a witch or wizard to levitate a target a few inches off of the ground and then move said object in any given direction. Similarly to the Summoning Charm, a specific object can be moved by calling the object aloud after saying the incantation.", - "mention": "Used by Nymphadora Tonks in Harry Potter to move Harry's trunk from his room. Filius Flitwick similarly used it to move Sybill Trelawney's trunk after Dolores Umbridge sacked her. Parvati Patil and Lavender Brown used this spell to race their pencil cases around the edges of the table. A variation seen in 1998 is Piertotum Locomotor, which caused the statues of Hogwarts to be animated.", - "etymology": "Latin locus (place) and moto, \"set in motion\" (passive motor), or English locomotion.", - "note": null - }, - { - "id": 175, - "name": "Locomotor Mortis", - "other_name": "Leg-Locker Curse", - "pronunciation": "LOH-koh-moh-tor MOR-tis", - "spell_type": "Curse", - "description": "Sticks legs together.", - "mention": "Used by Draco Malfoy on Neville Longbottom in 1991. Used by Harry Potter on Draco Malfoy, who deflected it, in 1996.", - "etymology": "English locomotion, \"movement\" + Latin mortis, \"of death\".", - "note": "It is unclear whether or how this spell is related to the Locomotor spell. It could, however, be that the curse \"locks\" any part of the body in accordance to where it is pointed, or moves the body into a position of the caster's choosing whilst placing them into an immobile state. It is possible that Draco had pointed his wand at Neville and the curse \"locked\" his legs together." - }, - { - "id": 176, - "name": "Lumos", - "other_name": "Wand-Lighting Charm", - "pronunciation": "LOO-mos", - "spell_type": "Charm", - "description": "Illuminates the tip of the caster's wand, allowing the caster to see in the dark.", - "mention": "Used by Albus Dumbledore to illuminate the dark cave in 1997.", - "etymology": "Latin lumen, \"light\".", - "note": "opposite incantation, Nox, puts the light out." - }, - { - "id": 177, - "name": "Lumos Duo", - "other_name": "Wand-Lighting Charm Duo", - "pronunciation": "LOO-mos DOO-oh", - "spell_type": "Charm", - "description": "Creates a focused beam of light from the end of the wand. It is a variant of the Wand-Lighting Charm.", - "mention": null, - "etymology": "Lumos plus Latin duo, \"two\".", - "note": null - }, - { - "id": 178, - "name": "Lumos Maxima", - "other_name": null, - "pronunciation": "LOO-mos Ma-cks-ima", - "spell_type": "Charm", - "description": "Produces a blinding flash of bright white light from the tip of the wand. It is a variant of the Wand-Lighting Charm.", - "mention": "First practised by Harry in the home of the Dursleys, then used by Dumbledore to light up the cave of the Horcrux.", - "etymology": "Lumos + maxima, Latin \"greatest.\"", - "note": null - }, - { - "id": 179, - "name": "Lumos Solem", - "other_name": "Lumos Solem Spell", - "pronunciation": "LOO-mos SO-lem", - "spell_type": "Charm", - "description": "Produce a blinding flash of sunlight. It is a variant of the Wand-Lighting Charm.", - "mention": "Used by Hermione to free Ron from the Devil's Snare. The incantation was only used in the film adaptation of Harry Potter and the Philosopher's Stone.", - "etymology": "Derived from two words; the Latin lumen, meaning \"light\", and the Latin word for \"sun\", which in its accusative case is \"solem\".", - "note": "It is possible that the quality of the light is on the warmer solar end of the spectrum; Considering the known uses that the spell has been put to, it isn't that much of a stretch to presume that the spell is used to conjure Sunlight." - }, - { - "id": 180, - "name": "Magicus Extremos", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Partnership-based charm that temporarily increases the casters' spell power.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 181, - "name": "Melofors", - "other_name": "Melofors Jinx", - "pronunciation": null, - "spell_type": "Jinx", - "description": "Encases the victim's head in a pumpkin.", - "mention": "Cornelius Fudge was rumoured to have been a victim of this jinx after having been overpowered by Albus Dumbledore in a duel in 1996.", - "etymology": null, - "note": null - }, - { - "id": 182, - "name": "Meteolojinx Recanto", - "other_name": null, - "pronunciation": "mee-tee-OH-loh-jinks reh-CAN-toh.", - "spell_type": "Counter-Charm", - "description": "Causes weather effects caused by jinxes to cease.", - "mention": "Suggested in 1997 by Arthur Weasley to Ron (disguised as Reginald Cattermole by use of Polyjuice Potion) as the best way to clear up the rain jinx on a Ministry office. Also used by Bartemius Crouch Jr (Disguised as Alastor Moody) In 1994 to cease the weather effect of the Great Hall's Ceiling insisting it is broken as he told Dumbledore to \"Fix his ceiling\".", - "etymology": "Meteorology, the study of weather, the word jinx and recant, \"to withdraw or retract\". Interestingly in modern English recant means to say that you no longer hold a belief.", - "note": null - }, - { - "id": 183, - "name": "Mimblewimble", - "other_name": "Tongue-Tying Curse", - "pronunciation": "MIM-bull-wim-bull", - "spell_type": "Curse", - "description": "Ties the target's tongue in a knot, preventing them from making coherent speech, or saying incantations correctly, making it useful in duels.", - "mention": "Seen in 1997 as a deterrent to Severus Snape, or any other unwanted visitor of 12 Grimmauld Place, from betraying their location to anyone else.", - "etymology": null, - "note": null - }, - { - "id": 184, - "name": "Ministry of Magic Fog", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Patented charm used by the Ministry for Magic to conceal certain areas from Muggle view.", - "mention": "Seen in 1997 as a deterrent to Severus Snape, or any other unwanted visitor of 12 Grimmauld Place, from betraying their location to anyone else.", - "etymology": null, - "note": "In 1999, after the Invisibility Charm debacle at the Exmoor Quidditch Stadium, the Ministry considered trying this fog to hide the stadium from view." - }, - { - "id": 185, - "name": "Mobiliarbus", - "other_name": null, - "pronunciation": "mo-bil-lee-AR-bus", - "spell_type": "Charm", - "description": "Levitates wooden objects a few inches off of the ground and moves them in any given direction.", - "mention": "In 1993, Hermione Granger used the spell to move a Christmas Tree in The Three Broomsticks beside her table to hide Harry Potter, who was in Hogsmeade illegally.", - "etymology": "Latin mobilis, \"movable\" or \"flexible\", and arbor (alternatively arbos), \"tree\".", - "note": "It is possible that Mobilicorpus and Mobiliarbus are variations of the same basic spell, since they share the \"Mobili-\" stem." - }, - { - "id": 186, - "name": "Mobilicorpus", - "other_name": null, - "pronunciation": "moh-bil-lee-COR-pus", - "spell_type": "Charm", - "description": "Levitates and moves bodies.", - "mention": "Sirius Black used it on Severus Snape in 1994. It was probably used on Peter Pettigrew by Lord Voldemort in the graveyard to make him come forward.", - "etymology": "Latin mobilis, \"movable\", and corpus, \"body\".", - "note": "It is possible that Mobiliarbus and Mobilicorpus are variations of the same basic spell, since they share the \"Mobili-\" stem." - }, - { - "id": 187, - "name": "Molliare", - "other_name": "Cushioning Charm", - "pronunciation": "mull-ee-AR-ay", - "spell_type": "Charm", - "description": "Produces an invisible cushion over the target, is used primarily in the manufacturing of broomsticks.", - "mention": "Used by Hermione Granger to cushion her, Harry, and Ron's fall in Gringotts Wizard Bank in 1998.", - "etymology": null, - "note": "This spell may be related to Arresto Momentum and Spongify." - }, - { - "id": 188, - "name": "Molly Weasley's curse", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Like the Avada Kedavra curse, it kills (or freezes) the victim. It turns the body grey/blue (or paler) while it turns to stone and then another twin jinx can blast the body into pieces.", - "mention": null, - "etymology": null, - "note": "This may be Hardening Charm or Freezing Charm, although the latter is shown to be blue in 1992." - }, - { - "id": 189, - "name": "Morsmordre", - "other_name": null, - "pronunciation": "morz-MOR-druh", - "spell_type": null, - "description": "Conjures the Dark Mark, which is the sign of the Death Eaters.", - "mention": "Used by Barty Crouch Jr in 1994. Also seen in 1997 over the castle to lure Albus Dumbledore to his death. It was apparently invented by Lord Voldemort.", - "etymology": "Latin mors, \"death\", and mordere, meaning \"to bite\" (or its French derivative mordre); this would appear to be associated with the name of Lord Voldemort's followers, the Death Eaters. The English murder might also contribute.", - "note": "A possible translation might be \"take a bite out of death\", a fitting phrase for Death Eaters." - }, - { - "id": 190, - "name": "Mucus ad Nauseam", - "other_name": "Curse of the Bogies", - "pronunciation": "MYOO-kus ahd NAW-zee-um", - "spell_type": "Curse", - "description": "Gives the victim a nasty cold and an extremely runny nose that can cause the victim to collapse if it is not treated. The cold is accompanied with constant sneezing.", - "mention": "Mentioned by Professor Quirrell to his first-year class.", - "etymology": null, - "note": null - }, - { - "id": 191, - "name": "Muffliato", - "other_name": "Muffliato Charm", - "pronunciation": "muf-lee-AH-to", - "spell_type": "Charm", - "description": "Prevents others from hearing nearby conversations by filling peoples' ears with an unidentifiable buzzing.", - "mention": "It was used in 1996 by Harry Potter and Ron Weasley on various teachers and people such as Madam Pomfrey. It was created by Severus Snape. As pointed out by Hermione, it is probably not Ministry of Magic approved. It was also used in 1997 by Hermione Granger in protection of the camp-site where Harry and she stayed in hiding.", - "etymology": "English muffle, \"to quiet\", with a pseudo-Latin or pseudo-Italian ending.", - "note": null - }, - { - "id": 192, - "name": "Multicorfors", - "other_name": "Multicorfors Spell", - "pronunciation": "mull-tee-COR-fors", - "spell_type": "Transfiguration", - "description": "Multicorfors is a charm used to change the colour and style of one's clothing.", - "mention": "It may also be the same charm as when Harry accidentally changed the colour of his eyebrow, before he asked Luna to Slughorn's Christmas party. (Unlikely, as that was performed as a Transfiguration exercise, which is rather unrelated to Charms.) Could have possibly been used when Harry accidentally changed the colour of his teachers hair, at St. Grogory's Primary School.", - "etymology": null, - "note": null - }, - { - "id": 193, - "name": "Mutatio Skullus", - "other_name": null, - "pronunciation": "myoo-TAY-toh SKULL-us", - "spell_type": "Hex", - "description": "Mutates the victim's head, causing them to grows extra heads.", - "mention": "Used by Ancient Egyptian wizards, as noted by Ron Weasley in 1993.", - "etymology": null, - "note": null - }, - { - "id": 194, - "name": "Nox", - "other_name": "Wand-Extinguishing Charm", - "pronunciation": "NOCKSS", - "spell_type": "Charm", - "description": "Extinguishes wandlight. It the counter-charm for the Wand-Lighting Charm, Lumos.", - "mention": "In 1994, Harry Potter and Hermione Granger used this spell to turn off their wand-lights in the Shrieking Shack. Used in 1998 when Harry was in the passage beneath the Whomping Willow which leads to the Shrieking Shack. Lumos's power can be arranged so that a powerful wizard can make the charm illuminate intensely or to the wizards liking by loudness of incantation. For example \"LUMOS!!!\" would be powerful and \"lumos\" would be weaker. Also used by Harry Potter in 1998 to turn off the light so he could hide the Marauder's Map from Severus Snape.", - "etymology": "Latin nox, meaning \"night\".", - "note": null - }, - { - "id": 195, - "name": "Nebulus", - "other_name": null, - "pronunciation": "NEH-bu-lus", - "spell_type": "Charm", - "description": "Creates fog from the tip of the wand.", - "mention": "In 1927, Albus Dumbledore used this spell to conjure a fog in London to provide concealment for his meeting with Newton Scamander.", - "etymology": null, - "note": "This may be the incantation for the Ministry of Magic Fog." - }, - { - "id": 196, - "name": "Oculus Reparo", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Mends eyeglasses.", - "mention": "Used by Hermione in 1991 and 1992 to fix Harry's glasses.", - "etymology": null, - "note": "This spell is a variation of Reparo." - }, - { - "id": 197, - "name": "Obliteration Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Removes footprints.", - "mention": "Used by Hermione in 1995 to remove the footprints that she, Harry, and Ron left in the snow while walking to Hagrid's hut. Also used in 1997 by Hermione to remove the footprints she and Harry left behind them in the snow as they journeyed through Godric's Hollow.", - "etymology": null, - "note": "The Obliteration Charm is only known to remove footprints. There is no explanation as to what effect it can have on other things. It could possibly destroy things, according to its name." - }, - { - "id": 198, - "name": "Obliviate", - "other_name": "Memory Charm", - "pronunciation": "oh-BLI-vee-ate", - "spell_type": "Charm", - "description": "Erases specific memories.", - "mention": "First seen in 1993 when used by Gilderoy Lockhart on Harry and Ron; the spell backfired due to a faulty wand, costing Lockhart most of his own memory. Also, Hermione Granger used this spell to wipe her parents memories in 1997. Again, it was used in 1997 when Hermione Granger used the spell on 2 Death Eaters who had followed Harry, Ron, and Hermione after their escape from Bill Weasley's and Fleur Delacour's wedding.", - "etymology": "Latin oblivisci, \"forget\". The spell is most often used against Muggles who have seen something of the Wizarding world.", - "note": "Invented by Mnemone Radford, who became the Ministry's first Obliviator. The Ministry of Magic employees assigned to modifying the memories of Muggles are called Obliviators. The charm can be broken by powerful magic, or extreme duress, as Lord Voldemort was able to torture Bertha Jorkins into remembering details that Barty Crouch Snr had forced her to forget using the charm. In this case, it was also shown that if the charm is too powerful, it can cause the target to develop a bad memory. This spell differs from the False Memory Charm." - }, - { - "id": 199, - "name": "Obscuro", - "other_name": null, - "pronunciation": "ob-SKYUR-oh", - "spell_type": "Conjuration", - "description": "Blindfolds the target.", - "mention": "Used by Hermione Granger in 1997 to obstruct the portrait of Phineas Nigellus's view of their location.", - "etymology": "English word obscure, meaning \"unclear\" or \"unnoticeable\".", - "note": "This spell might only affect characters in paintings; there are no other references to this spell." - }, - { - "id": 200, - "name": "Oppugno", - "other_name": "Oppugno Jinx", - "pronunciation": "oh-PUG-noh", - "spell_type": "Jinx", - "description": "Causes targeted objects to attack a victim. It is particularly effective in conjunction with the Bird-Conjuring Charm.", - "mention": "Used by Hermione Granger in 1996 to attack Ron Weasley with a summoned flock of canaries during an argument.", - "etymology": "Latin oppugno, \"I attack\".", - "note": null - }, - { - "id": 201, - "name": "Orbis", - "other_name": "Orbix Jinx", - "pronunciation": "OR-biss", - "spell_type": "Jinx", - "description": "Sucks the target into the ground.", - "mention": null, - "etymology": "Orbis is Latin for 'circle', which reflects the spell's physical appearance.", - "note": null - }, - { - "id": 202, - "name": "Orchideous", - "other_name": null, - "pronunciation": "or-KID-ee-us", - "spell_type": "Conjuration", - "description": "Conjures a bouquet of flowers.", - "mention": "Used in 1994 by Mr Ollivander to test Fleur Delacour's wand. Probably used non-verbally by Tom Riddle to present flowers to Mrs Smith.", - "etymology": "English orchid and Latin suffix -eous, \"of or bearing (the root word)\".", - "note": "A variation of this spell may have been used when Hermione Granger conjured a Christmas wreath to place on James and Lily Potter's graves in 1997." - }, - { - "id": 203, - "name": "Oscausi", - "other_name": null, - "pronunciation": "os-SCOW-zee", - "spell_type": "Dark charm", - "description": "Seal someone's mouth shut, making it appear it was never there.", - "mention": "Used by Leta Lestrange on a girl from Gryffindor when they were both in their third year at Hogwarts. The Gryffindor girl was speaking ill of Lestrange behind her back until Lestrange emerged from hiding nearby, and muted the Gryffindor girl with this spell.", - "etymology": "Possibly derived as a portmanteau of os, Latin for \"mouth\", and clausi (a conjugated form of claudo), Latin for \"I shut\". It may additionally be a pun or wordplay on scusi, the Italian interjection for \"excuse me\".", - "note": null - }, - { - "id": 204, - "name": "Pack", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Packs luggage.", - "mention": "Used in 1994 by Remus Lupin in his office, and in 1995 by Nymphadora Tonks, once verbally and again non-verbally.", - "etymology": null, - "note": null - }, - { - "id": 205, - "name": "Papyrus Reparo", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Mends torn pieces of paper.", - "mention": "This spell was used by Newton Scamander in 1927 to restore a torn postcard from Porpentina Goldstein addressed to Queenie Goldstein.", - "etymology": null, - "note": "This spell is a variation of Reparo." - }, - { - "id": 206, - "name": "Patented Daydream Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Gives the spell caster a highly-realistic 30-minute daydream. Side effects include mild drooling and a vacant expression.", - "mention": "These were invented by Fred and George Weasley and sold in 1996 at their joke shop, presumably in the form of some kind of physical object, similar to Skiving Snackboxes.", - "etymology": null, - "note": null - }, - { - "id": 207, - "name": "Partis Temporus", - "other_name": null, - "pronunciation": "PAR-tis temp-OAR-us", - "spell_type": "Charm", - "description": "Creates a temporary gap in the target.", - "mention": "Used by Albus Dumbledore in the Crystal Cave in 1997. He uses it so that he and Harry can pass through the ring of fire used to ward off the Inferi.", - "etymology": "Partis is a plural form of the French verb partir, which means \"to separate,\" \"to go away,\" \"to leave,\" or \"to depart.\" Temporis is Latin for \"time.\"", - "note": null - }, - { - "id": 208, - "name": "Pepper breath hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Gives the victim fiery hot breath.", - "mention": "Harry Potter learned of this hex from Basic Hexes for the Busy and Vexed while researching spells to use during the Triwizard Tournament and decided not to use it against the dragon he would face in the First Task.", - "etymology": null, - "note": null - }, - { - "id": 209, - "name": "Periculum", - "other_name": null, - "pronunciation": "pur-ICK-you-lum", - "spell_type": "Charm", - "description": "Produces a burst of red sparks.", - "mention": "Used during the third task of the Tri-wizard Tournament by Harry.", - "etymology": "Periculum is Latin for \"danger\".", - "note": null - }, - { - "id": 210, - "name": "Permanent Sticking Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Sticks objects permanently in place.", - "mention": "First mentioned in 1995, when Sirius Black suspected that his mother's painting was fixed to the wall with such a Charm. It is implied that the portrait in the Muggle Prime Minister's office also has such a charm on it.", - "etymology": null, - "note": "It is never said whether the charm prevents the object from being removed by cutting away the section of wall. The incantation could be gluten sempra, meaning glue forever, or adher sempra, which means stick forever." - }, - { - "id": 211, - "name": "Peskipiksi Pesternomi", - "other_name": null, - "pronunciation": "PES-key PIX-ee PES-ter NO-mee", - "spell_type": "Charm", - "description": "The one time it was used, it had absolutely no effect.", - "mention": "Used by Lockhart to attempt to remove Cornish Pixies.", - "etymology": "English pesky meaning \"annoying\", English pixie meaning \"a supernatural being\", English pester meaning \"to annoy\", English no for negative and English me for the first person pronoun.", - "note": "It is not known if the spell works or not. It also suspiciously sounds like \"Pesky pixie pester no me.\"" - }, - { - "id": 212, - "name": "Petrificus Totalus", - "other_name": "Full Body-Bind Curse", - "pronunciation": "pe-TRI-fi-cus to-TAH-lus", - "spell_type": "Curse", - "description": "Used to temporarily bind the victim's body in a position much like that of a soldier at attention; the victim will usually fall to the ground.", - "mention": "Used in 1991 by Hermione, who was trying to prevent Neville from stopping her, Ron, and Harry from leaving the common room to hunt for the Philosopher's Stone, in the Hall of Prophecy during the Battle of the Department of Mysteries to petrify one of the Death Eaters pursuing the group, and used on Harry by Draco Malfoy in the Hogwarts Express in 1996.", - "etymology": "Latin petra, meaning \"stone\", and fieri (past participle factus), meaning \"to become\"; totalus comes from Latin \"totus\", meaning \"complete\".", - "note": null - }, - { - "id": 213, - "name": "Piertotum Locomotor", - "other_name": null, - "pronunciation": "peer-TOH-tuhm loh-kuh-MOH-tor", - "spell_type": "Charm", - "description": "Brings animates inanimate targets.", - "mention": "In the Battle of Hogwarts, Professor McGonagall used this spell to animate the suits of armour and statues within Hogwarts, to defend the castle. Possibly used by Albus Dumbledore to enchant the statues on the fountain in the entrance to the Ministry of Magic Department.", - "etymology": "Pier means \"friend\" or \"colleague\", totum refers to \"the whole\" or \"total\", and locomotor means \"the movement of\".", - "note": null - }, - { - "id": 214, - "name": "Piscifors", - "other_name": null, - "pronunciation": "PIS-ee-fors", - "spell_type": "Transfiguration", - "description": "Transforms things into fish.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 215, - "name": "Placement Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Maigcally places an object in or on a specific location. Placement Charms can be used to place a bridle on a Kelpie to render it harmless and docile.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 216, - "name": "Point Me", - "other_name": "Four-Point Spell", - "pronunciation": null, - "spell_type": "Spell", - "description": "Makes the caster's wand point due north.", - "mention": "Hermione Granger taught it to Harry Potter, who used it during the Triwizard Tournament, particularly to navigate the hedge maze during the Third Task.", - "etymology": null, - "note": null - }, - { - "id": 217, - "name": "Portus", - "other_name": null, - "pronunciation": "POR-tus", - "spell_type": "Charm", - "description": "Turns an object into a portkey.", - "mention": "Used by Albus Dumbledore in 1996.", - "etymology": "Latin porta, meaning \"gate\", or portare, meaning \"to carry\" (as in to carry the caster or target to another location). There is a Latin word portus, meaning \"harbour\", but it is inappropriate in this context.", - "note": "Portkeys were first seen in 1994 as a means for Harry, Hermione, and the Weasleys to go to the Quidditch World Cup. However, the spell used in its creation was not seen until 1995." - }, - { - "id": 218, - "name": "Prior Incantato", - "other_name": "Reverse Spell", - "pronunciation": "pri-OR in-can-TAH-toh", - "spell_type": "Charm", - "description": "Forces a wand to show an \"echo\" of the last spell it performed.", - "mention": "Used by Amos Diggory in 1994 to discover the last spell cast by Harry's wand after it was found in the hands of Winky, a house-elf.", - "etymology": "Latin prior, \"previous\", and incantare, \"to speak a spell\" (past participle incantatum).", - "note": "Can manifest in the form of the Reverse Spell effect, or Priori Incantatem, when wands with the same core attempt to do battle." - }, - { - "id": 219, - "name": "Protean Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Causes copies of an object to be remotely affected by changes made to the original.", - "mention": "First used in 1995. Hermione Granger put the charm on a number of fake Galleons. Instead of the serial number around the edge of the coin, the time and date of the next meeting of Dumbledore's Army appeared. It is possible that this charm is used on the Death Eaters' Dark Marks.", - "etymology": "The English word Protean derives from Proteus, a god in Greek Mythology. Proteus was a shape-shifter, able to take many forms. As a result, the word Protean has come to refer to versatility, flexibility, or an ability to assume many forms. \"Protean\" is also similar to \"protein\", derived from the same root, meaning a variable, flexible substance which forms strong bonds between its constituent parts.", - "note": "On Hermione's fake galleons, when the date changes, the coin becomes hot, alerting the owner to look at the coin. This may not be a feature of the original charm. It may be a Flagrante Curse, when the Protean Charm changes the coin the curse may activate. It would seem from this that you can decide what the effects on the charmed objects are. Possibly by saying something along the lines of \"Protean flagrante.\" although this is just speculation." - }, - { - "id": 220, - "name": "Protego", - "other_name": "Shield Charm", - "pronunciation": "pro-TAY-goh", - "spell_type": "Charm", - "description": "Invisible shield that reflects spells and blocks physical entities.", - "mention": "First seen in 1995, in which Harry is taught this spell by Hermione in preparation for the third task in the Triwizard Tournament. Albus Dumbledore uses a similar spell which reverses the construction of glass back into sand when Voldemort sent shards of glass to try to stab Dumbledore. Fred and George Weasley enchanted hats they dubbed \"shield hats\" with this spell in 1997.", - "etymology": "Latin protego, \"I cover\" or \"I protect\".", - "note": "The original description of this spell states that it rebounds minor jinxes to the caster. However, it is shown that it can also be used to reflect or lessen the effects of more powerful spells, depending on the skill of the caster. In 1998, it is also shown to be able to create a sort of force-field across an area, and is used frequently to prevent two participants in an argument from reaching each other." - }, - { - "id": 221, - "name": "Protego Diabolica", - "other_name": null, - "pronunciation": "pro-TAY-goh dia-BOHL-i-cub", - "spell_type": "Dark Arts", - "description": "Conjures a protective ring of black fire around the caster that only affects their enemies.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 222, - "name": "Protego Horribilis", - "other_name": null, - "pronunciation": "pro-TAY-goh horr-uh-BIHL-ihs", - "spell_type": "Charm", - "description": "A powerful shield charm against dark magic.", - "mention": "Cast by Professor Flitwick in an attempt to strengthen the castle's defences in the Battle of Hogwarts.", - "etymology": "Latin Protego, \"I protect\", and Horribilis, \"horrible , frightful, dreadful\".", - "note": null - }, - { - "id": 223, - "name": "Protego Maxima", - "other_name": null, - "pronunciation": "pro-TAY-goh MAX-ee-Ma \t\"TwoProtego\"", - "spell_type": "Charm", - "description": "A powerful shield charm against dark magic. A stronger and bigger version of Protego, especially when combined with other wizards casting it at the same time. Was so powerful that it could also disintegrate people that came too close and tried to enter it.", - "mention": "Cast by Professor Flitwick, Professor McGonagall, Professor Slughorn and Mrs Weasley in an attempt to strengthen the castle's defences in the Battle of Hogwarts.", - "etymology": "Latin Protego, \"I protect\"", - "note": null - }, - { - "id": 224, - "name": "Protego totalum", - "other_name": null, - "pronunciation": "pro-TAY-goh toh-TAH-lum", - "spell_type": "Charm", - "description": "Protects an area for an extended period of time.", - "mention": "In 1997, this was one of the spells used by Hermione Granger and Harry Potter to protect their camp site from unwanted visitors.", - "etymology": "Latin protego meaning \"to protect\" and Latin totus meaning \"as a whole\".", - "note": null - }, - { - "id": 225, - "name": "Purple Firecrackers", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Causes purple firecrackers to shoot out from the tip of one's wand.", - "mention": "On 31 October 1991, Albus Dumbledore used this spell to get the attention of panicking diners in the Great Hall when a troll was loose in the castle.", - "etymology": null, - "note": null - }, - { - "id": 226, - "name": "Pus-squirting hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Causes yellowish goo to squirt from one's nose.", - "mention": "Morfin Gaunt used this hex on Bob Ogden.", - "etymology": null, - "note": null - }, - { - "id": 227, - "name": "Quietus", - "other_name": "Quietening Charm", - "pronunciation": "KWIY-uh-tus", - "spell_type": "Charm", - "description": "Makes a target sound quieter. It is the counter-charm to the Amplifying Charm.", - "mention": "Used in 1994 by Ludo Bagman.", - "etymology": "Latin quietus, \"calm\" or \"quiet\".", - "note": null - }, - { - "id": 228, - "name": "Redactum Skullus", - "other_name": "Head Shrink Spell", - "pronunciation": "reh-DAK-tum SKULL-us", - "spell_type": "Hex", - "description": "Shrinks the head of the target. It is the counter-spell to Engorgio Skullus.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 229, - "name": "Reducio", - "other_name": "Shrinking Charm", - "pronunciation": "re-DOO-see-oh", - "spell_type": "Charm", - "description": "Makes an object shrink in size. Its counter-charm is the Engorgement Charm.", - "mention": "In 1997, Harry Potter, after checking his Blackthorn wand on the Bluebell flames with Engorgio, casts this spell to shorten the formerly enlarged flames.", - "etymology": "English reduce, \"to shrink\". (Latin has a verb reducere, present tense reduco. This is the source of the English \"reduce\", but has a different meaning.) Also in Italian Riduco first person present tense of Ridurre, same root of Latin Reducere.", - "note": "Whether Reducio could also be used by itself rather than countering Engorgio is unknown. If it could, it would shrink normal sized items into miniature versions of themselves. References in 1992 by Arthur Weasley to \"shrinking door keys\" make this seem likely." - }, - { - "id": 230, - "name": "Reducto", - "other_name": "Reductor Curse", - "pronunciation": "re-DUK-toh", - "spell_type": "Curse", - "description": "Breaks objects. In stronger usages, disintegrates them.", - "mention": "In 1995, Harry used it on one of the hedges of the Triwizard maze and ends up burning a small hole in it; in 1995, Gryffindors in Harry Potter's year referenced Parvati Patil as being able to reduce a table full of Dark Detectors to ashes, and Harry and his friends later used the spell in the Department of Mysteries against the Death Eaters, shattering many Prophecy Orbs in the process; in 1997, a member of the Order of the Phoenix attempted to use this spell to break down a door which Death Eaters had blocked when the Death Eaters had cornered Dumbledore in the Lightning Struck Tower.", - "etymology": "English reduce, \"to bring down;destroy\".", - "note": null - }, - { - "id": 231, - "name": "Refilling Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Refills whatever the caster points at with the drink originally in the container.", - "mention": "Used in 1996, when Harry noticed that Hagrid and Slughorn were running out of wine.", - "etymology": null, - "note": null - }, - { - "id": 232, - "name": "Reparifors", - "other_name": null, - "pronunciation": "re-PAR-i-fors", - "spell_type": "Healing Spell", - "description": "Reverts minor magically-induced ailments, such as paralysis and poisoning.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 233, - "name": "Reverte", - "other_name": null, - "pronunciation": "ree-VUHR-tay", - "spell_type": "Charm", - "description": "Returns objects to their original positions or states.", - "mention": "In 1927, Leta Lestrange used this spell on the record towers in the French Ministry of Magic Records Room at the French Ministry of Magic Headquarters, in an attempt to flee from pursuing Matagots. This sent all the record towers - previously summoned by Lestrange - flying backwards and spinning back into their original positions in the ground.", - "etymology": "Reverte is derived from Latin for \"you shall return\", being a second-person imperative form (singular, present, active) of the verb reverto (\"I return, or turn back\").", - "note": null - }, - { - "id": 234, - "name": "Relashio", - "other_name": "Revulsion Jinx", - "pronunciation": "ruh-LASH-ee-oh", - "spell_type": "Jinx", - "description": "Forces the target to release its grip on whatever it is holding.", - "mention": "Used by Harry Potter against Grindylows in the second task of the Triwizard Tournament. Also used in 1997 and 1998, when Hermione used this spell to free Mrs Cattermole from the chained chair and to free the Ukrainian Ironbelly on which they were to get out from Gringotts.", - "etymology": "Probably from the French verb relâcher =\"to release, to set free\", or Italian rilascio (pronounced the same way as the spell)= \"I release\".", - "note": null - }, - { - "id": 235, - "name": "Rennervate", - "other_name": "Reviving Spell", - "pronunciation": "RENN-a-vate", - "spell_type": "Charm", - "description": "Awakens an unconscious victim. It is consequently the counter-charm to the Stunning Spell.", - "mention": "In 1994, Amos Diggory used it to wake up Winky and Albus Dumbledore used it to wake up Viktor Krum. Harry Potter later used it to try and reawaken a cursed Dumbledore in the seaside cave.", - "etymology": "Rennervate means \"to energise.", - "note": null - }, - { - "id": 236, - "name": "Reparifarge", - "other_name": null, - "pronunciation": "reh-PAR-i-farj", - "spell_type": "Untransfiguration", - "description": "Used to reverse incomplete transformations.", - "mention": "Found in A Beginner's Guide to Transfiguration.", - "etymology": null, - "note": null - }, - { - "id": 237, - "name": "Reparo", - "other_name": "Mending Charm", - "pronunciation": "reh-PAH-roh", - "spell_type": "Charm", - "description": "Seamlessly repairs broken objects.", - "mention": "Used by Albus Dumbledore and Horace Slughorn to repair damage the latter had done to a Muggle home in Budleigh Babberton where he had been hiding.", - "etymology": "Latin reparo meaning \"to renew\" or \"repair\".", - "note": "Reparo has been seen to repair non-magical items, however it seems to have an inability at repairing magical items or items that have magic placed upon them. An example is Harry's Nimbus 2000 shown in 1993 which he is told is irreparable after it is destroyed by the Whomping Willow. Wands are also irreparable, as shown in 1992 when Ron's wand snapped after he and Harry crashed onto the Hogwarts grounds. Despite his use of Spellotape, Ron's wand malfunctioned throughout the year. Another example is in 1997 when Hermione tried to fix Harry's broken wand, which was snapped by her errant Blasting Curse. However, Harry repaired his wand with the Elder Wand. Since the Elder Wand is the most powerful wand in creation, it makes sense that it would produce the most powerful Mending Charm." - }, - { - "id": 238, - "name": "Repello Muggletum", - "other_name": "Muggle-Repelling Charm", - "pronunciation": "ruh-PEL-oh MUH-guhl-tuhm", - "spell_type": "Charm", - "description": "Keeps Muggles away from wizarding places by causing them to remember important meetings they missed and to cause the Muggles in question to forget what they were doing.", - "mention": "It was used to keep Muggles away from the Quidditch World Cup. Hogwarts was also said to be guarded by the Muggle-Repelling Charm. It was also used by Harry and Hermione on numerous occasions, among many other spells, to protect and hide their camp site in 1997.", - "etymology": null, - "note": null - }, - { - "id": 239, - "name": "Repello Inimicum", - "other_name": null, - "pronunciation": "re-PEH-lloh ee-nee-MEE-cum", - "spell_type": "Charm", - "description": "Disintegrates the persons entering this charm.", - "mention": "This spell was used by professors Filius Flitwick and Horace Slughorn along with Order of the Phoenix member Molly Weasley to protect Hogwarts Castle in 1998.", - "etymology": "Latin \"Repello\", meaning \"Push Back\" and \"inimicum\", the accusative singular form of \"inimīcus\" meaning \"foe\" or \"enemy\".", - "note": null - }, - { - "id": 240, - "name": "Revelio", - "other_name": "Revelio Charm", - "pronunciation": "reh-VEL-ee-oh", - "spell_type": "Charm", - "description": "Reveals secrets about a person or object.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 241, - "name": "Rictusempra", - "other_name": "Tickling Charm", - "pronunciation": "ric-tuhs-SEM-pra", - "spell_type": "Charm", - "description": "Tickles the target until they become weak with laughter.", - "mention": "By Harry Potter on Draco Malfoy in 1992, when they fought in the Duelling Club.", - "etymology": "Possibly the sum of two words; The Latin rictus, meaning \"The expanse of an open mouth\", and semper, meaning \"Always\". Rictus is generally used as an expression of terror, however, \"always an open mouth\" would, in most cases, correspond to the act of laughing uncontrollably.", - "note": null - }, - { - "id": 242, - "name": "Riddikulus", - "other_name": "Boggart Banishing Spell", - "pronunciation": "rih-dih-KUL-lus", - "spell_type": "Charm", - "description": "A spell used when fighting a Boggart, \"Riddikulus\" forces the Boggart to take the appearance of an object the caster is focusing on. Best results can be achieved if the caster is focusing on something humorous, with the desire that laughter will weaken the Boggart.", - "mention": "Taught by Remus Lupin during third year Defence Against the Dark Arts, where his students had the opportunity to practise the spell on an actual Boggart.", - "etymology": "Latin word ridiculus, \"laughable\" (but perhaps \"absurd\" or \"silly\" in this context).", - "note": "The effect of the spell seems to rely primarily on the state of mind of the caster. It doesn't actually change the shape of a boggart into something humorous, but rather whatever the caster is concentrating on at the moment of the casting, as when Neville was thinking of his grandmother's dress. Presumably, Mrs Weasley couldn't take her mind off of her fears for her family, so the Boggart was changed into other members of the family rather than something humorous." - }, - { - "id": 243, - "name": "Rose Growth", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Causes rosebushes grow at an unusually fast pace.", - "mention": null, - "etymology": null, - "note": "This spell may be related to Herbivicus." - }, - { - "id": 244, - "name": "Rowboat spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Makes boats row themselves.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 245, - "name": "Salvio Hexia", - "other_name": null, - "pronunciation": "SAL-vee-oh HECKS-ee-ah", - "spell_type": "Charm", - "description": "Protects against hexes.", - "mention": "Harry and Hermione cast this spell to strengthen their camp-site's defences against intruders in 1997.", - "etymology": "Possibly derived from the Latin \"salveo,\" meaning \"to be in good health,\" and used as a form of greeting and farewell, and a pseudo-Latin derivative of the English word \"hex\"—hence, \"Farewell, hexes!\"", - "note": "Possibly the Hex Deflection spells the fake Moody mentioned in 1994." - }, - { - "id": 246, - "name": "Sardine hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Makes the victim sneeze out sardines.", - "mention": "Rubeus Hagrid once had this hex used on him.", - "etymology": null, - "note": null - }, - { - "id": 247, - "name": "Sauce-making spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Conjuration", - "description": "Conjures a creamy sauce from the tip of the wand.", - "mention": "Molly Weasley used this spell in August of 1994 to pour some sauce in a pot to make dinner for her family, Harry Potter and Hermione Granger.", - "etymology": null, - "note": "According to Gamp's Law of Elemental Transfiguration, food can't be conjured. This implies that sauce is not considered \"good food,\" as things suitable for consumption may created with the spell, such as birds." - }, - { - "id": 248, - "name": "Scorching Spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Produces dancing flames which presumably scorch the opponent.", - "mention": "Professor McGonagall used this spell on Professor Snape in 1998.", - "etymology": null, - "note": null - }, - { - "id": 249, - "name": "Scourgify", - "other_name": "Scouring Charm", - "pronunciation": "SKUR-ji-fy", - "spell_type": "Charm", - "description": "Cleans objects", - "mention": "First used by Nymphadora Tonks to clean Hedwig's cage in 1995. Later, Ginny Weasley performed the spell to clean up the Stinksap on the Hogwarts Express, also used by James Potter on Severus Snape after he shouted various curses and obscenities at him.", - "etymology": "Perhaps related to English scour, \"clean\". -ify is a common English suffix meaning \"to make ...\". Therefore scourgify could mean \"to make clean\".", - "note": null - }, - { - "id": 250, - "name": "Sealant Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Magically seals envelopes.", - "mention": "All applicants for wand permits in the United States were required by the Magical Congress of the United States of America to close the envelope in which they sent their applications back to the Wand Permit Office with this spell.", - "etymology": null, - "note": "This may be the parchment-sealing spell that Dolores Umbridge used in 1995." - }, - { - "id": 251, - "name": "Sea urchin jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "This spell begins to transform the victim into a sea urchin.", - "mention": "This spell was used on 2 May, 1998, during the Battle of Hogwarts, by Percy Weasley on an Imperiused Pius Thicknesse.", - "etymology": null, - "note": null - }, - { - "id": 252, - "name": "Sectumsempra", - "other_name": null, - "pronunciation": "sec-tum-SEMP-rah", - "spell_type": "Curse", - "description": "Lacerates the target, as if they have been \"slashed by a sword.\" Subsequently, the target can easily bleed to death from the wounds. This curse was invented by Severus Snape, to be used against his personal enemies.", - "mention": "Used by Harry in 1997 against Draco Malfoy, and then later against both the Inferi in Lord Voldemort's Horcrux chamber, and Snape used it against George Weasley (was unintentional; aimed for a Death Eater that tried to curse Lupin) in the Order's flight from Privet Drive. Harry learned it in Snape's old Potions textbook. In 1998, the spell is said to be Severus Snape's \"signature\" spell.", - "etymology": "Latin sectum, \"cut\", and semper, \"always\".", - "note": "The spell can apparently be used against any object, but was not effective when used against Inferi because they could not feel pain or bleed. The movement of the wand seems to affect how someone is cut, suggested by the erratic patterns of slashes left on Draco Malfoy's face and chest, produced by Harry Potter's wild wand-swings while using the spell against Draco. Wounds caused by this spell can be healed as proved by Severus Snape who after Harry hit Draco Malfoy with this spell he healed Draco's wounds and told him to go and get treated with dittany at once so that he would even avoid any sign of any wound. However it seems that it depends on the caster's magical abilities because Molly Weasley could not heal and restore George Weasley's ear that was cursed off by this spell." - }, - { - "id": 253, - "name": "Shield penetration spell", - "other_name": null, - "pronunciation": "unknown", - "spell_type": "Spell", - "description": "Annihilates magical enchantments and shields.", - "mention": "Used by Voldemort to break the enchantments placed around Hogwarts School of Witchcraft and Wizardry in 1998 by Filius Flitwick, Minerva McGonagall, and Molly Weasley.", - "etymology": null, - "note": null - }, - { - "id": 254, - "name": "Shooting Spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Spell", - "description": "Used to shoot objects", - "mention": "This spell was used by Harry Potter and Ronald Weasley in 1997 on their Horcrux hunt in an attempt to catch a rabbit for food.", - "etymology": null, - "note": null - }, - { - "id": 255, - "name": "Smashing spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Spell", - "description": "Produces explosions", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 256, - "name": "Serpensortia", - "other_name": "Snake Summons Spell", - "pronunciation": "ser-pen-SOR-shah, SER-pehn-SOR-tee-ah", - "spell_type": "Conjuration", - "description": "Conjures a serpent from the caster's wand.", - "mention": "Used by Draco Malfoy while duelling Harry Potter in 1992.", - "etymology": "Latin serpens meaning \"a snake\" and Latin ortis meaning \"source\".", - "note": null - }, - { - "id": 257, - "name": "Silencio", - "other_name": "Silencing Charm", - "pronunciation": "sih-LEN-see-oh", - "spell_type": "Charm", - "description": "Makes something silent.", - "mention": "First used by Hermione in 1996 to silence a frog and a raven in Charms class, then later used to silence a Death Eater that was trying to tell his comrades where they were.", - "etymology": "Probably Latin silentium, \"silence\". Also, silencio and silêncio (which is closer to the English pronunciation) mean \"silence\" in Spanish and Portuguese, respectively.", - "note": null - }, - { - "id": 258, - "name": "Skurge", - "other_name": "Skurge Charm", - "pronunciation": "SKURJ", - "spell_type": "Charm", - "description": "Cleans up ectoplasm and frightens ghosts and other spirits.", - "mention": "Taught in second year Charms class.", - "etymology": null, - "note": null - }, - { - "id": 259, - "name": "Slippery Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Makes an object slippery and difficult to hold.", - "mention": "Mentioned in Harry Potter: Hogwarts Mystery", - "etymology": null, - "note": null - }, - { - "id": 260, - "name": "Slugulus Eructo", - "other_name": "Slug-vomiting Charm", - "pronunciation": null, - "spell_type": "Curse", - "description": "Forces the victim to burp up slimy slugs.", - "mention": "In 1992, Ronald Weasley attempted to curse Draco Malfoy with this spell after the latter insulted Hermione Granger, but was unsuccessful as his wand at the time was broken, and thus his curse backfired on himself.", - "etymology": null, - "note": null - }, - { - "id": 261, - "name": "Sonorous Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "This charm emits a magnified roar from the tip of the wand. This noise disrupts all in its path, and can even be used to harm opponents.", - "mention": null, - "etymology": null, - "note": "Not to be confused with the Amplifying Charm, Sonorus." - }, - { - "id": 262, - "name": "Sonorus", - "other_name": "Amplifying Charm", - "pronunciation": "soh-NOHR-uhs", - "spell_type": "Charm", - "description": "Makes the target sound louder. The counter-charm is the Quietening Charm, Quietus.", - "mention": "By Ludo Bagman in 1994 at the beginning of the Quidditch World Cup and by Albus Dumbledore several times in the Triwizard Championship. Used by Lord Voldemort several times during the Battle of Hogwarts in 1998.", - "etymology": "Latin sonorus, \"loud; noisy\".", - "note": null - }, - { - "id": 263, - "name": "Specialis Revelio", - "other_name": null, - "pronunciation": "spe-see-AL-is reh-VEL-ee-oh", - "spell_type": "Charm", - "description": "Reveals spells cast on objects or potions.", - "mention": "Used by Hermione Granger to find out more of Harry's Advanced Potion-Making book in 1996. Used by Ernie Macmillan to find out ingredients of a potion.", - "etymology": "Latin specialis, \"particular;individual\" and revelare (present tense revelo), \"unveil\".", - "note": "In 1994, Severus Snape cast a similar spell, but with different words (\"Reveal your secrets!\"), on the Marauder's Map, though he may have just been saying those words as he cast the spell non-verbally." - }, - { - "id": 264, - "name": "Sponge-Knees Curse", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Makes the target's legs spongy, making it difficult for them to walk.", - "mention": "Used during the September 1999 riot that took place at a Puddlemere vs. Holyhead Harpies match. The Puddlemere supporters used this curse against the Holyhead Harpies supporters in retaliation to the Jelly-Brain Jinx.", - "etymology": null, - "note": "This spell is similar in effect to the Jelly-Legs Curse." - }, - { - "id": 265, - "name": "Spongify", - "other_name": "Softening Charm", - "pronunciation": "SPUN-ji-fye", - "spell_type": "Charm", - "description": "Softens objects, making them rubbery and bouncy.", - "mention": "This charm is found in The Standard Book of Spells, Grade 1.", - "etymology": null, - "note": null - }, - { - "id": 266, - "name": "Squiggle Quill", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Transforms writing quills into worms.", - "mention": null, - "etymology": null, - "note": "This spell may be Vermiculus." - }, - { - "id": 267, - "name": "Stealth Sensoring Spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Detects those under magical disguise.", - "mention": "In 1996, Professor Umbridge cast this around her office.", - "etymology": null, - "note": null - }, - { - "id": 268, - "name": "Steleus", - "other_name": null, - "pronunciation": "STEH-lee-us, or perhaps STEH-nee-us", - "spell_type": "Hex", - "description": "A hex that causes the victim to sneeze for a short period of time. This spell is used in duelling to distract the opponent.", - "mention": null, - "etymology": "Steleus derives from the Latin sternuo, meaning I sneeze.", - "note": null - }, - { - "id": 269, - "name": "Stinging Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Stings the flesh of a target. This spell is also known as", - "mention": "Harry Potter inadvertently used one on Severus Snape during Occlumency lessons in 1996. It was non-debilitating in that instance, but it is stronger when intentionally cast, as shown by the results of Hermione Granger's Stinging Hex used on Harry Potter in 1998 to purposefully distort Harry's appearance.", - "etymology": null, - "note": "Also known as the Stinging Hex." - }, - { - "id": 270, - "name": "Stretching Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Stretches the target.", - "mention": "Molly Weasley remarked in 1996 that recent growth spurts had made her son Ron and his friend, Harry Potter, look as if this jinx had been cast upon them both.", - "etymology": null, - "note": null - }, - { - "id": 271, - "name": "Stupefy", - "other_name": "Stunning Spell", - "pronunciation": "STOO-puh-fye", - "spell_type": "Charm", - "description": "Stuns the target, rendering them unconscious.", - "mention": "Often; particularly by a number of wizards and witches (including Dolores Umbridge) against Minerva McGonagall in 1996. It's also taught by Harry in his D.A. meetings.", - "etymology": "English stupefy, which means 'to put into a stupor', a temporary vegetative state.", - "note": "The physical manifestation of the spell is a beam of red light emanating from the caster's wand. The spell wears off after a short time, and can be countered by Rennervate. Nearly useless on magic-resistant creatures such as dragons, trolls and giants unless more than one Stupefy spell is used at the same time. The force of the spell is additive or perhaps even exponential, and it can cause severe injury if many spells are used on a target that is not normally resistant to its effects. Hagrid, as a half-giant, was impervious to this spell - or at least, a lone one." - }, - { - "id": 272, - "name": "Supersensory Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Grants the caster to have enhanced senses, or to be able to sense things they would not normally sense.", - "mention": "Mentioned by Ron outside of the Hogwarts Express in 2017 as a potential substitute for using mirrors while driving a Muggle auto mobile.", - "etymology": null, - "note": null - }, - { - "id": 273, - "name": "Surgito", - "other_name": null, - "pronunciation": "SUR-jee-toh", - "spell_type": "Counter-charm", - "description": "Counter-charm that can be used to remove enchantments.", - "mention": "In 1927, Newton Scamander used Surgito to lift an enchantment that was placed on Jacob Kowalski. As a result of the spell, Kowalski awoke from the dreamlike enchanted state, and regained an awareness of reality in the present.", - "etymology": "Surgito is a Latin word in the imperative form meaning \"you/he/she shall arise, or get up\", and is a conjugation of the verb surgo (\"I arise\"). The etymology is appropriate, considering that the effects of the spell on Jacob Kowalski can be likened to waking up from a confused, dreamlike state.", - "note": null - }, - { - "id": 274, - "name": "Switching Spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Switches two targets simultaneously.", - "mention": "Harry contemplated using this spell against his dragon in the first task of the Triwizard Tournament. ((He considered swapping its fangs for wine gums)). Neville Longbottom misuses the spell, transplanting his ears onto a cactus.", - "etymology": null, - "note": null - }, - { - "id": 275, - "name": "Taboo", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "A jinx which may be placed upon a word or a name, so that whenever that word is spoken, a magical disturbance is created which alerts the caster of the Taboo to the location of the speaker. Any protective enchantments in effect around the speaker are broken when the Tabooed word is spoken aloud.", - "mention": "This curse was placed on the word \"Voldemort\"; Harry, Ron and Hermione are tracked this way to Tottenham Court Road. Ron tells the other two to stop using the word as he began to fear the name might be a curse, later discovering it to be a Taboo. Later, Harry accidentally says Voldemort's name again, resulting in the trio being caught by Death Eaters and taken to Malfoy Manor.", - "etymology": null, - "note": null - }, - { - "id": 276, - "name": "Tail-growing hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Causes the victim to grow a tail.", - "mention": "When Miranda Goshawk had her Book of Spells printed, she gave copies to her sisters that had various misprints in them; one such misprint somehow gave her sister Romilda a tail. Timothy Blenkinsop was hit with this hex when he was caught in the crossfire of a Puddlemere United vs. Holyhead Harpies riot.", - "etymology": null, - "note": null - }, - { - "id": 277, - "name": "Tarantallegra", - "other_name": "Dancing Feet Spell", - "pronunciation": "ta-RON-ta-LEG-gra", - "spell_type": "Jinx", - "description": "Makes a target's legs spasm wildly out of control, making it appear as though they are dancing.", - "mention": "First used by Draco Malfoy on Harry Potter in the Duelling Club in 1992.", - "etymology": "Italian tarantella, a kind of fast country dance once popular in parts of Italy, supposedly from the frantic motion caused by the bite of a tarantula; and allegro, a musical term meaning \"quick\".", - "note": null - }, - { - "id": 278, - "name": "Teacup to tortoise", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Transforms a teacup into a tortoise.", - "mention": "Seen on the Scholastic Harry Potter Official Site.", - "etymology": null, - "note": "May be related to the Teapot to tortoise spell covered in the third year at Hogwarts School of Witchcraft and Wizardry." - }, - { - "id": 279, - "name": "Teapot to tortoise", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration", - "description": "Transforms a teapot into a tortoise.", - "mention": "Third years at Hogwarts School of Witchcraft and Wizardry were required to cast the spell during their final exams.", - "etymology": null, - "note": "May be related to the teapot to Teacup to tortoise spell." - }, - { - "id": 280, - "name": "Teeth-straightening spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Straightens crooked teeth.", - "mention": "Sir Nicholas de Mimsy-Porpington attempted to use this spell on Lady Grieve at her request, but failed and gave her a tusk instead. He was executed the following morning. After he returned as a ghost, Nearly-Headless Nick recounted the incident in a ballad.", - "etymology": null, - "note": null - }, - { - "id": 281, - "name": "Teleportation Spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Spell", - "description": "Vanishes objects which then appear elsewhere.", - "mention": "In 1996, Albus Dumbledore used this to transport Harry Potter's school supplies, clothes, and owl to the Burrow.", - "etymology": null, - "note": null - }, - { - "id": 282, - "name": "Tentaclifors", - "other_name": null, - "pronunciation": null, - "spell_type": "Transfiguration, Jinx", - "description": "Transfigures the target's head into a tentacle.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 283, - "name": "Tergeo", - "other_name": null, - "pronunciation": "TUR-jee-oh", - "spell_type": "Charm", - "description": "Siphons liquid and cleans objects.", - "mention": "Hermione Granger used the spell in 1996 to remove blood from Harry's face. It is later used to remove spilled ink from parchment. It was also used in 1997 to clean off a handkerchief by Ron and to dust off a picture of Gellert Grindelwald in Bathilda Bagshot's house by Harry Potter.", - "etymology": "Latin tergere, \"wipe off; cleanse\".", - "note": null - }, - { - "id": 284, - "name": "Titillando", - "other_name": "Tickling Hex", - "pronunciation": "ti-tee-LAN-do", - "spell_type": "Hex", - "description": "Tickles and weakens the victim.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 285, - "name": "Toenail-growing hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Causes the toenails to grow at an extreme and uncontrollable rate.", - "mention": "In 1996, Harry used this to much applause from classmates, on Vincent Crabbe.", - "etymology": null, - "note": "This is a hex that is probably not approved by the Ministry of Magic, as it was invented by Severus Snape." - }, - { - "id": 286, - "name": "Transmogrifian Torture", - "other_name": null, - "pronunciation": null, - "spell_type": "Curse", - "description": "Tortures the victim to death.", - "mention": "Gilderoy Lockhart suggested that it was this curse that \"killed\" Mrs Norris after she was really found petrified on a torch bracket.", - "etymology": "English \"transmogrify\", meaning \"to change or alter greatly, often to grotesque effect\", possibly implying that the curse changes the shape of the victim to cause pain.", - "note": "The incantation to this curse is possibly Transmogrify." - }, - { - "id": 287, - "name": "Trip Jinx", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "Forces the target to trip and fall over.", - "mention": "Seen in 1996. It was cast successfully on Harry Potter by Draco Malfoy, when he and other members of the Inquisitorial Squad attempted to round up members of Dumbledore's Army.", - "etymology": null, - "note": null - }, - { - "id": 288, - "name": "Twitchy-Ears Hex", - "other_name": null, - "pronunciation": null, - "spell_type": "Hex", - "description": "Causes the victim's ears to twitch.", - "mention": "Miranda Goshawk recommended this hex to be cast on somebody practising the Shield Charm.", - "etymology": null, - "note": ". During the fourth year Hex-deflection test for Defence Against the Dark Arts, Harry Potter was hexed with this spell by Bartemius Crouch Junior (then disguised as Alastor Moody)." - }, - { - "id": 289, - "name": "Unbreakable Charm", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Makes objects unbreakable.", - "mention": "Hermione Granger used the charm on a jar, in which she put Rita Skeeter in her Animagus beetle form to prevent her from transforming back into a human.", - "etymology": null, - "note": null - }, - { - "id": 290, - "name": "Unbreakable Vow", - "other_name": null, - "pronunciation": null, - "spell_type": "Spell", - "description": "Causes a vow taken by a witch or wizard to be inviolable; if they should break it, the consequence is death.", - "mention": "Snape made an Unbreakable Vow with Narcissa Malfoy at the beginning of Half-Blood Prince, vowing to help Narcissa's son Draco with a task given to him by Voldemort, and to finish the task should Draco prove incapable. Fred and George attempted to force an Unbreakable Vow upon Ron as children. According to Ron, it causes death when the vow is broken.", - "etymology": null, - "note": null - }, - { - "id": 291, - "name": "Unsupported flight", - "other_name": null, - "pronunciation": null, - "spell_type": "Spell", - "description": "Allows a witch or wizard to fly through the air unaided. Technique invented by Lord Voldemort", - "mention": "Demonstrated by Tom Riddle during the Battle of the Seven Potters, and by Severus Snape before his ousting.", - "etymology": null, - "note": null - }, - { - "id": 292, - "name": "Vacuum cleaner spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Cleans objects by using the wand to suck up dust like a vacuum cleaner.", - "mention": "Used by Madam Malkin in 1996.", - "etymology": null, - "note": null - }, - { - "id": 293, - "name": "Ventus", - "other_name": "Ventus Jinx", - "pronunciation": "VEN-tuss", - "spell_type": "Jinx", - "description": "Shoots a jet of strong spiralling wind from the tip of the wand.", - "mention": "Used by Newton Scamander to send away Stebbins on a London street, much to the bemusement of passing Muggles.", - "etymology": "Ventus is a Latin word, meaning \"wind\".", - "note": null - }, - { - "id": 294, - "name": "Ventus Duo", - "other_name": null, - "pronunciation": null, - "spell_type": "Jinx", - "description": "A stronger version of the Ventus Jinx", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 295, - "name": "Vera Verto", - "other_name": null, - "pronunciation": "vair-uh-VAIR-toh", - "spell_type": "Transfiguration", - "description": "Turn animals to water goblets.", - "mention": "Taught by Minerva McGonagall in her Transfiguration class. Also used by Ronald Weasley unsuccessfully in one of her second year classes thanks to his damaged wand.", - "etymology": "From Latin vera meaning \"right\" or \"proper\", and verto, meaning “I turn”.", - "note": null - }, - { - "id": 296, - "name": "Verdillious", - "other_name": null, - "pronunciation": "ver-DILL-ee-us", - "spell_type": "Charm", - "description": "A spell used to shoot green sparks from the end of the wand.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 297, - "name": "Verdimillious", - "other_name": "Verdimillious Charm", - "pronunciation": "vur-duh-MILL-ee-us", - "spell_type": "Charm", - "description": "Produces a jet of green sparks that can be used in duelling, or to reveal things hidden by dark magic.", - "mention": "Taught in first year Defence Against the Dark Arts teacher's office class.", - "etymology": null, - "note": "This spell is almost certainly the incantation for Green Sparks." - }, - { - "id": 298, - "name": "Verdimillious Duo", - "other_name": null, - "pronunciation": "VERD-dee-MILL-lee-us", - "spell_type": "Charm", - "description": "A more powerful version of Verdimillious.", - "mention": "Learned in first year Defence Against the Dark Arts.", - "etymology": null, - "note": null - }, - { - "id": 299, - "name": "Vermiculus", - "other_name": "Vermiculus Jinx", - "pronunciation": "vur-MICK-yoo-luhs", - "spell_type": "Transfiguration", - "description": "Transforms things into worms.", - "mention": "Appeared in Harry Potter and the Goblet of Fire (video game).", - "etymology": null, - "note": "This spell may have some connection with Squiggle Quill." - }, - { - "id": 300, - "name": "Vermillious", - "other_name": "Red Sparks", - "pronunciation": "vur-MILL-ee-us", - "spell_type": "Charm", - "description": "Jet of red sparks that can be used to signal an emergency or as a minor duelling spell.", - "mention": null, - "etymology": null, - "note": null - }, - { - "id": 301, - "name": "Vipera Evanesca", - "other_name": "Snake-Vanishing Spell", - "pronunciation": "vee-PAIR-uh eh-vuh-NES-kuh", - "spell_type": "Vanishment", - "description": "Vanishes snakes. Subsequently, it is the counter-spell for the Snake Summons Spell.", - "mention": "Severus Snape cast this spell in 1992 at the Duelling Club to vanish a snake that Draco Malfoy had conjured while duelling Harry Potter.", - "etymology": "Vipera is a genus of venomous vipers, a type of snake. Evanesca likely shares its origin with Evanesco, which means \"disappear\" in Latin.", - "note": null - }, - { - "id": 302, - "name": "Vulnera Sanentur", - "other_name": null, - "pronunciation": "VUL-ner-ah sah-NEN-tour", - "spell_type": "Healing Spell", - "description": "Healing spell that slows blood flow, clears residue, and knits wounds. It is the counter-curse to Sectumsempra.", - "mention": "Used by Severus Snape to heal the wounds of Draco Malfoy caused by the Sectumsempra curse cast by Harry Potter in 1997.", - "etymology": "Vulnera Sanentur derives from the Latin vulnus, \"wound,\"", - "note": null - }, - { - "id": 303, - "name": "Waddiwasi", - "other_name": null, - "pronunciation": "wah-deh-WAH-see", - "spell_type": "Charm", - "description": "Used to shoot small, soft masses of whatever the caster so desires at the target", - "mention": "Cast by Remus Lupin in 1993, on Peeves the Poltergeist, sending a wad of chewing gum up his nose.", - "etymology": "\"Waddiwasi\" comes from two words. \"Vadd\" and \"vas-y\". \"Vadd\" is a Swedish word that can mean \"wadding\" and \"vas-y\" is French term that means \"go ahead\" or \"Come on!\" Together, they can roughly mean \"The wad goes ahead.\"", - "note": "This spell may be related to the Oppugno Jinx." - }, - { - "id": 304, - "name": "Washing up spell", - "other_name": null, - "pronunciation": null, - "spell_type": "Charm", - "description": "Enchanted dirty dishes to wash themselves.", - "mention": "It was used non-verbally by Molly Weasley after preparing breakfast for Harry Potter upon his arrival to The Burrow on 4 August, 1992.", - "etymology": null, - "note": null - }, - { - "id": 305, - "name": "Wingardium Leviosa", - "other_name": "Levitation Charm", - "pronunciation": "win-GAR-dee-um lev-ee-OH-sa", - "spell_type": "Charm", - "description": "Makes objects fly, or levitate.", - "mention": "This spell is taught in early first-year charms classes; this came into good use later in that year, when Ron Weasley performed the spell to knock out a mountain troll; six years later, Harry uses the charm to levitate the side-car of his godfather's flying motorbike; Ron used it again this year to make a twig poke a tree.", - "etymology": "\"Wingardium\" almost certainly contains English wing, meaning \"fly\". \"Leviosa\" probably originates from Latin levis, meaning \"light\".", - "note": null - } - ], - "potions": [ - { - "id": 1, - "name": "Ageing Potion", - "description": "A potion that, depending on the amount taken, ages the drinker to various ages." - }, - { - "id": 2, - "name": "Alihotsy Draught", - "description": "A potion from the Alihotsy plant; causes hysterical laughter." - }, - { - "id": 3, - "name": "Amortentia", - "description": "The world's strongest Love Potion; does not create real love, just powerful obsession." - }, - { - "id": 4, - "name": "Angel's Trumpet Draught", - "description": "Effects and usage of this potion are unknown." - }, - { - "id": 5, - "name": "Anti-Paralysis Potion", - "description": "A potion that heals paralysis." - }, - { - "id": 6, - "name": "Antidote to Common Poisons", - "description": "A potion that reverses the effects of common poisons. Contains Bezoar, Mistletoe Berries, and Unicorn Horns." - }, - { - "id": 7, - "name": "Antidote to Uncommon Poisons", - "description": "A potion that reverses the effects of uncommon poisons." - }, - { - "id": 8, - "name": "Antidote to Veritaserum", - "description": "A potion that removes the effects of Veritaserum." - }, - { - "id": 9, - "name": "Armadillo Bile Mixture", - "description": "Unknown" - }, - { - "id": 10, - "name": "Babbling Beverage", - "description": "A potion that causes uncontrollable speaking of nonsense." - }, - { - "id": 11, - "name": "Baneberry Potion", - "description": "A poisonous brew of unknown exact effect." - }, - { - "id": 12, - "name": "Baruffio's Brain Elixir", - "description": "A potion that apparently increases the taker's brain power." - }, - { - "id": 13, - "name": "Beautification Potion", - "description": "A potion that makes the taker very beautiful." - }, - { - "id": 14, - "name": "Befuddlement Draught", - "description": "A potion that makes the taker confused and reckless." - }, - { - "id": 15, - "name": "Beguiling Bubbles", - "description": "A Love Potion sold at Weasleys' Wizard Wheezes." - }, - { - "id": 16, - "name": "Black Fire Potion", - "description": "A potion that makes the taker able to move through black fire uninjured." - }, - { - "id": 17, - "name": "Blemish Blitzer", - "description": "A potion that most likely gets rid of acne." - }, - { - "id": 18, - "name": "Blood-Replenishing Potion", - "description": "A potion that replenishes the taker's blood if they have been injured and lost blood." - }, - { - "id": 19, - "name": "Bloodroot Poison", - "description": "A poisonous potion." - }, - { - "id": 20, - "name": "Bruise removal paste", - "description": "A paste invented by Fred and George Weasley to remove bruises." - }, - { - "id": 21, - "name": "Bulgeye Potion", - "description": "Presumed to make the taker's eyes swell." - }, - { - "id": 22, - "name": "Bundimun Pomade", - "description": "A potion that is presumably a hair pomade containing Bundimun secretion." - }, - { - "id": 23, - "name": "Bundimun Secretion", - "description": "A magical substance that, when diluted, is known to be used in some magical cleaning products." - }, - { - "id": 24, - "name": "Burn-Healing Paste", - "description": "A thick paste used to heal burns." - }, - { - "id": 25, - "name": "Burning Bitterroot Balm", - "description": "Presumably a soothing balsam made from the Bitterroot plant." - }, - { - "id": 26, - "name": "Calming Draught", - "description": "A potion that calms the user of shock, trauma, etc." - }, - { - "id": 27, - "name": "Caxambu Style Borborygmus Potion", - "description": "Provokes stomach growling" - }, - { - "id": 28, - "name": "Cheese-Based Potions", - "description": "Potions whose main ingredients are cheese." - }, - { - "id": 29, - "name": "Chelidonium Miniscula", - "description": "The effects of this potion are unknown." - }, - { - "id": 30, - "name": "Confusing Concoction", - "description": "A potion that confuses the taker." - }, - { - "id": 31, - "name": "Cough Potion", - "description": "A potion that soothes and reduces coughs." - }, - { - "id": 32, - "name": "Cupid Crystals", - "description": "A Love Potion sold at Weasleys' Wizard Wheezes." - }, - { - "id": 33, - "name": "Cure for Boils", - "description": "A potion that cures boils. Seen/Mentioned: Taught to first years in Potions class." - }, - { - "id": 34, - "name": "Dawdle Draught", - "description": "Helps the drinker deal with traces." - }, - { - "id": 35, - "name": "Death potion", - "description": "Kills those who come into contact with it" - }, - { - "id": 36, - "name": "Death-Cap Draught", - "description": "Effects of this potion are unknown, but it is possibly a poison." - }, - { - "id": 37, - "name": "Deflating Draught", - "description": "A potion that deflates anything swollen by magical means." - }, - { - "id": 38, - "name": "Developing Solution", - "description": "A potion used in the developing of magical photographs, making them move." - }, - { - "id": 39, - "name": "Dizziness Draught", - "description": "A potion that makes the taker dizzy and lightheaded." - }, - { - "id": 40, - "name": "Dogbane Potion", - "description": "The effects of this potion are unknown, but it is possibly poisonous to dogs." - }, - { - "id": 41, - "name": "Dogbreath Potion", - "description": "Gives the drinker a fiery breath. Has a purple hue" - }, - { - "id": 42, - "name": "Doxycide", - "description": "A solution that kills Doxys" - }, - { - "id": 43, - "name": "Dr Ubbly's Oblivious Unction", - "description": "Heals wounds given by thoughts." - }, - { - "id": 44, - "name": "Dragon Poison", - "description": "A poisonous potion most likely taken from dragons." - }, - { - "id": 45, - "name": "Dragon Tonic", - "description": "A tonic used to heal sickly dragons." - }, - { - "id": 46, - "name": "Dragon dung fertiliser", - "description": "A solution that helps plants grow." - }, - { - "id": 47, - "name": "Draught of Living Death", - "description": "A potion that places the taker in a state of sleep that makes them seem like they are dead. Seen/Mentioned: Severus Snape asked a question related to this potion to Harry in 1991; Horace Slughorn showed it to 6th years in 1996." - }, - { - "id": 48, - "name": "Draught of Peace", - "description": "A potion that relieves anxiety." - }, - { - "id": 49, - "name": "Dreamless Sleep Potion", - "description": "A potion that places the taker in a sleep that is dreamless." - }, - { - "id": 50, - "name": "Drink of Despair", - "description": "A potion that puts the taker in extreme pain." - }, - { - "id": 51, - "name": "Drowsiness Draught", - "description": "Makes drinker drowsy" - }, - { - "id": 52, - "name": "Elixir of Life", - "description": "A potion created from the Philosopher's Stone that extend the taker's life. Seen/Mentioned: Hermione Granger told Harry and Ron about this in 1991. Nicolas Flamel and his wife are known to be using it and they lived upto more that 600 years." - }, - { - "id": 53, - "name": "Elixir to Induce Euphoria", - "description": "A potion that induces a sense of inexplicable, irrational happiness upon the drinker." - }, - { - "id": 54, - "name": "Erumpent Potion", - "description": "A potion that is highly explosive when it touches or is touched by an outside source." - }, - { - "id": 55, - "name": "Everklena", - "description": "A supposed cleaning product that in reality caused grime to spawn." - }, - { - "id": 56, - "name": "Essence of Insanity", - "description": "A potion which presumably causes irrational behaviour, possibly inflicting the condition of insanity. Seen/Mentioned: Ronald Weasley and Hermione Granger thought Harry had accidentally consumed it, due to his strange behaviour after consuming the Felix Felicis." - }, - { - "id": 57, - "name": "Everlasting Elixirs", - "description": "A potion with the effect to either never run out of potion or to work forever." - }, - { - "id": 58, - "name": "Exploding Potion", - "description": "A very volatile potion, and when completed, can be used to create explosions." - }, - { - "id": 59, - "name": "Exstimulo Potion", - "description": "Boosts the spell power of the drinker." - }, - { - "id": 60, - "name": "Fake Protective Potions", - "description": "A potion that claimed to protect the taker from Dark magic, but did not." - }, - { - "id": 61, - "name": "Fatiguing Infusion", - "description": "A potion that, when either drank or inhaled, caused fatigue." - }, - { - "id": 62, - "name": "Felix Felicis (Also known as Liquid Luck)", - "description": "A magical potion that makes the taker successful in all their endeavours." - }, - { - "id": 63, - "name": "Fergus Fungal Budge", - "description": "A fungicidal product that treated ringworm infections on the feet." - }, - { - "id": 64, - "name": "Fire Protection Potion", - "description": "A potion that protects the taker from being burnt." - }, - { - "id": 65, - "name": "Flesh-Eating Slug Repellent", - "description": "A pesticide that repels flesh-eating slugs." - }, - { - "id": 66, - "name": "Forgetfulness Potion", - "description": "A potion that makes the taker forgetful." - }, - { - "id": 67, - "name": "Frog Parts Mixture", - "description": "A packet of potion ingredients that most likely contained frog parts." - }, - { - "id": 68, - "name": "Fungiface Potion", - "description": "A potion that makes the taker's face break out in fungi." - }, - { - "id": 69, - "name": "Garrotting Gas", - "description": "A gas that induces choking and possibly suffocates the taker." - }, - { - "id": 70, - "name": "Girding Potion", - "description": "A potion that gives the taker extra endurance." - }, - { - "id": 71, - "name": "Grand Pepperup Potion", - "description": "A stronger version of Pepperup Potion." - }, - { - "id": 72, - "name": "Grand Wiggenweld Potion", - "description": "Most likely a stronger version of Wiggenweld Potion." - }, - { - "id": 73, - "name": "Gregory's Unctuous Unction", - "description": "A potion that causes the drinker to believe that whomever gave the potion to them is their best friend." - }, - { - "id": 74, - "name": "Hair-Raising Potion", - "description": "A potion that causes the taker's hair to stand on end." - }, - { - "id": 75, - "name": "Hate Potion", - "description": "A potion that shows the taker's worst traits and habits." - }, - { - "id": 76, - "name": "Heartbreak Teardrops", - "description": "A potion sold by Fred and George Weasley at Weasleys' Wizard Wheezes." - }, - { - "id": 77, - "name": "Herbicide Potion", - "description": "A potion that either kills or damages plants. Contains Flobberworm mucus, Horclump juice, and Spines of lionfish. Seen/Mentioned: Magical Drafts and Potions  by Arsenius Jiggles." - }, - { - "id": 78, - "name": "Hiccoughing Solution", - "description": "A potion that most likely cures hiccups." - }, - { - "id": 79, - "name": "Invigoration Draught", - "description": "A potion that is presumed to give the taker an energy boost." - }, - { - "id": 80, - "name": "Invisibility Potion", - "description": "A potion that makes the taker invisible." - }, - { - "id": 81, - "name": "Jawbind Potion", - "description": "A potion that induces lockjaw" - }, - { - "id": 82, - "name": "Kissing Concoction", - "description": "A potion created by Fred and George Weasley sold at Weasleys' Wizard Wheezes." - }, - { - "id": 83, - "name": "Laugh-inducing Potion", - "description": "A potion that makes the taker laugh uncontrollably." - }, - { - "id": 84, - "name": "Laxative Potion", - "description": "A potion that is most likely a laxative." - }, - { - "id": 85, - "name": "Love Potion", - "description": "Any of a large number of potions that make the taker fall in love with the person that has given it to them." - }, - { - "id": 86, - "name": "Love Potion Antidote", - "description": "Antidote to love potions." - }, - { - "id": 87, - "name": "Lung Clearing Potion", - "description": "A potion whose effects are unknown; most likely cures the taker of lung infections." - }, - { - "id": 88, - "name": "Magi-Me-More", - "description": "Magical pills that allegedly allow the regaining power and concentration that some elderly wizards lose over the years." - }, - { - "id": 89, - "name": "Madame Glossy's Silver Polish", - "description": "A magical cleaning solution." - }, - { - "id": 90, - "name": "Malevolent Mixture", - "description": "A potion that is most likely a poison or produces other bad effects." - }, - { - "id": 91, - "name": "Mandrake Restorative Draught", - "description": "A potion made from Mandrakes that restores a person that has been petrified to their original state." - }, - { - "id": 92, - "name": "Manegro Potion", - "description": "Causes hair on drinker's head to grow out rapidly" - }, - { - "id": 93, - "name": "Maximum Turbo Farts Potion", - "description": "resumably causes the drinker to rapidly develop flatulence" - }, - { - "id": 94, - "name": "Memory Potion", - "description": "Enhances the drinker's memory" - }, - { - "id": 95, - "name": "Moonseed Poison", - "description": "A poison made with moonseed" - }, - { - "id": 96, - "name": "Mopsus Potion", - "description": "presumably gives one Seer-like power possibly the ability to manipulate objects telekinetically." - }, - { - "id": 97, - "name": "Mouth Itching Antidote", - "description": "Cures Mouth Itching (possibly)" - }, - { - "id": 98, - "name": "Muffling Draught", - "description": "A potion most likely used to silence people and/or various objects" - }, - { - "id": 99, - "name": "Mrs Scower's All-Purpose Magical Mess Remover", - "description": "Removes stains" - }, - { - "id": 100, - "name": "Murtlap Essence", - "description": "Soothes and heals painful cuts and abrasions" - }, - { - "id": 101, - "name": "Noxious Potion", - "description": "Releases green clouds of smoke when completed. Exact effects are unknown, but it is possibly used as a poison." - }, - { - "id": 102, - "name": "Oculus Potion", - "description": "Restores the drinker's sight Counteracts the Conjunctivitis Curse" - }, - { - "id": 103, - "name": "Pepperup Potion", - "description": "Relieves and/or cures cold symptoms. Seen/Mentioned: Madam Pomfrey uses it on students in 1992." - }, - { - "id": 104, - "name": "Poison Antidote", - "description": "" - }, - { - "id": 105, - "name": "Polyjuice Potion", - "description": "Temporarily transforms the drinker into another person. The drinker will take on the appearance of the person whose hair, fingernails, etc., are added to the potion. Not to be used for transforming into an animal. Seen/Mentioned: In 1992 used by Harry and Ron to enter Slytherin common Room; Severus Snape thought Harry was stealing his ingredients to make a polyjuice potion; Used multiple times in 1997 and 1998." - }, - { - "id": 106, - "name": "Pompion Potion", - "description": "Temporarily turns the drinker's head into a pumpkin" - }, - { - "id": 107, - "name": "Potion N. 220", - "description": "" - }, - { - "id": 108, - "name": "Potion No. 07", - "description": "Experimental mix Poisonous" - }, - { - "id": 109, - "name": "Potion No. 113", - "description": "Most likely an experimental mix" - }, - { - "id": 110, - "name": "Potion No. 86", - "description": "Highly poisonous" - }, - { - "id": 111, - "name": "Potion No. 329", - "description": "" - }, - { - "id": 112, - "name": "Quodpot solution", - "description": "Prevents the Quod from exploding." - }, - { - "id": 113, - "name": "Rano Potion", - "description": "" - }, - { - "id": 114, - "name": "Rat Spleen Mixture", - "description": "" - }, - { - "id": 115, - "name": "Rat tonic", - "description": "Healing potion for rats." - }, - { - "id": 116, - "name": "Regeneration Potion", - "description": "Helps restore non-corporeal wizards to their bodies." - }, - { - "id": 117, - "name": "Regerminating Potion", - "description": "Forces the germination of a plant" - }, - { - "id": 118, - "name": "Replenishing Potion", - "description": "A potion used to replenish" - }, - { - "id": 119, - "name": "Restoration Potion", - "description": "Reverts spell effects." - }, - { - "id": 120, - "name": "Revive Potion", - "description": "Awakens an unconscious person" - }, - { - "id": 121, - "name": "Rudimentary Body Potion", - "description": "Helps restore non-corporeal wizards to a rudimentary bodies/sustains rudimentary bodies" - }, - { - "id": 122, - "name": "Scintillation Solution", - "description": "Unknown effect" - }, - { - "id": 123, - "name": "Screaming Snakes Hair Potion", - "description": "A kind of hair potion, the exact effects of which are unknown" - }, - { - "id": 124, - "name": "Shrinking Solution", - "description": "Causes the drinker to shrink" - }, - { - "id": 125, - "name": "Skele-Gro", - "description": "Regrows missing bones" - }, - { - "id": 126, - "name": "Sleekeazy's Hair Potion", - "description": "Makes hair more manageable" - }, - { - "id": 127, - "name": "Sleeping Draught", - "description": "Made the drinker quickly fall into a deep but temporary sleep" - }, - { - "id": 128, - "name": "Snuffling Potion", - "description": "Causes the drinker to sniff (possibly)" - }, - { - "id": 129, - "name": "Solution 078", - "description": "" - }, - { - "id": 130, - "name": "Solution 125", - "description": "" - }, - { - "id": 131, - "name": "Star Grass Salve", - "description": "Healing potion for soothing injuries" - }, - { - "id": 132, - "name": "Strength Potion", - "description": "Gives drinker increased strength It may be related to the Strengthening Solution]." - }, - { - "id": 133, - "name": "Strengthening Solution", - "description": "Presumably increases the strength of the one who drinks it It may be related to the Strength Potion." - }, - { - "id": 134, - "name": "Strong Exstimulo Potion", - "description": "More powerful version of the Exstimulo Potion, which significantly boosts the spell power of the drinker." - }, - { - "id": 135, - "name": "Strong Invigoration Draught", - "description": "More powerful version of the Invigoration Draught." - }, - { - "id": 136, - "name": "Swelling Solution", - "description": "Causes enlargement on contact" - }, - { - "id": 137, - "name": "Ten-Second Pimple Vanisher", - "description": "Treats acne" - }, - { - "id": 138, - "name": "Thick golden potion", - "description": "Healing, curse quarantining. Was used by Professor Severus Snape in the summer of 1996 to treat the effects that the curse on the Ring Horcrux had on Albus Dumbledore." - }, - { - "id": 139, - "name": "Truth Serum", - "description": "Makes the drinker tell the truth" - }, - { - "id": 140, - "name": "Twilight Moonbeams", - "description": "Causes the drinker to become infatuated with the giver of the potion" - }, - { - "id": 141, - "name": "Venomous Tentacula Juice", - "description": "Acts like a (non-fatal) poison." - }, - { - "id": 142, - "name": "Veritaserum", - "description": "Forces the taker to tell the truth." - }, - { - "id": 143, - "name": "Vitamix Potion", - "description": "Gives energy to the drinker" - }, - { - "id": 144, - "name": "Volubilis Potion", - "description": "Alters the drinker's voice" - }, - { - "id": 145, - "name": "Weakness Potion", - "description": "Weakens the drinker" - }, - { - "id": 146, - "name": "Weedosoros", - "description": "Poison" - }, - { - "id": 147, - "name": "Wideye Potion", - "description": "Prevents the drinker from falling asleep. Also awakens from drugging or concussion." - }, - { - "id": 148, - "name": "Wiggenweld Potion", - "description": "Cures minor damage Awakens a person from magically-induced sleep (and hence can cure Draught of Living Death)." - }, - { - "id": 149, - "name": "Wit-Sharpening Potion", - "description": "Presumably enhances the clarity of thought of the drinker" - }, - { - "id": 150, - "name": "Wolfsbane Potion", - "description": "Eases the symptoms of lycanthropy; prevents werewolves from losing their minds post-transformation." - } - ], - "books": [ - { - "id": 1, - "title": "Harry Potter and the Sorcerer's Stone", - "releaseDay": "June 26, 1997", - "author": "J. K. Rowling", - "description": "On his birthday, Harry Potter discovers that he is the son of two well-known wizards, from whom he has inherited magical powers. He must attend a famous school of magic and sorcery, where he establishes a friendship with two young men who will become his companions on his adventure. During his first year at Hogwarts, he discovers that a malevolent and powerful wizard named Voldemort is in search of a philosopher's stone that prolongs the life of its owner." - }, - { - "id": 2, - "title": "Harry Potter and the chamber of secrets", - "releaseDay": "July 2, 1998", - "author": "J. K. Rowling", - "description": "Harry Potter and the sophomores investigate a malevolent threat to their Hogwarts classmates, a menacing beast that hides within the castle." - }, - { - "id": 3, - "title": "Harry Potter and the Prisoner of Azkaban", - "releseDay": "July 8, 1999", - "author": "J. K. Rowling", - "description": "Harry's third year of studies at Hogwarts is threatened by Sirius Black's escape from Azkaban prison. Apparently, it is a dangerous wizard who was an accomplice of Lord Voldemort and who will try to take revenge on Harry Potter." - }, - { - "id": 4, - "title": "Harry Potter and the Goblet of Fire", - "releaseDay": "July 8, 2000", - "author": "J. K. Rowling", - "description": "Hogwarts prepares for the Triwizard Tournament, in which three schools of wizardry will compete. To everyone's surprise, Harry Potter is chosen to participate in the competition, in which he must fight dragons, enter the water and face his greatest fears." - }, - { - "id": 5, - "title": "Harry Potter and the Order of the Phoenix", - "releaseDay": "June 21, 2003", - "author": "J. K. Rowling", - "description": "In his fifth year at Hogwarts, Harry discovers that many members of the wizarding community do not know the truth about his encounter with Lord Voldemort. Cornelius Fudge, Minister of Magic, appoints Dolores Umbridge as Defense Against the Dark Arts teacher because he believes that Professor Dumbledore plans to take over her job. But his teachings are inadequate, so Harry prepares the students to defend the school against evil." - }, - { - "id": 6, - "title": "Harry Potter and the Half-Blood Prince", - "releaseDay": "July 16, 2005", - "author": "J. K. Rowling", - "description": "Harry discovers a powerful book and, while trying to discover its origins, collaborates with Dumbledore in the search for a series of magical objects that will aid in the destruction of Lord Voldemort." - }, - { - "id": 7, - "title": "Harry Potter and the Deathly Hallows", - "releaseDay": "July 21, 2007", - "author": "J. K. Rowling", - "description": "Harry, Ron and Hermione go on a dangerous mission to locate and destroy the secret of Voldemort's immortality and destruction - the Horcruces. Alone, without the guidance of their teachers or the protection of Professor Dumbledore, the three friends must lean on each other more than ever. But there are Dark Forces in between that threaten to tear them apart. Harry Potter is getting closer and closer to the task for which he has been preparing since the first day he set foot in Hogwarts: the last battle with Voldemort." - }, - { - "id": 8, - "title": "Harry Potter and the Cursed Child", - "releaseDay": "July 30, 2016", - "author": "J. K. Rowling", - "description": "Harry's second son entered Hogwarts, but in Slytherin. His relationship with Harry is getting worse and he became close friends with Draco's son, Scorpius Malfoy who is said to be Lord Voldemort's son." - } - ] -} \ No newline at end of file diff --git a/src/data/img2/fondo1.jpg b/src/data/img2/fondo1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be362ccfc7441734af1a86a9e14c58e4cd3351da GIT binary patch literal 517997 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 z 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%0Al>##lXq*-H-~-|?>7v@>TPp;gPfVdct^Gb^bo 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
  • 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�$RUTFWAlj>d=k!@Vl67Uekv}j@x{p7QU`x># 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%0AxeemVS=C3+J6^!GuY29cC3) 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 VJe&@(smr$rk{t*9HU3 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%0Dlh)DVc$!Ng>4riC9v+7oD2B z=yqzrS>*{G)sk3gu0Tke8BABzm<8Udof=dT6{`=~p_3Qj(pt>)263c*Xz=jj)++<-F6UWhVhlbt;l{RE`1rX(c7>|V#dG+# z$lt6{p0vaubp*3zFk5FpLcGKFi)`mLH>VaT)a_qG%pY&Z?^GnGXDgFQu{}z2afgd+ zI%xbrk|r)95tEyH4P3=Z`B%-pJ69@n9)(g9nKj~f1~XZ#PGocls&s{C$O|aOs3B8W zgC$27S_O;t#DqvTs}ya;jCLDNOb&8}%eK|K1kl5$bGUzQnR0s2tuL6uzMY9(-Gu#R zZ25`3jU04#;QZolB5mS|u;U_kpzVU$o1E$s!}-eCx(svQ!^(#cEys}|TurTCiERdi z7y#h;xl9dQ$Ze`MRKaW>p;Uy+;SyN;2}-k%v7U`Pse|gM`gYW15w?VL1$B6a@we&r z@igX>fVeicU?1VZLK=tf@&kNrUq)YkSh1{)F0;t@GidSis#^4;b>+i7^Wk^d`Qa0q z=A$(DKJm)OW<&n~=O0A9wK8Jw1*TQeA&-~$-EWLGk8IOOl3nJAmQR*mWLjnpVpUb` zj8~JdW#3B*?gEy4jYA^$J@w?_RzJdAdWe3;@q)!`E|CK#eb~Rw;%r9VR0( zv7ZXHb;$cml6}OvufRGat`syC)E##i)PDFmy{^s9qj{P43-@i(bGG8FBp6mwXGBiH z{+93n?WpoBPpe;ymbA>_y0SsEmd)3*ERnGD*7Y~j9GC_u93Q&c2~V4}np*^&WS>}- zco(D7qir%YHO|qou=qV=`kH&iPHW6EkD`{|x3uUh2|q;o$^(R4iX!ba&kl7?o8Phh z+rYwXmPmf8Vs--(@U5A_esHM1i-98@H ziyH5y$Jm}!e1*(Cmx@19*J#c^3WSdVgaM(C5L$N4lgen#4z|m9|ERg?Rz z*SJ0CL(P!@pZJiWY=?pstGNvS6}jKuhhokjR?osi;-bqkrc>Eh#!}?b6u-2&xq3hz zWpFcqe!?9Aa!$xTMX?2qehEBfcZ0{lDxzUPPjM(-6U5c$L3R4>;71e|k=0?#0Z8`C zeKd=|h!YAt&18tSfgP3@GT7~i@ommCGmd#TMMPGu6b{19EqcYiZ*N6^tWwivG_Etv z1P6e&9Vy2304WC3_3KvCh{ccsnX3Y6zu}(P6Ur>v+wlkrQPvc?JB}< zC~YWL&G|1~M6=aoJsVvK=iQhm*|;SS+fJ{-N6j7LSfkogM+rvD@?g>_VfmvN)vkYn z8^itd5^9X=9Y1`=D2a@onu(ak47sLrg?y#9HWDkWg8XQLQL?3NlPHz_y;5DSFC_@7 za0qC1JH^ktwgwq4tiT?jdW2HL!Q6((rLlsVpQYvVie!|4AIgq}*{jHDSZnU!cK*uq z=Zu9PUj*Y?=C~HnHZFHgJ@}Re*qEn4KN-$O{_6BXCAH`yCes-uTz}a*!f4h}T@OD9 z&nNDS1|=SfitU?b@i>lWnJa+Bqpgv6(@0#~uG%yz*xXXK4C@b^bZV2WTfBT_u1+}T zi`6JBE+ROfqFCWe{7Yo5ZhctsNRQJ+0n%11uHP$~c02JPw+flq`3$bFeu5LXarb>K zsMq+4O9{L&U~X0$W1R2SQ}{h{+ZpZ_K?}CsPS;}x;8lO9lMOK;kJM$K$2Up1FnjmG zfB|o7^TDlvOJwRej`nrLsB|R6CX+DLPN&~F21oY!{2KX`BDf7I0eCtnGhMM8ekBw( z+p)W?^>OPr=DsE$T`nhx`YD$>jPBVun`G>2KaG$_!9I@Hl_(Mj!SHu#ayYO zF@Nnq^G6aC(upo#K2B*bUU9HgjA`;1NCBl+IcZcAOBCx^$JcEk6dV4t9LcHmO)$+3t8ybWLg##4o_$-BfQ zF@Bcd37M%sJv1`^+T60#VY;%o2I$@blyRxdDMpb`)Qqw2U1YRr$K}-nhf$>;&HyK% zHuZc0WT>_9W`^f5W<0*qkTEQ?RWAK67O%AV!$y0oe3(FmT9&#J0vJfc(iPW)Y1O&9 zjiR@QT{MAWLze;dGmdJ@^-kBHFLQXu+(#n*lH&IOh2S*V)2tBopF)rMt4-{&Wyfwn zl;5oNbw92jCiB{<>-v%Q#c(Zr<{pFjh^4t2BT)8OP1Qxe2pRniYQB&nl6wL(u}G+= zFd?o7;_D@H^N52edV&-QIey#ZqlRVj_Z^D=OwH$YwnAtJwDAT*k-{u_982~k!hDuK zw+Q}BJrggi4Wm=eP}qQXyGD3A@Dc5N8)>C7qGj4mmMEbfB4z<&rUb^1a~=&Mb~d2= zJ_&2c0p{1AwP~2|_?N49p3>{|kLO^z`5*4)u}m-_ZV$9*+-dF=Qk|dWtOuS8;`&&! zU=j%TEVJS^gqvbNNP?<+Ijvhe#SHX)R&7bF>WJbQ_$NESBUkQ7SO?Q)hn(W)UOO6G zHCa-3BRfAg%`uk0+B0S0qrsr0M5)j%i#Gco_oWvLm&by8ZMgF!!S7)bsTjT3g!BB;46+wNai zXBO3}6Dfww!SC6pjU6-k;@vpoDBf%yw;YDMyF-b3XNhk1(PIW-G$7M{Vq`ZH`n7?S)J~sBmm1eY zUWjkJ&Y$DR8KutC;PMQEHbFI93k78X?(-vukv@!S=t@uAQkf=iVn4j@@LU)jV5H1g zT%s%`7QEqD+)58opW>3j{Ly2XW4?C}sq)G&;Gr*nAtw5y`9glZkuBS_X`kD!k_!#ivC6GE_Q@lzd!Krsg&BSF4`p#lJ0a$wU3fMb#P;5T*@4O zt}Yp0pD?a%Qax~`jc20jmDMqAqF=G=#+|{BBppuZCbYH~+Um_XjfWUEkUv!wdI*TN zq6p^3e2i>{0xClJ`q-O#i;DQNHr%eH-J&lY8UaMSL(@p;Hh?H-?;$MS4cKMu zV<{e@UP6CIHWTrwNZV7UjO#(P_^gn$2W=9cNUHsz* z;rfdEP+e(o_OWJf5HDl<4{|q}_op3|Zoe0|h6d(p(5o{hA6wSy7OqsQUVpy)gWxMa z^}$3z_zM<&Jo-IZcUCh5J>@gU2X^>~_bf!kz&}S@*{|KswN#pL>kG0BWp3_6(|2sK zVJoioo-NaWyYQ@KqHwkqB>)G72nHQmD2*1lbVo3-BAkh;Shg*i}v!oi}6tk+plK?8_!Tdlv~HHXT-oCs9prXvpZ6?(^gg z;qIUus=jbOGA2lf^y=ZRd<-I+ea0!!@91?A$)iDO<~h|=WS*_SH?8gf#8cb;98!>@ zHvgnZWpA66;<2pTfX}G1vmy1pC>%=czJ<=J6?6pv z+UFp3`JAQQbw_mJx`M388N;}l<>M0wHxG?pX3+R-z3ew)DM#w(hS7`b!D^}-vA#*! zP=7)>r(uheG$_z?E8**LoP;xy5=ZzZH1zA^!Yuc9O0m z%kuwT_<_B>Gux>|6FQP&ms>xnp>L~3**Pe3?FXJ5&@YRpRJP}X{MG&yH!@8mat%3r zl_pt`!0$iK?S;tw^7`RcS-Phhhv{B2D^260>~-sAMFqa(9EMUCsw6vxtGhnzkaCE6 z2vqmVL(5x^ob5rPRdP7Hi5We>ZF)OC+7RHD8R_!C*C&iV+2PcR z{DQbBpZ&Icsg*9jTs#<&iWm=W$Q885hNZT#5op*`^YE~UYl@YPQS1mQiRF-t?#(MI9Wxu_ZE**dgAENA1BJW$YanHoLm*jR_ zPE=Nv_Cm^_%dbVK>l#Ouy}x_EaMx`L2Dy*7vug;64>>KJ{%y5Xd-f}s6eWB9FJIF3 zy9*mZRQDsrQ@o^SrM&UI?yJ3eTH96Wa_}+y?GUl*R0-z*SAB;6xP$u;40T?U(Icqj zxoT=Z43I&hQbG@F(J!g4w$$wj(!zFN&T;x3IiV#zC)hx!SqmF`lHbwbFx_Jke-rWz z-D6^=8ysevRI+aVr--fN#}?0Ng6;c3&4U)rgubd63V;&tx1dc_z(`PjDAnu6if!>u z1Pyam=SS&=3%;wl+IMHjch;HaYf@^iLI>+S+CIqP)I<1v(PA#$h7!?JS}!Eoh-Go-4#B@&2tu&e|Wc6Jc)RSGSzk7XRNUCN%ElTFP<6REng1n*C& z+FCCTw-F^c2dJQk%-uP+xF&&i{>by~ff*CL@yZRWitF0^aTK5UJ~7O?FOn=j%`x1z zNk<>|!@V+ux9pkgPdeR@3cJGU#F}V-5|He)8%1?&wPeoMd8lh`mhPXoB@K|%qwfqV zqMU(EAOgN0o^7ldyXqJFN}Ej07riYRU|xd;uzbzoE&~dx^Ti>WJl&TQ;FL92rTYA4 zA2sDd_a$d|HRZ`dI*Ys&DfZMTpKzZm9gJ8+j&Zc|Z`NfMjt8Guy1Cx9a=~4+Qc5g>tr{$*5O--vwy~76+i_!O z&N_a)*dmB_qy>{&Q~LBGw+BI-;3c-_6h#Yi-2RLFY>OQIalSwJgu7czY8@-V2)?`j zjwVI!-FV;(>{uK4WfK3KKf~XC$fK9x?-VfOuJ|Wf81-(bE^3tah?MwBc3fzUt$Y{f zH{1|F;3WdIg+p z`Mbo>5-vN%4gEc>1I<0h%oH^gR}!|UbsoNI!{PmcfFe5v?W5&4F6bmJg|!KMux!7o zBsR<((31ItH>{8xJuUefYFMwnTo3s*COVz1U%%T{E<>+N+jNxnBj7Wf$ehLj352$2 zDF&F}{OSfX{=UoqICB#F6pXXO0Xi1FJ+c0ad(TMCOk*<%$L8suQ7;=dOfh*$wk>3ga+>g&ZNCax46R^TS9!Y=wn?GLtMwOb zSEOB{IPIL=WlieNViHYwi8-fut*Djnw^W)AvPCll(0D0s_$9aM+uz53DEY^Yqr{$6 z#=?Aq@$Y9HXTzNygxHh@m7kx3H&ZQg0~-&(xUrNV+C)|faa;-#w%>^pM zw9{XW?Ua;mSN%F_^quk|pmhYLxq4k---1?d<@Z2gnklfw_M2`kzA@jdiBbdQ6z;U< z2xlx*XoJ$Epo>9XqE3CHBQod;xl_P+S&zLRaARA+l$&_<5P%2=204cVI6wNJH1pVd zoIXu%@U3+h-qmIh{UcFKp z>yp<$wog?d1aVL&^Wl6ibD4!rwasjY8{X}UpBHyR-*i3G`G@$+r8ianyba94SB*D= zcprEEW4UIgOVeYY@%fVa%YU6L7%P}0n_C+tet#N91>Q0IY{(@0t{%C{l2nNr*U5%* zIEB=00rV7L0=uvtU+z3j8dTJ#a(1PYY*6BHmN;?CN@>9h{MGYJq>OZ9dN=`yVUG9G zef9&SOsJ57rFSZqh;kpxD-w(#3!Yh5rZ-sZ=Bc55cZyleUu^RXVYk{5#O5SH%hv}e zAbg`y?pTkVaLTp2wd`$>l>AaPjNfU<<9W;%K9DCGnC4(YN$N|`y2!QyZ&3+GSV!?= z8{4kVanyg6Oxm~ul%p%mh*ZjQo)Y~VG|WI%n+mN*4gy#_u2L?#aFKSsJ3-)oxTaB%E1n`=&F;>Me8Rm4uJiCfxytqMB^PDZmpU$BwgGy_lA9K@1)aSR zfX;$@DGH9uhJB41E9iI^!LM~jMFlpW8t$~}bs@$l{^#aMX|8bV(fvP=Ygg<-S3m7h zr7cgMJcISXjUUIs=Fu~R`Fv%55iL{dIGEjEr)#d`cQHM@OR+SRF#Xc3GoFROh-qhK4b*y?jMN^HkOsO%}P?laBBG|WCc}kJf zoAcT!8|KF4K#Gf{?fmk4ZwB>!ZGA;XA7($SZbjd6WDiX5w#Xz{bYd8Lg8A<`9VGyc zE(^|pncdhgx<4im|5(U2b7po|yFUU!eBBQI2MY+gzFt$~NK6e_&a*f+_c zd01~!@&Jtg1@--M{Adlo{V=e}W~N)uk-m{_suh1fPLFQ1o$nY6C|jhD1re)c*u#KA zp|xSM1WeWFO?2HE_Y2~lpD&4>?98deu9D)7^!QzX(pVNIVLeH|*B>;u!AvIq_I#$0 z0wG3v48(bL$~F-Z*{yZFOQnc9XT~sG8%UGUZl-538I{QjD#y44Jj*RClRv3ZPNv~31Txb<^&5(RnORgcSGDPiefHdcip^8%i(UY1&Fww> z5x1#WSTu;UbJnRS9nBxRL#qH(rhyez`!&;qvba1e^uCDJQrYNLOo84Lr#VQuR;>jRY&c|e*ak$b^%b!+K}8FJiX-}ocy*JGmNEROxJjqhZc75rd}kh2KWp2AQ2vdW-uke}z(-@xKj^cXk_L50k?Qd-svWiP)PUB9H>v4s@oAnt)|YGqAA`&@ zNJkY$Btzhj8jj%&%var zC$6k*_P(RVI%`Q^QW4j7Y_GuFhaJ~^lU2HVhQ1wH`y5pn!TzLR>vuZ=WW%e}h*Y4a zt^l>_6XTO>03*ymWqa>V$LZPKW%Nt=7oOJa=XVCZuy8rkm-uVh;^%k%{47tE|4mAn z*eUw$spab*xmf;p3ch7rwVywOgL%Fu=EvPTipP(`4F3Y^Q8HrwvU|u5bF~3C14A@8YFN4xus^GJKqU!>Ile;ngrV{!^-6%Mf%*mo!pG$4esAb@+Wlb@y<_%yL(NFV%w{QkC(!+OX2IF@lxn?%eW)X1Kxc4{FTKnOr3S-%#gZ%iz3nh- zuuGEwbDl@CdW>z4a{>qgr%2WIv7@Do_Gmok1pwE0>>Xu2x&<$7`pr~S&>9FRfXGiZ z)m!UE(Rr%B7U%W}x)m2~JzE(u_^br&&~(HY$Yyj4;&@9Dp*aOe4J{uoC#gXDmWse! zlIy3MDjSXIz4?hgMi4IGpl4#{VUE3S=oe5 zqY^c0HA5@%S>FA{F6kcTT+0WRp1n77dnoOx#F386H$3Y7V)8|O*- z^XJ_M0nbO+Ld%w*!IA6J-W}X?Fe@BU>Evz?p7gjiJ^3^PHL3U>B=6eE*X`UF#ff{j zbS^Vr zrLuULo;i#?crV;*5I5LIkO z_{d)+GU`mhB}0tvoWFK0_GyUoC=$Tc|NK*J>Ds|wm`h0wFtB0!*69!Q?k-04B%CD` zs*Xo>1d%)fwYSlkqdau0mHeL9N*IhqeW;N<0M-5629oF9k|_qu#yC60@RRk(q2_&J z$MO>Lu(XKGpaSR0&*IiqDlj+u51F1BNja)Jq1`f>)`sf=0ZQkqi#bL~QSP2e_|9Pl z&l!2m(chuOEAEKedXWA)Rv2tk=IdN;UY|fqyvd$>OVo^9NlzOBVmVyt*2PTv;cu-f zi`Aze@Ndt*U%1TStaMi0M*y_AKQm}jJbzL5&$pn*n%(!%Tc)(7*a$J9>}@D~{bZ2q z-5TRr>;~2)qly6ekp4-|76hUA2CQW#7vzvLBi(I@5?;-2RTzuM)qA2#8)hE&(~#ay zE)+yd_4Y67bAp)Sh9<{d*leq|4^uwrt|Ox`nLi#s|EV;W`opu8jzcjUGYJx02IsZ& z>bCFwdiPn=$*Mc~hVz|__cCtkj$HnSz2f@ZYQ>1z z-`H-0p`06F+wVDzrjapi=(}UO2wnE7aSJioa$?R=b*uRu1fzU+TnV10#FyW6)rBY5 zOuJzbmmkDRqr%!Z%w$JI=Kr14($KQAzI9-B>&#OCvY*IGDWk~h!#`D)t(%1Re|%&cHFK107agwB;IFa0lyz@?W$>TV55cRNSG;di@g+mRB|VeJ#9kx zVM0(w@=w%r^J)DpMdh9(`Y#IKk@bX9$ImtG@DcV3J+8->+&nwxk7y~aimum~^8zOS zIcn*6dUP|%om-0kUy7*Dk+XZKWNJAzEzy7k&qgi+U#P7FA4t)uA#n#ket6Vt;}Per zllVGpv>Z6_8JBHkuYYV;B)}m9`BISfA=VV5&R*tkmqe)^SmG_e!>Xb16<6%_PGmN` zvK0Qi1Gj%A0M#`eWbJ;%2jX!B+)Vee9ygAHlYv*QCstJlFls3EW$~#>xs0seC(!)_ z*K}Bc^CDAEmw-jVB$Lon{@_tDDgd!pC*D6a-3zmndf$-+gu58>86JW}B}wfPAc(EY z*@4>3ShNhw8@}9a@5v9T5IK9g%WD3v;^HX!t+SC_!hgDQej3Mc)A%{n`S{j zV1AiCWck&Q`oo*k`Y}Hz_Ree_n!jzi9L;x0YKCWK$kx|X2Rg!TK$TCJ!tuf>7yM6) z|1$!#T{Dfj)0dT)ft(8f+;ygY=J*e0erBZApflC08(?TP!Hyez&1i15|6(ybYb=p2k9PrN>0;+;f+yhCW zY{izjCpth2{m~6yAaK&}>{|T~K#$&(F|hxziv8xH;CWpn@E#~a*7-2G#J%iUZ~21S z(9}wEwXCR-kQI|B*u?WKYs2kTxLQVwvuZr-AM^;qS7w*36IOUdBH*Q5sV9?npnF|( z*_-91ytZdn+^LzMBh777hGJT}>PA8vXLS#v9(^u$N>fP6woVX@^(={~kD~ zOYXpE&P~_^2F0n)d!$V;$Qmzv@~DAn32>tZrJi$9gylcUKeEwzgdmIZZyBm|`K+e2 zb?xXuRXCC|mc|f34$D5AErTst{Znu3@<&R=sqm5FJkfZdt}Z^p$7?4}ja8ZmF}GDd;V* zhsPUqW{3BDD$-M=NrdlF`@znm6f5R>AA&yR`;>h?QDQ()DwPp-_7J!NC)2uin zW`<|x+Z0X>M3O_WJJ3YKQX?@SwAa`1o)=c!cK!TJFGd1{U1EQlN5)^Y(V0y)yyUlF z6e&Z>4i+KBxM?`a2=J&KH>`*BuufvN z2|?sYUbihZap(BDCP2{EQRMoTp{Ly!Dj9GVqJ8*=U((nwk#h1{(r4sHi$5sPA>BjAbw6))dv?;Cu za_2?Y3a1%B5;(2L8}=Z9tbw+TC&3u!(5)>$*}ZP#-mk6?8M=cSV53w`7_Lpt+l^i* z^F$EsYXhGsd<3R`=zWAPE|_uQl1AQ(kP|U00kXe!vt`!2NE0L=75f9;el@yfu8`Zs z-WXLPF<;HL)9fHF+mQaoDzA&b;4Wp2jI16XOLC1EY4VJ%UkZ0wbp=8@h^l?#O|usM zge*eO5Q4YddAtF3I>TM+4BRcoqa=Juqxz!lOl5izo55=FWLGfs`I!~8?@!%Es}M+g zpSzR{qgAoVVn^e02gSp}`9>`0ptn#Ct%g>#vB#YJgZh739^o1X*Q*3B3UkMA8uqAe zAr~c1F`^ik4oVb7E!W0@887{_6BaY7M1DUXEakY3H%5f4Y?v3Wt&_b-n!mg_Qo^vj zh&wNb+?sq|J$morw6R;3Kxn^5l>$v)GV67pn#~F?I5w_U4Fbn~IAGw8pIfNa1LtU8 z1DWmM&VS9ik|&BL6yZm<(mc!3gVh9 z4?6U9(*0n|fC7y$XR?3te)LsnAURfB1z|!oaqT<#?djP}WLukQnI^1{)&BIT&Inn; z!czy1%!W=6W7plZc@>*sYX+qD4nb8sWkD@%CI@h{+Ki-##(ctDBTiCm8zVndaptb} zb4fUxvPI@J@i+N*_}cWh*!#f-*GrswYT?zdGa`psp4tzB^eg3dMVu+u3Kvc%{ggZ2 zwBF`h2IaggvbSNi!m_0knTodd$AkZjobW@3*P8rYFDm`84?aV&N8tb^a8_7i24PQ` z-G>2>c+$#8-p&oX={5j8PS(%4(c=O)TYmpKiFSJ2R({1RNib#Kh~&B*-2_`&5zM# zBD2PFyjV8$;txjt_y*$)z(EA0e!6mKvkdvqT&)D89pea8{Hw4vvX65X1+}-nLylQ- z#z4+CA2&!IkjHo7y%{$0LnTF0(g$PC)CbH0dY?1sao}_-nV~pujzqrxJFDPS>n4n- zh_gk!-2LUO*BB7m^-yGNI*hj1gB(nD|J%6~(-hjVJ-2Fn#IaE3+u53%Sp>}#_2VY0 zJr;we>mGqhMtos!J95)Ue@x!}DU#jk{1Ob`Z6uR?%>yOS02^K& z-zz_v%~lU8Y^^JfA1gvJ`}PVaCZ{+Lv9EvlnJm$-1lCPE=&wv-K!e`Pq%Dc?&?g5|4hx88uZy`Ink&SKhIk zMt3fk5G-G+mfkfOCCVaV9j0@a$L^N8D3yP^lanS~RLn)tbbC@e?YFGh39=?GKmOCr z`@YNR%0zH~!Oa_gI>Ni8Z*C()GIS2#D6bV2Ka2c=k3CX=|ZpM-GyRgK~ zJO|>MbVjgrz|F@UKq5hOL+;v0cirnoc@9LUc3%~^>z06gA^HEMnaZK7v+lY%it5#Y zZrz%ivg{8r;P8>nOHj4VXnKQnA}h-~c=(v(V*6-A8=$#QWUKrdDpw65x6U{C)2KtE zvNv#ONT7cZ7}nS%Q!~+;t)T`h!g)*d4c3kTlfOcCjQ6mbTDM-YYp+esxPy%+zi%8U zKc)b%c({O!j?s}NE3yaMrjE73e%!Idb}Fxec%i5tALJj8Jz^Z4iTZvpk&k|MU<|Un z$2B%IaVHlG?|OV=TZEjAgPB3jX*b?n%an3471ubQ51SY`Ux?I!Bc?D@5UUvNKfNz z@Wqjh%JZjnc!Lp4M8iWzd48R{5d#2um-Rvrih?GhPOjIKvBq?A*4@oJJhr3?gyYDK zH8C=8+u30Egiy&o8GE6IQFmEz!|4fhC~G1u)}HG!9I}O}2M>CRn=6@c#X2q;k({oG z{#I?6jsz{i8*wpKxB*}0D}OK=8m=Uhbk>4nSPEJcpS;DjA7?L*|( zs@B9(xXj^dTTVbXH2$wC|3Wi>#EV97Y^J2*{tb6Tg2sA@k3x>hN8(nF%>hl#xh-&wO^>uJ(j}=LFT*Lilg$X)JOZDqTr$(PX%{J61(B;*D$~li znx+44=yYsD-zw7SGE`qY>Y`6F1*a<~m9y{;4{Kkw7@^^ze>YV~0kfIPY2gjhd!<75#^C+^6c>(x`^eMp)?wceTjwBWMixM0|Cy!6l+ zyr4wwgS1~ti^MGG_27F3ztH5b!~81(veG+@T>)K-=l9z@M3;(RGU=8juHRucnPRxh zo0Ao=tLJB$!U|tPT59o`s1S4*90XmTeCfG5A~^1`0cCRi-WbMF6ZO&f`t)}Znpss%3^rTnq5kHX%6~B4`-Dv#dcSSf+qb0^G7<6rD6Ka7-8+E#N22d+c+Uj}0U{^>3zLOS zJi}-;>(#B8+_?-Ggd5w$T>)t9ne2~oyAR*(fKqCH?2uduhP^2nB3X@Np@2$V-Ay6L z$ZDX3P1UX>!_?1#FmNc0w>(aQsoTq`sOZ_)y>ma=3|h(Wl59(~AaGn)1^JGb)Cy)b zsG2&`NReXH&kQ(V*`jzAVXaLl3EF05?>8eI0dc*iZ&!=17`>G!;HP*RLds&tHj5*| z&K4NSrQWhO55Ag-Q_YJ2N=ln*0 zJun?~e6+k&CtU!yGFz&g-93#vSksoEEF0w@6Sw3Fzk>KK z?d%^BOYHcLrJGVcM`(BHi1%}|cR*y3!3pjb6!Hy8^5jqU!oS-++Ul>=9`sH}2sgkY ztwPc7mByV=qpRjUZinF!TgM$EF*tGf!lrknZ8?p-TpFk=I;iz-Am;<+CH}3_z&TE^ z-(NU%r|sr|LXJ;AC+`fk`%buLpZ_Hg$h2Pry7ydlH-xmityyL0t*RL9d*}*DZBIe1 zIL!?P@~)9H5z4xUHJK71KhUNHd{<;QF*Uesu=GLU#9v|O(M+KyEkOndcS2{?jOzd&0WIe?`p;!9#A~l zJQlqgzp9ykKy_2Nnt*DiY1@lhvC+d63DWNmNz7DR|LKfi7)qlraZo2mc@(y3#%I9GlKIK>$l{vX^BwU?c_fKfnbfT({5%HK85F$Cq3+r7(f6n zlN%~J$aym`T(?(-s9j*9x|{vV>C=5qToXri{jh-@Xijhxh&uX~6VRCc7VGF$wEhkW z^1%rrwU3wva%2I{Q;W`5%1eeb$%oB1zW;?Aw5MoJ*Py1f11%yXtqHHCIg=NtHh~Q^ z`Sz@3`DopF5?FnehX+PuR=gX5F;TI^#WTFhUut73-ibDkoFv_GbQA8)-#<&XxSe{r zto7A^eH@k*_uDB^ME&lTl8Qbzr(n_y>jN~!x@C{`(mB_X+6%78XCw=ubqYo5y)klA~b;AW~E~Gk%p%Wm@!Kp=IUylcv*N~ zPfV=!Y}G6nTdb`b;Jeta1jqkp>ROEPTb@(|w?^2qYIOsE`TOkeJ=v^>4EVz6u5S?n zVez`aQ2|UXnbt;ptC=!HjjCW{G;NHBkYPIHq{^uA5z-D1z)zXm#drH%@@N#|AKV<< z{O7?x(jvT1f>6@JTWP$!d^0FOb7_)(J4oJ`O_R@;Dj<8-gzL^vuB3uz)c%Ke4x^W(n`KFN^is{K7~~v0fq%_k$_-F&n8nI)Y?T+)Zr1vdnQ5 zi%IWq!x4|~h-S!kb>jRQ6`+GZTXpX?*uGVDp^US=I8RMUzs%XsCP6;hg~h4= z*DrFH-*A_g{zLrr{I6-0Xyq!oR>RdU)vf>sF^YD9umXaq`vcYeEXG$}Y~{K;V9R{c z$`Qc@0#8Ke`E#Ej;=1{-Oh7^rx`fw13y=oo%wcIvX__{NdA?CF4r);Y-Q@4?wPNgM za&M)|M!SC=1;eeWEaCU8m(~X^V)^UGYCw}zRM-U=#&COJ>(|#y4ijZtA_TZ;MLB!6 zowLhzfpsUa#h6|qxhP36G<;((cy7~UxR{;_B-{AWBhrFDom<}3z6`ue-HE6P;3&(t zrj-|x-{HE;Y8_sE-Wce&+@?;ECob#cFT!R6*H(lsP)9q( zUR@?s{WlfuLkbVXl;HFOZK=_+@jG^A!QgA)aIoKje}aO|l@r~f+OWJ>Ig3UcMMGmRHwlB$$AE@heRVgu?{d~KgFLAQeY7X| z$30A2By|SmRz(BJA212=c#1F2R*)mx;NjQQOP6}^+=tF9Ejg}NOWJ!Z=)q|9QOl*u zmeW8Ea8;{i5S!3&!&)_(5Ha^5QL}Uz!JAGCjzSa9O{aLd=K2CuX?Amo56vY`{|kF_ z=uHK%Q$a$G|6ek{|4BH$@ha#${QLb!@pq~r-S3O>t>`Q4WM+e^l{z!*R@PN2fjrm$ zEg}fEG8`Y*#4=mJa(|XxnnhVTqX!ci1{3LBO4&cAT#7Uywnc);+dOXp7%DfaDeh09 zej6)2u6l2=YX&d4{}CA$xh&+uq(H7bg)mK4Afei6v+$6}4J$g@G1$sdTCF0D46;OF z?@tE>;Mx71>w7H+>6xb9otROB>6AqvPps`jeR=yEn$%>et?1AT34fq{Rw3%t{!6T_ z@zHr)*0>%N+40zeClT4w#JQG1eRVog$np`yDktdN;zy&}GW@<#)f2qzM|GXcaqd2; zQ1#>v_u?=-J%69!Vm zR84F0@Pb3(DL{zdN9c}taXC38kcN6hW=<&+80YsYT}ZED+pL^B>Un;N1@A0;x@(@& zf=YA*&MXIB&1*E{u%m34m&I+tj;Cqb!2zwG5Z!(g*U6Pc+soYg@|OPeis$G&s+R?sR&=BCy-yi`r*#K~v(Lg_c7aT1@e+Yaj07xwS1Xp+>Mh6aa2>LB589 zc2XCt6(eEtwPUtWAkHp2=pE%`jqNX)%uVe%I(1X*1l?=Oi z2|>OJkhC^w20*Gu6HaGThMah7)P-A354b;u4XZDHeKJGd{n~RY>gb$4WgwO;Y5{Kv zKR(m^FY~$v*f5ZjYDE1BLGw8jq1h zu6Y5*OCtwu<0~~ys5$M#6k-)@an-|#CqVJz)qqy0lJI*lcuA!9y~&HuI7WfbxO>v0 z4ln_N2ANkB@4~ZwvKw>|a7kkeDTyob0&c2XL{3Q#*?clTIy<@d9&~!6kDhzus>1J+j6B)RKh3H%0w8nEP{*4>bnB-; z&JmAp1xlD+pgsXS%r^$phfndIiX2CmxDB7hRv$;v;HldRXdO*HnHefN&cih0Lu-VO z#BU;q&4xodxB2e!(Ipph(A@3y|6O;+rUXC57TYVouncJ99MMZCTKQ#EXTF$1&V-!~ z#5Fo-I?dlIGI57+?*Me`%G-BaXH%)+m#2xBB6xtDOP0VlAWB+6-9~;j@3QGGd1YS- zKd5suPx?%y9{o5jtEfH53f@1b*V7aU3}8%M_uedPD*fK7;~G@8`%H2sZjqaS-WH+= z|6GGxxSO}?AU=lwsz2=@;6BSnLL06qMJtY{Ux`U?+-4Jd&1*SB8*CgEHwU9D6pOpY zka_Ayh~r6O+@TWJP7hWL;htt^!QAXj(7WEY6&BbxflJA4d~T=iAZbKcNo&g zC^Eg>A~Z9_*1v?aFb8m;vBBkGNl^vRAJqH=!lX)uASVcg-I$do$*c})g|JE{Z;N1(Ov7T2zIWSeiB2T9D8m9fHsat& znjiXMqO(W0tX=GuB?4m5B#vx*B_`Jv9r%xi0W&OWysAPAj$vE(%|mxAOf1-hJOhp;o_VeK;|FKp)O)_)y~reT%x;V6Suv z{bm;=ERR{OK7=|{rEgsruWuAu>Vfljj+_e~HP1~*)UWc~Cv;}O6C>Vci(CK>1=Y6@ z#L`S&1@5Q!L&%G_*w}Zc9>5xp)A?NVdzDG8`v3Opc^Y|7f?Q z^qefoTRBxJ-B8hvjDL%o9RQ4pCXVAh$SJ~SB#_j-2D0pS)yn7;K4QnR-Z9wr`P?@t z_)-Te42=jpBmeNoPxL1OmxSB|8c0^~^mfgadiTyb4QyL~2IRPlG zYsOML__970oyomgS{4~cFw+Ol|DyT3g%pvoVc54(<=-k#vzWvtyVcC^++Q??Ej6uu zm1B=MyaY*QPT~iGZWNAPN4y1p>t_{3ML%_jkTE#t=H7s#{Q|zG3=J7Kc467==%IH+ zp(&-p)z(NjVb!wSvW3p!f)y0?XYY{(s+DzfkS>xadR|h=Ou$Mp&(fWWajiNtDZCF? zE8YFz`*;rhx*=4;xX^fPcPB@8iWtwe1bdzwx9kFc;10zpX zxS!)yv<|5cS?|3m(Y=XG+Fo@^TJEYh0xM z>%9|u9n1@hoYccS4@SeAT=GWG?Ul42#Ct;VKL!EIwO(h3t zU;-zRwpwq9ZQ>KV`(PvQw`niI?#|KhOKDz)KuYLjs}UP_+-TYMH6+V0vDA`2GZm#X zx{ZFf$tRXOAj7+sVyj3~PIvM@xvj*Cs??%OAQ39my#J|wk?b)z+YKf78!!tmCkAp;v(^fDo>T1)?yU(;@5omyd3i#Z{cu3N9QW zKClN(Q*|y%{ZF{MT3~V)&rSQ0X(g>)0Bd7+m6eW^)%)S}NZLRf5$dXT!n*slN#mGP zR(7+}`pY9rL0cL#P2C2;PW{ASd!^W`hg59F?}e~zUdok!P3cBbsvG~hUk!c8T8L>e z<1^k-tEnVP`KaY2(r>ZZbNOj<`3}!SoJZCcE$i6C(%QccF5%t5S;wV%e*QBxkXze> zPdXM?tQWc+oal9C7yRuMTd|*QyGz>tf4m2yM{s*kdV!un9njc7ayuDiCz0E9Wt9hX zBF*xFD3HYXnYIr>?FM}o51l)u(r$?UT2+qY99(|-v)H7(wGVfSE&x`L=Vh1sdW zUN3;sv(7%6a&W>*KI?rUu1bAYX(hHH(%G-r`jExcC=d52F%u@Ae3PefPS@y_P4tSN z!KZ(bCr3CIdMaCYtchQ$$ccwaAT0dS!w~~3u}ADK$zKPkq(W0k`^2riS0RVI5Brtb zqDnyCL(WYv$q=yISL0hqensU}4QyESXb{LmDZ&o|jOvl7-bpRjS$PX7sOYErO@~`V z)4)@HWO)`}Zg_@l`252|khAGGj0;j%vMHqpD(-a?`X^Zec45ZhD%?Fpw|cNvvOy98 z<;@I*UQlt?+ynxJ@RwyL%%%N|L{=O%Ofd5Yt_K+-)_=#CzO86YvV~+v{78b)n?8$2 z_H?+|$a;!8lL7Le7dI*w#WR0l7hY`@Es8E-c+gQ-3kq{EXW1j40{g|9skrKl7MG7|5%`m0ZMyp?CB?IVZkTE;ILo(%J`6Y!jM*GThP=kpTZsnoNJjFQE@2 zX?-q&Iqbr3Al4UHD@aXoX#nedGXYiWX#O*FUaWn0_=KLe48+&DjiFxHu-JFo-D7sw62Px8BFcN};95Knoe z3N2oHn`2!%i^^wUhfMRz0$PtMQ^6BOj`AKq@4`^#S`W=I36jdRn2O3ayD%dEF}F#X zdx-V33pJBE-D(z?BKZ zIb?)%uCdxemI3&)<=;YVVUp_bHr}C%B;fHT*RHOP7^@7wHnDC;Rvn^&A&-*gApl|J zx0;31OWxn#^pr8=+il2HKlIw5mq?4L7F4<*yKdLDWK^dH0IPZg;J_~`%!$7rF<7pn zsK(YEui#{0t!w$QP6lW__(J2<0Q3!m{xhlK2u=2jk?mXF@d%G8QKgY;wYLcRJ{R0r zV$~GqS2e@aIYg`4k{fb)`ckK#JxFQ-WNSOWvAa3tCN1VmpT%;8V~z$AoA4vf!&-6; z%&qW#8?A8cpmoaGZQESdfH!6QzBv|}EJqmlTZQ~{D&)^if1GXo!5}Zh7+C~AV7ip6 zXa`ozZ!fyEL++0;Fam>5^2sDLbACA$V>@?pkYzQ@h#)(V>j_&z7Qj5}rIEhVy}fdCz6O+H!?~BI6 z!6*VYJ~t2-(kaJwH}E6#*(oYzN~Fl=f>B)b2&X zd$0|N5@r|L@dBah6|F9*IKTgnyR>)p)y%M`1Mgp7EYk3 z`_u2yZjJRB+F4{A-2yZibESv(irFb#Dn>Lg$8K$UWWnN|8{?IeY4|u;1XefI@8@e* zro}Va?r+0FiH-lSso@u&F^7}cVNVeaGr8T{IK1`=%q=Un9`^TeB4gmhE?OF|T{606 zPyGEIO%e<#X{e)P6RB&?Z3O2C7gn(wUaBmLnDaW{TqN+omxBDffJ>BvL&(u@^!fbQ z@D|*>&aaB^^Css4D-H9`=*&_+Vgz-^;{5(msa8^MU{&CQ#%aUe9qS!7YxgxlP;8m4 zp!`UM82Wk9XeWFOpS?PO@ZO}vDrZl<<0Em4US`zAFAXG~O)HG$jtV*DmH7#+3x8n7 z>grCy$)2&km#By3Ymp3Yhuzyp;|&QtrZvxIT=+gxY| z^GwS!!g7g~J@mq@0*b7i@IvKtth2IP=AI)-z@3fVI&(K!3BFF~BM+ZwA}$k!TQ>(k z$!*gkzWHV*;Vhb*`yVMlS+Ei)Mr?+dHVIEO!C|FX^HFS^%; zyg`XVFLMlH6JvZaS^Fn>#2q8JcN_PfX>*SPTWWQ!z1>y&BI!;4%Iee6KaB~S^AsK* zCm_6Ge-vQCSgeD?+1(}Kv;t};gIr-)4!s5a2UR9FDaAf_hx^#nZtSo%^jld;H)&pH zT}BUYRlH1aXxz#1=1%<1?)FR~i_Om~H*&W#Sm{(}p=}hrp{4>7<>{ojwH-;~>2i(l zH>o)sBwy#7wPn=$tg53)?;jz8w!;+P-71UgLwFkL#Ge~RpI{zaS00Ma3yE|>o$TIeFotA^KYsGNSBGV)V-WXv znfQBa9-4GB3WM(R;Adj59nUC=yQZy#-cWJUq<2F`r#`V(t&IP+x5MI@>LD$mcApp7 zb~fBJRRut~Q{#Qh_r%*7W-JdNnXmX8%PKxI+CNQP%{A4=z8?9r{|YU?+eFAZ*;Ceb z`-b^o+s*8%*TpvLlmhg^0H67s-?4l4Mo20V!C@_J7l7?H3thq=4h_0QbSgr^+V!$K z!Vj~OP7nO#K}Xzl;Ybc|Y=}i{@Ms>g$+L8TZ#7rMl)8~vygeeb0pveJA%s<-dlUQ=4_I{F^eX@7OykXw zIYlupxBHIY#>u-%TJ28_YzV;-8BkuNF6%ZbzA3e$nR;$Gmdus9F7hAcl%KU-6G;tY zP#_frJ1c!N;~pP>e4BMJhzKvZ-qz7U?J81y<)N~!HK0Z8W(Wti3ORwaJTUgDW$(%E z1ffa5j1la-iM)X@(?-%c#a&Bk0GHRYu%TAC@VJo#r2o!|jmG}6i^yK1kb5(VZoN98 zfh;iqv^ebjGJ!C?Dto`xP)3Lpq1z;(pQP?tTbjWT9ylI?&Rbkvrt4uSfR|>oDto#i zLF$d!Mj>%;hFqJuC4;Ezbu9I!&A_kKJD1N3Ws0CT3WlNT0?@-BF&ziL`rf+R`#K|a z`~lr2i)pdscBb}pw>ul5Sxkn};{0X_fmgLZ&U|d*teMH;sQUDa z*B`9X4OQF7TtXlZ2s`K!y#$_J_}eKP#kB9j)z>qdtai+KvvB zF3HUr4K4f>Jj75>TO}#eta7)w9ilSO{9Nw1VnD1IF$oYD!LFLfpX;o8sslhOC0kdp zHZgK@75rh_3w2j?f?mB3?YGJ^-gW6sg7Dh) z#4x1yW#ol}e!oUmF`hK-yU&||%+4`h4aK+_ZUL4IrzB^$U_p65kNQGz^26`7O8nFJ zcSI2fa1i=QTN;^iB<$)SCiLLTsEhAXJv{YlyRW!DqD@{Rd|W)Nbu61}xkSmZ5{H~z z%GHkVs$HJd(a!4-HmMK1fc+{dx}s4|m}#xO1(H#bc;RCS@2SBJo{Oj|y(@u!iEt9a zvzoYSYB0I*+lbE%%8+;Ro>{V=z$EYdsf@^UV;x!NSFbEY)78NGKN)vwtzkdh^7=U6 z{Cf4Z>8}$`A&DKiI~8xn^LbVWRmPr;mk9C&+cMo;wQ>GsRXy&Gk2u6U(WOQ=C(`Z? z8UA&tc>S{eCrR6~OH+VCHzw9}65ODCYtXGDm2%z8U`)>(t0m4my*14=_81~x83KKC{Xm`~^ z@2LqMzwW`Ld%3^wMsn3fPrdLh(wcMJ3j>KSUd)YYS0_Q2F&nNmT#Qou)?gIy`6f+V z$uOJ87zjq3miMTxSmGq@EhT4ee{~#uytXWRhDi-Ot4hKn#gEN?mD%*%iZ8ZtBC^Ii znB<19?=dY4(-EI}od|fo%Dt7*y_I@vmQZ_&HYV4s8Xn0EAp8oYT53E3W{&C1VUr`_ zqBr>bjZ=aN>rc?UCEsUq^B{ksDtzga^pRtgkEmWweYE_s8Q(vtdOG@>(EQibpH>{C zPzAnU+E>BrG%s{pfW2NMH3aRQ%Z)6C5B@mDjO|6`tk{6KyG(9*-RJR=O8qv#yyF~n z*+OCfw*+{L=7QfpfFYti^qZv4Rj=2IOuFH@llyFTN)j|1t7KFkPrDCN3Ke%)mV~yq zXC>ihe}M3c!?ChgU#P(oI^Xs@wN<|v`vUv?+9=p#>MyUunvF5`qzCtzDSKtQMc~JKI}}&nKA^WnS?~-acKAh`$_}RV z{Y2BoQ?p&J0Y7gELhhJ&K>Xa@QCZB~jX!c7c^@&hr?7`3^oS}dUd_&#i5$QH^$Q&4 z9&dDlQ3vIgjRgFgOy>11*qlV3t{DBB5%c*NCcErHXUhnrcJs#-H1k^GLSO>-(-){><@Jdd8H*@Yt&mS!DyIH+Ml46D6$67 z@h&xiaM~4?c7>ugL~ zUA(CL&9_GSvKJLw;`vxuC*v_cw?#O@Xg2;~z^7CivyK=3m#PYPrDMon1(*3Ub2R5$9q1++~UaD5HX z4^R4Lmrth-o#C^q;6`oP6&XFX_Ir%0ao!Sy1m_6By5K2sN(V z5?>S}u;WyPQz5awyjXQRy=Yh8;1y_`z@#H#Cvw@GWqY&hiaTB6a8brE+DkLxP#3Iduk@7&(qvo0U2_+@pMBKo8BX8E}Bb|B%pkAXTu zKjdxDNAvx>v-TJMl6{))Fy#l@$NmxRhkPF!+?n$=BvfjB!Zei@|E3?p;@Uj`)z-5* zfj9RfmPT|J??W_9hVKkcd8oi95qN}?O$YId*^BLwaNqZvc|^zY%H_G%q9Z_xMuNXsukX8FeCP#acC4(*np#U^HbNU9)=y$n1k@%qJzu1O=eR1ioEMP?EJ0 zf@TS%sUs}Uam0TWnM6HW(9|T_Lb$*YlJlvaj zXKbeN#4*JK#yf6v)@!P243gFOCxT@!ht|S3_7}E+Bh@L7FBWiLIkiZp`D1iAxvmS@ zqt0QAUbau*aqewPI^O_gV(1#K@C9@66A8{6838RWqM-jQoRf}(YmW6M(gF=c&Qb>? zrzuOdYP@`l<{xH8^PZO!lZqMar!3~^m|~la_p-82Z`Rd3eXwHY(Fs})@l7P{#my>3 z8x&XKXuzd1?LrC~j&1piRkXxT1AWO+WPD%R>8MXq3i5oZt(Z_U?aAOop6d~ zcD<*iIwwq2`!0T7-+1JjBREdU4CY0;5E@3kU2%VixKrh~i+GJ+`>WUa&~0fMX8i+) z(p^HJULmg68unq%(0lH4=|9xz06fWjTfE1hi#b(tW$#6#?t}XR4}*ethyz18qF<{H zV)ODp+qU-bZ*~plt*?shYFJXo)>&B?8zY{WN?hitkvXS5VtZ##+I`%dMBq%`3JC(k zK9#%}4YY<)V%THm6g_PyXr>ryEe@MfMpk5;VeoB&1WTJAcMnu)KAV zu88F1rkRuT((;j&jrXzo&u#3`hYZ1L=Q{uAVwIlUyq3R;EXj#HUsk&j8-zPqKVPov zVQPnRU)bBQ1oWbV_Cs5#p=T>eAit9#ee?3Q(Y7nQm22`fU&OGLXze_PAm{@Tv{SYJ z>3bJI+6ADRku^Oa-ilMtZ)zA>^PiF&ul(Q2TMEMtWQjtqo?Je@R^SK@4v;n22fSs-nKryc6maAzEkZJ zq$+qvgS6n6QjPscT1~`ePR3P#!a?-m)ldk9h%%-H> zF0kwCT~ETj&g$;9BDPb!jpFSRE5b%xNYn~YHbS+>j{JAzq!>Mqazs>?h_%@kvS+kh zJppeOc{}0X2+R=!7-~d!(t1&jDvQe5@*O{w7`6#nw)3s)ly&QKu);+nsPJg`v+<XY2z_~ zAfrlO6Uq?pY1d_C3!bwY233b`7x~2}vNFIh7Wx8av;hgKO~JpzS6(lghddz4C%0cS z@VwoRMM)kk>e*aj=nPj|)~a@W!`8)(eoH~f*Gzg~qa!im=e57-ae9_F!v12NF@r}~ z6;8yCcFQ-4zQ^`e$Bje&u!k?+R!0SEMj z8fb*?qv#S8KhtD0L3vA+yBGi7uFiZ7f3gk=#dQ9(vA~(BdqSW0_C#hTnxi(;%nKKa z07VkyAc4~TLvv~PTCPdT)Mp!7Gki}{zb{dQ$+BF$H=}kJPh=oM-(udW+KU)lJSPxZrE)?ml+kv^3Kp$$nQ9ZY3v-82J1Vby;^nG-Gs7+h=qC zBe|e*00~U1K7(sF)@au9w`Nq&vruede+yDfftT%}6{g>BlO#&q>bFJ_^}Zdr4{ zHZpZAwqaK0A-Pl zI~kn;5h+`ssNPf@o9~-)O_4X#+8F)Q`p2KU%8)eVJL(IKoB$xWGy)3Yzct~c9Y?IZ z25I-))J6cy=$q2%tjP<(k{y>I7i&i132SpJG(DZly8L3B^&J+$wQHU;ZF7(Lv zsh^RfWW!l?-cu@bWB~XF%L4Jrteci&7osw0PCo7Ktg}~!85a&Pwv$uk9mr2?7Y5VB zmDDtXJT)=StT;kgS6R!(r>;VTwf|)RpUOJ{b)FD zw18p}0brz#%RO57n^KHezmvb@%pSCfF?C6+h-sf`_Mu*$OJh36CdEl1nr{rwXIobu^4S2?+*qBx@tV18!vJ%LG-DgWjkl~L(LO$w(?+jvj4kpdj?kEP_yFdZbt~6oACmXL-C@%F|eEKuqpC77rmZ(Uo5TD#FA@`^^MHyh`NWeNW z->1sU?1bp$AjF3`c_>onG?K--FBo7vbt7(G`<)W4|giX0g+;=m3#bdT~AYyEF(bA#l{PgJOMHH_zAH(8`JbC(*s&;3T^9#;zRW0?aQV1 zJm5=F>oLzHPz9!3C$wngqQ$aXV+StJqI-*#!OzIX9OC>hIjB@I*9Hus%*ala%KIWJThrBQQX*B5t$ivoaILOqV9DV zLjF{oW@Is3ayX$7KDpemLXspVflP)t64h$F$x*jF73_;Ul{c zD%~91Y?%A}>0FaY*aQTq*)HZ6Q|

    {w=+b3)633t(8*f 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 H^M3Syb;#(l literal 0 HcmV?d00001 diff --git a/src/img/league.png b/src/img/league.png new file mode 100644 index 0000000000000000000000000000000000000000..ec7c37fd8fefd4e308f94a3a43b2ffe154dab615 GIT binary patch literal 118574 zcmd421yozx_Agv-fkL5Bv{0m2(GVa6E$;4KB!K`SK%h9Z#l5&g(c%;bI<>M_kQ<|Z@e+Smoc)l_gqug{H?j>-bwrvfyk$0nsc6`0$jWdVA>hmg#t1_Qvjg1f zmix{fUI7Oy10!>YEx94Y1ZK%ciK=a+B!?OEQL1yuvdUTsLrh^3PBsu_Cpi@(CvzjP zF{J=MIj;lvtpYg2)_~jrZefY!cHpD@t(W`u{1=&plKeM|tvMg1;4g#Z8nO!H!U!7( zIR`T*lM#TOjT{7K25_>1+1MG$*;oM}7FG}o0La7&;AZ9I27<}|d{N$7voVHpD~X8x zY3ufikJ8lE){2{j#opeY*&fJ@urXl)fWcrERyGzkHl|w+CZwaKt$_oRC6ekN8blyS zBO92NEev5v{!62QA;QjjKSF?8$;$qv*b@2YMBPpqi-Um`3xJuG1rGle*Kcm5 zt?2t(;XmE@m)uAdM=J=65(J5`voV5*zK2-aQvFk03G&Y<{tNM2_P>OUjs7xhWoKjY zJ9=Xy7KjA|erp4H>nh+cKdnp=wg{vt!s;)P|6%N};otH7!@Jwu{%iJsOvFDJZDG)V z6UDEQ|DhA&0Q)zrzefIIz0Co)2*SwjS0s`m|3H;7!U$%}{g<=chK3vfBM=nC1T|&_ zF@b^XY)oKQ2pbbC6v_!5{_23N{ER%;I+7w+Gz9HV^|_h{)}mkCKg*jg^TN$i&8}0swKd0k}Chm{>WuSy}&J zz10VUI{uyYHY9)w0Kg4oD4g?}wy zE^<0`n58ko9!XD0{ww+1lE1=MhZ)92 z4;3Ib*4q~g;Meiban1iQ{?B1mOW181Z@u`1RBqARgBrvJ`P(&CHnv+we$#(vRQa}; z-sXvug9CUAg5UJtZfS_XZV~;53;@W%_4hH&zm0*pepRbKfGYt*+9GTm|Ezz?5bHnB zEMVlns}Hw<(I3Gf4c#YOkfZ@*x1k* z!UZ-m{D-`~Ddg9b{|#td+yLO;fcA%NBm!z{Z(suvG`UU5e+7y^1N+17j{GE>0*16O@bHfXTq{SI(fE zhOAHn0O)qn{$G@-{}_(}l#|_%-5AUSGz1zk85ps1F@cS_44I4#I5{A!oM1L1uG{tc z2Q>bUynk7@{%=6uf56%=IR3NV|67Fr_rUuA%_#|NqDn%db}LkK)Jjzt_b- zu0{S>#bUn-1Jd@kQR4nrHSoVh;xGBzcH=)ZAV#+@kTDR##0dp}m^e6Y8wf5S7m&#a zWCVtS4M9*gL&z^&|I&u||I$GGg3ezR?5~bU@V1ZnwJ9L~ES*9ICVv%C{{PgJ@cy1k z3)nv;fIvY}F<~K2c1|u~Q2>ZbLQ(#CIwzuhq0n*B|> zy$ktu`q%Bx?Zsa=P!P-8ZO!KP_NX-&L+#GpW;00Gn^ZdfC z26>hy@Z)-1^1EU0XhlQAWQNSjUJr9Jbw|CN_DkGv-M4c|Z1qcwpRg{FChKSz-<~SQ zoh~*m&r(d4C9}jOtAW0}Pm)HTR+9;%l9loNY^t0ZgeH5QSfhG(%joeUYW6+> zF*dDC?_LjKLp8$lKb%HRXk~4*|Ec(lb9lQ zlN~~Z{i6-LMe2J|$>+Iw7J+(SwVjXD@PjAyn)AoEB2hILPPHei!Y^k9`oFAMjV;Ma zS~iU^87x`f>%$xLz4wM$Kw9>}D^`M7>!OB+HWv3q`sXi3`yHKbmuJf_D|Ify<{@1zy_h@B138SFxK_l?|2v3StvU z7clx)(=#o#GT~n=@5|!CjM6QsmSNIEhfMRW@-ByB*TVu1Bx~yCQ(qh#8UkOald`He zsy3xxY}|>(tTNc`OW@Yo#6f!7(|Ac^h2h@yk=IDcOv+wlrinDg1;vYr>bu4i8)TJ@ zq|beddl!l>(}O#y$p?AHbH=qEea-Q-YTs0E5gPO1X5fTsd=?9iJgUFr4P@zi18DV& z%_66%l9ENQq|~xdknX1`nbz6R&QRpbcanY-<6r9em|jMuX!KxW%yE}&mz?^Z0|EB< zXLPDFqKLZ^f*a3Fon0Br95`H_a^;5Nedhc?Q-{Q(JQeyJiw^b4lZ^=I*I8KDK-+3n z#w+fXUs>78XlJk*S2-!a`#@E-lAC#$?PpMc%3U|}Hs zr=uc)AF(M(!kc1`(2~I%iy)TQ3Ehtu8TcyHYl4!`C#KKbuTOod%dR&-VhACMZ|CRS z+_5&7hma@+4HA$F!0JjSy&NAC^FF4Ih2RGLg+-TCnvSK{*N)w$8teCFo>?yawex*d zNvYWxwgVMR4}rzGN6p}7+<72KUvI*WdAUXKYQ;Q+zwOH#>_7==D<&x~(`NzLVQiM#oE=Qdot~T( zbm*(t-H+=xgKdD_o6SGE1fd_e_6zp~2>pq&ppRu*2gRs!iYqwII8oP_7rO8EDfJIj zI`#RA_$U(5^d4BxUF5u(`J(UmimF+7MTDAN>s(6I535vfdz5FSJUC*+PzFCON8-6c z03db!jr_q;@pk{zT*H!B)66kxoIwshjgG?F305n-VpXeGP&RD=SIm>J__IgRyq`?r z`@#{|hr5&xfYy)d@5yEubd&i|2T$J(wX56aHF#9;_4BH)P9qtqsm_0#FYWbd7TT}@ z>1HpBI+nJYppU&oIUeHPR}m>dzdu^g^KpCpnBFq8J>4>v^WzQ*(TM(Kt3mIo=A2LG zC>G$(Tmx`& zg%9p?bkjK|KZ@0P(s8-uzajC($ynT*>3AhJxt#x-_ zi}chV-bJ3=f>uqg~#ZCMCda2~AmvAc;WhaH)vT(M5liU znd+hsm3fWAapEVmW=FWqv`I5UgJ_gz38|+oBJyjBGyQZlCVzyQ^iOYW63hsEZMC0g zJ61=1=*FA`Zew14$(sqf&v48XS6it_Bu?$^JwOxSKjts{yk^RfApVk@&pUkhW!{x@ zNg}yn9QVnKvIp_GpH0(ESuqtFZH6w)I>zoqdA|^_nOAJzu1o^laKfiGXXPsSJ6@1t zIn6lEx>i$i=5uimOgO^=B|lCud|hxJN+ zN=C^%r!obLD6hcqEQR@WZ$_dnyU z@KC5no!@u5*&g4R9oKIuzUnTiQ>bzqt z<)%3FuV7c+o4?xKwveOh4??;lrjQ;0N4E%zM?ad{7JHX_{g6w1zMwT;O0Uwy1TTur zxd%SDDNWK%noOdBrW*!_wK^rfesQ#hZ?YUxafhmLCyew(U)LRn`QL%xsSmq&-um&2 zVd^Jkz%#C9KVOHt(Qgd_R{1QFL&{(05&}BuC3{p9qEDz=NWAGb>TF>xpid>BEzFBq zBlTD3zj_u@b`R1YUcP8cPjOn8Gn&q%5+b#=~RvS1m~|-DwN8ysjbNcy`Yv1 zN_&i7z4HBe2mYHR-iE#WkO^~k)#V)$tb@{<-sB~p>-~A!)>9iqBX^NgCt!E3)Wi)R zMQXxaxIKePzBuLC-iZ%U0zv2KFIFGDoGM?yf6Vs=thz0I(Ub6sR*9(^5~;(rChDS! zn%_vBr~{*a*81W%CllzYmEN-Zfx7NVm8KTG1YS%w_7nnP>*{wZ#OCt7=QTI3H5&5G z61Ip4I!@i&kIFt=ECoItxh=82%CD#+%*^Ps+px=mqXFp-t>|$v;EX&R-CDqasuxlJWQ6 zNUgu+P+X$J@h@qz%U!S^D9F=2OKgZhB@lrR#xlIyJnTQkI9Lg-Q#)GUMAzSdw(KK2 zD?(T(3l#R|(y>wK2Y9}CT-mMFQgsJQtpUD{Yf97`-4PFPUUWYZp_S`FU+c}SViHdw zww@?58HDyacUY{fbO`Lrxn3SpyX_#K)fa#cl4f_+cRmQ;H!c^|QRG_hjT(9trKIvg zRMU}mE;dd&UyDyp$tfd|W)M$Q^#SIGEv8~4q}7EXS^CJJ6S*^y(8+G zf#QkT8ON406zYAs%Y#^@LNx^JrF;K~mBB^SpAm~JB5tPTOA)&|GqdK!<|n-e;sP!N zpdHNx#fVPR9vRL01=s15G_;GlQ^% zR}*O+{kuKDHA1+h_3#`R--iPzhen^0^SY%XS(c5FNQC1P8ZPc9sJPzN8^g~f%N~Sc znhrVNLRE-V9uCteRbGQdQiY68uD6MWlDG`F-bxg{H$F&KJiixNSEFEPq;oK)9kSPW zwIa}WTXwD~!dF$*SM?Ytez>3GzB23|Vq3y+J7SnOMzT?uE{Qj6%30R#5ZYl3XVR2m ziYnO^Kbn4y%3Q5~o^J(@JCbwCs7%G95BTA_*y@ZBvx#e!v@#sbFikZr5o(fVOOgD< zAnm%aH>|_u824MvP zh``2$lfdFWgR9|}6{m*t{<_(LeD;;o-fy^TOoaqfk#cl( zxatc((NwY`Gds<_b8}iFWSGRL!_vKy46-WVCG4`96p}JI#d7p=N~A_SgKiOKrlnUy zXPucDOI{?i2L<~XUqzlBW*6d+7FEgD(amKm9Jabpyy*m+WQe2V?0Fx{2;W_*+YDF` zZBv?)mywJsvoy>x&x3z~4a6`~y#D&;wV=$w`qBfOQK254*Mk~D09^E38%IDEwXmu- zJ3Koh6lX*y@$+XHM%ea)^%rK_0~^`vB8k0N=u))og(eD7Mq={*1+io7Bvb*~Mw{vx zvD^nsZ$)~*KpaOh6UH_15xUmgj&%C)Ba9TQMo{;2tgM$q2NL}lku48OBc9vg`s-iz z_8$*uq+~xYvx-$P!5PxvNYKguijJwiFj^SU`|RSW6ZK{q{SLMD0p%xLS}l>54&#D1 z{sV>V{&Uo+s!zIhVlF^-hkuNNfQLP>vup%gHSLk1zwE3pA`?cO>Y1fB zo*$%*8P45~EkrD@KIDW1!#SJ9hC5uarDsPCxFv3)9PY)W~> znOTB{3tMI%Ns00PVizboP+^^&bgCdPG%UBA4pSmgVbReT#~@%P@oh6+<*?ZfR1l|n zNM$SMsz9N&8VFK^^$fmg-F_Fy(9n9E@EOZALdh@(ZMbKBR&LH*%G5NmRU`2y>L>#_ z$77B4qU|*mJyp~vm=qL1pOfh=iW|fgAXfMCbsx8D+ZUM!YMkPAYqFsI5V!O2%aQq0 zlf013LbvC4Z)RV)ftI-!>X%y(4ShkxdnDm#C$mNJpbcVS$EDbSosnw47zdR!(}bAv zaKeqL)Uhd)L2Z=J)^uZG+$LsyWh(Z1WO3HH*6HNCF@!b?T;hnGW0;d8$O{&_fww^} zoA`P(B`9T5hL~nAHk@F11tZt#N-0?qb9jnXIgD5qFJ}k{+_H9LFbDz^Gk!lPDR1s; z82eDx_59aJHL!OA(3R> z-S$~!Z`|4Yu+)|U;-A}6v2_bmNr-#wxEkO!r7Qylzo(C|!j!Ga7!pBs_NzGC<|Eat zNqr$=!_BMg=P>d|Kn~fdT#|z$iSneFvY_Yz2futOA~eJx8hHLIl=5~@!v$K$d5)-b zYN=aI-3No z9%}f{hs|5CoJxjHWX`o69mSd?IcC;aoeLF`jXvKLLu2yF=E5;ql1b=x%*y?NOpW8D zXqOyrw}!(?X_8*yCdCcVu@|bhBg}^u8iW~TX%)bP_>`LtH!GOx33{=Ias~3xep$^4 z+xpqk?pmyuwbuO~GgjJM4-O76N=t!2Na4ndJ|18xjAVIg%%QHNq1<|L>3pShjYXHs z+3jen?I^#r$?;vHdS!Hd)>Y-rWppgbvEvON2>BkeEP9_!Sf(wKV(MFa`lRdGzL?$q z*2?l2xx z3-5Yj=eglJbgV@@XL-eYA{@HrNb-RhgsoTq_SqZ@iI$QXx#8#A=2=Ss{QZ7J}g&bpc8fvz0RGCyWJSVYM=(Y zoe7`gX8pQ{ma!h?cNpO6`PO=L&JXMLUR(f?vhF(ro=e|NiA_jEw3(L6U`!7%Wh2;O zx`eWMvk4VPV!76Q&p)MV8N1T06>`l@7scncvfI2JQ}wrj^vFC=+&+D7NoxUI&tcg> zCwk08=6r0icjz@bxIeTXJ6+g#Jrv|~QXapYeRS~xReyqi-Qj*fvenRKj$JJzbJluN z?{U9&Z6He{Fc2hOw_U@>$bvb^ZZz~rER8ePvc6EY0m%GPM*Xp<^VnwM_>;AEF&i1qRF$$`1eA*O`SX?NeAQ)3a z4%yc}%A#5QOgBf3O0>t@_{mT)QnuG*tb#J1<}wuyj8_&KetKTGcS!I5-x8rh%nV&P8aym4~V zibn86B@*Q)_?w=i6s;2$85;7b0ddDWapN_9FxD+i-@y?XBQ|s8k_eH+6SaydENEG* zq@6CJE&mRcje^pF()Ee`faMg=kH)Kp&FYglM>)i!gt`)+^~8llD>uj%3tR@8>F4Tv z%tSg{>pqU@gN5R&K+G51M;^4ywzzRdg;*oy31d_C_Hhhf+125x96iT0boxP zGzd#ABY6 za2a`lt3&n1^B?Q_ljYNWx|_88dZfPfB9kW%1xUm+g%thEIV@{}t0)}W>g=_081U9a z5`jm|UL}bY7*p*$Yf<=fu-fQVr9`b{%1^Q5o}TRzcL(Xh+IU5JSdp2OrsBpb*3ix# zR$zEf5?%_PGVQ~;1mWfrC(60EpXkgo-%-Sl1(~U+qDB&M7&9AGVKF&nHalDEv}Ddp z>dKQYXJfNolG9QP;Qmd~mm5e-)wJTB)m-Q)^s1(PL=R5jglzg$V+=#vKt+Le2eSyz@ zU%Bz-dR*13?+y#=?l&pMtIm9tq`Im>f%=ki6CrC0=zQpOfor#2<&5)ox%hk3B=Vgb zw1`W&#!YpArJe;nninb;?yvbNRe>XULv1;I@V$AiC1+-@16-#tp}NRs-*1^V$>B7V z_La+0>zU6-laJ#Odd{me=mJ;I+@fwS#RZytc540dB@aHG_`byre9ohM={&u-e7tQ?-0Y+^|^2Kmz0rRAYBb?59^T59#ql&uvw z-!xsHH8<0Q87c+c9hc+ugBNkKPqE9IO+|dlp~fwTPtGP9lqAZSjUCjYLm$OR&<2e{ z_&rG#;w_ABdgHmG`vD1fswQgsMZH@9?LQynyZM&?=Sj*KP2pN0LFp&d{@K z`T!!x`L9v!!c&Aot1$U@1kJ zR>+vH|6KegWU`e|rk8QqE?xLDl-nyOj%G9q3V%Aq30G1b>A^P15i8L-VY7ZM9R5Vt z;OSsQ8f^Syp^n%^P8?b==R-2b{dE&Lfumk`ox^UH^Rr3wljAM{habU}u7#T@dX7hx z;f0_VA_~BfuyT0flv8?2fpV77Q?pD5;Qakm{__QOx$E5Iv!k2&?1S~Skb=Oa(EC2U z`%fCPa+gH7kg!B~my_vJg2wAe^{4HR>cbi@g-`Z9PDq!3oNvP*(FKxu;!;rx*BkC%G);Ok^E}*A{ z4Qqr59=87KUYf^-EXx{B(I)}OXmO9;piVNPLqz?>s*%0E^K5f1)+?PF1JwS^b=%}z zf!n%|mwKJD($iM#fd#ZdgQr9x=A57?$pUArs7(nzIDgpuX!3z+;d#IIIE#8!$IIWyh4paZ?rQC8LzG3d1*(#i?zAtnYKM;NC>jC@xZ$_{OMw3 zmC!wr7Ir_Zxhhz23(K0LxR8c3K1Abta3bMVqc;t(8a^J8OMdYyp2c(kf z)tk&W4>+XXSmJR1PJ`*@}P_Dc@h^|jkFN!am?B4D;Ms6&fZ&Jd|o0@nyJ*tMy z!}s@)xd8<2>*ulckLPS=?Hf_~;spXun+0Bz_mO;>F+>wG^i1h5*kwMKcz&Z26*Mys zqr=xO;W80beIgtvii6c3tRY#qwDareYN`Wg@yMPSogr#_9cul4Es+NmCL6B+qcPM^1-hQn_hrEd&J z<_?uqE%#NZW+n% z5#Qgtedb#~iEIFhw(6+uz3qBEV74hnMZ$>nY^QeTU15@6I-O^xn6ik4uZEC{Bp_@` zLaG9(6c09~sq(N_WZV%r&hSaPJPJaZKV#}Yi47zc@ywXyhs!w7zAjgP+T}KXmy7Fz zybgwscM(~E6`ULCd*I8Ja3ZM7F=jX}Yu~Uf`?w%+n$Kx#__b5d?5P}Q(&;1X68{X( z_BzY*WeEgQao<&kD9e~R;N6y0PUk#NXK)mfE4hD|dGYQO;&SI?+UzB(r{@nXi<$_M z_`3>Sj+Xp@@@^~ch=6aw$qi2)i7wLDFB@V)R!*q|cHh%5U5Y1P@_S$Tj|Kq<)GF!j zm=lkQDW|?sRkeZf+6@N7V;PDd;{ z{BZK<>nn%L5f6RW-Qs?M(}87uvdVR|f+-#$6;4{rXb^4d0!(<7IhS5CPy?&jP-3Ux zg%!ImNAQ3XdxW*lGwpdEhlSpg8HN;!K+d-WbdO8ZJMo4C@Arn5rF0JD(bfYOMQ!33 z%9-fBFB7N**3us>4aE2YQkNv+Nb!QuP*2x*bI_WtmRR?5Y5lr;4rEX@JfLK*Yp;Vf z^+qe>{?yV;U5%vCX?(2SFMTUE<}y47J>bXqesF2!e%3^pSUK%5A_+m&BdcB-^Zto= zjKSCrIX#DC{hM}S{dr(*Ywf)4FoT~h`E}$O0n)=?;AT<#G}IYuzX$lWP>sMgJSga_ zE$#76{f%p7gOQVC;?XEmj+-O`>RUrJ)ftod-m^lamQ0VC^LvA~gO%&f`Pb{o`KzrA z<*#Jm68lcgMOTZmR~*c!MgxcGt+`a+Y)TIAa%$fnQH*j{{5(1MRM6NC(>Muw?D(jO z_a;#*4ja01uVgJJTctl)U__@fnMG^j6`3%R#$(y!-sIT^l2=6d|2 znl{baf844a^QDZwAkW_M74S0SnSRHW_!_u&asjDule${F;07rrlN0YXh}ErHn*+@r z7sMlYY*33=7@(dLi^{V2k>vmxmcWTTaZ~gxVgNMhYv$WPw3dm9EX`Tdy@rkczTV?C zliR9a^?q^eq;7rtRbAa^(q;SdSF*Ej9<*+oNPX80WrkesXUNF;kz8KYMaA+ia2+v8 z7{i>f-fJISt8yOq$hf7xkXSG@Or+Iw2Jsl#N8Mb}p1Vma{*`Q6gSV~*n?=7J6I}<; zBk0FqQ}$f@^+>vki4sGwF|Qv&QI=0$s*ofO@ygM~?M3bS(54_Q+8ZTX!I&lI z`!4Pu!tdsMu@3a6r+hd^v>8ur!m_a=joWzmLuzxpLLwvO=1O<>=NLxPPlk)OyEDzg z-{Y>%X-WD*MC*u4D;?*7Izow=Cw?*WyV z>4XxQrk;C0ct=fLIzDD(gy_^29Wz9g-kA^Mpa3mgyuS~)FNKPs=UY>wUGX4bMrmco zPp^f{?e5smA^U5CN%?GtZRU@U2-W8hrSfQFES0$Tx;<>HPqr?XLeDZb=WMpN5m!GiP!~TvLXsVJL2ei3jeFIF{O9xw zXnLY;KTP;9SRdoBIiPgKiDZ*8c-~X8+et*LcPNpSEnd!LOj@m%o|d&=Ch^Hkal~;O z&{Jv>Mx+Z3uLf0?hs>!d{2T}XpX5WoK>)QbCvtL0*$ zv4Ia+&CFS}r}V8Y?tv_24u1Gg_AJp+PIy7_@sWO}9q=^cN{9b?+OrpF+BJ&R#@Z=p zFv4I+!t($?n;6a#3t2-NS%~cF?W#tGzvSnc%(i^1!!ID*HXbmc8ctk6v#!&#j|&A{9H0fSE3{?enJQ?cM2b^e9YZjQFTXIbWKv+YRi|Rm zbw;|Qvvam`h6<&lnZPRVEgumNhuyD@iVo3n9^U6c)n3h+$TyxjHy#H0G+xIiyYG%S zUN_+;&&7CmU=tC{0k$F;dynZ`fw1ROs;y-|WBVATH~M2W*Y_T=m==i%2K+r=ym_@h+{O8D6XeMKa%BkSDI@J$K}LTmC?1K2^&C3xy*-k2c2<-r*q3DQFx??f6{<7s66*ugBlCmj4=Wuh@c>|Q9#;1Vz*VI3ntFp|rfFSXFFrXvQq=_G^ipaESp&Bxjaz1M+kJBKDt>KC z?0_xdtj=4#LzaU~)?RjW-nF~l-u-7^<=kEal@C6GVOXu)agqINvO`p-0|vdP4Ocqx z;ob^%v}Z|je7X^utkjdc`WyqvCDk0af5QwaU6TVO#4n$xjdwNI-?phP)5TOMr{Pe0 z*Y%{d`J;nmx1S~gH%BJd{S~tP_x8*~3U{l0n5{dG0^*}Vn;nTI(}8H!tT*@EQPf}~ zbxW}Ono9n_j1v~#ny)CmxpuVJJnz}4c%xc-0E(7V!X3Yyg4i&)UHSWHk^=6O2(Dm; zh^ho<3R&{XkaEA({z#NwLHT)aX!QYLQapN4z#W6Ps82cpkL8*@56!ow%L`H$PYs}z zcxH_jDiK{O*!I!UJU)g~$SmHQGe0nAG(2RW_B}2RwMEdt#JeAiGG%pOYA;S|8FU?Y z{Jn=`V;bVz9MU|KwK^|wcd7d{-!G`{Wpt<~rEX9_Sfa~n9#SpQJKaZ*u5#!^ZsfK1 zayxi6OTF8#OcIiQEZ{0lBT7~MswdY5jHfZ>@si6w5M*k6fL)UvzhuzSNjHh%yJj z%tFCnP69`#Jn)3C=S8ge51N<*E>x4$zSGa|DRGHkM#RjT+n3pP1=m9&P18VWJ&rj{*xM`jn}NQ=fScI7zh zCfacrAV(@T<2Uhu1IZy}+PNYD)o0cAZ(BQHV{HZxIG6UN+C<$MeI-y!Tu zHMbn_DT0#XAv-ZKrKsW%=Up`1%wY*25g?I$5+Em*CI-R$+W&%gJEVvkea;5sqIVq0 z+lWc>*{>DRM5A9@zZF z`T0FG?yUuHCPeLggPW(Ca|tu`fh|`$W@kq_5(i2n%k!fA@bcltgGZ{(>3-_UE_WSn z^iDSspN5*V*HsC-*XH75V!xn8Yf*4U<@q)Hq+46Wd5#gt^bD8b3az7g+ z_>=X#uSf2x|9CSd1MVJx0@j{TC`AP)(G9O#j=f6$9y=mqzfDaai!+>P+ z+DuR-U5^YjkNW|>C|qG_Gi^pXBL62e4e_W?IqzObtnYb{Wuvjmru&7}ExCNe`)HsE z7(RK&G+a*a2Us4&Co%6YDrTd}4D(vyLxQ&W96IvFE$f%BPG&C$JCeaSy98to`@ngJ zAF=w*t34Toch`~{u_~E}dZKrQeHNPTIAJl{F$SjZn#?tX*y~h&k3Bkv+y{K7uU|c@3=yW0+EZwh~2~C5ar6dUH;cg%;#7987FvhMKRcgz64=3 zLaZYX)|`8KFzI~)dYFg=g9y!ZQu2bwxGtK|ls>e1=^|0}M+=V;0_O#wt5@U9b4Mut zqX~h=Dz@`|f(A!e2?y3?Msk(;!SN=3V*>}4GiQ5>H6?-m)_LIrBVCTjwXI&F5%?;0 zSan?n4eJZ!;0rek%C9Vmn(kjfMbjZVmG+2IGOGX%EszF!I-%d7MCX$Y$r>i>cn0yd zE#5T6memaD`iP~S-gbO``vTHrt+Yf2VBpfa_3CL|9@@l{u4&6JTn<#H6dR937#P7o z@wXDwGcIkf4JlwR&8I()jJQmuP5Mu4aJN}Bde9L`Mt%{JLSsNr&y&bZ|NKsAxvM0c zgCPA*=yU7f2*&6OSqVGo$!^SbUCnnH??ffpzQ8A-FS+y=U1CYUO&A`sj%07#D*_P_ zd|01%xR=k7J43#^hVYhjaqRE+GYlv>?#d1Jt zhk+H|Ci#;n_FUrZ1&k1Hm(OwZ#4pqjt=T-{7IVpJgVl8Gr->gY$G)7ZthihZ!XRjT zqO&?LjDP(G7boQndY_(FDKMJTiC~-)p~3I4D~zf`HH7HcFPGc1^slomAINaZu|k9Z z0wM9bVj16674`49Dl{9utsUZsV@T^;8GCSt-qicf7xwUkBRuQV)Gq=&>BLw7RhoDz zn%uQPKO0l%UK0o6wkNFzy{frT)^|9q7dUXgK5lf{I9!nr1x&D*>ANhk3!Hd~SDkp@ zmnrb31XEN51$U$oPECMy)ckP)t%?HYDUp?`v6IOdZmxu^cwt3$E>jm#P0hb+(nYb7(31@=)1~du2^GG;# zkgHCE-M1_$zu(vrEum?k!I8Z=iDAOBHCa{WG=6P*-I{ID8sK z5+ILLvusMr&|24N3e*={jRpsZ6S_y!L{7F?TRo(h6a4MUhto|>ZGyze#FFCAgt!hxvXi6`F5iXl&si^*-+>94iMyeg(lWICWP;nO#hQpka z+mj>AAw0$&>QU6!KRD2Q!~Ij`sb8j~=M#u(Xb)i0!ZgmaT27%gV(yC}*Ywvnd?_4p z?WUP`;rF-GDe#3jw11r8#3>Eb-^FrSZr#Y>IZ-hmN_Jfsnauwh+_bH2qV{t;k&5~W z{Rbf+M;KZG9d~AtZBBG`m(CFb)=QqI`ZVuu^P_7;(wkP0e4YRx=oqHAtmj~x-G9`5 zf6m!9N#JbEHDTTiT#Q54O^|cyPrnQ1d zrwpWeNC6X6=wL4|qgxHKCWXa|Oa>P(pedS;0)MJMee?;*nh zT3c)1Q9j;y#$@lZ+uI?pcR5h#vf8YFwItl(zIb>RS-Ah)Er{4c^ouu&$0{Rv(iZ)3 z_xBZ;Q|H^f7W?n%k_Ty$Rm)THh|3A>#uGjPhpQkTOAXfzK{Cg~TnozrK@Mr~j2DaZ zQ~!GeT1&=>d$uyuBUyBcDKK0Lx+Nf~Xsh5LmE^N*XqFRjL^fT{Uv=Ti7fB#*b>0ID z)^*-a5;*3oyzw))@7Ft#cU$~;b9UNUuJ3#rd(_)_`HXC#-{mr@=Fn!Nw{k1f(a(FY z4Z||8)G}6=>HUxW{n!3lO^|)Rh?Vm)N!lc*!yzMQXg8k(!zuwQMYQ&GL}JQ=oH*)1 z!zlVA=95fQ;dk7zSiOhD?*yXy65^iU3_n)jI1M%Dw%H4q6SDWB+8x)Ix1PWFdtszX0E&*$UNZwqN{5|$a@%--btOdF))9rBJD zp+Zc>Eb9N}@w+JQClO!;pA+g#9BPWyT~)tA|CvA$%<_b~1JOxA!Uvcf#LuzcO20){ zJ-##k8IaBN#r-6kL3rVVfYXCVZPMbrd>@ya_eP8u4l|QmV5y06+u6$|@fhaI!?Y|R zZWpD=0@oi;j=FSdPl{We8B&bY<1+Zi%*vIm-fe_G&vU7B2dq3*WX z>`oL&@WT0YN_p+{uzA^KKE80}^lVQxUWH%c>u`2E_R}@i?u_@M-|sQ{FAXpoS(=r} z2B>^C^!}1HnMXW+$N4*}$AdyDQ$_0-^eA7rYz%tmn;xxQRdwC5ggbAfKHsC&l#3%I z&AIsC(VsA{aW!LPl8FG9Fpz1@<=<(W`H(sP72GIUZH`}Q{_%eSV?dn0s1T!InuS2k zjKUc)BvQ&rBJHT@sz%HkRd)6SQdvN<%vH%gG8&Rc(IV-hQ5$=nd}y%LiGoTr`!CZoDaG3^KTnzBw#n7nXvG;(60v-_6d zAKwRcColf8xy_FEgDDnTq@9|o*W{<5S+po@jR+(xwV5ZGLawCbzMDCT+a(yG%gh_N z4oQ$bi`a#I+feT=rZt5Gnj$!l(+sat%Uxu0Kg@iozAPw9aE-%a6isQ7d`_MrOHuCx zV}*0P^TxfDmrs$*NEkA^M4DObjhe80`TXVU!g&0yoA0^#BX_;$zPB$e^@`D@rCi0TE9%H>AHXi!UmyH5A25Nzx|6G%W{UQWQD(f_z_{D2c;$w1h-T+hdZ? z)27|R%v1FG>^nLHDpt;|aQv|^vwPo>e{=xtHYybG6$4>n0-}%Ka zocKGx_yq;{&wlg+{DnI{U}x4g#Z7CfbHg$)=3WredK-pg+ zZLLs`Hb~9W?KfY_xFFpNRKhL=nPtv#o-`mB^>=NDy z_10xpFI;9?PiYjatZ=zH!$R&v!Er0DRJWx-Z@+`pf^~?1_x*+Bj$F^ z;F)sb{An&-TIGXx9{#T7**7o$oqzrH;bYIN{@mjyHa7mlzy3w8-8aL3@yFi8+U5%d z*x+RaJg(5kM9tK^CJ?hE4oi~j@G7ntDgOMWiyKcp_VDT3Z#-D;N^=FWYk@WitraAc z-0(SL$yFm7BjOUc3>j>b^pdh0SOmKO&?x-bZ{!X92M)r;mkP)N==C?idp}4soX46e z6b^4nX)S^?!>Lkur=ng`@~RL+plOnihLeQr_2@4TSvk2vF;iisCpk|N%^Ww$pJXX> z!Vo%MOLoFscZi9}4)np78LH@gkD}^R^eRl7?)2=)$Ueg|KroFNs^|rw3-BB4R}a?OjJth)aJ^K*Df9fxhc2@4;AsH7ha`ob8|&EMu}^*T;+Jl? ze&6@*pIcyIZiw?mc8*<%b4pABGb7Z2-b|08ECIt(11Uo@QW9pD3XUC{;iYW0x|HKc&olDhr$nW?4;Ml4kJ$ za_kY>fQE>v_Q~^Xfn3deT`f;bL$twC0=I;B1zG?UXabQ8BsVow14_FMcNR;!4D1dm z^}l)Ik}dUo+;cP~jSYTIV19=6Gi%JPjp@zLl2k~^vZF%|qSfVlZo9IwbH3wxWrx^0 z&(TD>13h+06Cs71LCd$H#AJBcmh8@z46lmDL?NAH5+JEAcH{cH#d4Yc4f}SibMv}g z!AM?(LQ{-|qL?}L;7pY^S;55%>(fU+_vO_m4!!%p-C7Mu%X67G6H^W_wsC_Bh$93g zRSqdUf|A;{G))WS_1WR|Ufu-wSNFqac=ev9bW%_jqgiMzrbe}CAl0b$5RC|$D_1d+ zV#J9@T=w`fe<){iu0)D?oj5hjDW>_{%zF0O2@=T-lYQ400->vjWg!mj)Ihv<86GG( z(UdzVnt%GWQLKVYsfD+77$0t5R+^ ztWPNsI{}I;LXlxZnX{@0C7}senzFoqhTVsjIQiH~EjuCQ|Gjv?W4zmwpXv*9@Ut}bRsuG((uU8<+NaSZ)_Bp5ELnt+tFd8!Vbfbq-jVMv4=c>#f5JlM8DpK6ZXRoL-vm9hWd6u* z6wlUXAerFB(KM0RWMKwzxp$U#4ppIPm13sHZTB2ub#?5wV)}jSqvqlBoAH0PEIt0J zGQUkSR%>M(jKaVCRw`!Vy%R4cmPVLCQI+8G9Kv_oh=-~-q?%bo+X-oU5ep^twC9>O z&5moEJ-0S;E1Q!zyIdqq(M%$~?9b3-%osyvfPi>1iY;%+u44Wq4=*}0P8u*&f16w#=;F>*{Kjf6(91iSX^V%PrN zG$HZOmwuHHdfa-`o9_DQKl%N){oJp8>As))^h5vn{L1EMc=fXIFFu~#mub-Xahu+B zu_1PzX`RCZ!SjAk$;=+FB7Uo&MaEi0%&N2;&=qg(6Vcs!2>{C=F zv56T8Q)E9OMa6sYMGldC;c&i0P)u9u%~Rk?s+qk+-9O@?8rt{ay=FXKf0%vo5dGC{lVb1=JoQuiHvZ5_UJNlEIN z_*_bN29sd67MOa+$#0yUe)iK3oV)kC=LUQFdw0=WoF&DGbr407?Buu8262vRFv!`l zCgm{@A*#}w>2b|<^Bj71Jaf{c(dFN8+f-o=4fI?0SuxfhFw% z?)*@#tDbnD#b-=&WoerS;Y;61*a}5It0C2!6VMC+EUSXHZg5d?{Q;IDv7O?}KKpMt z$armw^G}~#!1k@jZSHHAX^AnDdsQ-*!aGk)5jF6gys21rP|PW98;F^_ z-|NQpcZ9A?f@rzoW0J)=u0|QD8QVYy>w>H8N>`RTmE3yDyDP%@ zo$8|7ek0qTxm{K0`bFhz)0LJzofXb;>w!fsY)rc#4%8^loV&bqabE@hu5iZL z2Fr8-pr%9&F_R{cD`SyoK*ukmJNvW5f0#Cueb2Ewu4DbeWgdIzs~p&~YvC{dxsU$2 z<$v@m`~K~(fAjBbO~aS};m?05T;r4csUQ3DY!TpwQV(< zFazI1U0^ziP|T5ZL<|9(bzDF48Q4YW8OJI+l`>bjounlwrb^Xwh(R+|ihe<_Uy<6# zXgVf!Ny@TcV48iWe!rqW*Joy~qFrw?KTsT&qwF$aZhg|mW^3zWYrSW-e06Hyk%LFq zRxe87gh>;KQ7MXoW*TVf79j^9Md2v=xw>2+^m;ikbNvB#-*<$IYtz}yar4RX6PF&| zZ0-LfS5#loE>8j%CM{*vDTBU@iGlOtM3RUH-}5`dHL{&KcX{48?}*JhNWxbYzVKMv zNQ}`n3BNY3b#E) z^G4|n>v<-lEkYaV4@#N_Vw|$H*vETEj2X(BqTw8vr3}sW73*sw+IGtP(tydwkIt?ApHx$xiVt^k3}??~H04tc=o)`>s9wvG4u^ zANm93`26gHzx=OpGtlqPbKuw!Vw`gFi3hp3IwJLEpjQx@KuU?3K}D}$Vrn@SEaGiGc|Es?O@F%|tzi=+UX8cvZR7l5; zfR#vV2nAvVVudLcts6*`K4K+K)w~7u8r4EdTDK|IZHhrvHD=|+7$|3Z%mqqRM->rYzneu-!jp z`;fvEG3~s>m(OJXcaOtgcnJR4$z0y;b=6h_mMi!-XW$<{op@@s<)KS~hb{%aaVhZB zTBK3hI&x_o>>Hnc==_&XK6xT-o<4&m&A8*Fm>Qu?#5Oym?YJh?HKD0@q-`x}M~L*y z@9J@QFaDZ?$8H%`-K%6jbYJcL{3&WEq&fT`_(4kMh z^W#7I$F8~Inq!;Ce}n1xas1vPS_sY7G%q?=WNKvU_+Y+k%_7~g(^Wk*X*c-NB{H)g zl-d@Hig#JztEf6Q2C$D@@x7i%v}00@hA3O*_}8miftQ z&bFf??_juVnZbeUDavYRT|M`XtP@tr)z6f|_D+|jwSAWPh)HScz_gCEO{8vGnz|vh zEuoFXkO)oa+5-qumLxSMb)XG_rcId}k}CqgCxf3sRsP<*@PGf-)eDm4-XSq5O^U>j zj8KSc=laEXzOakI`4iJaN5{k20k*bDIjr#gED)qIl0tU$n>sNbC+cw|G>KSeZq4?Z ze=S*()6>_CHO~3d94e^BV4-c)!o<*q&_*Q23?U{Vmb1wz7$GLwMu}!!2j>^R+T0f^ zM=BD(E zJ$v@f`T6P--}Q-)|Hw7hF6|mU`vn?XBUT0V`a13A2B`^n@2PqPUL%F&s+M#P+Hi50 z9bI$XU(DR9ZMbJjkr-oF0gZXjsPnl&$31pp n^xSjji-jiZm(~KMDcP(+-+mCU1 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 thaZPk)vn6+246QPCT - - - Data Lovers - - - -

    - - -
    - - - + + + League of Legends + + + + +
    + + + + +
    + +
    + + + + \ No newline at end of file diff --git a/src/main.js b/src/main.js index 0508748f..4882625f 100644 --- a/src/main.js +++ b/src/main.js @@ -1,7 +1,6 @@ /*La primera línea importa un objeto llamado data desde un archivo llamado lol.js en un directorio llamado data/lol.*/ import data from "./data/lol/lol.js"; -import data from "./data/lol/lol.js"; /*La segunda línea importa varias funciones llamadas sortData, filterData, averageData, y averageName desde un archivo llamado data.js.*/ //import { } from "./data.js"; diff --git a/src/style.css b/src/style.css index 05061843..ead01cd9 100644 --- a/src/style.css +++ b/src/style.css @@ -1,8 +1,29 @@ #root{ display: flex; flex-wrap: wrap; + } + + .lolChampion{ width: 100px; height: 100; -} \ No newline at end of file +} + +body { + + background-image: url(./img/Image1.png); +} + +header { +width: 100%; +margin-top: 20px;/*distancia del titulo "leage of leguend" con la pantalla parte de arriba*/ +} + +/*estilo de img letras del titulo "leage of leguend"*/ +.logo { + width: 63%; + margin: 8px 10% 5px 18%; +} + + From d246b8d755db8742968952c97b62bed2d61b11d2 Mon Sep 17 00:00:00 2001 From: Daniela Mateo Date: Mon, 13 Mar 2023 13:09:01 -0600 Subject: [PATCH 14/41] para poder descargar --- src/index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.html b/src/index.html index 0cbba823..25f9ef9e 100644 --- a/src/index.html +++ b/src/index.html @@ -1,10 +1,12 @@ + Data Lovers +
    From c43715049b4b402d6cc8dbd1c299600b2328314d Mon Sep 17 00:00:00 2001 From: Daniela Mateo Date: Tue, 14 Mar 2023 10:02:20 -0600 Subject: [PATCH 15/41] actualizacion 14-03 --- src/index.html | 18 ++++++++++++++++++ src/style.css | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/src/index.html b/src/index.html index da0cb48c..dd86ef32 100644 --- a/src/index.html +++ b/src/index.html @@ -30,6 +30,24 @@ + + +
    +
    +
    +
    + + + + + +
    diff --git a/src/style.css b/src/style.css index ead01cd9..3915e3c3 100644 --- a/src/style.css +++ b/src/style.css @@ -1,3 +1,5 @@ + + #root{ display: flex; flex-wrap: wrap; @@ -26,4 +28,20 @@ margin-top: 20px;/*distancia del titulo "leage of leguend" con la pantalla parte margin: 8px 10% 5px 18%; } +ul { + display: flex; + background-color: rgb(0, 0, 0.507); + + +} +li { +font-family: "popins", sans-serif; +flex-grow: 1; +text-align: center; +line-height: 2.0; +font-size: 1em; +color: rgb(255, 0, 106); +} + + From 495d2bd3d545233e21c6a2c95d8b936d07b38f93 Mon Sep 17 00:00:00 2001 From: Mariaisa Date: Tue, 14 Mar 2023 11:08:06 -0500 Subject: [PATCH 16/41] nada --- src/data.js | 1 - src/index.html | 14 ++++++++++++++ src/main.js | 1 + src/style.css | 27 ++++++++++++--------------- 4 files changed, 27 insertions(+), 16 deletions(-) diff --git a/src/data.js b/src/data.js index e8acf306..69342bf3 100644 --- a/src/data.js +++ b/src/data.js @@ -8,4 +8,3 @@ const newArray = data; newArray.sort((a, b) => ((a.name < b.name) ? 1 : -1)); } return newArray; -}; diff --git a/src/index.html b/src/index.html index da0cb48c..b8eafc28 100644 --- a/src/index.html +++ b/src/index.html @@ -4,6 +4,7 @@ League of Legends + @@ -30,6 +31,19 @@ + + +
    +
    +
    +
    + +
    diff --git a/src/main.js b/src/main.js index 4882625f..cfcd76b3 100644 --- a/src/main.js +++ b/src/main.js @@ -26,3 +26,4 @@ function printChampion(lol) { // Invocar funcion printChampion(lol); + diff --git a/src/style.css b/src/style.css index ead01cd9..d3b4d7e6 100644 --- a/src/style.css +++ b/src/style.css @@ -1,23 +1,21 @@ -#root{ - display: flex; - flex-wrap: wrap; - +#root { + display: flex; + flex-wrap: wrap; } - -.lolChampion{ - width: 100px; - height: 100; +.lolChampion { + width: 100px; + height: 100; } body { - - background-image: url(./img/Image1.png); + background-image: url(./img/Image1.png); } - -header { -width: 100%; -margin-top: 20px;/*distancia del titulo "leage of leguend" con la pantalla parte de arriba*/ + +/*distancia del titulo "leage of leguend" con la pantalla parte de arriba*/ +header { + width: 100%; + margin-top: 20px; } /*estilo de img letras del titulo "leage of leguend"*/ @@ -26,4 +24,3 @@ margin-top: 20px;/*distancia del titulo "leage of leguend" con la pantalla parte margin: 8px 10% 5px 18%; } - From 7f06e1f953f39ef3d42a3d758ac6497331b4407e Mon Sep 17 00:00:00 2001 From: Mariaisa Date: Tue, 14 Mar 2023 11:22:35 -0500 Subject: [PATCH 17/41] nada de nuevo --- src/index.html | 79 ++++++++++++++++++++++++++------------------------ 1 file changed, 41 insertions(+), 38 deletions(-) diff --git a/src/index.html b/src/index.html index b8eafc28..1c5142a4 100644 --- a/src/index.html +++ b/src/index.html @@ -1,51 +1,54 @@ + + + League of Legends - - - League of Legends - - - + + - -
    - - - - -
    + +
    + + + + +
    -
    - - -
    -
    -
    -
    - - - - -
    diff --git a/src/main.js b/src/main.js index 8260bec1..4cc3679c 100644 --- a/src/main.js +++ b/src/main.js @@ -1,6 +1,6 @@ /*La primera línea importa un objeto llamado data desde un archivo llamado lol.js en un directorio llamado data/lol.*/ -import data from "./data/lol/lol.js"; +import data from "./data/lol/lol.js"; /*La segunda línea importa varias funciones llamadas sortData, filterData, averageData, y averageName desde un archivo llamado data.js.*/ //import { } from "./data.js"; @@ -8,8 +8,7 @@ llamadas sortData, filterData, averageData, y averageName desde un archivo llama //from "./data/lol/lol.js"; const lol = data.data; - -// console.log(lol) +//console.log(lol); function printChampion(lol) { const root = document.getElementById("root"); @@ -17,15 +16,71 @@ function printChampion(lol) { for (const element in lol) { console.log(lol[element]); // template string - root.innerHTML += `
    -

    ${lol[element].name}

    - -
    `; + root.innerHTML += `
    +

    ${lol[element].name}

    + +
    `; } } // Invocar funcion + + printChampion(lol); +const root = document.getElementById("root"); + +root.addEventListener("click", (event) => { + const championSection = event.target.closest('.container'); + console.log(championSection) + if (championSection) + + { + + const id = championSection.getAttribute("data-id"); + console.log(id) + const objSelectedChampio = lol[id]; + console.log(objSelectedChampio); + const myModal = document.getElementById("myModal"); + myModal.classList.remove("hide"); + myModal.querySelector("#modalInfo").innerHTML = ` +

    ${objSelectedChampio.name}

    +

    ${objSelectedChampio.title}

    + +

    Rol: ${objSelectedChampio.tags}

    +
    +

    Defense: ${objSelectedChampio.info.defense}

    +

    attack: ${objSelectedChampio.info.attack}

    +

    magic: ${objSelectedChampio.info.magic}

    +

    difficulty: ${objSelectedChampio.info.difficulty}

    +
    +
    +

    life: ${objSelectedChampio.stats.hp}

    +

    Manna: ${objSelectedChampio.stats.mp}

    +

    speed: ${objSelectedChampio.stats.movespeed}

    +

    attack: ${objSelectedChampio.stats.attackrange}

    +
    + `; + } +}); + +//cerrar modal + +//ORDENA DATA DE A a LA Z + + const dataLol = { + Aatrox: { }, + Zed: { }, + // más campeones +}; + + const sortedData = Object.keys(dataLol).sort((a, b) => a.localeCompare(b)) + .reduce((acc, key) => { + acc[key] = dataLol[key]; + return acc; + }, {}); + +console.log(sortedData); +// FILTRAR DATA Y CALCULAR PROMEDIO From 54737b1f020780a69861b5edd04a78fea0f769f0 Mon Sep 17 00:00:00 2001 From: Mariaisa Date: Tue, 21 Mar 2023 21:16:05 -0500 Subject: [PATCH 26/41] codigo2 --- src/index.html | 2 +- src/main.js | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/index.html b/src/index.html index 6f7274d9..1a3f0596 100644 --- a/src/index.html +++ b/src/index.html @@ -12,7 +12,7 @@
    - +

    2#K%1O3qMxA)k!*b+NdS%XwwIOHMCdK1Tn9 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

  • *H4AL=9Jv@fQ@0$^#WeN>@-wwz)Lca>9oJ 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 Je>#Cb|Jhq?A;bUx literal 0 HcmV?d00001 diff --git a/src/data/pokemon/README.md b/src/data/pokemon/README.md deleted file mode 100644 index 028f0a7c..00000000 --- a/src/data/pokemon/README.md +++ /dev/null @@ -1,37 +0,0 @@ -# Pokémon - -Pokémon GO es una experiencia de juego internacional que cuenta con más de mil -millones de descargas y ha sido nombrada "el mejor juego para móviles" por -Game Developers Choice Awards y "la mejor aplicación del año" por TechCrunch -(tomado de Google Play). Los usuarios del juego se convierten en "Maestros/ -entrenadores de Pokémon" y pueden: - -- **Descubrir el mundo Pokémon:** explorar y descubrir nuevos Pokémon allá - donde vayan. -- **Atrapar** distintos Pokémon para completar su Pokédex. -- **Pelear** contra Pokémon de otros entrenadores y conquistar un gimnasio. -- **Competir** en épicos combates contra otros entrenadores. -- **Hacer equipo** con otros entrenadores para atrapar poderosos Pokémon - durante las incursiones. - -## Hallazgos - -Para entender mejor qué necesidades complementarias a la app tienen los -usuarios, hicimos una rápida investigación (research) y estos son algunos -de los hallazgos. - -- Los Pokémon tienen características únicas que determinan las decisiones que - toma el usuario (tipo, debilidad, peso, multiplicador, etc.) -- Un maestro Pokémon antes de salir a casar los Pokémon tienen que: - saber el top 10 de frecuencia de aparición de los Pokémon. -- Los Pokémon tienen distintos tipos y debilidades de combate. Estas - características son importantes cuando un maestro Pokémon elige al Pokémon - más adecuado para su batalla. Hay veces que tiene que elegir a los que - tienen menos cantidad de debilidades y saber de que tipo son. Por ello, es - importante para un maestro Pokémon poder ordenarlos por estas 2 - características. -- Los Pokémon evolucionan y es importante para un - maestro Pokémon saber cuántas y cuáles son las evoluciones que tienen antes y - después. -- Los Pokémon se alimentan de caramelos y un maestro Pokémon necesita saber - cuántos caramelos necesita un Pokémon para evolucionar. diff --git a/src/data/pokemon/README.pt-BR.md b/src/data/pokemon/README.pt-BR.md deleted file mode 100644 index e553af27..00000000 --- a/src/data/pokemon/README.pt-BR.md +++ /dev/null @@ -1,33 +0,0 @@ -# Pokémon - -​Pokémon GO é uma experiência de jogo internacional que tem mais de um bilhão de -downloads e foi nomeado "o melhor jogo para celular" pelo Game Developers Choice -Awards e "a melhor aplicação do ano" pelo TechCrunch (extraído do Google Play). -Os usuários do jogo se tornam "Mestres/ treinadores Pokémons" e podem: - -- **Descobrir o mundo Pokémon:** explorar e descobrir novos Pokémon onde quer - que estejam. -- **Pegar** diferentes Pokémon para completar seu Pokédex. -- **Lutar** contra Pokémon de outros treinadores e conquiste ginásios. -- **Competir** em batalhas épicas contra outros treinadores. -- **Juntar-se** a outros treinadores para capturar Pokémon poderosos durante os - ataques. - -## Constatações - -​Para entender melhor as necessidades complementares dos usuários do aplicativo, -fizemos uma investigação rápida (pesquisa) e estas são algumas das descobertas. - -- Os Pokémons têm características únicas que determinam as decisões tomadas pelo - usuário (tipo, fraqueza, peso, multiplicador, etc.). -- Um mestre Pokémon antes de sair para caçar os Pokémons tem que conhecer os 10 - principais Pokémons que aparecem com mais frequência. -- Os Pokémons têm diferentes tipos e fraquezas em combate. Estas características - são importantes na escolha do Pokémon mais adequado para sua batalha. Às - vezes, você tem que escolher aqueles com menos fraquezas e saber de que tipo - eles são. Portanto, é importante que um mestre de Pokémon seja capaz de - ordená-los por essas 2 características. -- Os Pokémons evoluem e é importante para um mestre Pokémon saber quantas e - quais evoluções eles têm antes e depois. -- Pokémon comem _candies_ e um mestre Pokémon precisa saber quantos _candies_ um - Pokémon precisa para evoluir. diff --git a/src/data/pokemon/pokemon.js b/src/data/pokemon/pokemon.js deleted file mode 100644 index 4fd2ca67..00000000 --- a/src/data/pokemon/pokemon.js +++ /dev/null @@ -1,23953 +0,0 @@ -export default { - "pokemon": [{ - "num": "001", - "name": "bulbasaur", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Bulbasaur can be seen napping in bright sunlight. There is a seed on its back. By soaking up the sun's rays, the seed grows progressively larger.", - "img": "https://www.serebii.net/pokemongo/pokemon/001.png", - "size": { - "height": "0.71 m", - "weight": "6.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.69", - "stats": { - "base-attack": "118", - "base-defense": "111", - "base-stamina": "128", - "max-cp": "1115", - "max-hp": "113" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "vine whip", - "type": "grass", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "seed bomb", - "type": "grass", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "power whip", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "bulbasaur candy", - "next-evolution": [{ - "num": "002", - "name": "ivysaur", - "candy-cost": "25", - "next-evolution": [{ - "num": "003", - "name": "venusaur", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "002", - "name": "ivysaur", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "There is a bud on this Pokémon's back. To support its weight, Ivysaur's legs and trunk grow thick and strong. If it starts spending more time lying in the sunlight, it's a sign that the bud will bloom into a large flower soon.", - "img": "https://www.serebii.net/pokemongo/pokemon/002.png", - "size": { - "height": "0.99 m", - "weight": "13.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.042", - "stats": { - "base-attack": "151", - "base-defense": "143", - "base-stamina": "155", - "max-cp": "1699", - "max-hp": "134" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "vine whip", - "type": "grass", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "power whip", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "bulbasaur candy", - "next-evolution": [{ - "num": "003", - "name": "venusaur", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "001", - "name": "bulbasaur", - "candy-cost": "25" - }] - } - }, - { - "num": "003", - "name": "venusaur", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "There is a large flower on Venusaur's back. The flower is said to take on vivid colors if it gets plenty of nutrition and sunlight. The flower's aroma soothes the emotions of people.", - "img": "https://www.serebii.net/pokemongo/pokemon/003.png", - "size": { - "height": "2.01 m", - "weight": "100.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": "0.017", - "stats": { - "base-attack": "198", - "base-defense": "189", - "base-stamina": "190", - "max-cp": "2720", - "max-hp": "162" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "vine whip", - "type": "grass", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "petal blizzard", - "type": "grass", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "2.6" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "bulbasaur candy", - "prev-evolution": [{ - "num": "002", - "name": "ivysaur", - "candy-cost": "100", - "prev-evolution": [{ - "num": "001", - "name": "bulbasaur", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "004", - "name": "charmander", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "The flame that burns at the tip of its tail is an indication of its emotions. The flame wavers when Charmander is enjoying itself. If the Pokémon becomes enraged, the flame burns fiercely.", - "img": "https://www.serebii.net/pokemongo/pokemon/004.png", - "size": { - "height": "0.61 m", - "weight": "8.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.253", - "stats": { - "base-attack": "116", - "base-defense": "93", - "base-stamina": "118", - "max-cp": "980", - "max-hp": "105" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "flame charge", - "type": "fire", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.8" - }, - { - "name": "flame burst", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "charmander candy", - "next-evolution": [{ - "num": "005", - "name": "charmeleon", - "candy-cost": "25", - "next-evolution": [{ - "num": "006", - "name": "charizard", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "005", - "name": "charmeleon", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Charmeleon mercilessly destroys its foes using its sharp claws. If it encounters a strong foe, it turns aggressive. In this excited state, the flame at the tip of its tail flares with a bluish white color.", - "img": "https://www.serebii.net/pokemongo/pokemon/005.png", - "size": { - "height": "1.09 m", - "weight": "19.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.012", - "stats": { - "base-attack": "158", - "base-defense": "126", - "base-stamina": "151", - "max-cp": "1653", - "max-hp": "131" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "fire fang", - "type": "fire", - "base-damage": "11", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "fire punch", - "type": "fire", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.2" - }, - { - "name": "flame burst", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "charmander candy", - "next-evolution": [{ - "num": "006", - "name": "charizard", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "004", - "name": "charmander", - "candy-cost": "25" - }] - } - }, - { - "num": "006", - "name": "charizard", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Charizard flies around the sky in search of powerful opponents. It breathes fire of such great heat that it melts anything. However, it never turns its fiery breath on any opponent weaker than itself.", - "img": "https://www.serebii.net/pokemongo/pokemon/006.png", - "size": { - "height": "1.70 m", - "weight": "90.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire", - "flying" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": "0.0031", - "stats": { - "base-attack": "223", - "base-defense": "173", - "base-stamina": "186", - "max-cp": "2889", - "max-hp": "158" - }, - "resistant": [ - "fire", - "grass", - "fighting", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "electric", - "rock" - ], - "quick-move": [ - { - "name": "fire spin", - "type": "fire", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.1" - }, - { - "name": "air slash", - "type": "flying", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.2" - }, - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "wing attack", - "type": "flying", - "base-damage": "8", - "energy": "9", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "dragon claw", - "type": "dragon", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "overheat", - "type": "fire", - "base-damage": "160", - "energy": "-100", - "move-duration-seg": "4" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "charmander candy", - "prev-evolution": [{ - "num": "005", - "name": "charmeleon", - "candy-cost": "100", - "prev-evolution": [{ - "num": "004", - "name": "charmander", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "007", - "name": "squirtle", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Squirtle's shell is not merely used for protection. The shell's rounded shape and the grooves on its surface help minimize resistance in water, enabling this Pokémon to swim at high speeds.", - "img": "https://www.serebii.net/pokemongo/pokemon/007.png", - "size": { - "height": "0.51 m", - "weight": "9.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.58", - "stats": { - "base-attack": "94", - "base-defense": "121", - "base-stamina": "127", - "max-cp": "946", - "max-hp": "112" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "aqua jet", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.6" - }, - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "squirtle candy", - "next-evolution": [{ - "num": "008", - "name": "wartortle", - "candy-cost": "25", - "next-evolution": [{ - "num": "009", - "name": "blastoise", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "008", - "name": "wartortle", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Its tail is large and covered with a rich, thick fur. The tail becomes increasingly deeper in color as Wartortle ages. The scratches on its shell are evidence of this Pokémon's toughness as a battler.", - "img": "https://www.serebii.net/pokemongo/pokemon/008.png", - "size": { - "height": "0.99 m", - "weight": "22.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.034", - "stats": { - "base-attack": "126", - "base-defense": "155", - "base-stamina": "153", - "max-cp": "1488", - "max-hp": "132" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "aqua jet", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.6" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "squirtle candy", - "next-evolution": [{ - "num": "009", - "name": "blastoise", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "007", - "name": "squirtle", - "candy-cost": "25" - }] - } - }, - { - "num": "009", - "name": "blastoise", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Blastoise has water spouts that protrude from its shell. The water spouts are very accurate. They can shoot bullets of water with enough accuracy to strike empty cans from a distance of over 160 feet.", - "img": "https://www.serebii.net/pokemongo/pokemon/009.png", - "size": { - "height": "1.60 m", - "weight": "85.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": "0.0067", - "stats": { - "base-attack": "171", - "base-defense": "207", - "base-stamina": "188", - "max-cp": "2466", - "max-hp": "160" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "flash cannon", - "type": "steel", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.7" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "squirtle candy", - "prev-evolution": [{ - "num": "008", - "name": "wartortle", - "candy-cost": "100", - "prev-evolution": [{ - "num": "007", - "name": "squirtle", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "010", - "name": "caterpie", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Caterpie has a voracious appetite. It can devour leaves bigger than its body right before your eyes. From its antenna, this Pokémon releases a terrifically strong odor.", - "img": "https://www.serebii.net/pokemongo/pokemon/010.png", - "size": { - "height": "0.30 m", - "weight": "2.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": "3.032", - "stats": { - "base-attack": "55", - "base-defense": "55", - "base-stamina": "128", - "max-cp": "437", - "max-hp": "113" - }, - "resistant": [ - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "flying", - "rock" - ], - "quick-move": [ - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "struggle", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "2.2" - }], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "caterpie candy", - "next-evolution": [{ - "num": "011", - "name": "metapod", - "candy-cost": "12", - "next-evolution": [{ - "num": "012", - "name": "butterfree", - "candy-cost": "50" - }] - }] - } - }, - { - "num": "011", - "name": "metapod", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "The shell covering this Pokémon's body is as hard as an iron slab. Metapod does not move very much. It stays still because it is preparing its soft innards for evolution inside the hard shell.", - "img": "https://www.serebii.net/pokemongo/pokemon/011.png", - "size": { - "height": "0.71 m", - "weight": "9.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.187", - "stats": { - "base-attack": "45", - "base-defense": "80", - "base-stamina": "137", - "max-cp": "450", - "max-hp": "120" - }, - "resistant": [ - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "flying", - "rock" - ], - "quick-move": [ - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "struggle", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "2.2" - }], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "caterpie candy", - "next-evolution": [{ - "num": "012", - "name": "butterfree", - "candy-cost": "50" - }], - "prev-evolution": [{ - "num": "010", - "name": "caterpie", - "candy-cost": "12" - }] - } - }, - { - "num": "012", - "name": "butterfree", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Butterfree has a superior ability to search for delicious honey from flowers. It can even search out, extract, and carry honey from flowers that are blooming over six miles from its nest.", - "img": "https://www.serebii.net/pokemongo/pokemon/012.png", - "size": { - "height": "1.09 m", - "weight": "32.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "flying" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.022", - "stats": { - "base-attack": "167", - "base-defense": "137", - "base-stamina": "155", - "max-cp": "1827", - "max-hp": "134" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "bug" - ], - "weaknesses": [ - "fire", - "electric", - "ice", - "flying", - "rock" - ], - "quick-move": [ - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - }, - { - "name": "struggle bug", - "type": "bug", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "bug buzz", - "type": "bug", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.7" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "signal beam", - "type": "bug", - "base-damage": "75", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "caterpie candy", - "prev-evolution": [{ - "num": "011", - "name": "metapod", - "candy-cost": "50", - "prev-evolution": [{ - "num": "010", - "name": "caterpie", - "candy-cost": "12" - }] - }] - } - }, - { - "num": "013", - "name": "weedle", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Weedle has an extremely acute sense of smell. It is capable of distinguishing its favorite kinds of leaves from those it dislikes just by sniffing with its big red proboscis (nose).", - "img": "https://www.serebii.net/pokemongo/pokemon/013.png", - "size": { - "height": "0.30 m", - "weight": "3.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "poison" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": "7.12", - "stats": { - "base-attack": "63", - "base-defense": "50", - "base-stamina": "120", - "max-cp": "456", - "max-hp": "106" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "fire", - "flying", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "struggle", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "2.2" - }], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "weedle candy", - "next-evolution": [{ - "num": "014", - "name": "kakuna", - "candy-cost": "12", - "next-evolution": [{ - "num": "015", - "name": "beedrill", - "candy-cost": "50" - }] - }] - } - }, - { - "num": "014", - "name": "kakuna", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Kakuna remains virtually immobile as it clings to a tree. However, on the inside, it is extremely busy as it prepares for its coming evolution. This is evident from how hot the shell becomes to the touch.", - "img": "https://www.serebii.net/pokemongo/pokemon/014.png", - "size": { - "height": "0.61 m", - "weight": "10.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "poison" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.44", - "stats": { - "base-attack": "46", - "base-defense": "75", - "base-stamina": "128", - "max-cp": "432", - "max-hp": "113" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "fire", - "flying", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "struggle", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "2.2" - }], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "weedle candy", - "next-evolution": [{ - "num": "015", - "name": "beedrill", - "candy-cost": "50" - }], - "prev-evolution": [{ - "num": "013", - "name": "weedle", - "candy-cost": "12" - }] - } - }, - { - "num": "015", - "name": "beedrill", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Beedrill is extremely territorial. No one should ever approach its nest-this is for their own safety. If angered, they will attack in a furious swarm.", - "img": "https://www.serebii.net/pokemongo/pokemon/015.png", - "size": { - "height": "0.99 m", - "weight": "29.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "poison" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.051", - "stats": { - "base-attack": "169", - "base-defense": "130", - "base-stamina": "163", - "max-cp": "1846", - "max-hp": "140" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "fire", - "flying", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "poison jab", - "type": "poison", - "base-damage": "10", - "energy": "7", - "move-duration-seg": "0.8" - }, - { - "name": "infestation", - "type": "bug", - "base-damage": "10", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "x scissor", - "type": "water", - "base-damage": "50", - "energy": "-100", - "move-duration-seg": "4.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "weedle candy", - "prev-evolution": [{ - "num": "014", - "name": "kakuna", - "candy-cost": "50", - "prev-evolution": [{ - "num": "013", - "name": "weedle", - "candy-cost": "12" - }] - }] - } - }, - { - "num": "016", - "name": "pidgey", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Pidgey has an extremely sharp sense of direction. It is capable of unerringly returning home to its nest, however far it may be removed from its familiar surroundings.", - "img": "https://www.serebii.net/pokemongo/pokemon/016.png", - "size": { - "height": "0.30 m", - "weight": "1.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": "15.98", - "stats": { - "base-attack": "85", - "base-defense": "73", - "base-stamina": "120", - "max-cp": "680", - "max-hp": "106" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "twister", - "type": "dragon", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.8" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "air cutter", - "type": "flying", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "pidgey candy", - "next-evolution": [{ - "num": "017", - "name": "pidgeotto", - "candy-cost": "12", - "next-evolution": [{ - "num": "018", - "name": "pidgeot", - "candy-cost": "50" - }] - }] - } - }, - { - "num": "017", - "name": "pidgeotto", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Pidgeotto claims a large area as its own territory. This Pokémon flies around, patrolling its living space. If its territory is violated, it shows no mercy in thoroughly punishing the foe with its sharp claws.", - "img": "https://www.serebii.net/pokemongo/pokemon/017.png", - "size": { - "height": "1.09 m", - "weight": "30.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.25" - }, - "spawn-chance": "1.02", - "stats": { - "base-attack": "117", - "base-defense": "105", - "base-stamina": "160", - "max-cp": "1194", - "max-hp": "138" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "wing attack", - "type": "flying", - "base-damage": "8", - "energy": "9", - "move-duration-seg": "0.8" - }, - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "twister", - "type": "dragon", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.8" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "air cutter", - "type": "flying", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "pidgey candy", - "next-evolution": [{ - "num": "018", - "name": "pidgeot", - "candy-cost": "50" - }], - "prev-evolution": [{ - "num": "016", - "name": "pidgey", - "candy-cost": "12" - }] - } - }, - { - "num": "018", - "name": "pidgeot", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "This Pokémon has a dazzling plumage of beautifullyglossy feathers. Many Trainers are captivated by thestriking beauty of the feathers on its head, compellingthem to choose Pidgeot as their Pokémon.", - "img": "https://www.serebii.net/pokemongo/pokemon/018.png", - "size": { - "height": "1.50 m", - "weight": "39.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.13", - "stats": { - "base-attack": "166", - "base-defense": "154", - "base-stamina": "195", - "max-cp": "2129", - "max-hp": "165" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - }, - { - "name": "air slash", - "type": "flying", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.2" - }, - { - "name": "wing attack", - "type": "flying", - "base-damage": "8", - "energy": "9", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "hurricane", - "type": "flying", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "2.7" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "brave bird", - "type": "flying", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2" - }, - { - "name": "air cutter", - "type": "flying", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "pidgey candy", - "prev-evolution": [{ - "num": "017", - "name": "pidgeotto", - "candy-cost": "50", - "prev-evolution": [{ - "num": "016", - "name": "pidgey", - "candy-cost": "12" - }] - }] - } - }, - { - "num": "019", - "name": "rattata", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Rattata is cautious in the extreme. Even while it is asleep, it constantly listens by moving its ears around. It is not picky about where it lives-it will make its nest anywhere.", - "img": "https://www.serebii.net/pokemongo/pokemon/019.png", - "size": { - "height": "0.30 m", - "weight": "3.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": "13.05", - "stats": { - "base-attack": "103", - "base-defense": "70", - "base-stamina": "102", - "max-cp": "734", - "max-hp": "92" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "hyper fang", - "type": "normal", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "rattata candy", - "next-evolution": [{ - "num": "020", - "name": "raticate", - "candy-cost": "25" - }] - } - }, - { - "num": "020", - "name": "raticate", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Raticate's sturdy fangs grow steadily. To keep them ground down, it gnaws on rocks and logs. It may even chew on the walls of houses.", - "img": "https://www.serebii.net/pokemongo/pokemon/020.png", - "size": { - "height": "0.71 m", - "weight": "18.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.41", - "stats": { - "base-attack": "161", - "base-defense": "139", - "base-stamina": "146", - "max-cp": "1730", - "max-hp": "127" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "hyper fang", - "type": "normal", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "rattata candy", - "prev-evolution": [{ - "num": "019", - "name": "rattata", - "candy-cost": "25" - }] - } - }, - { - "num": "021", - "name": "spearow", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Spearow has a very loud cry that can be heard over half a mile away. If its high, keening cry is heard echoing all around, it is a sign that they are warning each other of danger.", - "img": "https://www.serebii.net/pokemongo/pokemon/021.png", - "size": { - "height": "0.30 m", - "weight": "2.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "4.73", - "stats": { - "base-attack": "112", - "base-defense": "60", - "base-stamina": "120", - "max-cp": "798", - "max-hp": "106" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "drill peck", - "type": "flying", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "sky attack", - "type": "flying", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - }, - { - "name": "twister", - "type": "dragon", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.8" - } - ], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "spearow candy", - "next-evolution": [{ - "num": "022", - "name": "fearow", - "candy-cost": "50" - }] - } - }, - { - "num": "022", - "name": "fearow", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Fearow is recognized by its long neck and elongated beak. They are conveniently shaped for catching prey in soil or water. It deftly moves its long and skinny beak to pluck prey.", - "img": "https://www.serebii.net/pokemongo/pokemon/022.png", - "size": { - "height": "1.19 m", - "weight": "38.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.15", - "stats": { - "base-attack": "182", - "base-defense": "133", - "base-stamina": "163", - "max-cp": "1997", - "max-hp": "140" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "drill run", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.8" - }, - { - "name": "sky attack", - "type": "flying", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - }, - { - "name": "twister", - "type": "dragon", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "spearow candy", - "prev-evolution": [{ - "num": "021", - "name": "spearow", - "candy-cost": "50" - }] - } - }, - { - "num": "023", - "name": "ekans", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Ekans curls itself up in a spiral while it rests. Assuming this position allows it to quickly respond to a threat from any direction with a glare from its upraised head.", - "img": "https://www.serebii.net/pokemongo/pokemon/023.png", - "size": { - "height": "2.01 m", - "weight": "6.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "2.27", - "stats": { - "base-attack": "110", - "base-defense": "97", - "base-stamina": "111", - "max-cp": "927", - "max-hp": "99" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "wrap", - "type": "normal", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.9" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "poison fang", - "type": "poison", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "gunk shot", - "type": "poison", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "ekans candy", - "next-evolution": [{ - "num": "024", - "name": "arbok", - "candy-cost": "50" - }] - } - }, - { - "num": "024", - "name": "arbok", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "This Pokémon is terrifically strong in order to constrict things with its body. It can even flatten steel oil drums. Once Arbok wraps its body around its foe, escaping its crunching embrace is impossible.", - "img": "https://www.serebii.net/pokemongo/pokemon/024.png", - "size": { - "height": "3.51 m", - "weight": "65.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.072", - "stats": { - "base-attack": "167", - "base-defense": "153", - "base-stamina": "155", - "max-cp": "1921", - "max-hp": "134" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "sludge wave", - "type": "poison", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "3.2" - }, - { - "name": "gunk shot", - "type": "poison", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "ekans candy", - "prev-evolution": [{ - "num": "023", - "name": "ekans", - "candy-cost": "50" - }] - } - }, - { - "num": "025", - "name": "pikachu", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Whenever Pikachu comes across something new, it blasts it with a jolt of electricity. If you come across a blackened berry, it's evidence that this Pokémon mistook the intensity of its charge.", - "img": "https://www.serebii.net/pokemongo/pokemon/025.png", - "size": { - "height": "0.41 m", - "weight": "6.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.21", - "stats": { - "base-attack": "112", - "base-defense": "96", - "base-stamina": "111", - "max-cp": "938", - "max-hp": "99" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "wild charge", - "type": "electric", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - } - ], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "pikachu candy", - "next-evolution": [{ - "num": "026", - "name": "raichu", - "candy-cost": "50" - }], - "prev-evolution": [{ - "num": "172", - "name": "pichu", - "candy-cost": "25" - }] - } - }, - { - "num": "026", - "name": "raichu", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "If the electrical sacs become excessively charged, Raichu plants its tail in the ground and discharges. Scorched patches of ground will be found near this Pokémon's nest.", - "img": "https://www.serebii.net/pokemongo/pokemon/026.png", - "size": { - "height": "0.79 m", - "weight": "30.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.0076", - "stats": { - "base-attack": "193", - "base-defense": "151", - "base-stamina": "155", - "max-cp": "2182", - "max-hp": "134" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "spark", - "type": "electric", - "base-damage": "6", - "energy": "9", - "move-duration-seg": "0.7" - }, - { - "name": "volt switch", - "type": "electric", - "base-damage": "20", - "energy": "25", - "move-duration-seg": "2.3" - }, - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "thunder punch", - "type": "electric", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.8" - }, - { - "name": "wild charge", - "type": "electric", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "pikachu candy", - "prev-evolution": [{ - "num": "025", - "name": "pikachu", - "candy-cost": "50", - "prev-evolution": [{ - "num": "172", - "name": "pichu", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "027", - "name": "sandshrew", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Sandshrew's body is configured to absorb water without waste, enabling it to survive in an arid desert. This Pokémon curls up to protect itself from its enemies.", - "img": "https://www.serebii.net/pokemongo/pokemon/027.png", - "size": { - "height": "0.61 m", - "weight": "12.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "1.11", - "stats": { - "base-attack": "126", - "base-defense": "120", - "base-stamina": "137", - "max-cp": "1261", - "max-hp": "120" - }, - "resistant": [ - "electric", - "poison", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ice" - ], - "quick-move": [ - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "sand tomb", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "4" - }, - { - "name": "rock tomb", - "type": "rock", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "sandshrew candy", - "next-evolution": [{ - "num": "028", - "name": "sandslash", - "candy-cost": "50" - }] - } - }, - { - "num": "028", - "name": "sandslash", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Sandslash's body is covered by tough spikes, which are hardened sections of its hide. Once a year, the old spikes fall out, to be replaced with new spikes that grow out from beneath the old ones.", - "img": "https://www.serebii.net/pokemongo/pokemon/028.png", - "size": { - "height": "0.99 m", - "weight": "29.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.037", - "stats": { - "base-attack": "182", - "base-defense": "175", - "base-stamina": "181", - "max-cp": "2374", - "max-hp": "154" - }, - "resistant": [ - "electric", - "poison", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ice" - ], - "quick-move": [ - { - "name": "metal claw", - "type": "steel", - "base-damage": "8", - "energy": "7", - "move-duration-seg": "0.7" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "rock tomb", - "type": "rock", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "bulldoze", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "sandshrew candy", - "prev-evolution": [{ - "num": "027", - "name": "sandshrew", - "candy-cost": "50" - }] - } - }, - { - "num": "029", - "name": "nidoran ♀ (female)", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Nidoran ♀ has barbs that secrete a powerful poison. They are thought to have developed as protection for this small-bodied Pokémon. When enraged, it releases a horrible toxin from its horn.", - "img": "https://www.serebii.net/pokemongo/pokemon/029.png", - "size": { - "height": "0.41 m", - "weight": "7.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "1.38", - "stats": { - "base-attack": "86", - "base-defense": "89", - "base-stamina": "146", - "max-cp": "816", - "max-hp": "127" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "poison fang", - "type": "poison", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "nidoran ♀ (female) candy", - "next-evolution": [{ - "num": "030", - "name": "nidorina", - "candy-cost": "25", - "next-evolution": [{ - "num": "031", - "name": "nidoqueen", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "030", - "name": "nidorina", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "When Nidorina are with their friends or family, they keep their barbs tucked away to prevent hurting each other. This Pokémon appears to become nervous if separated from the others.", - "img": "https://www.serebii.net/pokemongo/pokemon/030.png", - "size": { - "height": "0.79 m", - "weight": "20.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.088", - "stats": { - "base-attack": "117", - "base-defense": "120", - "base-stamina": "172", - "max-cp": "1309", - "max-hp": "147" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "poison fang", - "type": "poison", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "nidoran ♀ (female) candy", - "next-evolution": [{ - "num": "031", - "name": "nidoqueen", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "029", - "name": "nidoran ♀ (female)", - "candy-cost": "25" - }] - } - }, - { - "num": "031", - "name": "nidoqueen", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Nidoqueen's body is encased in extremely hard scales. It is adept at sending foes flying with harsh tackles. This Pokémon is at its strongest when it is defending its young.", - "img": "https://www.serebii.net/pokemongo/pokemon/031.png", - "size": { - "height": "1.30 m", - "weight": "60.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison", - "ground" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.012", - "stats": { - "base-attack": "180", - "base-defense": "173", - "base-stamina": "207", - "max-cp": "2488", - "max-hp": "175" - }, - "resistant": [ - "electric", - "fighting", - "poison", - "bug", - "rock" - ], - "weaknesses": [ - "water", - "ice", - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "poison jab", - "type": "poison", - "base-damage": "10", - "energy": "7", - "move-duration-seg": "0.8" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "sludge wave", - "type": "poison", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "3.2" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "nidoran ♀ (female) candy", - "prev-evolution": [{ - "num": "030", - "name": "nidorina", - "candy-cost": "100", - "prev-evolution": [{ - "num": "029", - "name": "nidoran ♀ (female)", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "032", - "name": "nidoran ♂ (male)", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Nidoran ♂ (Male) has developed muscles for moving its ears. Thanks to them, the ears can be freely moved in any direction. Even the slightest sound does not escape this Pokémon's notice.", - "img": "https://www.serebii.net/pokemongo/pokemon/032.png", - "size": { - "height": "0.51 m", - "weight": "9.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "1.31", - "stats": { - "base-attack": "105", - "base-defense": "76", - "base-stamina": "130", - "max-cp": "860", - "max-hp": "114" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "horn attack", - "type": "normal", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.85" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "nidoran ♂ (male) candy", - "next-evolution": [{ - "num": "033", - "name": "nidorino", - "candy-cost": "25", - "next-evolution": [{ - "num": "034", - "name": "nidoking", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "033", - "name": "nidorino", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Nidorino has a horn that is harder than a diamond. If it senses a hostile presence, all the barbs on its back bristle up at once, and it challenges the foe with all its might.", - "img": "https://www.serebii.net/pokemongo/pokemon/033.png", - "size": { - "height": "0.89 m", - "weight": "19.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.083", - "stats": { - "base-attack": "137", - "base-defense": "111", - "base-stamina": "156", - "max-cp": "1393", - "max-hp": "135" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "poison jab", - "type": "poison", - "base-damage": "10", - "energy": "7", - "move-duration-seg": "0.8" - }, - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "horn attack", - "type": "normal", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.85" - }, - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "nidoran ♂ (male) candy", - "next-evolution": [{ - "num": "034", - "name": "nidoking", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "032", - "name": "nidoran ♂ (male)", - "candy-cost": "25" - }] - } - }, - { - "num": "034", - "name": "nidoking", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Nidoking's thick tail packs enormously destructive power. With one swing, it can topple a metal transmission tower. Once this Pokémon goes on a rampage, there is no stopping it.", - "img": "https://www.serebii.net/pokemongo/pokemon/034.png", - "size": { - "height": "1.40 m", - "weight": "62.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison", - "ground" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.017", - "stats": { - "base-attack": "204", - "base-defense": "156", - "base-stamina": "191", - "max-cp": "2567", - "max-hp": "162" - }, - "resistant": [ - "electric", - "fighting", - "poison", - "bug", - "rock" - ], - "weaknesses": [ - "water", - "ice", - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "poison jab", - "type": "poison", - "base-damage": "10", - "energy": "7", - "move-duration-seg": "0.8" - }, - { - "name": "iron tail", - "type": "steel", - "base-damage": "15", - "energy": "7", - "move-duration-seg": "1.1" - }, - { - "name": "fury cutter", - "type": "bug", - "base-damage": "3", - "energy": "6", - "move-duration-seg": "0.4" - } - ], - "special-attack": [ - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "sludge wave", - "type": "poison", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "3.2" - }, - { - "name": "megahorn", - "type": "bug", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "nidoran ♂ (male) candy", - "prev-evolution": [{ - "num": "033", - "name": "nidorino", - "candy-cost": "100", - "prev-evolution": [{ - "num": "032", - "name": "nidoran ♂ (male)", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "035", - "name": "clefairy", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "On every night of a full moon, groups of this Pokémon come out to play. When dawn arrives, the tired Clefairy return to their quiet mountain retreats and go to sleep nestled up against each other.", - "img": "https://www.serebii.net/pokemongo/pokemon/035.png", - "size": { - "height": "0.61 m", - "weight": "7.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.3" - }, - "spawn-chance": "0.92", - "stats": { - "base-attack": "107", - "base-defense": "108", - "base-stamina": "172", - "max-cp": "1155", - "max-hp": "147" - }, - "resistant": [ - "fighting", - "bug", - "dragon", - "dark" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "disarming voice", - "type": "fairy", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.9" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "moonblast", - "type": "fairy", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.9" - } - ], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "clefairy candy", - "next-evolution": [{ - "num": "036", - "name": "clefable", - "candy-cost": "50" - }], - "prev-evolution": [{ - "num": "173", - "name": "cleffa", - "candy-cost": "25" - }] - } - }, - { - "num": "036", - "name": "clefable", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Clefable moves by skipping lightly as if it were flying using its wings. Its bouncy step even lets it walk on water. It is known to take strolls on lakes on quiet, moonlit nights.", - "img": "https://www.serebii.net/pokemongo/pokemon/036.png", - "size": { - "height": "1.30 m", - "weight": "40.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.012", - "stats": { - "base-attack": "178", - "base-defense": "162", - "base-stamina": "216", - "max-cp": "2437", - "max-hp": "182" - }, - "resistant": [ - "fighting", - "bug", - "dragon", - "dark" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - }, - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - }, - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "moonblast", - "type": "fairy", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "clefairy candy", - "prev-evolution": [{ - "num": "035", - "name": "clefairy", - "candy-cost": "50", - "prev-evolution": [{ - "num": "173", - "name": "cleffa", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "037", - "name": "vulpix", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "At the time of its birth, Vulpix has one white tail. The tail separates into six if this Pokémon receives plenty of love from its trainer. The six tails become magnificently curled.", - "img": "https://www.serebii.net/pokemongo/pokemon/037.png", - "size": { - "height": "0.61 m", - "weight": "9.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.3" - }, - "spawn-chance": "0.22", - "stats": { - "base-attack": "96", - "base-defense": "109", - "base-stamina": "116", - "max-cp": "883", - "max-hp": "103" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - }, - { - "name": "flame charge", - "type": "fire", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.8" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "vulpix candy", - "next-evolution": [{ - "num": "038", - "name": "ninetales", - "candy-cost": "50" - }] - } - }, - { - "num": "038", - "name": "ninetales", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Ninetales casts a sinister light from its bright red eyes to gain total control over its foe's mind. This Pokémon is said to live for one thousand years.", - "img": "https://www.serebii.net/pokemongo/pokemon/038.png", - "size": { - "height": "1.09 m", - "weight": "19.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.0077", - "stats": { - "base-attack": "169", - "base-defense": "190", - "base-stamina": "177", - "max-cp": "2279", - "max-hp": "151" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - }, - { - "name": "fire spin", - "type": "fire", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.1" - }, - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "heat wave", - "type": "fire", - "base-damage": "95", - "energy": "-100", - "move-duration-seg": "3" - }, - { - "name": "overheat", - "type": "fire", - "base-damage": "160", - "energy": "-100", - "move-duration-seg": "4" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "vulpix candy", - "prev-evolution": [{ - "num": "037", - "name": "vulpix", - "candy-cost": "50" - }] - } - }, - { - "num": "039", - "name": "jigglypuff", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Jigglypuff's vocal cords can freely adjust the wavelength of its voice. This Pokémon uses this ability to sing at precisely the right wavelength to make its foes most drowsy.", - "img": "https://www.serebii.net/pokemongo/pokemon/039.png", - "size": { - "height": "0.51 m", - "weight": "5.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.39", - "stats": { - "base-attack": "80", - "base-defense": "41", - "base-stamina": "251", - "max-cp": "724", - "max-hp": "210" - }, - "resistant": [ - "bug", - "ghost", - "dragon", - "dark" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "disarming voice", - "type": "fairy", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.9" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "gyro ball", - "type": "steel", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "play rough", - "type": "fairy", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "jigglypuff candy", - "next-evolution": [{ - "num": "040", - "name": "wigglytuff", - "candy-cost": "50" - }], - "prev-evolution": [{ - "num": "174", - "name": "igglybuff", - "candy-cost": "25" - }] - } - }, - { - "num": "040", - "name": "wigglytuff", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Wigglytuff has large, saucerlike eyes. The surfaces of its eyes are always covered with a thin layer of tears. If any dust gets in this Pokémon's eyes, it is quickly washed away.", - "img": "https://www.serebii.net/pokemongo/pokemon/040.png", - "size": { - "height": "0.99 m", - "weight": "12.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.018", - "stats": { - "base-attack": "156", - "base-defense": "90", - "base-stamina": "295", - "max-cp": "1926", - "max-hp": "244" - }, - "resistant": [ - "bug", - "ghost", - "dragon", - "dark" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "play rough", - "type": "fairy", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "jigglypuff candy", - "prev-evolution": [{ - "num": "039", - "name": "jigglypuff", - "candy-cost": "50", - "prev-evolution": [{ - "num": "174", - "name": "igglybuff", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "041", - "name": "zubat", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Zubat remains quietly unmoving in a dark spot during the bright daylight hours. It does so because prolonged exposure to the sun causes its body to become slightly burned.", - "img": "https://www.serebii.net/pokemongo/pokemon/041.png", - "size": { - "height": "0.79 m", - "weight": "7.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison", - "flying" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": "6.52", - "stats": { - "base-attack": "83", - "base-defense": "73", - "base-stamina": "120", - "max-cp": "667", - "max-hp": "106" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "electric", - "ice", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "poison fang", - "type": "poison", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "air cutter", - "type": "flying", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "swift", - "type": "normal", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.8" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "zubat candy", - "next-evolution": [{ - "num": "042", - "name": "golbat", - "candy-cost": "50", - "next-evolution": [{ - "num": "169", - "name": "crobat", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "042", - "name": "golbat", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Golbat loves to drink the blood of living things. It is particularly active in the pitch black of night. This Pokémon flits around in the night skies, seeking fresh blood.", - "img": "https://www.serebii.net/pokemongo/pokemon/042.png", - "size": { - "height": "1.60 m", - "weight": "55.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.42", - "stats": { - "base-attack": "161", - "base-defense": "150", - "base-stamina": "181", - "max-cp": "1976", - "max-hp": "154" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "electric", - "ice", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "wing attack", - "type": "flying", - "base-damage": "8", - "energy": "9", - "move-duration-seg": "0.8" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "poison fang", - "type": "poison", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "air cutter", - "type": "flying", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "ominous wind", - "type": "ghost", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "zubat candy", - "next-evolution": [{ - "num": "169", - "name": "crobat" - }], - "prev-evolution": [{ - "num": "041", - "name": "zubat", - "candy-cost": "25" - }] - } - }, - { - "num": "043", - "name": "oddish", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "During the daytime, Oddish buries itself in soil to absorb nutrients from the ground using its entire body. The more fertile the soil, the glossier its leaves become.", - "img": "https://www.serebii.net/pokemongo/pokemon/043.png", - "size": { - "height": "0.51 m", - "weight": "5.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.6" - }, - "spawn-chance": "1.02", - "stats": { - "base-attack": "131", - "base-defense": "112", - "base-stamina": "128", - "max-cp": "1228", - "max-hp": "113" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "seed bomb", - "type": "grass", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "moonblast", - "type": "fairy", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "oddish candy", - "next-evolution": [{ - "num": "044", - "name": "gloom", - "candy-cost": "25", - "next-evolution": [ - { - "num": "045", - "name": "vileplume", - "candy-cost": "100" - }, - { - "num": "182", - "name": "bellossom", - "candy-cost": "100", - "evolution-item": { - "name": "sun stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sun-stone.png" - } - } - ] - }] - } - }, - { - "num": "044", - "name": "gloom", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Gloom releases a foul fragrance from the pistil of its flower. When faced with danger, the stench worsens. If this Pokémon is feeling calm and secure, it does not release its usual stinky aroma.", - "img": "https://www.serebii.net/pokemongo/pokemon/044.png", - "size": { - "height": "0.79 m", - "weight": "8.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.3" - }, - "spawn-chance": "0.064", - "stats": { - "base-attack": "153", - "base-defense": "136", - "base-stamina": "155", - "max-cp": "1681", - "max-hp": "134" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "petal blizzard", - "type": "grass", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "2.6" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "moonblast", - "type": "fairy", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "oddish candy", - "next-evolution": [ - { - "num": "045", - "name": "vileplume", - "candy-cost": "100" - }, - { - "num": "182", - "name": "bellossom", - "candy-cost": "100", - "evolution-item": { - "name": "sun stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sun-stone.png" - } - } - ], - "prev-evolution": [{ - "num": "043", - "name": "oddish", - "candy-cost": "25" - }] - } - }, - { - "num": "045", - "name": "vileplume", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Vileplume's toxic pollen triggers atrocious allergy attacks. That's why it is advisable never to approach any attractive flowers in a jungle, however pretty they may be.", - "img": "https://www.serebii.net/pokemongo/pokemon/045.png", - "size": { - "height": "1.19 m", - "weight": "18.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.15" - }, - "spawn-chance": "0.0097", - "stats": { - "base-attack": "202", - "base-defense": "167", - "base-stamina": "181", - "max-cp": "2559", - "max-hp": "154" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "petal blizzard", - "type": "grass", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "2.6" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "moonblast", - "type": "fairy", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "oddish candy", - "prev-evolution": [{ - "num": "044", - "name": "gloom", - "candy-cost": "100", - "prev-evolution": [{ - "num": "043", - "name": "oddish", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "046", - "name": "paras", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Paras has parasitic mushrooms growing on its back called tochukaso. They grow large by drawing nutrients from this Bug Pokémon host. They are highly valued as a medicine for extending life.", - "img": "https://www.serebii.net/pokemongo/pokemon/046.png", - "size": { - "height": "0.30 m", - "weight": "5.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "grass" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.4" - }, - "spawn-chance": "2.36", - "stats": { - "base-attack": "121", - "base-defense": "99", - "base-stamina": "111", - "max-cp": "1018", - "max-hp": "99" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying", - "bug", - "rock" - ], - "quick-move": [ - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "cross poison", - "type": "poison", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.5" - }, - { - "name": "x scissor", - "type": "water", - "base-damage": "50", - "energy": "-100", - "move-duration-seg": "4.7" - }, - { - "name": "seed bomb", - "type": "grass", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.1" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "paras candy", - "next-evolution": [{ - "num": "047", - "name": "parasect", - "candy-cost": "50" - }] - } - }, - { - "num": "047", - "name": "parasect", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Parasect is known to infest large trees en masse and drain nutrients from the lower trunk and roots. When an infested tree dies, they move onto another tree all at once.", - "img": "https://www.serebii.net/pokemongo/pokemon/047.png", - "size": { - "height": "0.99 m", - "weight": "29.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "grass" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.074", - "stats": { - "base-attack": "165", - "base-defense": "146", - "base-stamina": "155", - "max-cp": "1859", - "max-hp": "134" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying", - "bug", - "rock" - ], - "quick-move": [ - { - "name": "fury cutter", - "type": "bug", - "base-damage": "3", - "energy": "6", - "move-duration-seg": "0.4" - }, - { - "name": "struggle bug", - "type": "bug", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "cross poison", - "type": "poison", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.5" - }, - { - "name": "x scissor", - "type": "water", - "base-damage": "50", - "energy": "-100", - "move-duration-seg": "4.7" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "paras candy", - "prev-evolution": [{ - "num": "046", - "name": "paras", - "candy-cost": "50" - }] - } - }, - { - "num": "048", - "name": "venonat", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Venonat is said to have evolved with a coat of thin, stiff hair that covers its entire body for protection. It possesses large eyes that never fail to spot even miniscule prey.", - "img": "https://www.serebii.net/pokemongo/pokemon/048.png", - "size": { - "height": "0.99 m", - "weight": "30.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "poison" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "2.28", - "stats": { - "base-attack": "100", - "base-defense": "100", - "base-stamina": "155", - "max-cp": "1004", - "max-hp": "134" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "fire", - "flying", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "poison fang", - "type": "poison", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "signal beam", - "type": "bug", - "base-damage": "75", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "venonat candy", - "next-evolution": [{ - "num": "049", - "name": "venomoth", - "candy-cost": "50" - }] - } - }, - { - "num": "049", - "name": "venomoth", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Venomoth is nocturnal-it is a Pokémon that only becomes active at night. Its favorite prey are small insects that gather around streetlights, attracted by the light in the darkness.", - "img": "https://www.serebii.net/pokemongo/pokemon/049.png", - "size": { - "height": "1.50 m", - "weight": "12.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.072", - "stats": { - "base-attack": "179", - "base-defense": "143", - "base-stamina": "172", - "max-cp": "2082", - "max-hp": "147" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "fire", - "flying", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - }, - { - "name": "infestation", - "type": "bug", - "base-damage": "10", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "bug buzz", - "type": "bug", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.7" - }, - { - "name": "silver wind", - "type": "bug", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.7" - }, - { - "name": "poison fang", - "type": "poison", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "venonat candy", - "prev-evolution": [{ - "num": "048", - "name": "venonat", - "candy-cost": "50" - }] - } - }, - { - "num": "050", - "name": "diglett", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Diglett are raised in most farms. The reason is simple-wherever this Pokémon burrows, the soil is left perfectly tilled for planting crops. This soil is made ideal for growing delicious vegetables.", - "img": "https://www.serebii.net/pokemongo/pokemon/050.png", - "size": { - "height": "0.20 m", - "weight": "0.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.4", - "stats": { - "base-attack": "109", - "base-defense": "78", - "base-stamina": "67", - "max-cp": "676", - "max-hp": "64" - }, - "resistant": [ - "electric", - "poison", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ice" - ], - "quick-move": [ - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "mud bomb", - "type": "ground", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "rock tomb", - "type": "rock", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "diglett candy", - "next-evolution": [{ - "num": "051", - "name": "dugtrio", - "candy-cost": "50" - }] - } - }, - { - "num": "051", - "name": "dugtrio", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Dugtrio are actually triplets that emerged from one body. As a result, each triplet thinks exactly like the other two triplets. They work cooperatively to burrow endlessly.", - "img": "https://www.serebii.net/pokemongo/pokemon/051.png", - "size": { - "height": "0.71 m", - "weight": "33.3 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.014", - "stats": { - "base-attack": "167", - "base-defense": "134", - "base-stamina": "111", - "max-cp": "1557", - "max-hp": "99" - }, - "resistant": [ - "electric", - "poison", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ice" - ], - "quick-move": [ - { - "name": "sucker punch", - "type": "dark", - "base-damage": "7", - "energy": "8", - "move-duration-seg": "0.7" - }, - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "mud bomb", - "type": "ground", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "dugtrio", - "prev-evolution": [{ - "num": "050", - "name": "diglett", - "candy-cost": "50" - }] - } - }, - { - "num": "052", - "name": "meowth", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Meowth withdraws its sharp claws into its paws to slinkily sneak about without making any incriminating footsteps. For some reason, this Pokémon loves shiny coins that glitter with light.", - "img": "https://www.serebii.net/pokemongo/pokemon/052.png", - "size": { - "height": "0.41 m", - "weight": "4.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.86", - "stats": { - "base-attack": "92", - "base-defense": "78", - "base-stamina": "120", - "max-cp": "748", - "max-hp": "106" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "night slash", - "type": "dark", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.2" - }, - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "foul play", - "type": "dark", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "meowth candy", - "next-evolution": [{ - "num": "053", - "name": "persian", - "candy-cost": "50" - }] - } - }, - { - "num": "053", - "name": "persian", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Persian has six bold whiskers that give it a look of toughness. The whiskers sense air movements to determine what is in the Pokémon's surrounding vicinity. It becomes docile if grabbed by the whiskers.", - "img": "https://www.serebii.net/pokemongo/pokemon/053.png", - "size": { - "height": "0.99 m", - "weight": "32.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.022", - "stats": { - "base-attack": "150", - "base-defense": "136", - "base-stamina": "163", - "max-cp": "1689", - "max-hp": "140" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "power gem", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "play rough", - "type": "fairy", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "foul play", - "type": "dark", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - }, - { - "name": "night slash", - "type": "dark", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "meowth candy", - "prev-evolution": [{ - "num": "052", - "name": "meowth", - "candy-cost": "50" - }] - } - }, - { - "num": "054", - "name": "psyduck", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Psyduck uses a mysterious power. When it does so, this Pokémon generates brain waves that are supposedly only seen in sleepers. This discovery spurred controversy among scholars.", - "img": "https://www.serebii.net/pokemongo/pokemon/054.png", - "size": { - "height": "0.79 m", - "weight": "19.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "2.54", - "stats": { - "base-attack": "122", - "base-defense": "95", - "base-stamina": "137", - "max-cp": "1106", - "max-hp": "120" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "cross chop", - "type": "fight", - "base-damage": "50", - "energy": "-50", - "move-duration-seg": "1.5" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "psyduck candy", - "next-evolution": [{ - "num": "055", - "name": "golduck", - "candy-cost": "50" - }] - } - }, - { - "num": "055", - "name": "golduck", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "The webbed flippers on its forelegs and hind legs and the streamlined body of Golduck give it frightening speed. The Pokémon is definitely much faster than even the most athletic swimmer.", - "img": "https://www.serebii.net/pokemongo/pokemon/055.png", - "size": { - "height": "1.70 m", - "weight": "76.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.087", - "stats": { - "base-attack": "191", - "base-defense": "162", - "base-stamina": "190", - "max-cp": "2450", - "max-hp": "162" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "psyduck candy", - "prev-evolution": [{ - "num": "054", - "name": "psyduck", - "candy-cost": "50" - }] - } - }, - { - "num": "056", - "name": "mankey", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "When Mankey starts shaking and its nasal breathing turns rough, it's a sure sign that it is becoming angry. However, because it goes into a towering rage almost instantly, it is impossible for anyone to flee its wrath.", - "img": "https://www.serebii.net/pokemongo/pokemon/056.png", - "size": { - "height": "0.51 m", - "weight": "28.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.92", - "stats": { - "base-attack": "148", - "base-defense": "82", - "base-stamina": "120", - "max-cp": "1164", - "max-hp": "106" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "karate chop", - "type": "fight", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "cross chop", - "type": "fight", - "base-damage": "50", - "energy": "-50", - "move-duration-seg": "1.5" - }, - { - "name": "low sweep", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "mankey candy", - "next-evolution": [{ - "num": "057", - "name": "primeape", - "candy-cost": "50" - }] - } - }, - { - "num": "057", - "name": "primeape", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "When Primeape becomes furious, its blood circulation is boosted. In turn, its muscles are made even stronger. However, it also becomes much less intelligent at the same time.", - "img": "https://www.serebii.net/pokemongo/pokemon/057.png", - "size": { - "height": "0.99 m", - "weight": "32.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.031", - "stats": { - "base-attack": "207", - "base-defense": "138", - "base-stamina": "163", - "max-cp": "2288", - "max-hp": "140" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "low kick", - "type": "fight", - "base-damage": "6", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "karate chop", - "type": "fight", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "low sweep", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "night slash", - "type": "dark", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.2" - }, - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "cross chop", - "type": "fight", - "base-damage": "50", - "energy": "-50", - "move-duration-seg": "1.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "mankey candy", - "prev-evolution": [{ - "num": "056", - "name": "mankey", - "candy-cost": "50" - }] - } - }, - { - "num": "058", - "name": "growlithe", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Growlithe has a superb sense of smell. Once it smells anything, this Pokémon won't forget the scent, no matter what. It uses its advanced olfactory sense to determine the emotions of other living things.", - "img": "https://www.serebii.net/pokemongo/pokemon/058.png", - "size": { - "height": "0.71 m", - "weight": "19.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.3" - }, - "spawn-chance": "0.92", - "stats": { - "base-attack": "136", - "base-defense": "93", - "base-stamina": "146", - "max-cp": "1243", - "max-hp": "127" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "flame wheel", - "type": "fire", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "growlithe candy", - "next-evolution": [{ - "num": "059", - "name": "arcanine", - "candy-cost": "50" - }] - } - }, - { - "num": "059", - "name": "arcanine", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Arcanine is known for its high speed. It is said to be capable of running over 6,200 miles in a single day and night. The fire that blazes wildly within this Pokémon's body is its source of power.", - "img": "https://www.serebii.net/pokemongo/pokemon/059.png", - "size": { - "height": "1.91 m", - "weight": "155.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.017", - "stats": { - "base-attack": "227", - "base-defense": "166", - "base-stamina": "207", - "max-cp": "3029", - "max-hp": "175" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "fire fang", - "type": "fire", - "base-damage": "11", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "snarl", - "type": "dark", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "wild charge", - "type": "electric", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "bulldoze", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "growlithe candy", - "prev-evolution": [{ - "num": "058", - "name": "growlithe", - "candy-cost": "50" - }] - } - }, - { - "num": "060", - "name": "poliwag", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Poliwag has a very thin skin. It is possible to see the Pokémon's spiral innards right through the skin. Despite its thinness, however, the skin is also very flexible. Even sharp fangs bounce right off it.", - "img": "https://www.serebii.net/pokemongo/pokemon/060.png", - "size": { - "height": "0.61 m", - "weight": "12.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "2.19", - "stats": { - "base-attack": "101", - "base-defense": "82", - "base-stamina": "120", - "max-cp": "829", - "max-hp": "106" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "mud bomb", - "type": "ground", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "poliwag candy", - "next-evolution": [{ - "num": "061", - "name": "poliwhirl", - "candy-cost": "25", - "next-evolution": [ - { - "num": "062", - "name": "poliwrath", - "candy-cost": "100" - }, - { - "num": "186", - "name": "politoed", - "candy-cost": "100", - "evolution-item": { - "name": "kings rock", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/kings-rock.png" - } - } - ] - }] - } - }, - { - "num": "061", - "name": "poliwhirl", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "The surface of Poliwhirl's body is always wet and slick with an oily fluid. Because of this greasy covering, it can easily slip and slide out of the clutches of any enemy in battle.", - "img": "https://www.serebii.net/pokemongo/pokemon/061.png", - "size": { - "height": "0.99 m", - "weight": "20.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.13", - "stats": { - "base-attack": "130", - "base-defense": "123", - "base-stamina": "163", - "max-cp": "1419", - "max-hp": "140" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "mud bomb", - "type": "ground", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "scald", - "type": "water", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "poliwag candy", - "next-evolution": [ - { - "num": "062", - "name": "poliwrath", - "candy-cost": "100" - }, - { - "num": "186", - "name": "politoed", - "candy-cost": "100", - "evolution-item": { - "name": "kings rock", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/kings-rock.png" - } - } - ], - "prev-evolution": [{ - "num": "060", - "name": "poliwag", - "candy-cost": "25" - }] - } - }, - { - "num": "062", - "name": "poliwrath", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Poliwrath's highly developed, brawny muscles never grow fatigued, however much it exercises. It is so tirelessly strong, this Pokémon can swim back and forth across the ocean without effort.", - "img": "https://www.serebii.net/pokemongo/pokemon/062.png", - "size": { - "height": "1.30 m", - "weight": "54.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "fighting" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.011", - "stats": { - "base-attack": "182", - "base-defense": "184", - "base-stamina": "207", - "max-cp": "2586", - "max-hp": "175" - }, - "resistant": [ - "fire", - "water", - "ice", - "bug", - "rock" - ], - "weaknesses": [ - "electric", - "grass", - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "ice punch", - "type": "ice", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "dynamic punch", - "type": "fight", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "submission", - "type": "fight", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "poliwag candy", - "prev-evolution": [{ - "num": "061", - "name": "poliwhirl", - "candy-cost": "100", - "prev-evolution": [{ - "num": "060", - "name": "poliwag", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "063", - "name": "abra", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Abra sleeps for eighteen hours a day. However, it can sense the presence of foes even while it is sleeping. In such a situation, this Pokémon immediately teleports to safety.", - "img": "https://www.serebii.net/pokemongo/pokemon/063.png", - "size": { - "height": "0.89 m", - "weight": "19.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.99", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.42", - "stats": { - "base-attack": "195", - "base-defense": "82", - "base-stamina": "93", - "max-cp": "1342", - "max-hp": "85" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - }, - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - }, - { - "name": "signal beam", - "type": "bug", - "base-damage": "75", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "abra candy", - "next-evolution": [{ - "num": "064", - "name": "kadabra", - "candy-cost": "25", - "next-evolution": [{ - "num": "065", - "name": "alakazam", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "064", - "name": "kadabra", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Kadabra emits a peculiar alpha wave if it develops a headache. Only those people with a particularly strong psyche can hope to become a trainer of this Pokémon.", - "img": "https://www.serebii.net/pokemongo/pokemon/064.png", - "size": { - "height": "1.30 m", - "weight": "56.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.027", - "stats": { - "base-attack": "232", - "base-defense": "117", - "base-stamina": "120", - "max-cp": "2059", - "max-hp": "106" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "psycho cut", - "type": "psychic", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "abra candy", - "next-evolution": [{ - "num": "065", - "name": "alakazam", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "063", - "name": "abra", - "candy-cost": "25" - }] - } - }, - { - "num": "065", - "name": "alakazam", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Alakazam's brain continually grows, making its head far too heavy to support with its neck. This Pokémon holds its head up using its psychokinetic power instead.", - "img": "https://www.serebii.net/pokemongo/pokemon/065.png", - "size": { - "height": "1.50 m", - "weight": "48.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.0073", - "stats": { - "base-attack": "271", - "base-defense": "167", - "base-stamina": "146", - "max-cp": "3057", - "max-hp": "127" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "psycho cut", - "type": "psychic", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "futuresight", - "type": "psychic", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "2.7" - }, - { - "name": "focus blast", - "type": "fight", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.5" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "abra candy", - "prev-evolution": [{ - "num": "064", - "name": "kadabra", - "candy-cost": "100", - "prev-evolution": [{ - "num": "063", - "name": "abra", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "066", - "name": "machop", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Machop's muscles are special-they never get sore no matter how much they are used in exercise. This Pokémon has sufficient power to hurl a hundred adult humans.", - "img": "https://www.serebii.net/pokemongo/pokemon/066.png", - "size": { - "height": "0.79 m", - "weight": "19.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.49", - "stats": { - "base-attack": "137", - "base-defense": "82", - "base-stamina": "172", - "max-cp": "1278", - "max-hp": "147" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "karate chop", - "type": "fight", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - }, - { - "name": "low kick", - "type": "fight", - "base-damage": "6", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "low sweep", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "cross chop", - "type": "fight", - "base-damage": "50", - "energy": "-50", - "move-duration-seg": "1.5" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "machop candy", - "next-evolution": [{ - "num": "067", - "name": "machoke", - "candy-cost": "25", - "next-evolution": [{ - "num": "068", - "name": "machamp", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "067", - "name": "machoke", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Machoke's thoroughly toned muscles possess the hardness of steel. This Pokémon has so much strength, it can easily hold aloft a sumo wrestler on just one finger.", - "img": "https://www.serebii.net/pokemongo/pokemon/067.png", - "size": { - "height": "1.50 m", - "weight": "70.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.034", - "stats": { - "base-attack": "177", - "base-defense": "125", - "base-stamina": "190", - "max-cp": "2031", - "max-hp": "162" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "low kick", - "type": "fight", - "base-damage": "6", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "karate chop", - "type": "fight", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "submission", - "type": "fight", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.2" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "dynamic punch", - "type": "fight", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "cross chop", - "type": "fight", - "base-damage": "50", - "energy": "-50", - "move-duration-seg": "1.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "machop candy", - "next-evolution": [{ - "num": "068", - "name": "machamp", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "066", - "name": "machop", - "candy-cost": "25" - }] - } - }, - { - "num": "068", - "name": "machamp", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Machamp has the power to hurl anything aside. However, trying to do any work requiring care and dexterity causes its arms to get tangled. This Pokémon tends to leap into action before it thinks.", - "img": "https://www.serebii.net/pokemongo/pokemon/068.png", - "size": { - "height": "1.60 m", - "weight": "130.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.0068", - "stats": { - "base-attack": "234", - "base-defense": "159", - "base-stamina": "207", - "max-cp": "3056", - "max-hp": "175" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "bullet punch", - "type": "steel", - "base-damage": "9", - "energy": "10", - "move-duration-seg": "0.9" - }, - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "karate chop", - "type": "fight", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "heavy slam", - "type": "steel", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.1" - }, - { - "name": "dynamic punch", - "type": "fight", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "cross chop", - "type": "fight", - "base-damage": "50", - "energy": "-50", - "move-duration-seg": "1.5" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "submission", - "type": "fight", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "machop candy", - "prev-evolution": [{ - "num": "067", - "name": "machoke", - "candy-cost": "100", - "prev-evolution": [{ - "num": "066", - "name": "machop", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "069", - "name": "bellsprout", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Bellsprout's thin and flexible body lets it bend and sway to avoid any attack, however strong it may be. From its mouth, this Pokémon spits a corrosive fluid that melts even iron.", - "img": "https://www.serebii.net/pokemongo/pokemon/069.png", - "size": { - "height": "0.71 m", - "weight": "4.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "1.15", - "stats": { - "base-attack": "139", - "base-defense": "61", - "base-stamina": "137", - "max-cp": "1033", - "max-hp": "120" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "vine whip", - "type": "grass", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "power whip", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "wrap", - "type": "normal", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "bellsprout candy", - "next-evolution": [{ - "num": "070", - "name": "weepinbell", - "candy-cost": "25", - "next-evolution": [{ - "num": "071", - "name": "victreebel", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "070", - "name": "weepinbell", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Weepinbell has a large hook on its rear end. At night, the Pokémon hooks on to a tree branch and goes to sleep. If it moves around in its sleep, it may wake up to find itself on the ground.", - "img": "https://www.serebii.net/pokemongo/pokemon/070.png", - "size": { - "height": "0.99 m", - "weight": "6.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.072", - "stats": { - "base-attack": "172", - "base-defense": "92", - "base-stamina": "163", - "max-cp": "1611", - "max-hp": "140" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - }, - { - "name": "bullet seed", - "type": "grass", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "power whip", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "seed bomb", - "type": "grass", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.1" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "bellsprout candy", - "next-evolution": [{ - "num": "071", - "name": "victreebel", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "069", - "name": "bellsprout", - "candy-cost": "25" - }] - } - }, - { - "num": "071", - "name": "victreebel", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Victreebel has a long vine that extends from its head. This vine is waved and flicked about as if it were an animal to attract prey. When an unsuspecting prey draws near, this Pokémon swallows it whole.", - "img": "https://www.serebii.net/pokemongo/pokemon/071.png", - "size": { - "height": "1.70 m", - "weight": "15.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.0059", - "stats": { - "base-attack": "207", - "base-defense": "135", - "base-stamina": "190", - "max-cp": "2431", - "max-hp": "162" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "leaf blade", - "type": "grass", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "bellsprout candy", - "prev-evolution": [{ - "num": "070", - "name": "weepinbell", - "candy-cost": "100", - "prev-evolution": [{ - "num": "069", - "name": "bellsprout", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "072", - "name": "tentacool", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Tentacool's body is largely composed of water. If it is removed from the sea, it dries up like parchment. If this Pokémon happens to become dehydrated, put it back into the sea.", - "img": "https://www.serebii.net/pokemongo/pokemon/072.png", - "size": { - "height": "0.89 m", - "weight": "45.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "poison" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.81", - "stats": { - "base-attack": "97", - "base-defense": "149", - "base-stamina": "120", - "max-cp": "1040", - "max-hp": "106" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "poison" - ], - "weaknesses": [ - "electric", - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "wrap", - "type": "normal", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "tentacool candy", - "next-evolution": [{ - "num": "073", - "name": "tentacruel", - "candy-cost": "50" - }] - } - }, - { - "num": "073", - "name": "tentacruel", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Tentacruel has large red orbs on its head. The orbs glow before lashing the vicinity with a harsh ultrasonic blast. This Pokémon's outburst creates rough waves around it.", - "img": "https://www.serebii.net/pokemongo/pokemon/073.png", - "size": { - "height": "1.60 m", - "weight": "55.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.082", - "stats": { - "base-attack": "166", - "base-defense": "209", - "base-stamina": "190", - "max-cp": "2422", - "max-hp": "162" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "poison" - ], - "weaknesses": [ - "electric", - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - }, - { - "name": "poison jab", - "type": "poison", - "base-damage": "10", - "energy": "7", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "sludge wave", - "type": "poison", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "3.2" - }, - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "tentacool candy", - "prev-evolution": [{ - "num": "072", - "name": "tentacool", - "candy-cost": "50" - }] - } - }, - { - "num": "074", - "name": "geodude", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "The longer a Geodude lives, the more its edges are chipped and worn away, making it more rounded in appearance. However, this Pokémon's heart will remain hard, craggy, and rough always.", - "img": "https://www.serebii.net/pokemongo/pokemon/074.png", - "size": { - "height": "0.41 m", - "weight": "20.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "ground" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "1.19", - "stats": { - "base-attack": "132", - "base-defense": "132", - "base-stamina": "120", - "max-cp": "1293", - "max-hp": "106" - }, - "resistant": [ - "normal", - "fire", - "electric", - "poison", - "flying" - ], - "weaknesses": [ - "water", - "grass", - "ice", - "fighting", - "ground", - "steel" - ], - "quick-move": [ - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "rock tomb", - "type": "rock", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - } - ], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "geodude candy", - "next-evolution": [{ - "num": "075", - "name": "graveler", - "candy-cost": "25", - "next-evolution": [{ - "num": "076", - "name": "golem", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "075", - "name": "graveler", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Graveler grows by feeding on rocks. Apparently, it prefers to eat rocks that are covered in moss. This Pokémon eats its way through a ton of rocks on a daily basis.", - "img": "https://www.serebii.net/pokemongo/pokemon/075.png", - "size": { - "height": "0.99 m", - "weight": "105.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "ground" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.071", - "stats": { - "base-attack": "164", - "base-defense": "164", - "base-stamina": "146", - "max-cp": "1897", - "max-hp": "127" - }, - "resistant": [ - "normal", - "fire", - "electric", - "poison", - "flying" - ], - "weaknesses": [ - "water", - "grass", - "ice", - "fighting", - "ground", - "steel" - ], - "quick-move": [ - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - }, - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "rock blast", - "type": "rock", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "geodude candy", - "next-evolution": [{ - "num": "076", - "name": "golem", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "074", - "name": "geodude", - "candy-cost": "25" - }] - } - }, - { - "num": "076", - "name": "golem", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Golem live up on mountains. If there is a large earthquake, these Pokémon will come rolling down off the mountains en masse to the foothills below.", - "img": "https://www.serebii.net/pokemongo/pokemon/076.png", - "size": { - "height": "1.40 m", - "weight": "300.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "ground" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.0047", - "stats": { - "base-attack": "211", - "base-defense": "198", - "base-stamina": "190", - "max-cp": "2949", - "max-hp": "162" - }, - "resistant": [ - "normal", - "fire", - "electric", - "poison", - "flying" - ], - "weaknesses": [ - "water", - "grass", - "ice", - "fighting", - "ground", - "steel" - ], - "quick-move": [ - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - }, - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "rock blast", - "type": "rock", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "geodude candy", - "prev-evolution": [{ - "num": "075", - "name": "graveler", - "candy-cost": "100", - "prev-evolution": [{ - "num": "074", - "name": "geodude", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "077", - "name": "ponyta", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Ponyta is very weak at birth. It can barely stand up. This Pokémon becomes stronger by stumbling and falling to keep up with its parent.", - "img": "https://www.serebii.net/pokemongo/pokemon/077.png", - "size": { - "height": "0.99 m", - "weight": "30.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": "0.51", - "stats": { - "base-attack": "170", - "base-defense": "127", - "base-stamina": "137", - "max-cp": "1697", - "max-hp": "120" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "flame charge", - "type": "fire", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.8" - }, - { - "name": "flame wheel", - "type": "fire", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "stomp", - "type": "normal", - "base-damage": "55", - "energy": "-50", - "move-duration-seg": "1.7" - }, - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "ponyta candy", - "next-evolution": [{ - "num": "078", - "name": "rapidash", - "candy-cost": "50" - }] - } - }, - { - "num": "078", - "name": "rapidash", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Rapidash usually can be seen casually cantering in the fields and plains. However, when this Pokémon turns serious, its fiery manes flare and blaze as it gallops its way up to 150 mph.", - "img": "https://www.serebii.net/pokemongo/pokemon/078.png", - "size": { - "height": "1.70 m", - "weight": "95.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.15" - }, - "spawn-chance": "0.011", - "stats": { - "base-attack": "207", - "base-defense": "162", - "base-stamina": "163", - "max-cp": "2461", - "max-hp": "140" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "low kick", - "type": "fight", - "base-damage": "6", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "fire spin", - "type": "fire", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.1" - }, - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "drill run", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.8" - }, - { - "name": "heat wave", - "type": "fire", - "base-damage": "95", - "energy": "-100", - "move-duration-seg": "3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "ponyta candy", - "prev-evolution": [{ - "num": "077", - "name": "ponyta", - "candy-cost": "50" - }] - } - }, - { - "num": "079", - "name": "slowpoke", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Slowpoke uses its tail to catch prey by dipping it in water at the side of a river. However, this Pokémon often forgets what it's doing and often spends entire days just loafing at water's edge.", - "img": "https://www.serebii.net/pokemongo/pokemon/079.png", - "size": { - "height": "1.19 m", - "weight": "36.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "psychic" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "1.05", - "stats": { - "base-attack": "109", - "base-defense": "98", - "base-stamina": "207", - "max-cp": "1226", - "max-hp": "175" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "psychic" - ], - "weaknesses": [ - "electric", - "grass", - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "slowpoke candy", - "next-evolution": [ - { - "num": "080", - "name": "slowbro", - "candy-cost": "50" - }, - { - "num": "199", - "name": "slowking", - "candy-cost": "50", - "evolution-item": { - "name": "kings rock", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/kings-rock.png" - } - } - ] - } - }, - { - "num": "080", - "name": "slowbro", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Slowbro's tail has a Shellder firmly attached with a bite. As a result, the tail can't be used for fishing anymore. This causes Slowbro to grudgingly swim and catch prey instead.", - "img": "https://www.serebii.net/pokemongo/pokemon/080.png", - "size": { - "height": "1.60 m", - "weight": "78.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "psychic" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.036", - "stats": { - "base-attack": "177", - "base-defense": "180", - "base-stamina": "216", - "max-cp": "2545", - "max-hp": "182" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "psychic" - ], - "weaknesses": [ - "electric", - "grass", - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "slowpoke candy", - "prev-evolution": [{ - "num": "079", - "name": "slowpoke", - "candy-cost": "50" - }] - } - }, - { - "num": "081", - "name": "magnemite", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Magnemite attaches itself to power lines to feed on electricity. If your house has a power outage, check your circuit breakers. You may find a large number of this Pokémon clinging to the breaker box.", - "img": "https://www.serebii.net/pokemongo/pokemon/081.png", - "size": { - "height": "0.30 m", - "weight": "6.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.71", - "stats": { - "base-attack": "165", - "base-defense": "121", - "base-stamina": "93", - "max-cp": "1362", - "max-hp": "85" - }, - "resistant": [ - "normal", - "electric", - "grass", - "ice", - "poison" - ], - "weaknesses": [ - "fire", - "water", - "ground" - ], - "quick-move": [ - { - "name": "spark", - "type": "electric", - "base-damage": "6", - "energy": "9", - "move-duration-seg": "0.7" - }, - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - }, - { - "name": "magnet bomb", - "type": "steel", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "2.8" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "magnemite candy", - "next-evolution": [{ - "num": "082", - "name": "magneton", - "candy-cost": "50" - }] - } - }, - { - "num": "082", - "name": "magneton", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Magneton emits a powerful magnetic force that is fatal to mechanical devices. As a result, large cities sound sirens to warn citizens of large-scale outbreaks of this Pokémon.", - "img": "https://www.serebii.net/pokemongo/pokemon/082.png", - "size": { - "height": "0.99 m", - "weight": "60.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.023", - "stats": { - "base-attack": "223", - "base-defense": "169", - "base-stamina": "137", - "max-cp": "2485", - "max-hp": "120" - }, - "resistant": [ - "normal", - "electric", - "grass", - "ice", - "poison" - ], - "weaknesses": [ - "fire", - "water", - "ground" - ], - "quick-move": [ - { - "name": "spark", - "type": "electric", - "base-damage": "6", - "energy": "9", - "move-duration-seg": "0.7" - }, - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - }, - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "magnet bomb", - "type": "steel", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "2.8" - }, - { - "name": "flash cannon", - "type": "steel", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.7" - }, - { - "name": "zap cannon", - "type": "electric", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.7" - }, - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "magnemite candy", - "prev-evolution": [{ - "num": "081", - "name": "magnemite", - "candy-cost": "50" - }] - } - }, - { - "num": "083", - "name": "farfetch'd", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Farfetch'd is always seen with a stalk from a plant of some sort. Apparently, there are good stalks and bad stalks. This Pokémon has been known to fight with others over stalks.", - "img": "https://www.serebii.net/pokemongo/pokemon/083.png", - "size": { - "height": "0.79 m", - "weight": "15.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.3", - "common-capture-area": "early reports that this pokémon is likely to be found in: asia or hatched from an egg in that geographic area." - }, - "spawn-chance": "0.0212", - "stats": { - "base-attack": "124", - "base-defense": "115", - "base-stamina": "141", - "max-cp": "1236", - "max-hp": "123" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "fury cutter", - "type": "bug", - "base-damage": "3", - "energy": "6", - "move-duration-seg": "0.4" - }, - { - "name": "air slash", - "type": "flying", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.2" - }, - { - "name": "cut", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "air cutter", - "type": "flying", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "leaf blade", - "type": "grass", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "2.4" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "farfetch'd candy" - } - }, - { - "num": "084", - "name": "doduo", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Doduo's two heads never sleep at the same time. Its two heads take turns sleeping, so one head can always keep watch for enemies while the other one sleeps.", - "img": "https://www.serebii.net/pokemongo/pokemon/084.png", - "size": { - "height": "1.40 m", - "weight": "39.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.52", - "stats": { - "base-attack": "158", - "base-defense": "83", - "base-stamina": "111", - "max-cp": "1200", - "max-hp": "99" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "drill peck", - "type": "flying", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "brave bird", - "type": "flying", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2" - }, - { - "name": "swift", - "type": "normal", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.8" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "doduo candy", - "next-evolution": [{ - "num": "085", - "name": "dodrio", - "candy-cost": "50" - }] - } - }, - { - "num": "085", - "name": "dodrio", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Watch out if Dodrio's three heads are looking in three separate directions. It's a sure sign that it is on its guard. Don't go near this Pokémon if it's being wary-it may decide to peck you.", - "img": "https://www.serebii.net/pokemongo/pokemon/085.png", - "size": { - "height": "1.80 m", - "weight": "85.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.22", - "stats": { - "base-attack": "218", - "base-defense": "140", - "base-stamina": "155", - "max-cp": "2362", - "max-hp": "134" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - }, - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "drill peck", - "type": "flying", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "brave bird", - "type": "flying", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2" - }, - { - "name": "air cutter", - "type": "flying", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "doduo candy", - "prev-evolution": [{ - "num": "084", - "name": "doduo", - "candy-cost": "50" - }] - } - }, - { - "num": "086", - "name": "seel", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Seel hunts for prey in the frigid sea underneath sheets of ice. When it needs to breathe, it punches a hole through the ice with the sharply protruding section of its head.", - "img": "https://www.serebii.net/pokemongo/pokemon/086.png", - "size": { - "height": "1.09 m", - "weight": "90.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.28", - "stats": { - "base-attack": "85", - "base-defense": "121", - "base-stamina": "163", - "max-cp": "971", - "max-hp": "140" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "ice shard", - "type": "ice", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.2" - }, - { - "name": "lick", - "type": "ghost", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "icy wind", - "type": "ice", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "3.3" - }, - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "aurora beam", - "type": "ice", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.55" - }, - { - "name": "aqua jet", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.6" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "seel candy", - "next-evolution": [{ - "num": "087", - "name": "dewgong", - "candy-cost": "50" - }] - } - }, - { - "num": "087", - "name": "dewgong", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Dewgong loves to snooze on bitterly cold ice. The sight of this Pokémon sleeping on a glacier was mistakenly thought to be a mermaid by a mariner long ago.", - "img": "https://www.serebii.net/pokemongo/pokemon/087.png", - "size": { - "height": "1.70 m", - "weight": "120.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "ice" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.013", - "stats": { - "base-attack": "139", - "base-defense": "177", - "base-stamina": "207", - "max-cp": "1985", - "max-hp": "175" - }, - "resistant": [ - "water", - "ice" - ], - "weaknesses": [ - "electric", - "grass", - "fighting", - "rock" - ], - "quick-move": [ - { - "name": "frost breath", - "type": "ice", - "base-damage": "10", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "iron tail", - "type": "steel", - "base-damage": "15", - "energy": "7", - "move-duration-seg": "1.1" - }, - { - "name": "ice shard", - "type": "ice", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "icy wind", - "type": "ice", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "3.3" - }, - { - "name": "aqua jet", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.6" - }, - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "aurora beam", - "type": "ice", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.55" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "seel candy", - "prev-evolution": [{ - "num": "086", - "name": "seel", - "candy-cost": "50" - }] - } - }, - { - "num": "088", - "name": "grimer", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Grimer's sludgy and rubbery body can be forced through any opening, however small it may be. This Pokémon enters sewer pipes to drink filthy wastewater.", - "img": "https://www.serebii.net/pokemongo/pokemon/088.png", - "size": { - "height": "0.89 m", - "weight": "30.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.052", - "stats": { - "base-attack": "135", - "base-defense": "90", - "base-stamina": "190", - "max-cp": "1374", - "max-hp": "162" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "poison jab", - "type": "poison", - "base-damage": "10", - "energy": "7", - "move-duration-seg": "0.8" - }, - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "sludge", - "type": "poison", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "mud bomb", - "type": "ground", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "grimer candy", - "next-evolution": [{ - "num": "089", - "name": "muk", - "candy-cost": "50" - }] - } - }, - { - "num": "089", - "name": "muk", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "From Muk's body seeps a foul fluid that gives off a nose-bendingly horrible stench. Just one drop of this Pokémon's body fluid can turn a pool stagnant and rancid.", - "img": "https://www.serebii.net/pokemongo/pokemon/089.png", - "size": { - "height": "1.19 m", - "weight": "30.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.0031", - "stats": { - "base-attack": "190", - "base-defense": "172", - "base-stamina": "233", - "max-cp": "2757", - "max-hp": "195" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "poison jab", - "type": "poison", - "base-damage": "10", - "energy": "7", - "move-duration-seg": "0.8" - }, - { - "name": "infestation", - "type": "bug", - "base-damage": "10", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - }, - { - "name": "lick", - "type": "ghost", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "gunk shot", - "type": "poison", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "sludge wave", - "type": "poison", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "grimer candy", - "prev-evolution": [{ - "num": "088", - "name": "grimer", - "candy-cost": "50" - }] - } - }, - { - "num": "090", - "name": "shellder", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "At night, this Pokémon uses its broad tongue to burrow a hole in the seafloor sand and then sleep in it. While it is sleeping, Shellder closes its shell, but leaves its tongue hanging out.", - "img": "https://www.serebii.net/pokemongo/pokemon/090.png", - "size": { - "height": "0.30 m", - "weight": "4.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.52", - "stats": { - "base-attack": "116", - "base-defense": "134", - "base-stamina": "102", - "max-cp": "1080", - "max-hp": "92" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "ice shard", - "type": "ice", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.2" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "icy wind", - "type": "ice", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "3.3" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "shellder candy", - "next-evolution": [{ - "num": "091", - "name": "cloyster", - "candy-cost": "50" - }] - } - }, - { - "num": "091", - "name": "cloyster", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Cloyster is capable of swimming in the sea. It does so by swallowing water, then jetting it out toward the rear. This Pokémon shoots spikes from its shell using the same system.", - "img": "https://www.serebii.net/pokemongo/pokemon/091.png", - "size": { - "height": "1.50 m", - "weight": "132.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "ice" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.015", - "stats": { - "base-attack": "186", - "base-defense": "256", - "base-stamina": "137", - "max-cp": "2547", - "max-hp": "120" - }, - "resistant": [ - "water", - "ice" - ], - "weaknesses": [ - "electric", - "grass", - "fighting", - "rock" - ], - "quick-move": [ - { - "name": "frost breath", - "type": "ice", - "base-damage": "10", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "ice shard", - "type": "ice", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "aurora beam", - "type": "ice", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.55" - }, - { - "name": "avalanche", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "icy wind", - "type": "ice", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "3.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "shellder candy", - "prev-evolution": [{ - "num": "090", - "name": "shellder", - "candy-cost": "50" - }] - } - }, - { - "num": "092", - "name": "gastly", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Gastly is largely composed of gaseous matter. When exposed to a strong wind, the gaseous body quickly dwindles away. Groups of this Pokémon cluster under the eaves of houses to escape the ravages of wind.", - "img": "https://www.serebii.net/pokemongo/pokemon/092.png", - "size": { - "height": "1.30 m", - "weight": "0.1 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ghost", - "poison" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": "0.79", - "stats": { - "base-attack": "186", - "base-defense": "67", - "base-stamina": "102", - "max-cp": "1229", - "max-hp": "92" - }, - "resistant": [ - "normal", - "grass", - "fighting", - "poison", - "bug" - ], - "weaknesses": [ - "ground", - "psychic", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "lick", - "type": "ghost", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "astonish", - "type": "ghost", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "sucker punch", - "type": "dark", - "base-damage": "7", - "energy": "8", - "move-duration-seg": "0.7" - } - ], - "special-attack": [ - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "night shade", - "type": "ghost", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "ominous wind", - "type": "ghost", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.3" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "gastly candy", - "next-evolution": [{ - "num": "093", - "name": "haunter", - "candy-cost": "25", - "next-evolution": [{ - "num": "094", - "name": "gengar", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "093", - "name": "haunter", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Haunter is a dangerous Pokémon. If one beckons you while floating in darkness, you must never approach it. This Pokémon will try to lick you with its tongue and steal your life away.", - "img": "https://www.serebii.net/pokemongo/pokemon/093.png", - "size": { - "height": "1.60 m", - "weight": "0.1 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ghost", - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.052", - "stats": { - "base-attack": "223", - "base-defense": "107", - "base-stamina": "128", - "max-cp": "1963", - "max-hp": "113" - }, - "resistant": [ - "normal", - "grass", - "fighting", - "poison", - "bug" - ], - "weaknesses": [ - "ground", - "psychic", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "shadow claw", - "type": "ghost", - "base-damage": "9", - "energy": "6", - "move-duration-seg": "0.7" - }, - { - "name": "astonish", - "type": "ghost", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "lick", - "type": "ghost", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "shadow punch", - "type": "ghost", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "gastly candy", - "next-evolution": [{ - "num": "094", - "name": "gengar", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "092", - "name": "gastly", - "candy-cost": "25" - }] - } - }, - { - "num": "094", - "name": "gengar", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Sometimes, on a dark night, your shadow thrown by a streetlight will suddenly and startlingly overtake you. It is actually a Gengar running past you, pretending to be your shadow.", - "img": "https://www.serebii.net/pokemongo/pokemon/094.png", - "size": { - "height": "1.50 m", - "weight": "40.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ghost", - "poison" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.0067", - "stats": { - "base-attack": "261", - "base-defense": "149", - "base-stamina": "155", - "max-cp": "2878", - "max-hp": "134" - }, - "resistant": [ - "normal", - "grass", - "fighting", - "poison", - "bug" - ], - "weaknesses": [ - "ground", - "psychic", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "sucker punch", - "type": "dark", - "base-damage": "7", - "energy": "8", - "move-duration-seg": "0.7" - }, - { - "name": "hex", - "type": "ghost", - "base-damage": "10", - "energy": "15", - "move-duration-seg": "1.2" - }, - { - "name": "shadow claw", - "type": "ghost", - "base-damage": "9", - "energy": "6", - "move-duration-seg": "0.7" - } - ], - "special-attack": [ - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "focus blast", - "type": "fight", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.5" - }, - { - "name": "sludge wave", - "type": "poison", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "3.2" - }, - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "gastly candy", - "prev-evolution": [{ - "num": "093", - "name": "haunter", - "candy-cost": "100", - "prev-evolution": [{ - "num": "092", - "name": "gastly", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "095", - "name": "onix", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Onix has a magnet in its brain. It acts as a compass so that this Pokémon does not lose direction while it is tunneling. As it grows older, its body becomes increasingly rounder and smoother.", - "img": "https://www.serebii.net/pokemongo/pokemon/095.png", - "size": { - "height": "8.79 m", - "weight": "210.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "ground" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.1", - "stats": { - "base-attack": "85", - "base-defense": "232", - "base-stamina": "111", - "max-cp": "1101", - "max-hp": "99" - }, - "resistant": [ - "normal", - "fire", - "electric", - "poison", - "flying" - ], - "weaknesses": [ - "water", - "grass", - "ice", - "fighting", - "ground", - "steel" - ], - "quick-move": [ - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "sand tomb", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "4" - }, - { - "name": "heavy slam", - "type": "steel", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.1" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "iron head", - "type": "steel", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "1.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "onix candy", - "next-evolution": [{ - "num": "208", - "name": "steelix", - "candy-cost": "50", - "evolution-item": { - "name": "metal coat", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/metal-coat.png" - } - }] - } - }, - { - "num": "096", - "name": "drowzee", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "If your nose becomes itchy while you are sleeping, it's a sure sign that one of these Pokémon is standing above your pillow and trying to eat you dream through your nostrils.", - "img": "https://www.serebii.net/pokemongo/pokemon/096.png", - "size": { - "height": "0.99 m", - "weight": "32.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "3.21", - "stats": { - "base-attack": "89", - "base-defense": "136", - "base-stamina": "155", - "max-cp": "1040", - "max-hp": "134" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "drowzee candy", - "next-evolution": [{ - "num": "097", - "name": "hypno", - "candy-cost": "50" - }] - } - }, - { - "num": "097", - "name": "hypno", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Hypno holds a pendulum in its hand. The arcing movement and glitter of the pendulum lull the foe into a deep state of hypnosis. While this Pokémon searches for prey, it polishes the pendulum.", - "img": "https://www.serebii.net/pokemongo/pokemon/097.png", - "size": { - "height": "1.60 m", - "weight": "75.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.1", - "stats": { - "base-attack": "144", - "base-defense": "193", - "base-stamina": "198", - "max-cp": "2090", - "max-hp": "168" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "futuresight", - "type": "psychic", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "2.7" - }, - { - "name": "focus blast", - "type": "fight", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.5" - }, - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "drowzee candy", - "prev-evolution": [{ - "num": "096", - "name": "drowzee", - "candy-cost": "50" - }] - } - }, - { - "num": "098", - "name": "krabby", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Krabby live on beaches, burrowed inside holes dug into the sand. On sandy beaches with little in the way of food, these Pokémon can be seen squabbling with each other over territory.", - "img": "https://www.serebii.net/pokemongo/pokemon/098.png", - "size": { - "height": "0.41 m", - "weight": "6.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "2.12", - "stats": { - "base-attack": "181", - "base-defense": "124", - "base-stamina": "102", - "max-cp": "1561", - "max-hp": "92" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "vice grip", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "krabby candy", - "next-evolution": [{ - "num": "099", - "name": "kingler", - "candy-cost": "50" - }] - } - }, - { - "num": "099", - "name": "kingler", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Kingler has an enormous, oversized claw. It waves this huge claw in the air to communicate with others. However, because the claw is so heavy, the Pokémon quickly tires.", - "img": "https://www.serebii.net/pokemongo/pokemon/099.png", - "size": { - "height": "1.30 m", - "weight": "60.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.062", - "stats": { - "base-attack": "240", - "base-defense": "181", - "base-stamina": "146", - "max-cp": "2829", - "max-hp": "127" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "metal claw", - "type": "steel", - "base-damage": "8", - "energy": "7", - "move-duration-seg": "0.7" - }, - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "vice grip", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "x scissor", - "type": "water", - "base-damage": "50", - "energy": "-100", - "move-duration-seg": "4.7" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "krabby candy", - "prev-evolution": [{ - "num": "098", - "name": "krabby", - "candy-cost": "50" - }] - } - }, - { - "num": "100", - "name": "voltorb", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Voltorb was first sighted at a company that manufactures Poké Balls. The link between that sighting and the fact that this Pokémon looks very similar to a Poké Ball remains a mystery.", - "img": "https://www.serebii.net/pokemongo/pokemon/100.png", - "size": { - "height": "0.51 m", - "weight": "10.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.65", - "stats": { - "base-attack": "109", - "base-defense": "111", - "base-stamina": "120", - "max-cp": "1010", - "max-hp": "106" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "spark", - "type": "electric", - "base-damage": "6", - "energy": "9", - "move-duration-seg": "0.7" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "gyro ball", - "type": "steel", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "signal beam", - "type": "bug", - "base-damage": "75", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "voltorb candy", - "next-evolution": [{ - "num": "101", - "name": "electrode", - "candy-cost": "50" - }] - } - }, - { - "num": "101", - "name": "electrode", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Electrode eats electricity in the atmosphere. On days when lightning strikes, you can see this Pokémon exploding all over the place from eating too much electricity.", - "img": "https://www.serebii.net/pokemongo/pokemon/101.png", - "size": { - "height": "1.19 m", - "weight": "66.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.02", - "stats": { - "base-attack": "173", - "base-defense": "173", - "base-stamina": "155", - "max-cp": "2099", - "max-hp": "134" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "spark", - "type": "electric", - "base-damage": "6", - "energy": "9", - "move-duration-seg": "0.7" - }, - { - "name": "volt switch", - "type": "electric", - "base-damage": "20", - "energy": "25", - "move-duration-seg": "2.3" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "voltorb candy", - "prev-evolution": [{ - "num": "100", - "name": "voltorb", - "candy-cost": "50" - }] - } - }, - { - "num": "102", - "name": "exeggcute", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "This Pokémon consists of six eggs that form a closely knit cluster. The six eggs attract each other and spin around. When cracks increasingly appear on the eggs, Exeggcute is close to evolution.", - "img": "https://www.serebii.net/pokemongo/pokemon/102.png", - "size": { - "height": "0.41 m", - "weight": "2.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "psychic" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.78", - "stats": { - "base-attack": "107", - "base-defense": "125", - "base-stamina": "155", - "max-cp": "1175", - "max-hp": "134" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying", - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - }, - { - "name": "bullet seed", - "type": "grass", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "seed bomb", - "type": "grass", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "exeggcute candy", - "next-evolution": [{ - "num": "103", - "name": "exeggutor", - "candy-cost": "50" - }] - } - }, - { - "num": "103", - "name": "exeggutor", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Exeggutor originally came from the tropics. Its heads steadily grow larger from exposure to strong sunlight. It is said that when the heads fall off, they group together to form Exeggcute.", - "img": "https://www.serebii.net/pokemongo/pokemon/103.png", - "size": { - "height": "2.01 m", - "weight": "120.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "psychic" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.014", - "stats": { - "base-attack": "233", - "base-defense": "149", - "base-stamina": "216", - "max-cp": "3014", - "max-hp": "182" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying", - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "bullet seed", - "type": "grass", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "extrasensory", - "type": "psychic", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "seed bomb", - "type": "grass", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "exeggcute candy", - "prev-evolution": [{ - "num": "102", - "name": "exeggcute", - "candy-cost": "50" - }] - } - }, - { - "num": "104", - "name": "cubone", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Cubone pines for the mother it will never see again. Seeing a likeness of its mother in the full moon, it cries. The stains on the skull the Pokémon wears are made by the tears it sheds.", - "img": "https://www.serebii.net/pokemongo/pokemon/104.png", - "size": { - "height": "0.41 m", - "weight": "6.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": "0.61", - "stats": { - "base-attack": "90", - "base-defense": "144", - "base-stamina": "137", - "max-cp": "1019", - "max-hp": "120" - }, - "resistant": [ - "electric", - "poison", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ice" - ], - "quick-move": [ - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "bone club", - "type": "ground", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "bulldoze", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.5" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "cubone candy", - "next-evolution": [{ - "num": "105", - "name": "marowak", - "candy-cost": "50" - }] - } - }, - { - "num": "105", - "name": "marowak", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Marowak is the evolved form of a Cubone that has overcome its sadness at the loss of its mother and grown tough. This Pokémon's tempered and hardened spirit is not easily broken.", - "img": "https://www.serebii.net/pokemongo/pokemon/105.png", - "size": { - "height": "0.99 m", - "weight": "45.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.15" - }, - "spawn-chance": "0.02", - "stats": { - "base-attack": "144", - "base-defense": "186", - "base-stamina": "155", - "max-cp": "1835", - "max-hp": "134" - }, - "resistant": [ - "electric", - "poison", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ice" - ], - "quick-move": [ - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "bone club", - "type": "ground", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "cubone candy", - "prev-evolution": [{ - "num": "104", - "name": "cubone", - "candy-cost": "50" - }] - } - }, - { - "num": "106", - "name": "hitmonlee", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Hitmonlee's legs freely contract and stretch. Using these springlike legs, it bowls over foes with devastating kicks. After battle, it rubs down its legs and loosens the muscles to overcome fatigue.", - "img": "https://www.serebii.net/pokemongo/pokemon/106.png", - "size": { - "height": "1.50 m", - "weight": "49.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.02", - "stats": { - "base-attack": "224", - "base-defense": "181", - "base-stamina": "137", - "max-cp": "2576", - "max-hp": "120" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "low kick", - "type": "fight", - "base-damage": "6", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "low sweep", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "stomp", - "type": "normal", - "base-damage": "55", - "energy": "-50", - "move-duration-seg": "1.7" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "tyrogue candy", - "prev-evolution": [{ - "num": "236", - "name": "tyrogue", - "candy-cost": "25" - }] - } - }, - { - "num": "107", - "name": "hitmonchan", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Hitmonchan is said to possess the spirit of a boxer who had been working toward a world championship. This Pokémon has an indomitable spirit and will never give up in the face of adversity.", - "img": "https://www.serebii.net/pokemongo/pokemon/107.png", - "size": { - "height": "1.40 m", - "weight": "50.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.022", - "stats": { - "base-attack": "193", - "base-defense": "197", - "base-stamina": "137", - "max-cp": "2332", - "max-hp": "120" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "bullet punch", - "type": "steel", - "base-damage": "9", - "energy": "10", - "move-duration-seg": "0.9" - }, - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "fire punch", - "type": "fire", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.2" - }, - { - "name": "thunder punch", - "type": "electric", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.8" - }, - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "ice punch", - "type": "ice", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "tyrogue candy", - "prev-evolution": [{ - "num": "236", - "name": "tyrogue", - "candy-cost": "25" - }] - } - }, - { - "num": "108", - "name": "lickitung", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Whenever Lickitung comes across something new, it will unfailingly give it a lick. It does so because it memorizes things by texture and by taste. It is somewhat put off by sour things.", - "img": "https://www.serebii.net/pokemongo/pokemon/108.png", - "size": { - "height": "1.19 m", - "weight": "65.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.011", - "stats": { - "base-attack": "108", - "base-defense": "137", - "base-stamina": "207", - "max-cp": "1411", - "max-hp": "175" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "lick", - "type": "ghost", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "stomp", - "type": "normal", - "base-damage": "55", - "energy": "-50", - "move-duration-seg": "1.7" - }, - { - "name": "power whip", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "lickitung candy" - } - }, - { - "num": "109", - "name": "koffing", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "If Koffing becomes agitated, it raises the toxicity of its internal gases and then jets them out from all over its body. This Pokémon may also overinflate its round body, then explode.", - "img": "https://www.serebii.net/pokemongo/pokemon/109.png", - "size": { - "height": "0.61 m", - "weight": "1.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.2", - "stats": { - "base-attack": "119", - "base-defense": "141", - "base-stamina": "120", - "max-cp": "1214", - "max-hp": "106" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "infestation", - "type": "bug", - "base-damage": "10", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "sludge", - "type": "poison", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "koffing candy", - "next-evolution": [{ - "num": "110", - "name": "weezing", - "candy-cost": "50" - }] - } - }, - { - "num": "110", - "name": "weezing", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Weezing loves the gases given off by rotted kitchen garbage. This Pokémon will find a dirty, unkempt house and make it its home. At night, when the people in the house are asleep, it will go through the trash.", - "img": "https://www.serebii.net/pokemongo/pokemon/110.png", - "size": { - "height": "1.19 m", - "weight": "9.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.016", - "stats": { - "base-attack": "174", - "base-defense": "197", - "base-stamina": "163", - "max-cp": "2293", - "max-hp": "140" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "infestation", - "type": "bug", - "base-damage": "10", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "koffing candy", - "prev-evolution": [{ - "num": "109", - "name": "koffing", - "candy-cost": "50" - }] - } - }, - { - "num": "111", - "name": "rhyhorn", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Rhyhorn runs in a straight line, smashing everything in its path. It is not bothered even if it rushes headlong into a block of steel. This Pokémon may feel some pain from the collision the next day, however.", - "img": "https://www.serebii.net/pokemongo/pokemon/111.png", - "size": { - "height": "0.99 m", - "weight": "115.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground", - "rock" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.63", - "stats": { - "base-attack": "140", - "base-defense": "127", - "base-stamina": "190", - "max-cp": "1651", - "max-hp": "162" - }, - "resistant": [ - "normal", - "fire", - "electric", - "poison", - "flying" - ], - "weaknesses": [ - "water", - "grass", - "ice", - "fighting", - "ground", - "steel" - ], - "quick-move": [ - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "bulldoze", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "horn attack", - "type": "normal", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.85" - }, - { - "name": "stomp", - "type": "normal", - "base-damage": "55", - "energy": "-50", - "move-duration-seg": "1.7" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "rhyhorn candy", - "next-evolution": [{ - "num": "112", - "name": "rhydon", - "candy-cost": "50", - "next-evolution": [{ - "num": "464", - "name": "rhyperior", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - }] - } - }, - { - "num": "112", - "name": "rhydon", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Rhydon's horn can crush even uncut diamonds. One sweeping blow of its tail can topple a building. This Pokémon's hide is extremely tough. Even direct cannon hits don't leave a scratch.", - "img": "https://www.serebii.net/pokemongo/pokemon/112.png", - "size": { - "height": "1.91 m", - "weight": "120.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground", - "rock" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.05" - }, - "spawn-chance": "0.022", - "stats": { - "base-attack": "222", - "base-defense": "171", - "base-stamina": "233", - "max-cp": "3179", - "max-hp": "195" - }, - "resistant": [ - "normal", - "fire", - "electric", - "poison", - "flying" - ], - "weaknesses": [ - "water", - "grass", - "ice", - "fighting", - "ground", - "steel" - ], - "quick-move": [ - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "megahorn", - "type": "bug", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2.2" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "rhyhorn candy", - "next-evolution": [{ - "num": "464", - "name": "rhyperior", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }], - "prev-evolution": [{ - "num": "111", - "name": "rhyhorn", - "candy-cost": "25" - }] - } - }, - { - "num": "113", - "name": "chansey", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Chansey lays nutritionally excellent eggs on an everyday basis. The eggs are so delicious, they are easily and eagerly devoured by even those people who have lost their appetite.", - "img": "https://www.serebii.net/pokemongo/pokemon/113.png", - "size": { - "height": "1.09 m", - "weight": "34.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.013", - "stats": { - "base-attack": "60", - "base-defense": "128", - "base-stamina": "487", - "max-cp": "1255", - "max-hp": "396" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "chansey candy", - "next-evolution": [{ - "num": "242", - "name": "blissey" - }], - "prev-evolution": [{ - "num": "440", - "name": "happiny", - "candy-cost": "25" - }] - } - }, - { - "num": "114", - "name": "tangela", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Tangela's vines snap off easily if they are grabbed. This happens without pain, allowing it to make a quick getaway. The lost vines are replaced by newly grown vines the very next day.", - "img": "https://www.serebii.net/pokemongo/pokemon/114.png", - "size": { - "height": "0.99 m", - "weight": "35.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.4" - }, - "spawn-chance": "0.228", - "stats": { - "base-attack": "183", - "base-defense": "169", - "base-stamina": "163", - "max-cp": "2238", - "max-hp": "140" - }, - "resistant": [ - "water", - "electric", - "grass", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying", - "bug" - ], - "quick-move": [ - { - "name": "vine whip", - "type": "grass", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "infestation", - "type": "bug", - "base-damage": "10", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "grass knot", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "power whip", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "tangela candy" - } - }, - { - "num": "115", - "name": "kangaskhan", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "If you come across a young Kangaskhan playing by itself, you must never disturb it or attempt to catch it. The baby Pokémon's parent is sure to be in the area, and it will become violently enraged at you.", - "img": "https://www.serebii.net/pokemongo/pokemon/115.png", - "size": { - "height": "2.21 m", - "weight": "80.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2", - "common-capture-area": "early reports that this pokémon is likely to be found in: australia, new zealand or hatched from an egg in that geographic area." - }, - "spawn-chance": "0.0086", - "stats": { - "base-attack": "181", - "base-defense": "165", - "base-stamina": "233", - "max-cp": "2586", - "max-hp": "195" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "low kick", - "type": "fight", - "base-damage": "6", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "outrage", - "type": "dragon", - "base-damage": "110", - "energy": "-50", - "move-duration-seg": "3.9" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "stomp", - "type": "normal", - "base-damage": "55", - "energy": "-50", - "move-duration-seg": "1.7" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "kangaskhan candy" - } - }, - { - "num": "116", - "name": "horsea", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Horsea eats small insects and moss off of rocks. If the ocean current turns fast, this Pokémon anchors itself by wrapping its tail around rocks or coral to prevent being washed away.", - "img": "https://www.serebii.net/pokemongo/pokemon/116.png", - "size": { - "height": "0.41 m", - "weight": "8.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "1.13", - "stats": { - "base-attack": "129", - "base-defense": "103", - "base-stamina": "102", - "max-cp": "1056", - "max-hp": "92" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "dragon pulse", - "type": "dragon", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.6" - }, - { - "name": "flash cannon", - "type": "steel", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.7" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "horsea candy", - "next-evolution": [{ - "num": "117", - "name": "seadra", - "candy-cost": "50", - "next-evolution": [{ - "num": "230", - "name": "kingdra", - "candy-cost": "100", - "evolution-item": { - "name": "dragon scale", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/dragon-scale.png" - } - }] - }] - } - }, - { - "num": "117", - "name": "seadra", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Seadra sleeps after wriggling itself between the branches of coral. Those trying to harvest coral are occasionally stung by this Pokémon's poison barbs if they fail to notice it.", - "img": "https://www.serebii.net/pokemongo/pokemon/117.png", - "size": { - "height": "1.19 m", - "weight": "25.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.034", - "stats": { - "base-attack": "187", - "base-defense": "156", - "base-stamina": "146", - "max-cp": "2093", - "max-hp": "127" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "dragon breath", - "type": "dragon", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "dragon pulse", - "type": "dragon", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.6" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "aurora beam", - "type": "ice", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.55" - }, - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "horsea candy", - "next-evolution": [{ - "num": "230", - "name": "kingdra", - "candy-cost": "100", - "evolution-item": { - "name": "dragon scale", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/dragon-scale.png" - } - }], - "prev-evolution": [{ - "num": "116", - "name": "horsea", - "candy-cost": "25" - }] - } - }, - { - "num": "118", - "name": "goldeen", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Goldeen is a very beautiful Pokémon with fins that billow elegantly in water. However, don't let your guard down around this Pokémon-it could ram you powerfully with its horn.", - "img": "https://www.serebii.net/pokemongo/pokemon/118.png", - "size": { - "height": "0.61 m", - "weight": "15.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "2.18", - "stats": { - "base-attack": "123", - "base-defense": "110", - "base-stamina": "128", - "max-cp": "1152", - "max-hp": "113" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "horn attack", - "type": "normal", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.85" - }, - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "goldeen candy", - "next-evolution": [{ - "num": "119", - "name": "seaking", - "candy-cost": "50" - }] - } - }, - { - "num": "119", - "name": "seaking", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "In the autumn, Seaking males can be seen performing courtship dances in riverbeds to woo females. During this season, this Pokémon's body coloration is at its most beautiful.", - "img": "https://www.serebii.net/pokemongo/pokemon/119.png", - "size": { - "height": "1.30 m", - "weight": "39.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.08", - "stats": { - "base-attack": "175", - "base-defense": "147", - "base-stamina": "190", - "max-cp": "2162", - "max-hp": "162" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "poison jab", - "type": "poison", - "base-damage": "10", - "energy": "7", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "megahorn", - "type": "bug", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2.2" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "icy wind", - "type": "ice", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "3.3" - }, - { - "name": "drill run", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "goldeen candy", - "prev-evolution": [{ - "num": "118", - "name": "goldeen", - "candy-cost": "50" - }] - } - }, - { - "num": "120", - "name": "staryu", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Staryu's center section has an organ called the core that shines bright red. If you go to a beach toward the end of summer, the glowing cores of these Pokémon look like the stars in the sky.", - "img": "https://www.serebii.net/pokemongo/pokemon/120.png", - "size": { - "height": "0.79 m", - "weight": "34.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "1.95", - "stats": { - "base-attack": "137", - "base-defense": "112", - "base-stamina": "102", - "max-cp": "1157", - "max-hp": "92" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "swift", - "type": "normal", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.8" - }, - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "power gem", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "staryu candy", - "next-evolution": [{ - "num": "121", - "name": "starmie", - "candy-cost": "50" - }] - } - }, - { - "num": "121", - "name": "starmie", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Starmie's center section-the core-glows brightly in seven colors. Because of its luminous nature, this Pokémon has been given the nickname the gem of the sea.", - "img": "https://www.serebii.net/pokemongo/pokemon/121.png", - "size": { - "height": "1.09 m", - "weight": "80.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "psychic" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.034", - "stats": { - "base-attack": "210", - "base-defense": "184", - "base-stamina": "155", - "max-cp": "2584", - "max-hp": "134" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "psychic" - ], - "weaknesses": [ - "electric", - "grass", - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "hidden power", - "type": "normal", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "power gem", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "staryu candy", - "prev-evolution": [{ - "num": "120", - "name": "staryu", - "candy-cost": "50" - }] - } - }, - { - "num": "122", - "name": "mr. mime", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Mr. Mime is a master of pantomime. Its gestures and motions convince watchers that something unseeable actually exists. Once the watchers are convinced, the unseeable thing exists as if it were real.", - "img": "https://www.serebii.net/pokemongo/pokemon/122.png", - "size": { - "height": "1.30 m", - "weight": "54.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.3", - "common-capture-area": "early reports that this pokémon is likely to be found in: western europe or hatched from an egg in that geographic area." - }, - "spawn-chance": "0.0031", - "stats": { - "base-attack": "192", - "base-defense": "205", - "base-stamina": "120", - "max-cp": "2228", - "max-hp": "106" - }, - "resistant": [ - "fighting", - "psychic", - "dragon" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "mr. mime candy", - "prev-evolution": [{ - "num": "439", - "name": "mime jr", - "candy-cost": "50" - }] - } - }, - { - "num": "123", - "name": "scyther", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Scyther is blindingly fast. Its blazing speed enhances the effectiveness of the twin scythes on its forearms. This Pokémon's scythes are so effective, they can slice through thick logs in one wicked stroke.", - "img": "https://www.serebii.net/pokemongo/pokemon/123.png", - "size": { - "height": "1.50 m", - "weight": "56.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "flying" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.3" - }, - "spawn-chance": "0.14", - "stats": { - "base-attack": "218", - "base-defense": "170", - "base-stamina": "172", - "max-cp": "2706", - "max-hp": "147" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "bug" - ], - "weaknesses": [ - "fire", - "electric", - "ice", - "flying", - "rock" - ], - "quick-move": [ - { - "name": "fury cutter", - "type": "bug", - "base-damage": "3", - "energy": "6", - "move-duration-seg": "0.4" - }, - { - "name": "air slash", - "type": "flying", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.2" - }, - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "night slash", - "type": "dark", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.2" - }, - { - "name": "x scissor", - "type": "water", - "base-damage": "50", - "energy": "-100", - "move-duration-seg": "4.7" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "bug buzz", - "type": "bug", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.7" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "scyther candy", - "next-evolution": [{ - "num": "212", - "name": "scizor", - "candy-cost": "50", - "evolution-item": { - "name": "metal coat", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/metal-coat.png" - } - }] - } - }, - { - "num": "124", - "name": "jynx", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Jynx walks rhythmically, swaying and shaking its hips as if it were dancing. Its motions are so bouncingly alluring, people seeing it are compelled to shake their hips without giving any thought to what they are doing.", - "img": "https://www.serebii.net/pokemongo/pokemon/124.png", - "size": { - "height": "1.40 m", - "weight": "40.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ice", - "psychic" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.3" - }, - "spawn-chance": "0.35", - "stats": { - "base-attack": "223", - "base-defense": "151", - "base-stamina": "163", - "max-cp": "2555", - "max-hp": "140" - }, - "resistant": [ - "ice", - "psychic" - ], - "weaknesses": [ - "fire", - "bug", - "rock", - "ghost", - "dark", - "steel" - ], - "quick-move": [ - { - "name": "frost breath", - "type": "ice", - "base-damage": "10", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - }, - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "draining kiss", - "type": "fairy", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - }, - { - "name": "avalanche", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "ice punch", - "type": "ice", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "jynx candy", - "prev-evolution": [{ - "num": "238", - "name": "smoochum", - "candy-cost": "25" - }] - } - }, - { - "num": "125", - "name": "electabuzz", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "When a storm arrives, gangs of this Pokémon compete with each other to scale heights that are likely to be stricken by lightning bolts. Some towns use Electabuzz in place of lightning rods.", - "img": "https://www.serebii.net/pokemongo/pokemon/125.png", - "size": { - "height": "1.09 m", - "weight": "30.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.074", - "stats": { - "base-attack": "198", - "base-defense": "158", - "base-stamina": "163", - "max-cp": "2334", - "max-hp": "140" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "low kick", - "type": "fight", - "base-damage": "6", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "thunder punch", - "type": "electric", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.8" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "electabuzz candy", - "next-evolution": [{ - "num": "466", - "name": "electivire", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }], - "prev-evolution": [{ - "num": "239", - "name": "elekid", - "candy-cost": "25" - }] - } - }, - { - "num": "126", - "name": "magmar", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "In battle, Magmar blows out intensely hot flames from all over its body to intimidate its opponent. This Pokémon's fiery bursts create heat waves that ignite grass and trees in its surroundings.", - "img": "https://www.serebii.net/pokemongo/pokemon/126.png", - "size": { - "height": "1.30 m", - "weight": "44.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.1", - "stats": { - "base-attack": "206", - "base-defense": "154", - "base-stamina": "163", - "max-cp": "2394", - "max-hp": "140" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "karate chop", - "type": "fight", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "fire punch", - "type": "fire", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.2" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "magmar candy", - "next-evolution": [{ - "num": "467", - "name": "magmortar", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }], - "prev-evolution": [{ - "num": "240", - "name": "magby", - "candy-cost": "25" - }] - } - }, - { - "num": "127", - "name": "pinsir", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Pinsir is astoundingly strong. It can grip a foe weighing twice its weight in its horns and easily lift it. This Pokémon's movements turn sluggish in cold places.", - "img": "https://www.serebii.net/pokemongo/pokemon/127.png", - "size": { - "height": "1.50 m", - "weight": "55.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.3" - }, - "spawn-chance": "0.99", - "stats": { - "base-attack": "238", - "base-defense": "182", - "base-stamina": "163", - "max-cp": "2959", - "max-hp": "140" - }, - "resistant": [ - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "flying", - "rock" - ], - "quick-move": [ - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "fury cutter", - "type": "bug", - "base-damage": "3", - "energy": "6", - "move-duration-seg": "0.4" - } - ], - "special-attack": [ - { - "name": "vice grip", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "x scissor", - "type": "water", - "base-damage": "50", - "energy": "-100", - "move-duration-seg": "4.7" - }, - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "submission", - "type": "fight", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "pinsir candy" - } - }, - { - "num": "128", - "name": "tauros", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "This Pokémon is not satisfied unless it is rampaging at all times. If there is no opponent for Tauros to battle, it will charge at thick trees and knock them down to calm itself.", - "img": "https://www.serebii.net/pokemongo/pokemon/128.png", - "size": { - "height": "1.40 m", - "weight": "88.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.3", - "common-capture-area": "early reports that this pokémon is likely to be found in: north america or hatched from an egg in that geographic area." - }, - "spawn-chance": "0.12", - "stats": { - "base-attack": "198", - "base-defense": "183", - "base-stamina": "181", - "max-cp": "2620", - "max-hp": "154" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "horn attack", - "type": "normal", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.85" - }, - { - "name": "iron head", - "type": "steel", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "1.9" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "tauros candy" - } - }, - { - "num": "129", - "name": "magikarp", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Magikarp is a pathetic excuse for a Pokémon that is only capable of flopping and splashing. This behavior prompted scientists to undertake research into it.", - "img": "https://www.serebii.net/pokemongo/pokemon/129.png", - "size": { - "height": "0.89 m", - "weight": "10.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.7" - }, - "spawn-chance": "4.78", - "stats": { - "base-attack": "29", - "base-defense": "85", - "base-stamina": "85", - "max-cp": "274", - "max-hp": "79" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "splash", - "type": "water", - "base-damage": "0", - "energy": "0", - "move-duration-seg": "1.73" - }], - "special-attack": [ - { - "name": "struggle", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "2.2" - }], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "magikarp candy", - "next-evolution": [{ - "num": "130", - "name": "gyarados", - "candy-cost": "400" - }] - } - }, - { - "num": "130", - "name": "gyarados", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "When Magikarp evolves into Gyarados, its brain cells undergo a structural transformation. It is said that this transformation is to blame for this Pokémon's wildly violent nature.", - "img": "https://www.serebii.net/pokemongo/pokemon/130.png", - "size": { - "height": "6.50 m", - "weight": "235.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.0032", - "stats": { - "base-attack": "237", - "base-defense": "186", - "base-stamina": "216", - "max-cp": "3391", - "max-hp": "182" - }, - "resistant": [ - "fire", - "water", - "fighting", - "ground", - "bug" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "dragon tail", - "type": "dragon", - "base-damage": "15", - "energy": "9", - "move-duration-seg": "1.1" - }, - { - "name": "dragon breath", - "type": "dragon", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "outrage", - "type": "dragon", - "base-damage": "110", - "energy": "-50", - "move-duration-seg": "3.9" - }, - { - "name": "dragon pulse", - "type": "dragon", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.6" - }, - { - "name": "twister", - "type": "dragon", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "magikarp candy", - "prev-evolution": [{ - "num": "129", - "name": "magikarp", - "candy-cost": "400" - }] - } - }, - { - "num": "131", - "name": "lapras", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "People have driven Lapras almost to the point of extinction. In the evenings, this Pokémon is said to sing plaintively as it seeks what few others of its kind still remain.", - "img": "https://www.serebii.net/pokemongo/pokemon/131.png", - "size": { - "height": "2.49 m", - "weight": "220.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "ice" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.05" - }, - "spawn-chance": "0.006", - "stats": { - "base-attack": "165", - "base-defense": "174", - "base-stamina": "277", - "max-cp": "2641", - "max-hp": "230" - }, - "resistant": [ - "water", - "ice" - ], - "weaknesses": [ - "electric", - "grass", - "fighting", - "rock" - ], - "quick-move": [ - { - "name": "frost breath", - "type": "ice", - "base-damage": "10", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "ice shard", - "type": "ice", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "dragon pulse", - "type": "dragon", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.6" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "lapras candy" - } - }, - { - "num": "132", - "name": "ditto", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Ditto rearranges its cell structure to transform itself into other shapes. However, if it tries to transform itself into something by relying on its memory, this Pokémon manages to get details wrong.", - "img": "https://www.serebii.net/pokemongo/pokemon/132.png", - "size": { - "height": "0.30 m", - "weight": "4.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "91", - "base-defense": "91", - "base-stamina": "134", - "max-cp": "832", - "max-hp": "117" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }], - "special-attack": [ - { - "name": "struggle", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "2.2" - }], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "ditto candy" - } - }, - { - "num": "133", - "name": "eevee", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Eevee has an unstable genetic makeup that suddenly mutates due to the environment in which it lives. Radiation from various stones causes this Pokémon to evolve.", - "img": "https://www.serebii.net/pokemongo/pokemon/133.png", - "size": { - "height": "0.30 m", - "weight": "6.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": "2.75", - "stats": { - "base-attack": "104", - "base-defense": "114", - "base-stamina": "146", - "max-cp": "1071", - "max-hp": "127" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "swift", - "type": "normal", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.8" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "eevee candy", - "next-evolution": [ - { - "num": "134", - "name": "vaporeon", - "candy-cost": "25" - }, - { - "num": "135", - "name": "jolteon", - "candy-cost": "25" - }, - { - "num": "136", - "name": "flareon", - "candy-cost": "25" - }, - { - "num": "196", - "name": "espeon", - "candy-cost": "25" - }, - { - "num": "197", - "name": "umbreon", - "candy-cost": "25" - }, - { - "num": "470", - "name": "leafeon", - "candy-cost": "25" - }, - { - "num": "471", - "name": "glaceon", - "candy-cost": "25" - } - ] - } - }, - { - "num": "134", - "name": "vaporeon", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Vaporeon underwent a spontaneous mutation and grew fins and gills that allow it to live underwater. This Pokémon has the ability to freely control water.", - "img": "https://www.serebii.net/pokemongo/pokemon/134.png", - "size": { - "height": "0.99 m", - "weight": "29.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.014", - "stats": { - "base-attack": "205", - "base-defense": "161", - "base-stamina": "277", - "max-cp": "3114", - "max-hp": "230" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }], - "special-attack": [ - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "eevee candy", - "prev-evolution": [{ - "num": "133", - "name": "eevee", - "candy-cost": "25" - }] - } - }, - { - "num": "135", - "name": "jolteon", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Jolteon's cells generate a low level of electricity. This power is amplified by the static electricity of its fur, enabling the Pokémon to drop thunderbolts. The bristling fur is made of electrically charged needles.", - "img": "https://www.serebii.net/pokemongo/pokemon/135.png", - "size": { - "height": "0.79 m", - "weight": "24.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.012", - "stats": { - "base-attack": "232", - "base-defense": "182", - "base-stamina": "163", - "max-cp": "2888", - "max-hp": "140" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "volt switch", - "type": "electric", - "base-damage": "20", - "energy": "25", - "move-duration-seg": "2.3" - } - ], - "special-attack": [ - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "eevee candy", - "prev-evolution": [{ - "num": "133", - "name": "eevee", - "candy-cost": "25" - }] - } - }, - { - "num": "136", - "name": "flareon", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Flareon's fluffy fur has a functional purpose-it releases heat into the air so that its body does not get excessively hot. This Pokémon's body temperature can rise to a maximum of 1,650 degrees Fahrenheit.", - "img": "https://www.serebii.net/pokemongo/pokemon/136.png", - "size": { - "height": "0.89 m", - "weight": "25.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.017", - "stats": { - "base-attack": "246", - "base-defense": "179", - "base-stamina": "163", - "max-cp": "3029", - "max-hp": "140" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "fire spin", - "type": "fire", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - }, - { - "name": "overheat", - "type": "fire", - "base-damage": "160", - "energy": "-100", - "move-duration-seg": "4" - }, - { - "name": "heat wave", - "type": "fire", - "base-damage": "95", - "energy": "-100", - "move-duration-seg": "3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "eevee candy", - "prev-evolution": [{ - "num": "133", - "name": "eevee", - "candy-cost": "25" - }] - } - }, - { - "num": "137", - "name": "porygon", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Porygon is capable of reverting itself entirely back to program data and entering cyberspace. This Pokémon is copy-protected so it cannot be duplicated by copying.", - "img": "https://www.serebii.net/pokemongo/pokemon/137.png", - "size": { - "height": "0.79 m", - "weight": "36.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.4" - }, - "spawn-chance": "0.012", - "stats": { - "base-attack": "153", - "base-defense": "136", - "base-stamina": "163", - "max-cp": "1720", - "max-hp": "140" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - }, - { - "name": "hidden power", - "type": "normal", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "zap cannon", - "type": "electric", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.7" - }, - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - }, - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "signal beam", - "type": "bug", - "base-damage": "75", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "10 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "porygon candy", - "next-evolution": [{ - "num": "233", - "name": "porygon2", - "candy-cost": "25", - "evolution-item": { - "name": "up grade", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/up-grade.png" - }, - "next-evolution": [{ - "num": "474", - "name": "porygon-z", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - }] - } - }, - { - "num": "138", - "name": "omanyte", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Omanyte is one of the ancient and long-since-extinct Pokémon that have been regenerated from fossils by people. If attacked by an enemy, it withdraws itself inside its hard shell.", - "img": "https://www.serebii.net/pokemongo/pokemon/138.png", - "size": { - "height": "0.41 m", - "weight": "7.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "water" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.4" - }, - "spawn-chance": "0.14", - "stats": { - "base-attack": "155", - "base-defense": "153", - "base-stamina": "111", - "max-cp": "1544", - "max-hp": "99" - }, - "resistant": [ - "normal", - "fire", - "ice", - "poison", - "flying" - ], - "weaknesses": [ - "electric", - "grass", - "fighting", - "ground" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - }, - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "rock blast", - "type": "rock", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "rock tomb", - "type": "rock", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "brine", - "type": "water", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "omanyte candy", - "next-evolution": [{ - "num": "139", - "name": "omastar", - "candy-cost": "50" - }] - } - }, - { - "num": "139", - "name": "omastar", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Omastar uses its tentacles to capture its prey. It is believed to have become extinct because its shell grew too large and heavy, causing its movements to become too slow and ponderous.", - "img": "https://www.serebii.net/pokemongo/pokemon/139.png", - "size": { - "height": "0.99 m", - "weight": "35.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "water" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.15" - }, - "spawn-chance": "0.0061", - "stats": { - "base-attack": "207", - "base-defense": "201", - "base-stamina": "172", - "max-cp": "2786", - "max-hp": "147" - }, - "resistant": [ - "normal", - "fire", - "ice", - "poison", - "flying" - ], - "weaknesses": [ - "electric", - "grass", - "fighting", - "ground" - ], - "quick-move": [ - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - }, - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "rock blast", - "type": "rock", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "omanyte candy", - "prev-evolution": [{ - "num": "138", - "name": "omanyte", - "candy-cost": "50" - }] - } - }, - { - "num": "140", - "name": "kabuto", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Kabuto is a Pokémon that has been regenerated from a fossil. However, in extremely rare cases, living examples have been discovered. The Pokémon has not changed at all for 300 million years.", - "img": "https://www.serebii.net/pokemongo/pokemon/140.png", - "size": { - "height": "0.51 m", - "weight": "11.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "water" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.4" - }, - "spawn-chance": "0.1", - "stats": { - "base-attack": "148", - "base-defense": "140", - "base-stamina": "102", - "max-cp": "1370", - "max-hp": "92" - }, - "resistant": [ - "normal", - "fire", - "ice", - "poison", - "flying" - ], - "weaknesses": [ - "electric", - "grass", - "fighting", - "ground" - ], - "quick-move": [ - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - }, - { - "name": "aqua jet", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.6" - }, - { - "name": "rock tomb", - "type": "rock", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "kabuto candy", - "next-evolution": [{ - "num": "141", - "name": "kabutops", - "candy-cost": "50" - }] - } - }, - { - "num": "141", - "name": "kabutops", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Kabutops swam underwater to hunt for its prey in ancient times. The Pokémon was apparently evolving from being a water-dweller to living on land as evident from the beginnings of change in its gills and legs.", - "img": "https://www.serebii.net/pokemongo/pokemon/141.png", - "size": { - "height": "1.30 m", - "weight": "40.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "water" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.15" - }, - "spawn-chance": "0.0032", - "stats": { - "base-attack": "220", - "base-defense": "186", - "base-stamina": "155", - "max-cp": "2713", - "max-hp": "134" - }, - "resistant": [ - "normal", - "fire", - "ice", - "poison", - "flying" - ], - "weaknesses": [ - "electric", - "grass", - "fighting", - "ground" - ], - "quick-move": [ - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - }, - { - "name": "fury cutter", - "type": "bug", - "base-damage": "3", - "energy": "6", - "move-duration-seg": "0.4" - } - ], - "special-attack": [ - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "kabuto candy", - "prev-evolution": [{ - "num": "140", - "name": "kabuto", - "candy-cost": "50" - }] - } - }, - { - "num": "142", - "name": "aerodactyl", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Aerodactyl is a Pokémon from the age of dinosaurs. It was regenerated from genetic material extracted from amber. It is imagined to have been the king of the skies in ancient times.", - "img": "https://www.serebii.net/pokemongo/pokemon/142.png", - "size": { - "height": "1.80 m", - "weight": "59.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "flying" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.018", - "stats": { - "base-attack": "221", - "base-defense": "159", - "base-stamina": "190", - "max-cp": "2783", - "max-hp": "162" - }, - "resistant": [ - "normal", - "fire", - "poison", - "flying", - "bug" - ], - "weaknesses": [ - "water", - "electric", - "ice", - "rock", - "steel" - ], - "quick-move": [ - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - }, - { - "name": "iron head", - "type": "steel", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "1.9" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "aerodactyl candy" - } - }, - { - "num": "143", - "name": "snorlax", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Snorlax's typical day consists of nothing more than eating and sleeping. It is such a docile Pokémon that there are children who use its expansive belly as a place to play.", - "img": "https://www.serebii.net/pokemongo/pokemon/143.png", - "size": { - "height": "2.11 m", - "weight": "460.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.05" - }, - "spawn-chance": "0.016", - "stats": { - "base-attack": "190", - "base-defense": "169", - "base-stamina": "330", - "max-cp": "3225", - "max-hp": "272" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - }, - { - "name": "lick", - "type": "ghost", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "heavy slam", - "type": "steel", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.1" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "snorlax candy", - "prev-evolution": [{ - "num": "446", - "name": "munchlax", - "candy-cost": "50" - }] - } - }, - { - "num": "144", - "name": "articuno", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Articuno is a legendary bird Pokémon that can control ice. The flapping of its wings chills the air. As a result, it is said that when this Pokémon flies, snow will fall.", - "img": "https://www.serebii.net/pokemongo/pokemon/144.png", - "size": { - "height": "1.70 m", - "weight": "55.4 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "ice", - "flying" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.03" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "192", - "base-defense": "236", - "base-stamina": "207", - "max-cp": "3051", - "max-hp": "175" - }, - "resistant": [ - "grass", - "ground", - "bug" - ], - "weaknesses": [ - "fire", - "electric", - "rock", - "steel" - ], - "quick-move": [ - { - "name": "frost breath", - "type": "ice", - "base-damage": "10", - "energy": "8", - "move-duration-seg": "0.9" - }], - "special-attack": [ - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "icy wind", - "type": "ice", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "3.3" - }, - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "articuno candy" - } - }, - { - "num": "145", - "name": "zapdos", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Zapdos is a legendary bird Pokémon that has the ability to control electricity. It usually lives in thunderclouds. The Pokémon gains power if it is stricken by lightning bolts.", - "img": "https://www.serebii.net/pokemongo/pokemon/145.png", - "size": { - "height": "1.60 m", - "weight": "52.6 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "electric", - "flying" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.03" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "253", - "base-defense": "185", - "base-stamina": "207", - "max-cp": "3527", - "max-hp": "175" - }, - "resistant": [ - "grass", - "fighting", - "flying", - "bug", - "steel" - ], - "weaknesses": [ - "ice", - "rock" - ], - "quick-move": [ - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - }, - { - "name": "volt switch", - "type": "electric", - "base-damage": "20", - "energy": "25", - "move-duration-seg": "2.3" - } - ], - "special-attack": [ - { - "name": "zap cannon", - "type": "electric", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.7" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "zapdos candy" - } - }, - { - "num": "146", - "name": "moltres", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Moltres is a legendary bird Pokémon that has the ability to control fire. If this Pokémon is injured, it is said to dip its body in the molten magma of a volcano to burn and heal itself.", - "img": "https://www.serebii.net/pokemongo/pokemon/146.png", - "size": { - "height": "2.01 m", - "weight": "60.0 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "fire", - "flying" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.03" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "251", - "base-defense": "181", - "base-stamina": "207", - "max-cp": "3465", - "max-hp": "175" - }, - "resistant": [ - "fire", - "grass", - "fighting", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "electric", - "rock" - ], - "quick-move": [ - { - "name": "fire spin", - "type": "fire", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.1" - }], - "special-attack": [ - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "heat wave", - "type": "fire", - "base-damage": "95", - "energy": "-100", - "move-duration-seg": "3" - }, - { - "name": "overheat", - "type": "fire", - "base-damage": "160", - "energy": "-100", - "move-duration-seg": "4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "moltres candy" - } - }, - { - "num": "147", - "name": "dratini", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Dratini continually molts and sloughs off its old skin. It does so because the life energy within its body steadily builds to reach uncontrollable levels.", - "img": "https://www.serebii.net/pokemongo/pokemon/147.png", - "size": { - "height": "1.80 m", - "weight": "3.3 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "dragon" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.4" - }, - "spawn-chance": "0.3", - "stats": { - "base-attack": "119", - "base-defense": "91", - "base-stamina": "121", - "max-cp": "1004", - "max-hp": "107" - }, - "resistant": [ - "fire", - "water", - "electric", - "grass" - ], - "weaknesses": [ - "ice", - "dragon", - "fairy" - ], - "quick-move": [ - { - "name": "dragon breath", - "type": "dragon", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "iron tail", - "type": "steel", - "base-damage": "15", - "energy": "7", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "wrap", - "type": "normal", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.9" - }, - { - "name": "twister", - "type": "dragon", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.8" - }, - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "dratini candy", - "next-evolution": [{ - "num": "148", - "name": "dragonair", - "candy-cost": "25", - "next-evolution": [{ - "num": "149", - "name": "dragonite", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "148", - "name": "dragonair", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Dragonair stores an enormous amount of energy inside its body. It is said to alter weather conditions in its vicinity by discharging energy from its crystals on its neck and tail.", - "img": "https://www.serebii.net/pokemongo/pokemon/148.png", - "size": { - "height": "3.99 m", - "weight": "16.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "dragon" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.02", - "stats": { - "base-attack": "163", - "base-defense": "135", - "base-stamina": "156", - "max-cp": "1780", - "max-hp": "135" - }, - "resistant": [ - "fire", - "water", - "electric", - "grass" - ], - "weaknesses": [ - "ice", - "dragon", - "fairy" - ], - "quick-move": [ - { - "name": "dragon breath", - "type": "dragon", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "iron tail", - "type": "steel", - "base-damage": "15", - "energy": "7", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "wrap", - "type": "normal", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.9" - }, - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "dragon pulse", - "type": "dragon", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "dratini candy", - "next-evolution": [{ - "num": "149", - "name": "dragonite", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "147", - "name": "dratini", - "candy-cost": "25" - }] - } - }, - { - "num": "149", - "name": "dragonite", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Dragonite is capable of circling the globe in just 16 hours. It is a kindhearted Pokémon that leads lost and foundering ships in a storm to the safety of land.", - "img": "https://www.serebii.net/pokemongo/pokemon/149.png", - "size": { - "height": "2.21 m", - "weight": "210.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "dragon", - "flying" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": "0.0011", - "stats": { - "base-attack": "263", - "base-defense": "198", - "base-stamina": "209", - "max-cp": "3792", - "max-hp": "177" - }, - "resistant": [ - "fire", - "water", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "ice", - "rock", - "dragon", - "fairy" - ], - "quick-move": [ - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - }, - { - "name": "dragon tail", - "type": "dragon", - "base-damage": "15", - "energy": "9", - "move-duration-seg": "1.1" - }, - { - "name": "dragon breath", - "type": "dragon", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "hurricane", - "type": "flying", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "2.7" - }, - { - "name": "outrage", - "type": "dragon", - "base-damage": "110", - "energy": "-50", - "move-duration-seg": "3.9" - }, - { - "name": "dragon claw", - "type": "dragon", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "dragon pulse", - "type": "dragon", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "dratini candy", - "prev-evolution": [{ - "num": "148", - "name": "dragonair", - "candy-cost": "100", - "prev-evolution": [{ - "num": "147", - "name": "dratini", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "150", - "name": "mewtwo", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Mewtwo is a Pokémon that was created by genetic manipulation. However, even though the scientific power of humans created this Pokémon's body, they failed to endow Mewtwo with a compassionate heart", - "img": "https://www.serebii.net/pokemongo/pokemon/150.png", - "size": { - "height": "2.01 m", - "weight": "122.0 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.06" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "300", - "base-defense": "182", - "base-stamina": "214", - "max-cp": "4178", - "max-hp": "180" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "psycho cut", - "type": "psychic", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "focus blast", - "type": "fight", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "mewtwo candy" - } - }, - { - "num": "151", - "name": "mew", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Mew is said to possess the genetic composition of all Pokémon. It is capable of making itself invisible at will, so it entirely avoids notice even if it approaches people.", - "img": "https://www.serebii.net/pokemongo/pokemon/151.png", - "size": { - "height": "0.41 m", - "weight": "4.0 kg" - }, - "pokemon-rarity": "mythic", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0", - "base-capture-rate": "100" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "210", - "base-defense": "210", - "base-stamina": "225", - "max-cp": "3265", - "max-hp": "189" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }], - "special-attack": [ - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "focus blast", - "type": "fight", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.5" - }, - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - }, - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "mew candy" - } - }, - { - "num": "152", - "name": "chikorita", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "In battle, Chikorita waves its leaf around to keep the foe at bay. However, a sweet fragrance also wafts from the leaf, becalming the battling Pokémon and creating a cozy, friendly atmosphere all around.", - "img": "https://www.serebii.net/pokemongo/pokemon/152.png", - "size": { - "height": "0.89 m", - "weight": "6.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "92", - "base-defense": "122", - "base-stamina": "128", - "max-cp": "935", - "max-hp": "113" - }, - "resistant": [ - "water", - "electric", - "grass", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "vine whip", - "type": "grass", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "energy ball", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.9" - }, - { - "name": "grass knot", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "chikorita candy", - "next-evolution": [{ - "num": "153", - "name": "bayleef", - "candy-cost": "25", - "next-evolution": [{ - "num": "154", - "name": "meganium", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "153", - "name": "bayleef", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Bayleef's neck is ringed by curled-up leaves. Inside each tubular leaf is a small shoot of a tree. The fragrance of this shoot makes people peppy.", - "img": "https://www.serebii.net/pokemongo/pokemon/153.png", - "size": { - "height": "1.19 m", - "weight": "15.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "122", - "base-defense": "155", - "base-stamina": "155", - "max-cp": "1454", - "max-hp": "134" - }, - "resistant": [ - "water", - "electric", - "grass", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "energy ball", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.9" - }, - { - "name": "grass knot", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "chikorita candy", - "next-evolution": [{ - "num": "154", - "name": "meganium", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "152", - "name": "chikorita", - "candy-cost": "25" - }] - } - }, - { - "num": "154", - "name": "meganium", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "The fragrance of Meganium's flower soothes and calms emotions. In battle, this Pokémon gives off more of its becalming scent to blunt the foe's fighting spirit.", - "img": "https://www.serebii.net/pokemongo/pokemon/154.png", - "size": { - "height": "1.80 m", - "weight": "100.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "168", - "base-defense": "202", - "base-stamina": "190", - "max-cp": "2410", - "max-hp": "162" - }, - "resistant": [ - "water", - "electric", - "grass", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "vine whip", - "type": "grass", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "petal blizzard", - "type": "grass", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "2.6" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "chikorita candy", - "prev-evolution": [{ - "num": "153", - "name": "bayleef", - "candy-cost": "100", - "prev-evolution": [{ - "num": "152", - "name": "chikorita", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "155", - "name": "cyndaquil", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Cyndaquil protects itself by flaring up the flames on its back. The flames are vigorous if the Pokémon is angry. However, if it is tired, the flames splutter fitfully with incomplete combustion.", - "img": "https://www.serebii.net/pokemongo/pokemon/155.png", - "size": { - "height": "0.51 m", - "weight": "7.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "116", - "base-defense": "93", - "base-stamina": "118", - "max-cp": "980", - "max-hp": "105" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "flame charge", - "type": "fire", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.8" - }, - { - "name": "swift", - "type": "normal", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.8" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "cyndaquil candy", - "next-evolution": [{ - "num": "156", - "name": "quilava", - "candy-cost": "25", - "next-evolution": [{ - "num": "157", - "name": "typhlosion", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "156", - "name": "quilava", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Quilava keeps its foes at bay with the intensity of its flames and gusts of superheated air. This Pokémon applies its outstanding nimbleness to dodge attacks even while scorching the foe with flames.", - "img": "https://www.serebii.net/pokemongo/pokemon/156.png", - "size": { - "height": "0.89 m", - "weight": "19.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "158", - "base-defense": "126", - "base-stamina": "151", - "max-cp": "1653", - "max-hp": "131" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "flame charge", - "type": "fire", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.8" - }, - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "cyndaquil candy", - "next-evolution": [{ - "num": "157", - "name": "typhlosion", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "155", - "name": "cyndaquil", - "candy-cost": "25" - }] - } - }, - { - "num": "157", - "name": "typhlosion", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Typhlosion obscures itself behind a shimmering heat haze that it creates using its intensely hot flames. This Pokémon creates blazing explosive blasts that burn everything to cinders.", - "img": "https://www.serebii.net/pokemongo/pokemon/157.png", - "size": { - "height": "1.70 m", - "weight": "79.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "223", - "base-defense": "173", - "base-stamina": "186", - "max-cp": "2889", - "max-hp": "158" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "shadow claw", - "type": "ghost", - "base-damage": "9", - "energy": "6", - "move-duration-seg": "0.7" - } - ], - "special-attack": [ - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "overheat", - "type": "fire", - "base-damage": "160", - "energy": "-100", - "move-duration-seg": "4" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "cyndaquil candy", - "prev-evolution": [{ - "num": "156", - "name": "quilava", - "candy-cost": "100", - "prev-evolution": [{ - "num": "155", - "name": "cyndaquil", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "158", - "name": "totodile", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Despite the smallness of its body, Totodile's jaws are very powerful. While the Pokémon may think it is just playfully nipping, its bite has enough power to cause serious injury.", - "img": "https://www.serebii.net/pokemongo/pokemon/158.png", - "size": { - "height": "0.61 m", - "weight": "9.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "117", - "base-defense": "109", - "base-stamina": "137", - "max-cp": "1131", - "max-hp": "120" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "aqua jet", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.6" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "totodile candy", - "next-evolution": [{ - "num": "159", - "name": "croconaw", - "candy-cost": "25", - "next-evolution": [{ - "num": "160", - "name": "feraligatr", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "159", - "name": "croconaw", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Once Croconaw has clamped its jaws on its foe, it will absolutely not let go. Because the tips of its fangs are forked back like barbed fishhooks, they become impossible to remove when they have sunk in.", - "img": "https://www.serebii.net/pokemongo/pokemon/159.png", - "size": { - "height": "1.09 m", - "weight": "25.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "150", - "base-defense": "142", - "base-stamina": "163", - "max-cp": "1722", - "max-hp": "140" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "ice punch", - "type": "ice", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "totodile candy", - "next-evolution": [{ - "num": "160", - "name": "feraligatr", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "158", - "name": "totodile", - "candy-cost": "25" - }] - } - }, - { - "num": "160", - "name": "feraligatr", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Feraligatr intimidates its foes by opening its huge mouth. In battle, it will kick the ground hard with its thick and powerful hind legs to charge at the foe at an incredible speed.", - "img": "https://www.serebii.net/pokemongo/pokemon/160.png", - "size": { - "height": "2.31 m", - "weight": "88.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "205", - "base-defense": "188", - "base-stamina": "198", - "max-cp": "2857", - "max-hp": "168" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "totodile candy", - "prev-evolution": [{ - "num": "159", - "name": "croconaw", - "candy-cost": "100", - "prev-evolution": [{ - "num": "158", - "name": "totodile", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "161", - "name": "sentret", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "When Sentret sleeps, it does so while another stands guard. The sentry wakes the others at the first sign of danger. When this Pokémon becomes separated from its pack, it becomes incapable of sleep due to fear.", - "img": "https://www.serebii.net/pokemongo/pokemon/161.png", - "size": { - "height": "0.79 m", - "weight": "6.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "79", - "base-defense": "73", - "base-stamina": "111", - "max-cp": "618", - "max-hp": "99" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "grass knot", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "sentret candy", - "next-evolution": [{ - "num": "162", - "name": "furret", - "candy-cost": "25" - }] - } - }, - { - "num": "162", - "name": "furret", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Furret has a very slim build. When under attack, it can slickly squirm through narrow spaces and get away. In spite of its short limbs, this Pokémon is very nimble and fleet.", - "img": "https://www.serebii.net/pokemongo/pokemon/162.png", - "size": { - "height": "1.80 m", - "weight": "32.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "148", - "base-defense": "125", - "base-stamina": "198", - "max-cp": "1758", - "max-hp": "168" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "sucker punch", - "type": "dark", - "base-damage": "7", - "energy": "8", - "move-duration-seg": "0.7" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "sentret candy", - "prev-evolution": [{ - "num": "161", - "name": "sentret", - "candy-cost": "25" - }] - } - }, - { - "num": "163", - "name": "hoothoot", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Hoothoot has an internal organ that senses and tracks the earth's rotation. Using this special organ, this Pokémon begins hooting at precisely the same time every day.", - "img": "https://www.serebii.net/pokemongo/pokemon/163.png", - "size": { - "height": "0.71 m", - "weight": "21.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "67", - "base-defense": "88", - "base-stamina": "155", - "max-cp": "677", - "max-hp": "134" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "ice", - "rock" - ], - "quick-move": [ - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - }, - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "hoothoot candy", - "next-evolution": [{ - "num": "164", - "name": "noctowl", - "candy-cost": "50" - }] - } - }, - { - "num": "164", - "name": "noctowl", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Noctowl never fails at catching prey in darkness. This Pokémon owes its success to its superior vision that allows it to see in minimal light, and to its soft, supple wings that make no sound in flight.", - "img": "https://www.serebii.net/pokemongo/pokemon/164.png", - "size": { - "height": "1.60 m", - "weight": "40.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "145", - "base-defense": "156", - "base-stamina": "225", - "max-cp": "2024", - "max-hp": "189" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "ice", - "rock" - ], - "quick-move": [ - { - "name": "wing attack", - "type": "flying", - "base-damage": "8", - "energy": "9", - "move-duration-seg": "0.8" - }, - { - "name": "extrasensory", - "type": "psychic", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "sky attack", - "type": "flying", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - }, - { - "name": "night shade", - "type": "ghost", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "hoothoot candy", - "prev-evolution": [{ - "num": "163", - "name": "hoothoot", - "candy-cost": "50" - }] - } - }, - { - "num": "165", - "name": "ledyba", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Ledyba secretes an aromatic fluid from where its legs join its body. This fluid is used for communicating with others. This Pokémon conveys its feelings to others by altering the fluid's scent.", - "img": "https://www.serebii.net/pokemongo/pokemon/165.png", - "size": { - "height": "0.99 m", - "weight": "10.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "flying" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "72", - "base-defense": "118", - "base-stamina": "120", - "max-cp": "728", - "max-hp": "106" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "bug" - ], - "weaknesses": [ - "fire", - "electric", - "ice", - "flying" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "silver wind", - "type": "bug", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.7" - }, - { - "name": "swift", - "type": "normal", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.8" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "ledyba candy", - "next-evolution": [{ - "num": "166", - "name": "ledian", - "candy-cost": "25" - }] - } - }, - { - "num": "166", - "name": "ledian", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "It is said that in lands with clean air, where the stars fill the sky, there live Ledian in countless numbers. There is a good reason for this-the Pokémon uses the light of the stars as its energy.", - "img": "https://www.serebii.net/pokemongo/pokemon/166.png", - "size": { - "height": "1.40 m", - "weight": "35.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "107", - "base-defense": "179", - "base-stamina": "146", - "max-cp": "1346", - "max-hp": "127" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "bug" - ], - "weaknesses": [ - "fire", - "electric", - "ice", - "flying" - ], - "quick-move": [ - { - "name": "struggle bug", - "type": "bug", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "bug buzz", - "type": "bug", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.7" - }, - { - "name": "silver wind", - "type": "bug", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.7" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "ledyba candy", - "prev-evolution": [{ - "num": "165", - "name": "ledyba", - "candy-cost": "25" - }] - } - }, - { - "num": "167", - "name": "spinarak", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "The web spun by Spinarak can be considered its second nervous system. It is said that this Pokémon can determine what kind of prey is touching its web just by the tiny vibrations it feels through the web's strands.", - "img": "https://www.serebii.net/pokemongo/pokemon/167.png", - "size": { - "height": "0.51 m", - "weight": "8.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "poison" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "105", - "base-defense": "73", - "base-stamina": "120", - "max-cp": "816", - "max-hp": "106" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "fire", - "flying", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "night slash", - "type": "dark", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.2" - }, - { - "name": "signal beam", - "type": "bug", - "base-damage": "75", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "cross poison", - "type": "poison", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "spinarak candy", - "next-evolution": [{ - "num": "168", - "name": "ariados", - "candy-cost": "50" - }] - } - }, - { - "num": "168", - "name": "ariados", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Ariados's feet are tipped with tiny hooked claws that enable it to scuttle on ceilings and vertical walls. This Pokémon constricts the foe with thin and strong silk webbing.", - "img": "https://www.serebii.net/pokemongo/pokemon/168.png", - "size": { - "height": "1.09 m", - "weight": "33.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "161", - "base-defense": "124", - "base-stamina": "172", - "max-cp": "1772", - "max-hp": "147" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "fire", - "flying", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - }, - { - "name": "infestation", - "type": "bug", - "base-damage": "10", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "shadow sneak", - "type": "ghost", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.9" - }, - { - "name": "megahorn", - "type": "bug", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2.2" - }, - { - "name": "cross poison", - "type": "poison", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "spinarak candy", - "prev-evolution": [{ - "num": "167", - "name": "spinarak", - "candy-cost": "50" - }] - } - }, - { - "num": "169", - "name": "crobat", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "If this Pokémon is flying by fluttering only a pair of wings on either the forelegs or hind legs, it's proof that Crobat has been flying a long distance. It switches the wings it uses if it is tired.", - "img": "https://www.serebii.net/pokemongo/pokemon/169.png", - "size": { - "height": "1.80 m", - "weight": "75.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison", - "flying" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": null, - "stats": { - "base-attack": "194", - "base-defense": "178", - "base-stamina": "198", - "max-cp": "2646", - "max-hp": "168" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "electric", - "ice", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "air slash", - "type": "flying", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.2" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "air cutter", - "type": "flying", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "zubat candy", - "prev-evolution": [{ - "num": "042", - "name": "golbat", - "candy-cost": "100", - "prev-evolution": [{ - "num": "041", - "name": "zubat", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "170", - "name": "chinchou", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Chinchou lets loose positive and negative electrical charges from its two antennas to make its prey faint. This Pokémon flashes its electric lights to exchange signals with others.", - "img": "https://www.serebii.net/pokemongo/pokemon/170.png", - "size": { - "height": "0.51 m", - "weight": "12.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "electric" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": null, - "stats": { - "base-attack": "106", - "base-defense": "97", - "base-stamina": "181", - "max-cp": "1119", - "max-hp": "154" - }, - "resistant": [ - "fire", - "water", - "ice", - "flying", - "steel" - ], - "weaknesses": [ - "grass", - "ground" - ], - "quick-move": [ - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "spark", - "type": "electric", - "base-damage": "6", - "energy": "9", - "move-duration-seg": "0.7" - } - ], - "special-attack": [ - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "chinchou candy", - "next-evolution": [{ - "num": "171", - "name": "lanturn", - "candy-cost": "50" - }] - } - }, - { - "num": "171", - "name": "lanturn", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Lanturn is nicknamed \"the deep-sea star for its illuminated antenna. This Pokémon produces light by causing a chemical reaction between bacteria and its bodily fluids inside the antenna.", - "img": "https://www.serebii.net/pokemongo/pokemon/171.png", - "size": { - "height": "1.19 m", - "weight": "22.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "electric" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "146", - "base-defense": "137", - "base-stamina": "268", - "max-cp": "2085", - "max-hp": "223" - }, - "resistant": [ - "fire", - "water", - "ice", - "flying", - "steel" - ], - "weaknesses": [ - "grass", - "ground" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "chinchou candy", - "prev-evolution": [{ - "num": "170", - "name": "chinchou", - "candy-cost": "50" - }] - } - }, - { - "num": "172", - "name": "pichu", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Pichu charges itself with electricity more easily on days with thunderclouds or when the air is very dry. You can hear the crackling of static electricity coming off this Pokémon.", - "img": "https://www.serebii.net/pokemongo/pokemon/172.png", - "size": { - "height": "0.30 m", - "weight": "2.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "not in capture", - "base-capture-rate": "not in capture" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "77", - "base-defense": "53", - "base-stamina": "85", - "max-cp": "473", - "max-hp": "79" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "disarming voice", - "type": "fairy", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.9" - }, - { - "name": "thunder punch", - "type": "electric", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.8" - } - ], - "egg": "7 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "pikachu candy", - "next-evolution": [{ - "num": "025", - "name": "pikachu", - "candy-cost": "25", - "next-evolution": [{ - "num": "026", - "name": "raichu", - "candy-cost": "50" - }] - }] - } - }, - { - "num": "173", - "name": "cleffa", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "On nights with many shooting stars, Cleffa can be seen dancing in a ring. They dance through the night and stop only at the break of day, when these Pokémon quench their thirst with the morning dew.", - "img": "https://www.serebii.net/pokemongo/pokemon/173.png", - "size": { - "height": "0.30 m", - "weight": "3.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fairy" - ], - "encounter": { - "base-flee-rate": "not in capture", - "base-capture-rate": "not in capture" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "75", - "base-defense": "79", - "base-stamina": "137", - "max-cp": "671", - "max-hp": "120" - }, - "resistant": [ - "fighting", - "bug", - "dragon", - "dark" - ], - "weaknesses": [ - "poison", - "steel" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "grass knot", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - }, - { - "name": "signal beam", - "type": "bug", - "base-damage": "75", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "7 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "clefairy candy", - "next-evolution": [{ - "num": "035", - "name": "clefairy", - "candy-cost": "25", - "next-evolution": [{ - "num": "036", - "name": "clefable", - "candy-cost": "50" - }] - }] - } - }, - { - "num": "174", - "name": "igglybuff", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Igglybuff's vocal cords are not sufficiently developed. It would hurt its throat if it were to sing too much. This Pokémon gargles with freshwater from a clean stream.", - "img": "https://www.serebii.net/pokemongo/pokemon/174.png", - "size": { - "height": "0.30 m", - "weight": "1.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "fairy" - ], - "encounter": { - "base-flee-rate": "not in capture", - "base-capture-rate": "not in capture" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "69", - "base-defense": "32", - "base-stamina": "207", - "max-cp": "535", - "max-hp": "175" - }, - "resistant": [ - "bug", - "ghost", - "dragon", - "dark" - ], - "weaknesses": [ - "poison", - "steel" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "wild charge", - "type": "electric", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "7 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "jigglypuff candy", - "next-evolution": [{ - "num": "039", - "name": "jigglypuff", - "candy-cost": "25", - "next-evolution": [{ - "num": "040", - "name": "wigglytuff", - "candy-cost": "50" - }] - }] - } - }, - { - "num": "175", - "name": "togepi", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "As its energy, Togepi uses the positive emotions of compassion and pleasure exuded by people and Pokémon. This Pokémon stores up feelings of happiness inside its shell, then shares them with others.", - "img": "https://www.serebii.net/pokemongo/pokemon/175.png", - "size": { - "height": "0.30 m", - "weight": "1.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fairy" - ], - "encounter": { - "base-flee-rate": "not in capture", - "base-capture-rate": "not in capture" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "67", - "base-defense": "116", - "base-stamina": "111", - "max-cp": "657", - "max-hp": "99" - }, - "resistant": [ - "fighting", - "bug", - "dragon", - "dark" - ], - "weaknesses": [ - "poison", - "steel" - ], - "quick-move": [ - { - "name": "hidden power", - "type": "normal", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }, - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - }, - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - } - ], - "egg": "7 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "togepi candy", - "next-evolution": [{ - "num": "176", - "name": "togetic", - "candy-cost": "50", - "next-evolution": [{ - "num": "468", - "name": "togekiss", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - }] - } - }, - { - "num": "176", - "name": "togetic", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Togetic is said to be a Pokémon that brings good fortune. When the Pokémon spots someone who is pure of heart, it is said to appear and share its happiness with that person.", - "img": "https://www.serebii.net/pokemongo/pokemon/176.png", - "size": { - "height": "0.61 m", - "weight": "3.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fairy", - "flying" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "139", - "base-defense": "181", - "base-stamina": "146", - "max-cp": "1708", - "max-hp": "127" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "bug", - "dragon" - ], - "weaknesses": [ - "electric", - "ice", - "poison", - "rock" - ], - "quick-move": [ - { - "name": "extrasensory", - "type": "psychic", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - }, - { - "name": "hidden power", - "type": "normal", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - } - ], - "special-attack": [ - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "togepi candy", - "next-evolution": [{ - "num": "468", - "name": "togekiss", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }], - "prev-evolution": [{ - "num": "175", - "name": "togepi", - "candy-cost": "25" - }] - } - }, - { - "num": "177", - "name": "natu", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Natu cannot fly because its wings are not yet fully grown. If your eyes meet with this Pokémon's eyes, it will stare back intently at you. But if you move even slightly, it will hop away to safety.", - "img": "https://www.serebii.net/pokemongo/pokemon/177.png", - "size": { - "height": "0.21 m", - "weight": "2.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic", - "flying" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.4" - }, - "spawn-chance": null, - "stats": { - "base-attack": "134", - "base-defense": "89", - "base-stamina": "120", - "max-cp": "1102", - "max-hp": "106" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "psychic" - ], - "weaknesses": [ - "electric", - "ice", - "rock", - "ghost" - ], - "quick-move": [ - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "night shade", - "type": "ghost", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - }, - { - "name": "drill peck", - "type": "flying", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "natu candy", - "next-evolution": [{ - "num": "178", - "name": "xatu", - "candy-cost": "50" - }] - } - }, - { - "num": "178", - "name": "xatu", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Xatu stands rooted and still in one spot all day long. People believe that this Pokémon does so out of fear of the terrible things it has foreseen in the future.", - "img": "https://www.serebii.net/pokemongo/pokemon/178.png", - "size": { - "height": "1.50 m", - "weight": "15.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "192", - "base-defense": "146", - "base-stamina": "163", - "max-cp": "2188", - "max-hp": "140" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "psychic" - ], - "weaknesses": [ - "electric", - "ice", - "rock", - "ghost" - ], - "quick-move": [ - { - "name": "air slash", - "type": "flying", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.2" - }, - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "ominous wind", - "type": "ghost", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "futuresight", - "type": "psychic", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "2.7" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "natu candy", - "prev-evolution": [{ - "num": "177", - "name": "natu", - "candy-cost": "50" - }] - } - }, - { - "num": "179", - "name": "mareep", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Mareep's fluffy coat of wool rubs together and builds a static charge. The more static electricity is charged, the more brightly the lightbulb at the tip of its tail glows.", - "img": "https://www.serebii.net/pokemongo/pokemon/179.png", - "size": { - "height": "0.61 m", - "weight": "7.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "114", - "base-defense": "79", - "base-stamina": "146", - "max-cp": "991", - "max-hp": "127" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "mareep candy", - "next-evolution": [{ - "num": "180", - "name": "flaaffy", - "candy-cost": "25", - "next-evolution": [{ - "num": "181", - "name": "ampharos", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "180", - "name": "flaaffy", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Flaaffy's wool quality changes so that it can generate a high amount of static electricity with a small amount of wool. The bare and slick parts of its hide are shielded against electricity.", - "img": "https://www.serebii.net/pokemongo/pokemon/180.png", - "size": { - "height": "0.79 m", - "weight": "13.3 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": null, - "stats": { - "base-attack": "145", - "base-defense": "109", - "base-stamina": "172", - "max-cp": "1521", - "max-hp": "147" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "power gem", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "mareep candy", - "next-evolution": [{ - "num": "181", - "name": "ampharos", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "179", - "name": "mareep", - "candy-cost": "25" - }] - } - }, - { - "num": "181", - "name": "ampharos", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Ampharos gives off so much light that it can be seen even from space. People in the old days used the light of this Pokémon to send signals back and forth with others far away.", - "img": "https://www.serebii.net/pokemongo/pokemon/181.png", - "size": { - "height": "1.40 m", - "weight": "61.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "211", - "base-defense": "169", - "base-stamina": "207", - "max-cp": "2852", - "max-hp": "175" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - }, - { - "name": "volt switch", - "type": "electric", - "base-damage": "20", - "energy": "25", - "move-duration-seg": "2.3" - } - ], - "special-attack": [ - { - "name": "zap cannon", - "type": "electric", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.7" - }, - { - "name": "focus blast", - "type": "fight", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.5" - }, - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "mareep candy", - "prev-evolution": [{ - "num": "180", - "name": "flaaffy", - "candy-cost": "100", - "prev-evolution": [{ - "num": "179", - "name": "mareep", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "182", - "name": "bellossom", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "When Bellossom gets exposed to plenty of sunlight, the leaves ringing its body begin to spin around. This Pokémon's dancing is renowned in the southern lands.", - "img": "https://www.serebii.net/pokemongo/pokemon/182.png", - "size": { - "height": "0.41 m", - "weight": "5.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "169", - "base-defense": "186", - "base-stamina": "181", - "max-cp": "2281", - "max-hp": "154" - }, - "resistant": [ - "water", - "electric", - "grass", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "leaf blade", - "type": "grass", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "petal blizzard", - "type": "grass", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "2.6" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "oddish candy", - "prev-evolution": [{ - "num": "044", - "name": "gloom", - "candy-cost": "100", - "evolution-item": { - "name": "sun stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sun-stone.png" - }, - "prev-evolution": [{ - "num": "043", - "name": "oddish", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "183", - "name": "marill", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Marill's oil-filled tail acts much like a life preserver. If you see just its tail bobbing on the water's surface, it's a sure indication that this Pokémon is diving beneath the water to feed on aquatic plants.", - "img": "https://www.serebii.net/pokemongo/pokemon/183.png", - "size": { - "height": "0.41 m", - "weight": "8.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "fairy" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "37", - "base-defense": "93", - "base-stamina": "172", - "max-cp": "461", - "max-hp": "147" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "bug" - ], - "weaknesses": [ - "electric", - "grass", - "poison" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "marill candy", - "next-evolution": [{ - "num": "184", - "name": "azumarill", - "candy-cost": "25" - }], - "prev-evolution": [{ - "num": "298", - "name": "azurill", - "candy-cost": "25" - }] - } - }, - { - "num": "184", - "name": "azumarill", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Azumarill's long ears are indispensable sensors. By focusing its hearing, this Pokémon can identify what kinds of prey are around, even in rough and fast-running rivers.", - "img": "https://www.serebii.net/pokemongo/pokemon/184.png", - "size": { - "height": "0.79 m", - "weight": "28.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "fairy" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "112", - "base-defense": "152", - "base-stamina": "225", - "max-cp": "1588", - "max-hp": "189" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "bug" - ], - "weaknesses": [ - "electric", - "grass", - "poison" - ], - "quick-move": [ - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - }, - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "play rough", - "type": "fairy", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "marill candy", - "prev-evolution": [{ - "num": "183", - "name": "marill", - "candy-cost": "25", - "prev-evolution": [{ - "num": "298", - "name": "azurill", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "185", - "name": "sudowoodo", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Sudowoodo camouflages itself as a tree to avoid being attacked by enemies. However, because its hands remain green throughout the year, the Pokémon is easily identified as a fake during the winter.", - "img": "https://www.serebii.net/pokemongo/pokemon/185.png", - "size": { - "height": "1.19 m", - "weight": "38.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "167", - "base-defense": "176", - "base-stamina": "172", - "max-cp": "2148", - "max-hp": "147" - }, - "resistant": [ - "normal", - "fire", - "poison", - "flying" - ], - "weaknesses": [ - "water", - "grass", - "fighting", - "ground" - ], - "quick-move": [ - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - }, - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "sudowoodo candy", - "prev-evolution": [{ - "num": "438", - "name": "bonsly", - "candy-cost": "50" - }] - } - }, - { - "num": "186", - "name": "politoed", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "The curled hair on Politoed's head is proof of its status as a king. It is said that the longer and more curled the hair, the more respect this Pokémon earns from its peers.", - "img": "https://www.serebii.net/pokemongo/pokemon/186.png", - "size": { - "height": "10.90 m", - "weight": "33.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": null, - "stats": { - "base-attack": "174", - "base-defense": "179", - "base-stamina": "207", - "max-cp": "2449", - "max-hp": "175" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - }, - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "poliwag candy", - "prev-evolution": [{ - "num": "061", - "name": "poliwhirl", - "candy-cost": "100", - "evolution-item": { - "name": "kings rock", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/kings-rock.png" - }, - "prev-evolution": [{ - "num": "060", - "name": "poliwag", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "187", - "name": "hoppip", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "This Pokémon drifts and floats with the wind. If it senses the approach of strong winds, Hoppip links its leaves with other Hoppip to prepare against being blown away.", - "img": "https://www.serebii.net/pokemongo/pokemon/187.png", - "size": { - "height": "0.41 m", - "weight": "0.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "flying" - ], - "encounter": { - "base-flee-rate": "0.12", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "67", - "base-defense": "94", - "base-stamina": "111", - "max-cp": "600", - "max-hp": "99" - }, - "resistant": [ - "water", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bullet seed", - "type": "grass", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "grass knot", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "seed bomb", - "type": "grass", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.1" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "hoppip candy", - "next-evolution": [{ - "num": "188", - "name": "skiploom", - "candy-cost": "25", - "next-evolution": [{ - "num": "189", - "name": "jumpluff", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "188", - "name": "skiploom", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Skiploom's flower blossoms when the temperature rises above 64 degrees Fahrenheit. How much the flower opens depends on the temperature. For that reason, this Pokémon is sometimes used as a thermometer.", - "img": "https://www.serebii.net/pokemongo/pokemon/188.png", - "size": { - "height": "0.61 m", - "weight": "1.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": null, - "stats": { - "base-attack": "91", - "base-defense": "120", - "base-stamina": "146", - "max-cp": "976", - "max-hp": "127" - }, - "resistant": [ - "water", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bullet seed", - "type": "grass", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "grass knot", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "energy ball", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "hoppip candy", - "next-evolution": [{ - "num": "189", - "name": "jumpluff", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "187", - "name": "hoppip", - "candy-cost": "25" - }] - } - }, - { - "num": "189", - "name": "jumpluff", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Jumpluff rides warm southern winds to cross the sea and fly to foreign lands. The Pokémon descends to the ground when it encounters cold air while it is floating.", - "img": "https://www.serebii.net/pokemongo/pokemon/189.png", - "size": { - "height": "0.79 m", - "weight": "3.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "flying" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "118", - "base-defense": "183", - "base-stamina": "181", - "max-cp": "1636", - "max-hp": "154" - }, - "resistant": [ - "water", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "infestation", - "type": "bug", - "base-damage": "10", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "bullet seed", - "type": "grass", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "energy ball", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.9" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "hoppip candy", - "prev-evolution": [{ - "num": "188", - "name": "skiploom", - "candy-cost": "100", - "prev-evolution": [{ - "num": "187", - "name": "hoppip", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "190", - "name": "aipom", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Aipom's tail ends in a hand-like appendage that can be cleverly manipulated. However, because the Pokémon uses its tail so much, its real hands have become rather clumsy.", - "img": "https://www.serebii.net/pokemongo/pokemon/190.png", - "size": { - "height": "0.79 m", - "weight": "11.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "136", - "base-defense": "112", - "base-stamina": "146", - "max-cp": "1348", - "max-hp": "127" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "astonish", - "type": "ghost", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "low sweep", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "swift", - "type": "normal", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.8" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "aipom candy" - } - }, - { - "num": "191", - "name": "sunkern", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Sunkern tries to move as little as it possibly can. It does so because it tries to conserve all the nutrients it has stored in its body for its evolution. It will not eat a thing, subsisting only on morning dew.", - "img": "https://www.serebii.net/pokemongo/pokemon/191.png", - "size": { - "height": "0.30 m", - "weight": "1.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "55", - "base-defense": "55", - "base-stamina": "102", - "max-cp": "395", - "max-hp": "92" - }, - "resistant": [ - "water", - "electric", - "grass", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "cut", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "energy ball", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.9" - }, - { - "name": "grass knot", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "seed bomb", - "type": "grass", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.1" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "sunkern candy", - "next-evolution": [{ - "num": "192", - "name": "sunflora", - "candy-cost": "50", - "evolution-item": { - "name": "sun stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sun-stone.png" - } - }] - } - }, - { - "num": "192", - "name": "sunflora", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Sunflora converts solar energy into nutrition. It moves around actively in the daytime when it is warm. It stops moving as soon as the sun goes down for the night.", - "img": "https://www.serebii.net/pokemongo/pokemon/192.png", - "size": { - "height": "0.79 m", - "weight": "8.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.1" - }, - "spawn-chance": null, - "stats": { - "base-attack": "185", - "base-defense": "135", - "base-stamina": "181", - "max-cp": "2141", - "max-hp": "154" - }, - "resistant": [ - "water", - "electric", - "grass", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "bullet seed", - "type": "grass", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "petal blizzard", - "type": "grass", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "2.6" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "sunkern candy", - "prev-evolution": [{ - "num": "191", - "name": "sunkern", - "candy-cost": "50", - "evolution-item": { - "name": "sun stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sun-stone.png" - } - }] - } - }, - { - "num": "193", - "name": "yanma", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Yanma is capable of seeing 360 degrees without having to move its eyes. It is a great flier that is adept at making sudden stops and turning midair. This Pokémon uses its flying ability to quickly chase down targeted prey.", - "img": "https://www.serebii.net/pokemongo/pokemon/193.png", - "size": { - "height": "1.19 m", - "weight": "38.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "flying" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "154", - "base-defense": "94", - "base-stamina": "163", - "max-cp": "1470", - "max-hp": "140" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "bug" - ], - "weaknesses": [ - "fire", - "electric", - "ice", - "flying" - ], - "quick-move": [ - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "wing attack", - "type": "flying", - "base-damage": "8", - "energy": "9", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "silver wind", - "type": "bug", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.7" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "yanma candy" - } - }, - { - "num": "194", - "name": "wooper", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Wooper usually lives in water. However, it occasionally comes out onto land in search of food. On land, it coats its body with a gooey, toxic film.", - "img": "https://www.serebii.net/pokemongo/pokemon/194.png", - "size": { - "height": "0.41 m", - "weight": "8.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "ground" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": null, - "stats": { - "base-attack": "75", - "base-defense": "66", - "base-stamina": "146", - "max-cp": "641", - "max-hp": "127" - }, - "resistant": [ - "fire", - "poison", - "rock", - "steel" - ], - "weaknesses": [ - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "mud bomb", - "type": "ground", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "wooper candy", - "next-evolution": [{ - "num": "195", - "name": "quagsire", - "candy-cost": "50" - }] - } - }, - { - "num": "195", - "name": "quagsire", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Quagsire hunts for food by leaving its mouth wide open in water and waiting for its prey to blunder in unaware. Because the Pokémon does not move, it does not get very hungry.", - "img": "https://www.serebii.net/pokemongo/pokemon/195.png", - "size": { - "height": "1.40 m", - "weight": "75.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "ground" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "152", - "base-defense": "143", - "base-stamina": "216", - "max-cp": "1992", - "max-hp": "182" - }, - "resistant": [ - "fire", - "poison", - "rock", - "steel" - ], - "weaknesses": [ - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "wooper candy", - "prev-evolution": [{ - "num": "194", - "name": "wooper", - "candy-cost": "50" - }] - } - }, - { - "num": "196", - "name": "espeon", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Espeon is extremely loyal to any Trainer it considers to be worthy. It is said that this Pokémon developed its precognitive powers to protect its Trainer from harm.", - "img": "https://www.serebii.net/pokemongo/pokemon/196.png", - "size": { - "height": "0.89 m", - "weight": "26.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "261", - "base-defense": "175", - "base-stamina": "163", - "max-cp": "3170", - "max-hp": "140" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "futuresight", - "type": "psychic", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "eevee candy", - "prev-evolution": [{ - "num": "133", - "name": "eevee", - "candy-cost": "25" - }] - } - }, - { - "num": "197", - "name": "umbreon", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Umbreon evolved as a result of exposure to the moon's waves. It hides silently in darkness and waits for its foes to make a move. The rings on its body glow when it leaps to attack.", - "img": "https://www.serebii.net/pokemongo/pokemon/197.png", - "size": { - "height": "0.99 m", - "weight": "27.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "dark" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "126", - "base-defense": "240", - "base-stamina": "216", - "max-cp": "2137", - "max-hp": "182" - }, - "resistant": [ - "psychic", - "ghost", - "dark" - ], - "weaknesses": [ - "fighting", - "bug", - "fairy" - ], - "quick-move": [ - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - }, - { - "name": "snarl", - "type": "dark", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "foul play", - "type": "dark", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "eevee candy", - "prev-evolution": [{ - "num": "133", - "name": "eevee", - "candy-cost": "25" - }] - } - }, - { - "num": "198", - "name": "murkrow", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Murkrow was feared and loathed as the alleged bearer of ill fortune. This Pokémon shows strong interest in anything that sparkles or glitters. It will even try to steal rings from women.", - "img": "https://www.serebii.net/pokemongo/pokemon/198.png", - "size": { - "height": "0.51 m", - "weight": "2.1 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "dark", - "flying" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "175", - "base-defense": "87", - "base-stamina": "155", - "max-cp": "1562", - "max-hp": "134" - }, - "resistant": [ - "grass", - "ground", - "psychic", - "ghost", - "dark" - ], - "weaknesses": [ - "electric", - "ice", - "rock", - "fairy" - ], - "quick-move": [ - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "drill peck", - "type": "flying", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "foul play", - "type": "dark", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - }, - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "murkrow candy", - "next-evolution": [{ - "num": "430", - "name": "honchkrow", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - } - }, - { - "num": "199", - "name": "slowking", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Slowking undertakes research every day in an effort to solve the mysteries of the world. However, this Pokémon apparently forgets everything it has learned if the Shellder on its head comes off.", - "img": "https://www.serebii.net/pokemongo/pokemon/199.png", - "size": { - "height": "2.01 m", - "weight": "79.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "psychic" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": null, - "stats": { - "base-attack": "177", - "base-defense": "180", - "base-stamina": "216", - "max-cp": "2545", - "max-hp": "182" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "psychic" - ], - "weaknesses": [ - "electric", - "grass", - "bug", - "ghost" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "slowpoke candy", - "prev-evolution": [{ - "num": "079", - "name": "slowpoke", - "candy-cost": "50", - "evolution-item": { - "name": "kings rock", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/kings-rock.png" - } - }] - } - }, - { - "num": "200", - "name": "misdreavus", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Misdreavus frightens people with a creepy, sobbing cry. The Pokémon apparently uses its red spheres to absorb the fearful feelings of foes and turn them into nutrition.", - "img": "https://www.serebii.net/pokemongo/pokemon/200.png", - "size": { - "height": "0.71 m", - "weight": "1.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ghost" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "167", - "base-defense": "154", - "base-stamina": "155", - "max-cp": "1926", - "max-hp": "134" - }, - "resistant": [ - "normal", - "fighting", - "poison", - "bug" - ], - "weaknesses": [ - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "astonish", - "type": "ghost", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "hex", - "type": "ghost", - "base-damage": "10", - "energy": "15", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "shadow sneak", - "type": "ghost", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.9" - }, - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "ominous wind", - "type": "ghost", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.3" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "misdreavus candy", - "next-evolution": [{ - "num": "429", - "name": "mismagius", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - } - }, - { - "num": "201", - "name": "unown", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "This Pokémon is shaped like ancient writing. It is a mystery as to which came first, the ancient writings or the various Unown. Research into this topic is ongoing but nothing is known.", - "img": "https://www.serebii.net/pokemongo/pokemon/201.png", - "size": { - "height": "0.51 m", - "weight": "5.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "136", - "base-defense": "91", - "base-stamina": "134", - "max-cp": "1185", - "max-hp": "117" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "hidden power", - "type": "normal", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }], - "special-attack": [ - { - "name": "struggle", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "2.2" - }], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "unown candy" - } - }, - { - "num": "202", - "name": "wobbuffet", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "If two or more Wobbuffet meet, they will turn competitive and try to outdo each other's endurance. However, they may try to see which one can endure the longest without food. Trainers need to beware of this habit.", - "img": "https://www.serebii.net/pokemongo/pokemon/202.png", - "size": { - "height": "1.30 m", - "weight": "28.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": null, - "stats": { - "base-attack": "60", - "base-defense": "106", - "base-stamina": "382", - "max-cp": "1026", - "max-hp": "313" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "splash", - "type": "water", - "base-damage": "0", - "energy": "0", - "move-duration-seg": "1.73" - } - ], - "special-attack": [ - { - "name": "mirror coat", - "type": "psychic", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.6" - }], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "wobbuffet candy", - "prev-evolution": [{ - "num": "360", - "name": "wynaut", - "candy-cost": "25" - }] - } - }, - { - "num": "203", - "name": "girafarig", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Girafarig's rear head also has a brain, but it is small. The rear head attacks in response to smells and sounds. Approaching this Pokémon from behind can cause the rear head to suddenly lash out and bite.", - "img": "https://www.serebii.net/pokemongo/pokemon/203.png", - "size": { - "height": "1.50 m", - "weight": "41.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "psychic" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "182", - "base-defense": "133", - "base-stamina": "172", - "max-cp": "2046", - "max-hp": "147" - }, - "resistant": [ - "psychic" - ], - "weaknesses": [ - "bug", - "dark" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "mirror coat", - "type": "psychic", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "girafarig candy" - } - }, - { - "num": "204", - "name": "pineco", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Pineco hangs from a tree branch and patiently waits for prey to come along. If the Pokémon is disturbed while eating by someone shaking its tree, it drops down to the ground and explodes with no warning.", - "img": "https://www.serebii.net/pokemongo/pokemon/204.png", - "size": { - "height": "0.61 m", - "weight": "7.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug" - ], - "encounter": { - "base-flee-rate": "0.12", - "base-capture-rate": "0.4" - }, - "spawn-chance": null, - "stats": { - "base-attack": "108", - "base-defense": "122", - "base-stamina": "137", - "max-cp": "1108", - "max-hp": "120" - }, - "resistant": [ - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "flying", - "rock" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "gyro ball", - "type": "steel", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "rock tomb", - "type": "rock", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "sand tomb", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "4" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "pineco candy", - "next-evolution": [{ - "num": "205", - "name": "forretress", - "candy-cost": "50" - }] - } - }, - { - "num": "205", - "name": "forretress", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Forretress conceals itself inside its hardened steel shell. The shell is opened when the Pokémon is catching prey, but it does so at such a quick pace that the shell's inside cannot be seen.", - "img": "https://www.serebii.net/pokemongo/pokemon/205.png", - "size": { - "height": "1.19 m", - "weight": "125.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "steel" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "161", - "base-defense": "205", - "base-stamina": "181", - "max-cp": "2282", - "max-hp": "154" - }, - "resistant": [ - "normal", - "grass", - "ice", - "poison", - "psychic" - ], - "weaknesses": [ - "fire" - ], - "quick-move": [ - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "struggle bug", - "type": "bug", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - } - ], - "special-attack": [ - { - "name": "heavy slam", - "type": "steel", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.1" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "rock tomb", - "type": "rock", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "pineco candy", - "prev-evolution": [{ - "num": "204", - "name": "pineco", - "candy-cost": "50" - }] - } - }, - { - "num": "206", - "name": "dunsparce", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Dunsparce has a drill for its tail. It uses this tail to burrow into the ground backward. This Pokémon is known to make its nest in complex shapes deep under the ground.", - "img": "https://www.serebii.net/pokemongo/pokemon/206.png", - "size": { - "height": "1.50 m", - "weight": "14.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "131", - "base-defense": "128", - "base-stamina": "225", - "max-cp": "1689", - "max-hp": "189" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "astonish", - "type": "ghost", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "drill run", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "dunsparce candy" - } - }, - { - "num": "207", - "name": "gligar", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Gligar glides through the air without a sound as if it were sliding. This Pokémon hangs on to the face of its foe using its clawed hind legs and the large pincers on its forelegs, then injects the prey with its poison barb.", - "img": "https://www.serebii.net/pokemongo/pokemon/207.png", - "size": { - "height": "1.09 m", - "weight": "64.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "143", - "base-defense": "184", - "base-stamina": "163", - "max-cp": "1857", - "max-hp": "140" - }, - "resistant": [ - "fighting", - "poison", - "ground", - "bug" - ], - "weaknesses": [ - "water", - "ice" - ], - "quick-move": [ - { - "name": "fury cutter", - "type": "bug", - "base-damage": "3", - "energy": "6", - "move-duration-seg": "0.4" - }, - { - "name": "wing attack", - "type": "flying", - "base-damage": "8", - "energy": "9", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "night slash", - "type": "dark", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.2" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "gligar candy", - "next-evolution": [{ - "num": "472", - "name": "gliscor", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - } - }, - { - "num": "208", - "name": "steelix", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Steelix lives even further underground than Onix. This Pokémon is known to dig toward the earth's core. There are records of this Pokémon reaching a depth of over six-tenths of a mile underground.", - "img": "https://www.serebii.net/pokemongo/pokemon/208.png", - "size": { - "height": "9.19 m", - "weight": "400.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "steel", - "ground" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": null, - "stats": { - "base-attack": "148", - "base-defense": "272", - "base-stamina": "181", - "max-cp": "2414", - "max-hp": "154" - }, - "resistant": [ - "normal", - "electric", - "poison", - "flying", - "psychic" - ], - "weaknesses": [ - "fire", - "water", - "fighting", - "ground" - ], - "quick-move": [ - { - "name": "iron tail", - "type": "steel", - "base-damage": "15", - "energy": "7", - "move-duration-seg": "1.1" - }, - { - "name": "dragon tail", - "type": "dragon", - "base-damage": "15", - "energy": "9", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "heavy slam", - "type": "steel", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.1" - }, - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "onix candy", - "prev-evolution": [{ - "num": "095", - "name": "onix", - "candy-cost": "50", - "evolution-item": { - "name": "metal coat", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/metal-coat.png" - } - }] - } - }, - { - "num": "209", - "name": "snubbull", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "By baring its fangs and making a scary face, Snubbull sends smaller Pokémon scurrying away in terror. However, this Pokémon seems a little sad at making its foes flee.", - "img": "https://www.serebii.net/pokemongo/pokemon/209.png", - "size": { - "height": "0.61 m", - "weight": "7.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fairy" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": null, - "stats": { - "base-attack": "137", - "base-defense": "85", - "base-stamina": "155", - "max-cp": "1237", - "max-hp": "134" - }, - "resistant": [ - "fighting", - "bug", - "dragon", - "dark" - ], - "weaknesses": [ - "poison", - "steel" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "snubbull candy", - "next-evolution": [{ - "num": "210", - "name": "granbull", - "candy-cost": "50" - }] - } - }, - { - "num": "210", - "name": "granbull", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Granbull has a particularly well-developed lower jaw. The enormous fangs are heavy, causing the Pokémon to tip its head back for balance. Unless it is startled, it will not try to bite indiscriminately.", - "img": "https://www.serebii.net/pokemongo/pokemon/210.png", - "size": { - "height": "1.40 m", - "weight": "48.7 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fairy" - ], - "encounter": { - "base-flee-rate": "0.08", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "212", - "base-defense": "131", - "base-stamina": "207", - "max-cp": "2552", - "max-hp": "175" - }, - "resistant": [ - "fighting", - "bug", - "dragon", - "dark" - ], - "weaknesses": [ - "poison", - "steel" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "snarl", - "type": "dark", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "play rough", - "type": "fairy", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "snubbull candy", - "prev-evolution": [{ - "num": "209", - "name": "snubbull", - "candy-cost": "50" - }] - } - }, - { - "num": "211", - "name": "qwilfish", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Qwilfish sucks in water, inflating itself. This Pokémon uses the pressure of the water it swallowed to shoot toxic quills all at once from all over its body. It finds swimming somewhat challenging.", - "img": "https://www.serebii.net/pokemongo/pokemon/211.png", - "size": { - "height": "0.51 m", - "weight": "3.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "poison" - ], - "encounter": { - "base-flee-rate": "0.08", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "184", - "base-defense": "138", - "base-stamina": "163", - "max-cp": "2051", - "max-hp": "140" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "poison" - ], - "weaknesses": [ - "electric", - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - }, - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "sludge wave", - "type": "poison", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "qwilfish candy" - } - }, - { - "num": "212", - "name": "scizor", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Scizor has a body with the hardness of steel. It is not easily fazed by ordinary sorts of attacks. This Pokémon flaps its wings to regulate its body temperature.", - "img": "https://www.serebii.net/pokemongo/pokemon/212.png", - "size": { - "height": "2.01 m", - "weight": "125.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "steel" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "236", - "base-defense": "181", - "base-stamina": "172", - "max-cp": "3001", - "max-hp": "147" - }, - "resistant": [ - "normal", - "grass", - "ice", - "poison", - "psychic" - ], - "weaknesses": [ - "fire" - ], - "quick-move": [ - { - "name": "bullet punch", - "type": "steel", - "base-damage": "9", - "energy": "10", - "move-duration-seg": "0.9" - }, - { - "name": "fury cutter", - "type": "bug", - "base-damage": "3", - "energy": "6", - "move-duration-seg": "0.4" - } - ], - "special-attack": [ - { - "name": "x scissor", - "type": "water", - "base-damage": "50", - "energy": "-100", - "move-duration-seg": "4.7" - }, - { - "name": "iron head", - "type": "steel", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "1.9" - }, - { - "name": "night slash", - "type": "dark", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "scyther candy", - "prev-evolution": [{ - "num": "123", - "name": "scyther", - "candy-cost": "50", - "evolution-item": { - "name": "metal coat", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/metal-coat.png" - } - }] - } - }, - { - "num": "213", - "name": "shuckle", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Shuckle quietly hides itself under rocks, keeping its body concealed inside its hard shell while eating berries it has stored away. The berries mix with its body fluids to become a juice.", - "img": "https://www.serebii.net/pokemongo/pokemon/213.png", - "size": { - "height": "0.61 m", - "weight": "20.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "rock" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "17", - "base-defense": "396", - "base-stamina": "85", - "max-cp": "405", - "max-hp": "79" - }, - "resistant": [ - "normal", - "poison" - ], - "weaknesses": [ - "water", - "rock", - "steel" - ], - "quick-move": [ - { - "name": "struggle bug", - "type": "bug", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }, - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "rock blast", - "type": "rock", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "gyro ball", - "type": "steel", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.3" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "shuckle candy" - } - }, - { - "num": "214", - "name": "heracross", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Heracross charges in a straight line at its foe, slips beneath the foe's grasp, and then scoops up and hurls the opponent with its mighty horn. This Pokémon even has enough power to topple a massive tree.", - "img": "https://www.serebii.net/pokemongo/pokemon/214.png", - "size": { - "height": "1.50 m", - "weight": "54.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "fighting" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "234", - "base-defense": "179", - "base-stamina": "190", - "max-cp": "3101", - "max-hp": "162" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "bug", - "dark" - ], - "weaknesses": [ - "fire", - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "struggle bug", - "type": "bug", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - } - ], - "special-attack": [ - { - "name": "megahorn", - "type": "bug", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2.2" - }, - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "heracross candy" - } - }, - { - "num": "215", - "name": "sneasel", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Sneasel scales trees by punching its hooked claws into the bark. This Pokémon seeks out unguarded nests and steals eggs for food while the parents are away.", - "img": "https://www.serebii.net/pokemongo/pokemon/215.png", - "size": { - "height": "0.89 m", - "weight": "28.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "dark", - "ice" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "189", - "base-defense": "146", - "base-stamina": "146", - "max-cp": "2051", - "max-hp": "127" - }, - "resistant": [ - "ice", - "psychic", - "ghost", - "dark" - ], - "weaknesses": [ - "fire", - "fighting", - "bug", - "rock" - ], - "quick-move": [ - { - "name": "ice shard", - "type": "ice", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.2" - }, - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "avalanche", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "ice punch", - "type": "ice", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "foul play", - "type": "dark", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "sneasel candy", - "next-evolution": [{ - "num": "461", - "name": "weavile", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - } - }, - { - "num": "216", - "name": "teddiursa", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "This Pokémon likes to lick its palms that are sweetened by being soaked in honey. Teddiursa concocts its own honey by blending fruits and pollen collected by Beedrill.", - "img": "https://www.serebii.net/pokemongo/pokemon/216.png", - "size": { - "height": "0.61 m", - "weight": "8.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "142", - "base-defense": "93", - "base-stamina": "155", - "max-cp": "1328", - "max-hp": "134" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "lick", - "type": "ghost", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "cross chop", - "type": "fight", - "base-damage": "50", - "energy": "-50", - "move-duration-seg": "1.5" - }, - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "play rough", - "type": "fairy", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "teddiursa candy", - "next-evolution": [{ - "num": "217", - "name": "ursaring", - "candy-cost": "50" - }] - } - }, - { - "num": "217", - "name": "ursaring", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "In the forests inhabited by Ursaring, it is said that there are many streams and towering trees where they gather food. This Pokémon walks through its forest gathering food every day.", - "img": "https://www.serebii.net/pokemongo/pokemon/217.png", - "size": { - "height": "1.80 m", - "weight": "125.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "236", - "base-defense": "144", - "base-stamina": "207", - "max-cp": "2945", - "max-hp": "175" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "metal claw", - "type": "steel", - "base-damage": "8", - "energy": "7", - "move-duration-seg": "0.7" - }, - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "play rough", - "type": "fairy", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "teddiursa candy", - "prev-evolution": [{ - "num": "216", - "name": "teddiursa", - "candy-cost": "50" - }] - } - }, - { - "num": "218", - "name": "slugma", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Molten magma courses throughout Slugma's circulatory system. If this Pokémon is chilled, the magma cools and hardens. Its body turns brittle and chunks fall off, reducing its size.", - "img": "https://www.serebii.net/pokemongo/pokemon/218.png", - "size": { - "height": "0.71 m", - "weight": "35.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "118", - "base-defense": "71", - "base-stamina": "120", - "max-cp": "895", - "max-hp": "106" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "flame burst", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "flame charge", - "type": "fire", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.8" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "slugma candy", - "next-evolution": [{ - "num": "219", - "name": "magcargo", - "candy-cost": "50" - }] - } - }, - { - "num": "219", - "name": "magcargo", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Magcargo's shell is actually its skin that hardened as a result of cooling. Its shell is very brittle and fragile-just touching it causes it to crumble apart. This Pokémon returns to its original size by dipping itself in magma.", - "img": "https://www.serebii.net/pokemongo/pokemon/219.png", - "size": { - "height": "0.79 m", - "weight": "55.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire", - "rock" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "139", - "base-defense": "191", - "base-stamina": "137", - "max-cp": "1702", - "max-hp": "120" - }, - "resistant": [ - "normal", - "fire", - "ice", - "poison", - "flying" - ], - "weaknesses": [ - "water", - "fighting", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "heat wave", - "type": "fire", - "base-damage": "95", - "energy": "-100", - "move-duration-seg": "3" - }, - { - "name": "overheat", - "type": "fire", - "base-damage": "160", - "energy": "-100", - "move-duration-seg": "4" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "slugma candy", - "prev-evolution": [{ - "num": "218", - "name": "slugma", - "candy-cost": "50" - }] - } - }, - { - "num": "220", - "name": "swinub", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Swinub roots for food by rubbing its snout against the ground. Its favorite food is a mushroom that grows under the cover of dead grass. This Pokémon occasionally roots out hot springs.", - "img": "https://www.serebii.net/pokemongo/pokemon/220.png", - "size": { - "height": "0.41 m", - "weight": "6.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ice", - "ground" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "90", - "base-defense": "69", - "base-stamina": "137", - "max-cp": "741", - "max-hp": "120" - }, - "resistant": [ - "electric", - "poison" - ], - "weaknesses": [ - "fire", - "water", - "grass", - "fighting" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "powder snow", - "type": "ice", - "base-damage": "6", - "energy": "15", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "icy wind", - "type": "ice", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "3.3" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "swinub candy", - "next-evolution": [{ - "num": "221", - "name": "piloswine", - "candy-cost": "50" - }] - } - }, - { - "num": "221", - "name": "piloswine", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Piloswine is covered by a thick coat of long hair that enables it to endure the freezing cold. This Pokémon uses its tusks to dig up food that has been buried under ice.", - "img": "https://www.serebii.net/pokemongo/pokemon/221.png", - "size": { - "height": "1.09 m", - "weight": "55.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ice", - "ground" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "181", - "base-defense": "138", - "base-stamina": "225", - "max-cp": "2345", - "max-hp": "189" - }, - "resistant": [ - "electric", - "poison" - ], - "weaknesses": [ - "fire", - "water", - "grass", - "fighting" - ], - "quick-move": [ - { - "name": "ice shard", - "type": "ice", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.2" - }, - { - "name": "powder snow", - "type": "ice", - "base-damage": "6", - "energy": "15", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "avalanche", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "bulldoze", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "swinub candy", - "prev-evolution": [{ - "num": "220", - "name": "swinub", - "candy-cost": "50" - }] - } - }, - { - "num": "222", - "name": "corsola", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Corsola's branches glitter very beautifully in seven colors when they catch sunlight. If any branch breaks off, this Pokémon grows it back in just one night.", - "img": "https://www.serebii.net/pokemongo/pokemon/222.png", - "size": { - "height": "0.61 m", - "weight": "5.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "rock" - ], - "encounter": { - "base-flee-rate": "0.12", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "118", - "base-defense": "156", - "base-stamina": "146", - "max-cp": "1378", - "max-hp": "127" - }, - "resistant": [ - "normal", - "fire", - "ice", - "poison", - "flying" - ], - "weaknesses": [ - "electric", - "grass", - "fighting", - "ground" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "rock blast", - "type": "rock", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "power gem", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "corsola candy" - } - }, - { - "num": "223", - "name": "remoraid", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Remoraid sucks in water, then expels it at high velocity using its abdominal muscles to shoot down flying prey. When evolution draws near, this Pokémon travels downstream from rivers.", - "img": "https://www.serebii.net/pokemongo/pokemon/223.png", - "size": { - "height": "0.61 m", - "weight": "12.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "127", - "base-defense": "69", - "base-stamina": "111", - "max-cp": "912", - "max-hp": "99" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "aurora beam", - "type": "ice", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.55" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "rock blast", - "type": "rock", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "remoraid candy", - "next-evolution": [{ - "num": "224", - "name": "octillery", - "candy-cost": "50" - }] - } - }, - { - "num": "224", - "name": "octillery", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Octillery grabs onto its foe using its tentacles. This Pokémon tries to immobilize it before delivering the finishing blow. If the foe turns out to be too strong, Octillery spews ink to escape.", - "img": "https://www.serebii.net/pokemongo/pokemon/224.png", - "size": { - "height": "0.89 m", - "weight": "28.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "197", - "base-defense": "141", - "base-stamina": "181", - "max-cp": "2315", - "max-hp": "154" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "gunk shot", - "type": "poison", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "aurora beam", - "type": "ice", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.55" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "remoraid candy", - "prev-evolution": [{ - "num": "223", - "name": "remoraid", - "candy-cost": "50" - }] - } - }, - { - "num": "225", - "name": "delibird", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Delibird carries its food bundled up in its tail. There once was a famous explorer who managed to reach the peak of the world's highest mountain, thanks to one of these Pokémon sharing its food.", - "img": "https://www.serebii.net/pokemongo/pokemon/225.png", - "size": { - "height": "0.89 m", - "weight": "16.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ice", - "flying" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "128", - "base-defense": "90", - "base-stamina": "128", - "max-cp": "1094", - "max-hp": "113" - }, - "resistant": [ - "grass", - "ground", - "bug" - ], - "weaknesses": [ - "fire", - "electric", - "rock", - "steel" - ], - "quick-move": [ - { - "name": "ice shard", - "type": "ice", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.2" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "ice punch", - "type": "ice", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "icy wind", - "type": "ice", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "3.3" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "delibird candy" - } - }, - { - "num": "226", - "name": "mantine", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "On sunny days, schools of Mantine can be seen elegantly leaping over the sea's waves. This Pokémon is not bothered by the Remoraid that hitches rides.", - "img": "https://www.serebii.net/pokemongo/pokemon/226.png", - "size": { - "height": "2.11 m", - "weight": "220.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "148", - "base-defense": "226", - "base-stamina": "163", - "max-cp": "2108", - "max-hp": "140" - }, - "resistant": [ - "fire", - "water", - "fighting", - "ground", - "bug" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "wing attack", - "type": "flying", - "base-damage": "8", - "energy": "9", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "mantine candy", - "prev-evolution": [{ - "num": "458", - "name": "mantyke", - "candy-cost": "50" - }] - } - }, - { - "num": "227", - "name": "skarmory", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Skarmory is entirely encased in hard, protective armor. This Pokémon flies at close to 190 mph. It slashes foes with its wings that possess swordlike cutting edges.", - "img": "https://www.serebii.net/pokemongo/pokemon/227.png", - "size": { - "height": "1.70 m", - "weight": "50.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "steel", - "flying" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "148", - "base-defense": "226", - "base-stamina": "163", - "max-cp": "2108", - "max-hp": "140" - }, - "resistant": [ - "normal", - "grass", - "poison", - "flying", - "psychic" - ], - "weaknesses": [ - "fire", - "electric" - ], - "quick-move": [ - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - }, - { - "name": "air slash", - "type": "flying", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "brave bird", - "type": "flying", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2" - }, - { - "name": "sky attack", - "type": "flying", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - }, - { - "name": "flash cannon", - "type": "steel", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.7" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "skarmory candy" - } - }, - { - "num": "228", - "name": "houndour", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Houndour hunt as a coordinated pack. They communicate with each other using a variety of cries to corner their prey. This Pokémon's remarkable teamwork is unparalleled.", - "img": "https://www.serebii.net/pokemongo/pokemon/228.png", - "size": { - "height": "0.61 m", - "weight": "10.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "dark", - "fire" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": null, - "stats": { - "base-attack": "152", - "base-defense": "83", - "base-stamina": "128", - "max-cp": "1234", - "max-hp": "113" - }, - "resistant": [ - "fire", - "grass", - "ice", - "psychic", - "ghost" - ], - "weaknesses": [ - "water", - "fighting", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - }, - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - }, - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "houndour candy", - "next-evolution": [{ - "num": "229", - "name": "houndoom", - "candy-cost": "50" - }] - } - }, - { - "num": "229", - "name": "houndoom", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "In a Houndoom pack, the one with its horns raked sharply toward the back serves a leadership role. These Pokémon choose their leader by fighting among themselves.", - "img": "https://www.serebii.net/pokemongo/pokemon/229.png", - "size": { - "height": "1.40 m", - "weight": "35.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "dark", - "fire" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "224", - "base-defense": "144", - "base-stamina": "181", - "max-cp": "2635", - "max-hp": "154" - }, - "resistant": [ - "fire", - "grass", - "ice", - "psychic", - "ghost" - ], - "weaknesses": [ - "water", - "fighting", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "snarl", - "type": "dark", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - }, - { - "name": "fire fang", - "type": "fire", - "base-damage": "11", - "energy": "8", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "foul play", - "type": "dark", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "houndour candy", - "prev-evolution": [{ - "num": "228", - "name": "houndour", - "candy-cost": "50" - }] - } - }, - { - "num": "230", - "name": "kingdra", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Kingdra lives at extreme ocean depths that are otherwise uninhabited. It has long been believed that the yawning of this Pokémon creates spiraling ocean currents.", - "img": "https://www.serebii.net/pokemongo/pokemon/230.png", - "size": { - "height": "1.80 m", - "weight": "152.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "dragon" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": null, - "stats": { - "base-attack": "194", - "base-defense": "194", - "base-stamina": "181", - "max-cp": "2641", - "max-hp": "154" - }, - "resistant": [ - "fire", - "water", - "steel" - ], - "weaknesses": [ - "dragon", - "fairy" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "dragon breath", - "type": "dragon", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "outrage", - "type": "dragon", - "base-damage": "110", - "energy": "-50", - "move-duration-seg": "3.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "horsea candy", - "prev-evolution": [{ - "num": "117", - "name": "seadra", - "candy-cost": "100", - "evolution-item": { - "name": "dragon scale", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/dragon-scale.png" - }, - "prev-evolution": [{ - "num": "116", - "name": "horsea", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "231", - "name": "phanpy", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "For its nest, Phanpy digs a vertical pit in the ground at the edge of a river. It marks the area around its nest with its trunk to let the others know that the area has been claimed.", - "img": "https://www.serebii.net/pokemongo/pokemon/231.png", - "size": { - "height": "0.51 m", - "weight": "33.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "107", - "base-defense": "98", - "base-stamina": "207", - "max-cp": "1206", - "max-hp": "175" - }, - "resistant": [ - "electric", - "poison", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ice" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "bulldoze", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "phanpy candy", - "next-evolution": [{ - "num": "232", - "name": "donphan", - "candy-cost": "50" - }] - } - }, - { - "num": "232", - "name": "donphan", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Donphan's favorite attack is curling its body into a ball, then charging at its foe while rolling at high speed. Once it starts rolling, this Pokémon can't stop very easily.", - "img": "https://www.serebii.net/pokemongo/pokemon/232.png", - "size": { - "height": "1.09 m", - "weight": "120.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "214", - "base-defense": "185", - "base-stamina": "207", - "max-cp": "3013", - "max-hp": "175" - }, - "resistant": [ - "electric", - "poison", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ice" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "heavy slam", - "type": "steel", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.1" - }, - { - "name": "play rough", - "type": "fairy", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "phanpy candy", - "prev-evolution": [{ - "num": "231", - "name": "phanpy", - "candy-cost": "50" - }] - } - }, - { - "num": "233", - "name": "porygon2", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Porygon2 was created by humans using the power of science. The man-made Pokémon has been endowed with artificial intelligence that enables it to learn new gestures and emotions on its own.", - "img": "https://www.serebii.net/pokemongo/pokemon/233.png", - "size": { - "height": "0.61 m", - "weight": "32.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "198", - "base-defense": "180", - "base-stamina": "198", - "max-cp": "2711", - "max-hp": "168" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "hidden power", - "type": "normal", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }, - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "zap cannon", - "type": "electric", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "porygon candy", - "next-evolution": [{ - "num": "474", - "name": "porygon-z", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }], - "prev-evolution": [{ - "num": "137", - "name": "porygon", - "candy-cost": "25", - "evolution-item": { - "name": "up grade", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/up-grade.png" - } - }] - } - }, - { - "num": "234", - "name": "stantler", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Stantler's magnificent antlers were traded at high prices as works of art. As a result, this Pokémon was hunted close to extinction by those who were after the priceless antlers.", - "img": "https://www.serebii.net/pokemongo/pokemon/234.png", - "size": { - "height": "1.40 m", - "weight": "71.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.08", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "192", - "base-defense": "131", - "base-stamina": "177", - "max-cp": "2164", - "max-hp": "151" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "stomp", - "type": "normal", - "base-damage": "55", - "energy": "-50", - "move-duration-seg": "1.7" - }, - { - "name": "wild charge", - "type": "electric", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "megahorn", - "type": "bug", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "stantler candy" - } - }, - { - "num": "235", - "name": "smeargle", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Smeargle marks the boundaries of its territory using a body fluid that leaks out from the tip of its tail. Over 5,000 different marks left by this Pokémon have been found.", - "img": "https://www.serebii.net/pokemongo/pokemon/235.png", - "size": { - "height": "1.19 m", - "weight": "58.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": null, - "stats": { - "base-attack": "40", - "base-defense": "83", - "base-stamina": "146", - "max-cp": "431", - "max-hp": "127" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }], - "special-attack": [ - { - "name": "struggle", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "2.2" - }], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "smeargle candy" - } - }, - { - "num": "236", - "name": "tyrogue", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Tyrogue becomes stressed out if it does not get to train every day. When raising this Pokémon, the Trainer must establish and uphold various training methods.", - "img": "https://www.serebii.net/pokemongo/pokemon/236.png", - "size": { - "height": "0.71 m", - "weight": "21.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "not in capture", - "base-capture-rate": "not in capture" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "64", - "base-defense": "64", - "base-stamina": "111", - "max-cp": "492", - "max-hp": "99" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "low sweep", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "7 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "tyrogue candy", - "next-evolution": [ - { - "num": "106", - "name": "hitmonlee", - "candy-cost": "25" - }, - { - "num": "107", - "name": "hitmonchan", - "candy-cost": "25" - }, - { - "num": "237", - "name": "hitmontop", - "candy-cost": "25" - } - ] - } - }, - { - "num": "237", - "name": "hitmontop", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Hitmontop spins on its head at high speed, all the while delivering kicks. This technique is a remarkable mix of both offense and defense at the same time. The Pokémon travels faster spinning than it does walking.", - "img": "https://www.serebii.net/pokemongo/pokemon/237.png", - "size": { - "height": "1.40 m", - "weight": "48.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": null, - "stats": { - "base-attack": "173", - "base-defense": "207", - "base-stamina": "137", - "max-cp": "2156", - "max-hp": "120" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - }, - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "gyro ball", - "type": "steel", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "tyrogue candy", - "prev-evolution": [{ - "num": "236", - "name": "tyrogue", - "candy-cost": "25" - }] - } - }, - { - "num": "238", - "name": "smoochum", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Smoochum actively runs about, but also falls quite often. Whenever the chance arrives, it will look for its reflection to make sure its face hasn't become dirty.", - "img": "https://www.serebii.net/pokemongo/pokemon/238.png", - "size": { - "height": "0.41 m", - "weight": "6.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ice", - "psychic" - ], - "encounter": { - "base-flee-rate": "not in capture", - "base-capture-rate": "not in capture" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "153", - "base-defense": "91", - "base-stamina": "128", - "max-cp": "1291", - "max-hp": "113" - }, - "resistant": [ - "ice", - "psychic" - ], - "weaknesses": [ - "fire", - "bug", - "rock", - "ghost" - ], - "quick-move": [ - { - "name": "powder snow", - "type": "ice", - "base-damage": "6", - "energy": "15", - "move-duration-seg": "1" - }, - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "frost breath", - "type": "ice", - "base-damage": "10", - "energy": "8", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "ice punch", - "type": "ice", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - } - ], - "egg": "7 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "jynx candy", - "next-evolution": [{ - "num": "124", - "name": "jynx", - "candy-cost": "25" - }] - } - }, - { - "num": "239", - "name": "elekid", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Elekid stores electricity in its body. If it touches metal and accidentally discharges all its built-up electricity, this Pokémon begins swinging its arms in circles to recharge itself.", - "img": "https://www.serebii.net/pokemongo/pokemon/239.png", - "size": { - "height": "0.61 m", - "weight": "23.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "not in capture", - "base-capture-rate": "not in capture" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "135", - "base-defense": "101", - "base-stamina": "128", - "max-cp": "1206", - "max-hp": "113" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "low kick", - "type": "fight", - "base-damage": "6", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "thunder punch", - "type": "electric", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.8" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - } - ], - "egg": "7 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "electabuzz candy", - "next-evolution": [{ - "num": "125", - "name": "electabuzz", - "candy-cost": "25", - "next-evolution": [{ - "num": "466", - "name": "electivire", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - }] - } - }, - { - "num": "240", - "name": "magby", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Magby's state of health is determined by observing the fire it breathes. If the Pokémon is spouting yellow flames from its mouth, it is in good health. When it is fatigued, black smoke will be mixed in with the flames.", - "img": "https://www.serebii.net/pokemongo/pokemon/240.png", - "size": { - "height": "0.71 m", - "weight": "21.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "not in capture", - "base-capture-rate": "not in capture" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "151", - "base-defense": "99", - "base-stamina": "128", - "max-cp": "1323", - "max-hp": "113" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "karate chop", - "type": "fight", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "fire punch", - "type": "fire", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.2" - }, - { - "name": "flame burst", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "7 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "magmar candy", - "next-evolution": [{ - "num": "126", - "name": "magmar", - "candy-cost": "25", - "next-evolution": [{ - "num": "467", - "name": "magmortar", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - }] - } - }, - { - "num": "241", - "name": "miltank", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Miltank gives over five gallons of milk on a daily basis. Its sweet milk is enjoyed by children and grown-ups alike. People who can't drink milk turn it into yogurt and eat it instead.", - "img": "https://www.serebii.net/pokemongo/pokemon/241.png", - "size": { - "height": "1.19 m", - "weight": "75.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.08", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "157", - "base-defense": "193", - "base-stamina": "216", - "max-cp": "2354", - "max-hp": "182" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "stomp", - "type": "normal", - "base-damage": "55", - "energy": "-50", - "move-duration-seg": "1.7" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "gyro ball", - "type": "steel", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.3" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "miltank candy" - } - }, - { - "num": "242", - "name": "blissey", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Blissey senses sadness with its fluffy coat of fur. If it does so, this Pokémon will rush over to a sad person, no matter how far away, to share a Lucky Egg that brings a smile to any face.", - "img": "https://www.serebii.net/pokemongo/pokemon/242.png", - "size": { - "height": "1.50 m", - "weight": "46.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "129", - "base-defense": "169", - "base-stamina": "496", - "max-cp": "2757", - "max-hp": "403" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "chansey candy", - "prev-evolution": [{ - "num": "113", - "name": "chansey", - "candy-cost": "50", - "prev-evolution": [{ - "num": "440", - "name": "happiny", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "243", - "name": "raikou", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Raikou embodies the speed of lightning. The roars of this Pokémon send shock waves shuddering through the air and shake the ground as if lightning bolts had come crashing down.", - "img": "https://www.serebii.net/pokemongo/pokemon/243.png", - "size": { - "height": "1.91 m", - "weight": "178.0 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.04", - "base-capture-rate": "0.02" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "241", - "base-defense": "195", - "base-stamina": "207", - "max-cp": "3452", - "max-hp": "175" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "volt switch", - "type": "electric", - "base-damage": "20", - "energy": "25", - "move-duration-seg": "2.3" - } - ], - "special-attack": [ - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "wild charge", - "type": "electric", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "raikou candy" - } - }, - { - "num": "244", - "name": "entei", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Entei embodies the passion of magma. This Pokémon is thought to have been born in the eruption of a volcano. It sends up massive bursts of fire that utterly consume all that they touch.", - "img": "https://www.serebii.net/pokemongo/pokemon/244.png", - "size": { - "height": "2.11 m", - "weight": "198.0 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.04", - "base-capture-rate": "0.02" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "235", - "base-defense": "171", - "base-stamina": "251", - "max-cp": "3473", - "max-hp": "210" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "fire spin", - "type": "fire", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.1" - }, - { - "name": "fire fang", - "type": "fire", - "base-damage": "11", - "energy": "8", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - }, - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "overheat", - "type": "fire", - "base-damage": "160", - "energy": "-100", - "move-duration-seg": "4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "entei candy" - } - }, - { - "num": "245", - "name": "suicune", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Suicune embodies the compassion of a pure spring of water. It runs across the land with gracefulness. This Pokémon has the power to purify dirty water.", - "img": "https://www.serebii.net/pokemongo/pokemon/245.png", - "size": { - "height": "2.01 m", - "weight": "187.0 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.04", - "base-capture-rate": "0.02" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "180", - "base-defense": "235", - "base-stamina": "225", - "max-cp": "2983", - "max-hp": "189" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "extrasensory", - "type": "psychic", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - }, - { - "name": "snarl", - "type": "dark", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "suicune candy" - } - }, - { - "num": "246", - "name": "larvitar", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Larvitar is born deep under the ground. To come up to the surface, this Pokémon must eat its way through the soil above. Until it does so, Larvitar cannot see its parents.", - "img": "https://www.serebii.net/pokemongo/pokemon/246.png", - "size": { - "height": "0.60 m", - "weight": "72.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "ground" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": null, - "stats": { - "base-attack": "115", - "base-defense": "93", - "base-stamina": "137", - "max-cp": "1040", - "max-hp": "120" - }, - "resistant": [ - "electric", - "poison", - "fire", - "flying", - "normal", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ground", - "ice", - "steel", - "fighting" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "stomp", - "type": "normal", - "base-damage": "55", - "energy": "-50", - "move-duration-seg": "1.7" - }, - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "larvitar candy", - "next-evolution": [{ - "num": "247", - "name": "pupitar", - "candy-cost": "25", - "next-evolution": [{ - "num": "248", - "name": "tyranitar", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "247", - "name": "pupitar", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Pupitar creates a gas inside its body that it compresses and forcefully ejects to propel itself like a jet. The body is very durable—it avoids damage even if it hits solid steel.", - "img": "https://www.serebii.net/pokemongo/pokemon/247.png", - "size": { - "height": "1.20 m", - "weight": "152.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "ground" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.1" - }, - "spawn-chance": null, - "stats": { - "base-attack": "155", - "base-defense": "133", - "base-stamina": "172", - "max-cp": "1766", - "max-hp": "147" - }, - "resistant": [ - "electric", - "poison", - "fire", - "flying", - "normal", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ground", - "ice", - "steel", - "fighting" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "larvitar candy", - "next-evolution": [{ - "num": "248", - "name": "tyranitar", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "246", - "name": "larvitar", - "candy-cost": "25" - }] - } - }, - { - "num": "248", - "name": "tyranitar", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Tyranitar is so overwhelmingly powerful, it can bring down a whole mountain to make its nest. This Pokémon wanders about in mountains seeking new opponents to fight.", - "img": "https://www.serebii.net/pokemongo/pokemon/248.png", - "size": { - "height": "2.00 m", - "weight": "202.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "dark" - ], - "encounter": { - "base-flee-rate": "0.04", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "251", - "base-defense": "207", - "base-stamina": "225", - "max-cp": "3834", - "max-hp": "189" - }, - "resistant": [ - "psychic", - "dark", - "ghost", - "fire", - "poison", - "flying", - "normal" - ], - "weaknesses": [ - "fighting", - "ground", - "steel", - "water", - "grass", - "bug", - "fairy" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "iron tail", - "type": "steel", - "base-damage": "15", - "energy": "7", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "larvitar candy", - "prev-evolution": [{ - "num": "247", - "name": "pupitar", - "candy-cost": "100", - "prev-evolution": [{ - "num": "246", - "name": "larvitar", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "249", - "name": "lugia", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Lugia's wings pack devastating power-a light fluttering of its wings can blow apart regular houses. As a result, this Pokémon chooses to live out of sight deep under the sea.", - "img": "https://www.serebii.net/pokemongo/pokemon/249.png", - "size": { - "height": "5.21 m", - "weight": "216.0 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "psychic", - "flying" - ], - "encounter": { - "base-flee-rate": "0.04", - "base-capture-rate": "0.02" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "193", - "base-defense": "310", - "base-stamina": "235", - "max-cp": "3703", - "max-hp": "197" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "psychic" - ], - "weaknesses": [ - "electric", - "ice", - "rock", - "ghost" - ], - "quick-move": [ - { - "name": "extrasensory", - "type": "psychic", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - }, - { - "name": "dragon tail", - "type": "dragon", - "base-damage": "15", - "energy": "9", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "sky attack", - "type": "flying", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "futuresight", - "type": "psychic", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "lugia candy" - } - }, - { - "num": "250", - "name": "ho-oh", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Ho-Oh's feathers glow in seven colors depending on the angle at which they are struck by light. These feathers are said to bring happiness to the bearers. This Pokémon is said to live at the foot of a rainbow.", - "img": "https://www.serebii.net/pokemongo/pokemon/250.png", - "size": { - "height": "3.80 m", - "weight": "199.0 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "fire", - "flying" - ], - "encounter": { - "base-flee-rate": "0.04", - "base-capture-rate": "0.02" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "239", - "base-defense": "244", - "base-stamina": "214", - "max-cp": "3863", - "max-hp": "180" - }, - "resistant": [ - "fighting", - "bug", - "grass", - "steel", - "fire", - "fairy" - ], - "weaknesses": [ - "rock", - "ground", - "electric", - "water" - ], - "quick-move": [ - { - "name": "extrasensory", - "type": "psychic", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - }, - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "brave bird", - "type": "flying", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2" - }, - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "ho-oh candy" - } - }, - { - "num": "251", - "name": "celebi", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "This Pokémon came from the future by crossing over time. It is thought that so long as Celebi appears, a bright and shining future awaits us.", - "img": "https://www.serebii.net/pokemongo/pokemon/251.png", - "size": { - "height": "0.61 m", - "weight": "5.0 kg" - }, - "pokemon-rarity": "mythic", - "type": [ - "psychic", - "grass" - ], - "encounter": { - "base-flee-rate": "0", - "base-capture-rate": "100" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "210", - "base-defense": "210", - "base-stamina": "225", - "max-cp": "3265", - "max-hp": "189" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - }, - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "celebi candy" - } - }] -}; diff --git a/src/data/pokemon/pokemon.json b/src/data/pokemon/pokemon.json deleted file mode 100644 index e1b9568c..00000000 --- a/src/data/pokemon/pokemon.json +++ /dev/null @@ -1,23953 +0,0 @@ -{ - "pokemon": [{ - "num": "001", - "name": "bulbasaur", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Bulbasaur can be seen napping in bright sunlight. There is a seed on its back. By soaking up the sun's rays, the seed grows progressively larger.", - "img": "https://www.serebii.net/pokemongo/pokemon/001.png", - "size": { - "height": "0.71 m", - "weight": "6.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.69", - "stats": { - "base-attack": "118", - "base-defense": "111", - "base-stamina": "128", - "max-cp": "1115", - "max-hp": "113" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "vine whip", - "type": "grass", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "seed bomb", - "type": "grass", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "power whip", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "bulbasaur candy", - "next-evolution": [{ - "num": "002", - "name": "ivysaur", - "candy-cost": "25", - "next-evolution": [{ - "num": "003", - "name": "venusaur", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "002", - "name": "ivysaur", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "There is a bud on this Pokémon's back. To support its weight, Ivysaur's legs and trunk grow thick and strong. If it starts spending more time lying in the sunlight, it's a sign that the bud will bloom into a large flower soon.", - "img": "https://www.serebii.net/pokemongo/pokemon/002.png", - "size": { - "height": "0.99 m", - "weight": "13.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.042", - "stats": { - "base-attack": "151", - "base-defense": "143", - "base-stamina": "155", - "max-cp": "1699", - "max-hp": "134" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "vine whip", - "type": "grass", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "power whip", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "bulbasaur candy", - "next-evolution": [{ - "num": "003", - "name": "venusaur", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "001", - "name": "bulbasaur", - "candy-cost": "25" - }] - } - }, - { - "num": "003", - "name": "venusaur", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "There is a large flower on Venusaur's back. The flower is said to take on vivid colors if it gets plenty of nutrition and sunlight. The flower's aroma soothes the emotions of people.", - "img": "https://www.serebii.net/pokemongo/pokemon/003.png", - "size": { - "height": "2.01 m", - "weight": "100.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": "0.017", - "stats": { - "base-attack": "198", - "base-defense": "189", - "base-stamina": "190", - "max-cp": "2720", - "max-hp": "162" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "vine whip", - "type": "grass", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "petal blizzard", - "type": "grass", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "2.6" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "bulbasaur candy", - "prev-evolution": [{ - "num": "002", - "name": "ivysaur", - "candy-cost": "100", - "prev-evolution": [{ - "num": "001", - "name": "bulbasaur", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "004", - "name": "charmander", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "The flame that burns at the tip of its tail is an indication of its emotions. The flame wavers when Charmander is enjoying itself. If the Pokémon becomes enraged, the flame burns fiercely.", - "img": "https://www.serebii.net/pokemongo/pokemon/004.png", - "size": { - "height": "0.61 m", - "weight": "8.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.253", - "stats": { - "base-attack": "116", - "base-defense": "93", - "base-stamina": "118", - "max-cp": "980", - "max-hp": "105" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "flame charge", - "type": "fire", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.8" - }, - { - "name": "flame burst", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "charmander candy", - "next-evolution": [{ - "num": "005", - "name": "charmeleon", - "candy-cost": "25", - "next-evolution": [{ - "num": "006", - "name": "charizard", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "005", - "name": "charmeleon", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Charmeleon mercilessly destroys its foes using its sharp claws. If it encounters a strong foe, it turns aggressive. In this excited state, the flame at the tip of its tail flares with a bluish white color.", - "img": "https://www.serebii.net/pokemongo/pokemon/005.png", - "size": { - "height": "1.09 m", - "weight": "19.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.012", - "stats": { - "base-attack": "158", - "base-defense": "126", - "base-stamina": "151", - "max-cp": "1653", - "max-hp": "131" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "fire fang", - "type": "fire", - "base-damage": "11", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "fire punch", - "type": "fire", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.2" - }, - { - "name": "flame burst", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "charmander candy", - "next-evolution": [{ - "num": "006", - "name": "charizard", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "004", - "name": "charmander", - "candy-cost": "25" - }] - } - }, - { - "num": "006", - "name": "charizard", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Charizard flies around the sky in search of powerful opponents. It breathes fire of such great heat that it melts anything. However, it never turns its fiery breath on any opponent weaker than itself.", - "img": "https://www.serebii.net/pokemongo/pokemon/006.png", - "size": { - "height": "1.70 m", - "weight": "90.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire", - "flying" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": "0.0031", - "stats": { - "base-attack": "223", - "base-defense": "173", - "base-stamina": "186", - "max-cp": "2889", - "max-hp": "158" - }, - "resistant": [ - "fire", - "grass", - "fighting", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "electric", - "rock" - ], - "quick-move": [ - { - "name": "fire spin", - "type": "fire", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.1" - }, - { - "name": "air slash", - "type": "flying", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.2" - }, - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "wing attack", - "type": "flying", - "base-damage": "8", - "energy": "9", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "dragon claw", - "type": "dragon", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "overheat", - "type": "fire", - "base-damage": "160", - "energy": "-100", - "move-duration-seg": "4" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "charmander candy", - "prev-evolution": [{ - "num": "005", - "name": "charmeleon", - "candy-cost": "100", - "prev-evolution": [{ - "num": "004", - "name": "charmander", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "007", - "name": "squirtle", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Squirtle's shell is not merely used for protection. The shell's rounded shape and the grooves on its surface help minimize resistance in water, enabling this Pokémon to swim at high speeds.", - "img": "https://www.serebii.net/pokemongo/pokemon/007.png", - "size": { - "height": "0.51 m", - "weight": "9.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.58", - "stats": { - "base-attack": "94", - "base-defense": "121", - "base-stamina": "127", - "max-cp": "946", - "max-hp": "112" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "aqua jet", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.6" - }, - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "squirtle candy", - "next-evolution": [{ - "num": "008", - "name": "wartortle", - "candy-cost": "25", - "next-evolution": [{ - "num": "009", - "name": "blastoise", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "008", - "name": "wartortle", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Its tail is large and covered with a rich, thick fur. The tail becomes increasingly deeper in color as Wartortle ages. The scratches on its shell are evidence of this Pokémon's toughness as a battler.", - "img": "https://www.serebii.net/pokemongo/pokemon/008.png", - "size": { - "height": "0.99 m", - "weight": "22.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.034", - "stats": { - "base-attack": "126", - "base-defense": "155", - "base-stamina": "153", - "max-cp": "1488", - "max-hp": "132" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "aqua jet", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.6" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "squirtle candy", - "next-evolution": [{ - "num": "009", - "name": "blastoise", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "007", - "name": "squirtle", - "candy-cost": "25" - }] - } - }, - { - "num": "009", - "name": "blastoise", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Blastoise has water spouts that protrude from its shell. The water spouts are very accurate. They can shoot bullets of water with enough accuracy to strike empty cans from a distance of over 160 feet.", - "img": "https://www.serebii.net/pokemongo/pokemon/009.png", - "size": { - "height": "1.60 m", - "weight": "85.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": "0.0067", - "stats": { - "base-attack": "171", - "base-defense": "207", - "base-stamina": "188", - "max-cp": "2466", - "max-hp": "160" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "flash cannon", - "type": "steel", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.7" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "squirtle candy", - "prev-evolution": [{ - "num": "008", - "name": "wartortle", - "candy-cost": "100", - "prev-evolution": [{ - "num": "007", - "name": "squirtle", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "010", - "name": "caterpie", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Caterpie has a voracious appetite. It can devour leaves bigger than its body right before your eyes. From its antenna, this Pokémon releases a terrifically strong odor.", - "img": "https://www.serebii.net/pokemongo/pokemon/010.png", - "size": { - "height": "0.30 m", - "weight": "2.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": "3.032", - "stats": { - "base-attack": "55", - "base-defense": "55", - "base-stamina": "128", - "max-cp": "437", - "max-hp": "113" - }, - "resistant": [ - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "flying", - "rock" - ], - "quick-move": [ - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "struggle", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "2.2" - }], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "caterpie candy", - "next-evolution": [{ - "num": "011", - "name": "metapod", - "candy-cost": "12", - "next-evolution": [{ - "num": "012", - "name": "butterfree", - "candy-cost": "50" - }] - }] - } - }, - { - "num": "011", - "name": "metapod", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "The shell covering this Pokémon's body is as hard as an iron slab. Metapod does not move very much. It stays still because it is preparing its soft innards for evolution inside the hard shell.", - "img": "https://www.serebii.net/pokemongo/pokemon/011.png", - "size": { - "height": "0.71 m", - "weight": "9.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.187", - "stats": { - "base-attack": "45", - "base-defense": "80", - "base-stamina": "137", - "max-cp": "450", - "max-hp": "120" - }, - "resistant": [ - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "flying", - "rock" - ], - "quick-move": [ - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "struggle", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "2.2" - }], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "caterpie candy", - "next-evolution": [{ - "num": "012", - "name": "butterfree", - "candy-cost": "50" - }], - "prev-evolution": [{ - "num": "010", - "name": "caterpie", - "candy-cost": "12" - }] - } - }, - { - "num": "012", - "name": "butterfree", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Butterfree has a superior ability to search for delicious honey from flowers. It can even search out, extract, and carry honey from flowers that are blooming over six miles from its nest.", - "img": "https://www.serebii.net/pokemongo/pokemon/012.png", - "size": { - "height": "1.09 m", - "weight": "32.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "flying" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.022", - "stats": { - "base-attack": "167", - "base-defense": "137", - "base-stamina": "155", - "max-cp": "1827", - "max-hp": "134" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "bug" - ], - "weaknesses": [ - "fire", - "electric", - "ice", - "flying", - "rock" - ], - "quick-move": [ - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - }, - { - "name": "struggle bug", - "type": "bug", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "bug buzz", - "type": "bug", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.7" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "signal beam", - "type": "bug", - "base-damage": "75", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "caterpie candy", - "prev-evolution": [{ - "num": "011", - "name": "metapod", - "candy-cost": "50", - "prev-evolution": [{ - "num": "010", - "name": "caterpie", - "candy-cost": "12" - }] - }] - } - }, - { - "num": "013", - "name": "weedle", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Weedle has an extremely acute sense of smell. It is capable of distinguishing its favorite kinds of leaves from those it dislikes just by sniffing with its big red proboscis (nose).", - "img": "https://www.serebii.net/pokemongo/pokemon/013.png", - "size": { - "height": "0.30 m", - "weight": "3.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "poison" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": "7.12", - "stats": { - "base-attack": "63", - "base-defense": "50", - "base-stamina": "120", - "max-cp": "456", - "max-hp": "106" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "fire", - "flying", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "struggle", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "2.2" - }], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "weedle candy", - "next-evolution": [{ - "num": "014", - "name": "kakuna", - "candy-cost": "12", - "next-evolution": [{ - "num": "015", - "name": "beedrill", - "candy-cost": "50" - }] - }] - } - }, - { - "num": "014", - "name": "kakuna", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Kakuna remains virtually immobile as it clings to a tree. However, on the inside, it is extremely busy as it prepares for its coming evolution. This is evident from how hot the shell becomes to the touch.", - "img": "https://www.serebii.net/pokemongo/pokemon/014.png", - "size": { - "height": "0.61 m", - "weight": "10.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "poison" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.44", - "stats": { - "base-attack": "46", - "base-defense": "75", - "base-stamina": "128", - "max-cp": "432", - "max-hp": "113" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "fire", - "flying", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "struggle", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "2.2" - }], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "weedle candy", - "next-evolution": [{ - "num": "015", - "name": "beedrill", - "candy-cost": "50" - }], - "prev-evolution": [{ - "num": "013", - "name": "weedle", - "candy-cost": "12" - }] - } - }, - { - "num": "015", - "name": "beedrill", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Beedrill is extremely territorial. No one should ever approach its nest-this is for their own safety. If angered, they will attack in a furious swarm.", - "img": "https://www.serebii.net/pokemongo/pokemon/015.png", - "size": { - "height": "0.99 m", - "weight": "29.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "poison" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.051", - "stats": { - "base-attack": "169", - "base-defense": "130", - "base-stamina": "163", - "max-cp": "1846", - "max-hp": "140" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "fire", - "flying", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "poison jab", - "type": "poison", - "base-damage": "10", - "energy": "7", - "move-duration-seg": "0.8" - }, - { - "name": "infestation", - "type": "bug", - "base-damage": "10", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "x scissor", - "type": "water", - "base-damage": "50", - "energy": "-100", - "move-duration-seg": "4.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "weedle candy", - "prev-evolution": [{ - "num": "014", - "name": "kakuna", - "candy-cost": "50", - "prev-evolution": [{ - "num": "013", - "name": "weedle", - "candy-cost": "12" - }] - }] - } - }, - { - "num": "016", - "name": "pidgey", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Pidgey has an extremely sharp sense of direction. It is capable of unerringly returning home to its nest, however far it may be removed from its familiar surroundings.", - "img": "https://www.serebii.net/pokemongo/pokemon/016.png", - "size": { - "height": "0.30 m", - "weight": "1.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": "15.98", - "stats": { - "base-attack": "85", - "base-defense": "73", - "base-stamina": "120", - "max-cp": "680", - "max-hp": "106" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "twister", - "type": "dragon", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.8" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "air cutter", - "type": "flying", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "pidgey candy", - "next-evolution": [{ - "num": "017", - "name": "pidgeotto", - "candy-cost": "12", - "next-evolution": [{ - "num": "018", - "name": "pidgeot", - "candy-cost": "50" - }] - }] - } - }, - { - "num": "017", - "name": "pidgeotto", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Pidgeotto claims a large area as its own territory. This Pokémon flies around, patrolling its living space. If its territory is violated, it shows no mercy in thoroughly punishing the foe with its sharp claws.", - "img": "https://www.serebii.net/pokemongo/pokemon/017.png", - "size": { - "height": "1.09 m", - "weight": "30.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.25" - }, - "spawn-chance": "1.02", - "stats": { - "base-attack": "117", - "base-defense": "105", - "base-stamina": "160", - "max-cp": "1194", - "max-hp": "138" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "wing attack", - "type": "flying", - "base-damage": "8", - "energy": "9", - "move-duration-seg": "0.8" - }, - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "twister", - "type": "dragon", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.8" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "air cutter", - "type": "flying", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "pidgey candy", - "next-evolution": [{ - "num": "018", - "name": "pidgeot", - "candy-cost": "50" - }], - "prev-evolution": [{ - "num": "016", - "name": "pidgey", - "candy-cost": "12" - }] - } - }, - { - "num": "018", - "name": "pidgeot", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "This Pokémon has a dazzling plumage of beautifullyglossy feathers. Many Trainers are captivated by thestriking beauty of the feathers on its head, compellingthem to choose Pidgeot as their Pokémon.", - "img": "https://www.serebii.net/pokemongo/pokemon/018.png", - "size": { - "height": "1.50 m", - "weight": "39.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.13", - "stats": { - "base-attack": "166", - "base-defense": "154", - "base-stamina": "195", - "max-cp": "2129", - "max-hp": "165" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - }, - { - "name": "air slash", - "type": "flying", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.2" - }, - { - "name": "wing attack", - "type": "flying", - "base-damage": "8", - "energy": "9", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "hurricane", - "type": "flying", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "2.7" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "brave bird", - "type": "flying", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2" - }, - { - "name": "air cutter", - "type": "flying", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "pidgey candy", - "prev-evolution": [{ - "num": "017", - "name": "pidgeotto", - "candy-cost": "50", - "prev-evolution": [{ - "num": "016", - "name": "pidgey", - "candy-cost": "12" - }] - }] - } - }, - { - "num": "019", - "name": "rattata", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Rattata is cautious in the extreme. Even while it is asleep, it constantly listens by moving its ears around. It is not picky about where it lives-it will make its nest anywhere.", - "img": "https://www.serebii.net/pokemongo/pokemon/019.png", - "size": { - "height": "0.30 m", - "weight": "3.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": "13.05", - "stats": { - "base-attack": "103", - "base-defense": "70", - "base-stamina": "102", - "max-cp": "734", - "max-hp": "92" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "hyper fang", - "type": "normal", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "rattata candy", - "next-evolution": [{ - "num": "020", - "name": "raticate", - "candy-cost": "25" - }] - } - }, - { - "num": "020", - "name": "raticate", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Raticate's sturdy fangs grow steadily. To keep them ground down, it gnaws on rocks and logs. It may even chew on the walls of houses.", - "img": "https://www.serebii.net/pokemongo/pokemon/020.png", - "size": { - "height": "0.71 m", - "weight": "18.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.41", - "stats": { - "base-attack": "161", - "base-defense": "139", - "base-stamina": "146", - "max-cp": "1730", - "max-hp": "127" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "hyper fang", - "type": "normal", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "rattata candy", - "prev-evolution": [{ - "num": "019", - "name": "rattata", - "candy-cost": "25" - }] - } - }, - { - "num": "021", - "name": "spearow", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Spearow has a very loud cry that can be heard over half a mile away. If its high, keening cry is heard echoing all around, it is a sign that they are warning each other of danger.", - "img": "https://www.serebii.net/pokemongo/pokemon/021.png", - "size": { - "height": "0.30 m", - "weight": "2.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "4.73", - "stats": { - "base-attack": "112", - "base-defense": "60", - "base-stamina": "120", - "max-cp": "798", - "max-hp": "106" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "drill peck", - "type": "flying", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "sky attack", - "type": "flying", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - }, - { - "name": "twister", - "type": "dragon", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.8" - } - ], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "spearow candy", - "next-evolution": [{ - "num": "022", - "name": "fearow", - "candy-cost": "50" - }] - } - }, - { - "num": "022", - "name": "fearow", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Fearow is recognized by its long neck and elongated beak. They are conveniently shaped for catching prey in soil or water. It deftly moves its long and skinny beak to pluck prey.", - "img": "https://www.serebii.net/pokemongo/pokemon/022.png", - "size": { - "height": "1.19 m", - "weight": "38.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.15", - "stats": { - "base-attack": "182", - "base-defense": "133", - "base-stamina": "163", - "max-cp": "1997", - "max-hp": "140" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "drill run", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.8" - }, - { - "name": "sky attack", - "type": "flying", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - }, - { - "name": "twister", - "type": "dragon", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "spearow candy", - "prev-evolution": [{ - "num": "021", - "name": "spearow", - "candy-cost": "50" - }] - } - }, - { - "num": "023", - "name": "ekans", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Ekans curls itself up in a spiral while it rests. Assuming this position allows it to quickly respond to a threat from any direction with a glare from its upraised head.", - "img": "https://www.serebii.net/pokemongo/pokemon/023.png", - "size": { - "height": "2.01 m", - "weight": "6.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "2.27", - "stats": { - "base-attack": "110", - "base-defense": "97", - "base-stamina": "111", - "max-cp": "927", - "max-hp": "99" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "wrap", - "type": "normal", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.9" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "poison fang", - "type": "poison", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "gunk shot", - "type": "poison", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "ekans candy", - "next-evolution": [{ - "num": "024", - "name": "arbok", - "candy-cost": "50" - }] - } - }, - { - "num": "024", - "name": "arbok", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "This Pokémon is terrifically strong in order to constrict things with its body. It can even flatten steel oil drums. Once Arbok wraps its body around its foe, escaping its crunching embrace is impossible.", - "img": "https://www.serebii.net/pokemongo/pokemon/024.png", - "size": { - "height": "3.51 m", - "weight": "65.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.072", - "stats": { - "base-attack": "167", - "base-defense": "153", - "base-stamina": "155", - "max-cp": "1921", - "max-hp": "134" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "sludge wave", - "type": "poison", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "3.2" - }, - { - "name": "gunk shot", - "type": "poison", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "ekans candy", - "prev-evolution": [{ - "num": "023", - "name": "ekans", - "candy-cost": "50" - }] - } - }, - { - "num": "025", - "name": "pikachu", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Whenever Pikachu comes across something new, it blasts it with a jolt of electricity. If you come across a blackened berry, it's evidence that this Pokémon mistook the intensity of its charge.", - "img": "https://www.serebii.net/pokemongo/pokemon/025.png", - "size": { - "height": "0.41 m", - "weight": "6.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.21", - "stats": { - "base-attack": "112", - "base-defense": "96", - "base-stamina": "111", - "max-cp": "938", - "max-hp": "99" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "wild charge", - "type": "electric", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - } - ], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "pikachu candy", - "next-evolution": [{ - "num": "026", - "name": "raichu", - "candy-cost": "50" - }], - "prev-evolution": [{ - "num": "172", - "name": "pichu", - "candy-cost": "25" - }] - } - }, - { - "num": "026", - "name": "raichu", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "If the electrical sacs become excessively charged, Raichu plants its tail in the ground and discharges. Scorched patches of ground will be found near this Pokémon's nest.", - "img": "https://www.serebii.net/pokemongo/pokemon/026.png", - "size": { - "height": "0.79 m", - "weight": "30.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.0076", - "stats": { - "base-attack": "193", - "base-defense": "151", - "base-stamina": "155", - "max-cp": "2182", - "max-hp": "134" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "spark", - "type": "electric", - "base-damage": "6", - "energy": "9", - "move-duration-seg": "0.7" - }, - { - "name": "volt switch", - "type": "electric", - "base-damage": "20", - "energy": "25", - "move-duration-seg": "2.3" - }, - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "thunder punch", - "type": "electric", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.8" - }, - { - "name": "wild charge", - "type": "electric", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "pikachu candy", - "prev-evolution": [{ - "num": "025", - "name": "pikachu", - "candy-cost": "50", - "prev-evolution": [{ - "num": "172", - "name": "pichu", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "027", - "name": "sandshrew", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Sandshrew's body is configured to absorb water without waste, enabling it to survive in an arid desert. This Pokémon curls up to protect itself from its enemies.", - "img": "https://www.serebii.net/pokemongo/pokemon/027.png", - "size": { - "height": "0.61 m", - "weight": "12.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "1.11", - "stats": { - "base-attack": "126", - "base-defense": "120", - "base-stamina": "137", - "max-cp": "1261", - "max-hp": "120" - }, - "resistant": [ - "electric", - "poison", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ice" - ], - "quick-move": [ - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "sand tomb", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "4" - }, - { - "name": "rock tomb", - "type": "rock", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "sandshrew candy", - "next-evolution": [{ - "num": "028", - "name": "sandslash", - "candy-cost": "50" - }] - } - }, - { - "num": "028", - "name": "sandslash", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Sandslash's body is covered by tough spikes, which are hardened sections of its hide. Once a year, the old spikes fall out, to be replaced with new spikes that grow out from beneath the old ones.", - "img": "https://www.serebii.net/pokemongo/pokemon/028.png", - "size": { - "height": "0.99 m", - "weight": "29.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.037", - "stats": { - "base-attack": "182", - "base-defense": "175", - "base-stamina": "181", - "max-cp": "2374", - "max-hp": "154" - }, - "resistant": [ - "electric", - "poison", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ice" - ], - "quick-move": [ - { - "name": "metal claw", - "type": "steel", - "base-damage": "8", - "energy": "7", - "move-duration-seg": "0.7" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "rock tomb", - "type": "rock", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "bulldoze", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "sandshrew candy", - "prev-evolution": [{ - "num": "027", - "name": "sandshrew", - "candy-cost": "50" - }] - } - }, - { - "num": "029", - "name": "nidoran ♀ (female)", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Nidoran ♀ has barbs that secrete a powerful poison. They are thought to have developed as protection for this small-bodied Pokémon. When enraged, it releases a horrible toxin from its horn.", - "img": "https://www.serebii.net/pokemongo/pokemon/029.png", - "size": { - "height": "0.41 m", - "weight": "7.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "1.38", - "stats": { - "base-attack": "86", - "base-defense": "89", - "base-stamina": "146", - "max-cp": "816", - "max-hp": "127" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "poison fang", - "type": "poison", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "nidoran ♀ (female) candy", - "next-evolution": [{ - "num": "030", - "name": "nidorina", - "candy-cost": "25", - "next-evolution": [{ - "num": "031", - "name": "nidoqueen", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "030", - "name": "nidorina", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "When Nidorina are with their friends or family, they keep their barbs tucked away to prevent hurting each other. This Pokémon appears to become nervous if separated from the others.", - "img": "https://www.serebii.net/pokemongo/pokemon/030.png", - "size": { - "height": "0.79 m", - "weight": "20.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.088", - "stats": { - "base-attack": "117", - "base-defense": "120", - "base-stamina": "172", - "max-cp": "1309", - "max-hp": "147" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "poison fang", - "type": "poison", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "nidoran ♀ (female) candy", - "next-evolution": [{ - "num": "031", - "name": "nidoqueen", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "029", - "name": "nidoran ♀ (female)", - "candy-cost": "25" - }] - } - }, - { - "num": "031", - "name": "nidoqueen", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Nidoqueen's body is encased in extremely hard scales. It is adept at sending foes flying with harsh tackles. This Pokémon is at its strongest when it is defending its young.", - "img": "https://www.serebii.net/pokemongo/pokemon/031.png", - "size": { - "height": "1.30 m", - "weight": "60.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison", - "ground" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.012", - "stats": { - "base-attack": "180", - "base-defense": "173", - "base-stamina": "207", - "max-cp": "2488", - "max-hp": "175" - }, - "resistant": [ - "electric", - "fighting", - "poison", - "bug", - "rock" - ], - "weaknesses": [ - "water", - "ice", - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "poison jab", - "type": "poison", - "base-damage": "10", - "energy": "7", - "move-duration-seg": "0.8" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "sludge wave", - "type": "poison", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "3.2" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "nidoran ♀ (female) candy", - "prev-evolution": [{ - "num": "030", - "name": "nidorina", - "candy-cost": "100", - "prev-evolution": [{ - "num": "029", - "name": "nidoran ♀ (female)", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "032", - "name": "nidoran ♂ (male)", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Nidoran ♂ (Male) has developed muscles for moving its ears. Thanks to them, the ears can be freely moved in any direction. Even the slightest sound does not escape this Pokémon's notice.", - "img": "https://www.serebii.net/pokemongo/pokemon/032.png", - "size": { - "height": "0.51 m", - "weight": "9.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "1.31", - "stats": { - "base-attack": "105", - "base-defense": "76", - "base-stamina": "130", - "max-cp": "860", - "max-hp": "114" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "horn attack", - "type": "normal", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.85" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "nidoran ♂ (male) candy", - "next-evolution": [{ - "num": "033", - "name": "nidorino", - "candy-cost": "25", - "next-evolution": [{ - "num": "034", - "name": "nidoking", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "033", - "name": "nidorino", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Nidorino has a horn that is harder than a diamond. If it senses a hostile presence, all the barbs on its back bristle up at once, and it challenges the foe with all its might.", - "img": "https://www.serebii.net/pokemongo/pokemon/033.png", - "size": { - "height": "0.89 m", - "weight": "19.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.083", - "stats": { - "base-attack": "137", - "base-defense": "111", - "base-stamina": "156", - "max-cp": "1393", - "max-hp": "135" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "poison jab", - "type": "poison", - "base-damage": "10", - "energy": "7", - "move-duration-seg": "0.8" - }, - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "horn attack", - "type": "normal", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.85" - }, - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "nidoran ♂ (male) candy", - "next-evolution": [{ - "num": "034", - "name": "nidoking", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "032", - "name": "nidoran ♂ (male)", - "candy-cost": "25" - }] - } - }, - { - "num": "034", - "name": "nidoking", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Nidoking's thick tail packs enormously destructive power. With one swing, it can topple a metal transmission tower. Once this Pokémon goes on a rampage, there is no stopping it.", - "img": "https://www.serebii.net/pokemongo/pokemon/034.png", - "size": { - "height": "1.40 m", - "weight": "62.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison", - "ground" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.017", - "stats": { - "base-attack": "204", - "base-defense": "156", - "base-stamina": "191", - "max-cp": "2567", - "max-hp": "162" - }, - "resistant": [ - "electric", - "fighting", - "poison", - "bug", - "rock" - ], - "weaknesses": [ - "water", - "ice", - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "poison jab", - "type": "poison", - "base-damage": "10", - "energy": "7", - "move-duration-seg": "0.8" - }, - { - "name": "iron tail", - "type": "steel", - "base-damage": "15", - "energy": "7", - "move-duration-seg": "1.1" - }, - { - "name": "fury cutter", - "type": "bug", - "base-damage": "3", - "energy": "6", - "move-duration-seg": "0.4" - } - ], - "special-attack": [ - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "sludge wave", - "type": "poison", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "3.2" - }, - { - "name": "megahorn", - "type": "bug", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "nidoran ♂ (male) candy", - "prev-evolution": [{ - "num": "033", - "name": "nidorino", - "candy-cost": "100", - "prev-evolution": [{ - "num": "032", - "name": "nidoran ♂ (male)", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "035", - "name": "clefairy", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "On every night of a full moon, groups of this Pokémon come out to play. When dawn arrives, the tired Clefairy return to their quiet mountain retreats and go to sleep nestled up against each other.", - "img": "https://www.serebii.net/pokemongo/pokemon/035.png", - "size": { - "height": "0.61 m", - "weight": "7.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.3" - }, - "spawn-chance": "0.92", - "stats": { - "base-attack": "107", - "base-defense": "108", - "base-stamina": "172", - "max-cp": "1155", - "max-hp": "147" - }, - "resistant": [ - "fighting", - "bug", - "dragon", - "dark" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "disarming voice", - "type": "fairy", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.9" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "moonblast", - "type": "fairy", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.9" - } - ], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "clefairy candy", - "next-evolution": [{ - "num": "036", - "name": "clefable", - "candy-cost": "50" - }], - "prev-evolution": [{ - "num": "173", - "name": "cleffa", - "candy-cost": "25" - }] - } - }, - { - "num": "036", - "name": "clefable", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Clefable moves by skipping lightly as if it were flying using its wings. Its bouncy step even lets it walk on water. It is known to take strolls on lakes on quiet, moonlit nights.", - "img": "https://www.serebii.net/pokemongo/pokemon/036.png", - "size": { - "height": "1.30 m", - "weight": "40.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.012", - "stats": { - "base-attack": "178", - "base-defense": "162", - "base-stamina": "216", - "max-cp": "2437", - "max-hp": "182" - }, - "resistant": [ - "fighting", - "bug", - "dragon", - "dark" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - }, - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - }, - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "moonblast", - "type": "fairy", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "clefairy candy", - "prev-evolution": [{ - "num": "035", - "name": "clefairy", - "candy-cost": "50", - "prev-evolution": [{ - "num": "173", - "name": "cleffa", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "037", - "name": "vulpix", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "At the time of its birth, Vulpix has one white tail. The tail separates into six if this Pokémon receives plenty of love from its trainer. The six tails become magnificently curled.", - "img": "https://www.serebii.net/pokemongo/pokemon/037.png", - "size": { - "height": "0.61 m", - "weight": "9.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.3" - }, - "spawn-chance": "0.22", - "stats": { - "base-attack": "96", - "base-defense": "109", - "base-stamina": "116", - "max-cp": "883", - "max-hp": "103" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - }, - { - "name": "flame charge", - "type": "fire", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.8" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "vulpix candy", - "next-evolution": [{ - "num": "038", - "name": "ninetales", - "candy-cost": "50" - }] - } - }, - { - "num": "038", - "name": "ninetales", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Ninetales casts a sinister light from its bright red eyes to gain total control over its foe's mind. This Pokémon is said to live for one thousand years.", - "img": "https://www.serebii.net/pokemongo/pokemon/038.png", - "size": { - "height": "1.09 m", - "weight": "19.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.0077", - "stats": { - "base-attack": "169", - "base-defense": "190", - "base-stamina": "177", - "max-cp": "2279", - "max-hp": "151" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - }, - { - "name": "fire spin", - "type": "fire", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.1" - }, - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "heat wave", - "type": "fire", - "base-damage": "95", - "energy": "-100", - "move-duration-seg": "3" - }, - { - "name": "overheat", - "type": "fire", - "base-damage": "160", - "energy": "-100", - "move-duration-seg": "4" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "vulpix candy", - "prev-evolution": [{ - "num": "037", - "name": "vulpix", - "candy-cost": "50" - }] - } - }, - { - "num": "039", - "name": "jigglypuff", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Jigglypuff's vocal cords can freely adjust the wavelength of its voice. This Pokémon uses this ability to sing at precisely the right wavelength to make its foes most drowsy.", - "img": "https://www.serebii.net/pokemongo/pokemon/039.png", - "size": { - "height": "0.51 m", - "weight": "5.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.39", - "stats": { - "base-attack": "80", - "base-defense": "41", - "base-stamina": "251", - "max-cp": "724", - "max-hp": "210" - }, - "resistant": [ - "bug", - "ghost", - "dragon", - "dark" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "disarming voice", - "type": "fairy", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.9" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "gyro ball", - "type": "steel", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "play rough", - "type": "fairy", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "jigglypuff candy", - "next-evolution": [{ - "num": "040", - "name": "wigglytuff", - "candy-cost": "50" - }], - "prev-evolution": [{ - "num": "174", - "name": "igglybuff", - "candy-cost": "25" - }] - } - }, - { - "num": "040", - "name": "wigglytuff", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Wigglytuff has large, saucerlike eyes. The surfaces of its eyes are always covered with a thin layer of tears. If any dust gets in this Pokémon's eyes, it is quickly washed away.", - "img": "https://www.serebii.net/pokemongo/pokemon/040.png", - "size": { - "height": "0.99 m", - "weight": "12.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.018", - "stats": { - "base-attack": "156", - "base-defense": "90", - "base-stamina": "295", - "max-cp": "1926", - "max-hp": "244" - }, - "resistant": [ - "bug", - "ghost", - "dragon", - "dark" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "play rough", - "type": "fairy", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "jigglypuff candy", - "prev-evolution": [{ - "num": "039", - "name": "jigglypuff", - "candy-cost": "50", - "prev-evolution": [{ - "num": "174", - "name": "igglybuff", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "041", - "name": "zubat", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Zubat remains quietly unmoving in a dark spot during the bright daylight hours. It does so because prolonged exposure to the sun causes its body to become slightly burned.", - "img": "https://www.serebii.net/pokemongo/pokemon/041.png", - "size": { - "height": "0.79 m", - "weight": "7.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison", - "flying" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": "6.52", - "stats": { - "base-attack": "83", - "base-defense": "73", - "base-stamina": "120", - "max-cp": "667", - "max-hp": "106" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "electric", - "ice", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "poison fang", - "type": "poison", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "air cutter", - "type": "flying", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "swift", - "type": "normal", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.8" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "zubat candy", - "next-evolution": [{ - "num": "042", - "name": "golbat", - "candy-cost": "50", - "next-evolution": [{ - "num": "169", - "name": "crobat", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "042", - "name": "golbat", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Golbat loves to drink the blood of living things. It is particularly active in the pitch black of night. This Pokémon flits around in the night skies, seeking fresh blood.", - "img": "https://www.serebii.net/pokemongo/pokemon/042.png", - "size": { - "height": "1.60 m", - "weight": "55.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.42", - "stats": { - "base-attack": "161", - "base-defense": "150", - "base-stamina": "181", - "max-cp": "1976", - "max-hp": "154" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "electric", - "ice", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "wing attack", - "type": "flying", - "base-damage": "8", - "energy": "9", - "move-duration-seg": "0.8" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "poison fang", - "type": "poison", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "air cutter", - "type": "flying", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "ominous wind", - "type": "ghost", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "zubat candy", - "next-evolution": [{ - "num": "169", - "name": "crobat" - }], - "prev-evolution": [{ - "num": "041", - "name": "zubat", - "candy-cost": "25" - }] - } - }, - { - "num": "043", - "name": "oddish", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "During the daytime, Oddish buries itself in soil to absorb nutrients from the ground using its entire body. The more fertile the soil, the glossier its leaves become.", - "img": "https://www.serebii.net/pokemongo/pokemon/043.png", - "size": { - "height": "0.51 m", - "weight": "5.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.6" - }, - "spawn-chance": "1.02", - "stats": { - "base-attack": "131", - "base-defense": "112", - "base-stamina": "128", - "max-cp": "1228", - "max-hp": "113" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "seed bomb", - "type": "grass", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "moonblast", - "type": "fairy", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "oddish candy", - "next-evolution": [{ - "num": "044", - "name": "gloom", - "candy-cost": "25", - "next-evolution": [ - { - "num": "045", - "name": "vileplume", - "candy-cost": "100" - }, - { - "num": "182", - "name": "bellossom", - "candy-cost": "100", - "evolution-item": { - "name": "sun stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sun-stone.png" - } - } - ] - }] - } - }, - { - "num": "044", - "name": "gloom", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Gloom releases a foul fragrance from the pistil of its flower. When faced with danger, the stench worsens. If this Pokémon is feeling calm and secure, it does not release its usual stinky aroma.", - "img": "https://www.serebii.net/pokemongo/pokemon/044.png", - "size": { - "height": "0.79 m", - "weight": "8.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.3" - }, - "spawn-chance": "0.064", - "stats": { - "base-attack": "153", - "base-defense": "136", - "base-stamina": "155", - "max-cp": "1681", - "max-hp": "134" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "petal blizzard", - "type": "grass", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "2.6" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "moonblast", - "type": "fairy", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "oddish candy", - "next-evolution": [ - { - "num": "045", - "name": "vileplume", - "candy-cost": "100" - }, - { - "num": "182", - "name": "bellossom", - "candy-cost": "100", - "evolution-item": { - "name": "sun stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sun-stone.png" - } - } - ], - "prev-evolution": [{ - "num": "043", - "name": "oddish", - "candy-cost": "25" - }] - } - }, - { - "num": "045", - "name": "vileplume", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Vileplume's toxic pollen triggers atrocious allergy attacks. That's why it is advisable never to approach any attractive flowers in a jungle, however pretty they may be.", - "img": "https://www.serebii.net/pokemongo/pokemon/045.png", - "size": { - "height": "1.19 m", - "weight": "18.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.15" - }, - "spawn-chance": "0.0097", - "stats": { - "base-attack": "202", - "base-defense": "167", - "base-stamina": "181", - "max-cp": "2559", - "max-hp": "154" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "petal blizzard", - "type": "grass", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "2.6" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "moonblast", - "type": "fairy", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "oddish candy", - "prev-evolution": [{ - "num": "044", - "name": "gloom", - "candy-cost": "100", - "prev-evolution": [{ - "num": "043", - "name": "oddish", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "046", - "name": "paras", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Paras has parasitic mushrooms growing on its back called tochukaso. They grow large by drawing nutrients from this Bug Pokémon host. They are highly valued as a medicine for extending life.", - "img": "https://www.serebii.net/pokemongo/pokemon/046.png", - "size": { - "height": "0.30 m", - "weight": "5.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "grass" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.4" - }, - "spawn-chance": "2.36", - "stats": { - "base-attack": "121", - "base-defense": "99", - "base-stamina": "111", - "max-cp": "1018", - "max-hp": "99" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying", - "bug", - "rock" - ], - "quick-move": [ - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "cross poison", - "type": "poison", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.5" - }, - { - "name": "x scissor", - "type": "water", - "base-damage": "50", - "energy": "-100", - "move-duration-seg": "4.7" - }, - { - "name": "seed bomb", - "type": "grass", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.1" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "paras candy", - "next-evolution": [{ - "num": "047", - "name": "parasect", - "candy-cost": "50" - }] - } - }, - { - "num": "047", - "name": "parasect", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Parasect is known to infest large trees en masse and drain nutrients from the lower trunk and roots. When an infested tree dies, they move onto another tree all at once.", - "img": "https://www.serebii.net/pokemongo/pokemon/047.png", - "size": { - "height": "0.99 m", - "weight": "29.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "grass" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.074", - "stats": { - "base-attack": "165", - "base-defense": "146", - "base-stamina": "155", - "max-cp": "1859", - "max-hp": "134" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying", - "bug", - "rock" - ], - "quick-move": [ - { - "name": "fury cutter", - "type": "bug", - "base-damage": "3", - "energy": "6", - "move-duration-seg": "0.4" - }, - { - "name": "struggle bug", - "type": "bug", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "cross poison", - "type": "poison", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.5" - }, - { - "name": "x scissor", - "type": "water", - "base-damage": "50", - "energy": "-100", - "move-duration-seg": "4.7" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "paras candy", - "prev-evolution": [{ - "num": "046", - "name": "paras", - "candy-cost": "50" - }] - } - }, - { - "num": "048", - "name": "venonat", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Venonat is said to have evolved with a coat of thin, stiff hair that covers its entire body for protection. It possesses large eyes that never fail to spot even miniscule prey.", - "img": "https://www.serebii.net/pokemongo/pokemon/048.png", - "size": { - "height": "0.99 m", - "weight": "30.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "poison" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "2.28", - "stats": { - "base-attack": "100", - "base-defense": "100", - "base-stamina": "155", - "max-cp": "1004", - "max-hp": "134" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "fire", - "flying", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "poison fang", - "type": "poison", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "signal beam", - "type": "bug", - "base-damage": "75", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "venonat candy", - "next-evolution": [{ - "num": "049", - "name": "venomoth", - "candy-cost": "50" - }] - } - }, - { - "num": "049", - "name": "venomoth", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Venomoth is nocturnal-it is a Pokémon that only becomes active at night. Its favorite prey are small insects that gather around streetlights, attracted by the light in the darkness.", - "img": "https://www.serebii.net/pokemongo/pokemon/049.png", - "size": { - "height": "1.50 m", - "weight": "12.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.072", - "stats": { - "base-attack": "179", - "base-defense": "143", - "base-stamina": "172", - "max-cp": "2082", - "max-hp": "147" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "fire", - "flying", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - }, - { - "name": "infestation", - "type": "bug", - "base-damage": "10", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "bug buzz", - "type": "bug", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.7" - }, - { - "name": "silver wind", - "type": "bug", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.7" - }, - { - "name": "poison fang", - "type": "poison", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "venonat candy", - "prev-evolution": [{ - "num": "048", - "name": "venonat", - "candy-cost": "50" - }] - } - }, - { - "num": "050", - "name": "diglett", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Diglett are raised in most farms. The reason is simple-wherever this Pokémon burrows, the soil is left perfectly tilled for planting crops. This soil is made ideal for growing delicious vegetables.", - "img": "https://www.serebii.net/pokemongo/pokemon/050.png", - "size": { - "height": "0.20 m", - "weight": "0.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.4", - "stats": { - "base-attack": "109", - "base-defense": "78", - "base-stamina": "67", - "max-cp": "676", - "max-hp": "64" - }, - "resistant": [ - "electric", - "poison", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ice" - ], - "quick-move": [ - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "mud bomb", - "type": "ground", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "rock tomb", - "type": "rock", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "diglett candy", - "next-evolution": [{ - "num": "051", - "name": "dugtrio", - "candy-cost": "50" - }] - } - }, - { - "num": "051", - "name": "dugtrio", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Dugtrio are actually triplets that emerged from one body. As a result, each triplet thinks exactly like the other two triplets. They work cooperatively to burrow endlessly.", - "img": "https://www.serebii.net/pokemongo/pokemon/051.png", - "size": { - "height": "0.71 m", - "weight": "33.3 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.014", - "stats": { - "base-attack": "167", - "base-defense": "134", - "base-stamina": "111", - "max-cp": "1557", - "max-hp": "99" - }, - "resistant": [ - "electric", - "poison", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ice" - ], - "quick-move": [ - { - "name": "sucker punch", - "type": "dark", - "base-damage": "7", - "energy": "8", - "move-duration-seg": "0.7" - }, - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "mud bomb", - "type": "ground", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "dugtrio", - "prev-evolution": [{ - "num": "050", - "name": "diglett", - "candy-cost": "50" - }] - } - }, - { - "num": "052", - "name": "meowth", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Meowth withdraws its sharp claws into its paws to slinkily sneak about without making any incriminating footsteps. For some reason, this Pokémon loves shiny coins that glitter with light.", - "img": "https://www.serebii.net/pokemongo/pokemon/052.png", - "size": { - "height": "0.41 m", - "weight": "4.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.86", - "stats": { - "base-attack": "92", - "base-defense": "78", - "base-stamina": "120", - "max-cp": "748", - "max-hp": "106" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "night slash", - "type": "dark", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.2" - }, - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "foul play", - "type": "dark", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "meowth candy", - "next-evolution": [{ - "num": "053", - "name": "persian", - "candy-cost": "50" - }] - } - }, - { - "num": "053", - "name": "persian", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Persian has six bold whiskers that give it a look of toughness. The whiskers sense air movements to determine what is in the Pokémon's surrounding vicinity. It becomes docile if grabbed by the whiskers.", - "img": "https://www.serebii.net/pokemongo/pokemon/053.png", - "size": { - "height": "0.99 m", - "weight": "32.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.022", - "stats": { - "base-attack": "150", - "base-defense": "136", - "base-stamina": "163", - "max-cp": "1689", - "max-hp": "140" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "power gem", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "play rough", - "type": "fairy", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "foul play", - "type": "dark", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - }, - { - "name": "night slash", - "type": "dark", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "meowth candy", - "prev-evolution": [{ - "num": "052", - "name": "meowth", - "candy-cost": "50" - }] - } - }, - { - "num": "054", - "name": "psyduck", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Psyduck uses a mysterious power. When it does so, this Pokémon generates brain waves that are supposedly only seen in sleepers. This discovery spurred controversy among scholars.", - "img": "https://www.serebii.net/pokemongo/pokemon/054.png", - "size": { - "height": "0.79 m", - "weight": "19.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "2.54", - "stats": { - "base-attack": "122", - "base-defense": "95", - "base-stamina": "137", - "max-cp": "1106", - "max-hp": "120" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "cross chop", - "type": "fight", - "base-damage": "50", - "energy": "-50", - "move-duration-seg": "1.5" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "psyduck candy", - "next-evolution": [{ - "num": "055", - "name": "golduck", - "candy-cost": "50" - }] - } - }, - { - "num": "055", - "name": "golduck", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "The webbed flippers on its forelegs and hind legs and the streamlined body of Golduck give it frightening speed. The Pokémon is definitely much faster than even the most athletic swimmer.", - "img": "https://www.serebii.net/pokemongo/pokemon/055.png", - "size": { - "height": "1.70 m", - "weight": "76.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.087", - "stats": { - "base-attack": "191", - "base-defense": "162", - "base-stamina": "190", - "max-cp": "2450", - "max-hp": "162" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "psyduck candy", - "prev-evolution": [{ - "num": "054", - "name": "psyduck", - "candy-cost": "50" - }] - } - }, - { - "num": "056", - "name": "mankey", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "When Mankey starts shaking and its nasal breathing turns rough, it's a sure sign that it is becoming angry. However, because it goes into a towering rage almost instantly, it is impossible for anyone to flee its wrath.", - "img": "https://www.serebii.net/pokemongo/pokemon/056.png", - "size": { - "height": "0.51 m", - "weight": "28.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.92", - "stats": { - "base-attack": "148", - "base-defense": "82", - "base-stamina": "120", - "max-cp": "1164", - "max-hp": "106" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "karate chop", - "type": "fight", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "cross chop", - "type": "fight", - "base-damage": "50", - "energy": "-50", - "move-duration-seg": "1.5" - }, - { - "name": "low sweep", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "mankey candy", - "next-evolution": [{ - "num": "057", - "name": "primeape", - "candy-cost": "50" - }] - } - }, - { - "num": "057", - "name": "primeape", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "When Primeape becomes furious, its blood circulation is boosted. In turn, its muscles are made even stronger. However, it also becomes much less intelligent at the same time.", - "img": "https://www.serebii.net/pokemongo/pokemon/057.png", - "size": { - "height": "0.99 m", - "weight": "32.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.031", - "stats": { - "base-attack": "207", - "base-defense": "138", - "base-stamina": "163", - "max-cp": "2288", - "max-hp": "140" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "low kick", - "type": "fight", - "base-damage": "6", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "karate chop", - "type": "fight", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "low sweep", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "night slash", - "type": "dark", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.2" - }, - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "cross chop", - "type": "fight", - "base-damage": "50", - "energy": "-50", - "move-duration-seg": "1.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "mankey candy", - "prev-evolution": [{ - "num": "056", - "name": "mankey", - "candy-cost": "50" - }] - } - }, - { - "num": "058", - "name": "growlithe", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Growlithe has a superb sense of smell. Once it smells anything, this Pokémon won't forget the scent, no matter what. It uses its advanced olfactory sense to determine the emotions of other living things.", - "img": "https://www.serebii.net/pokemongo/pokemon/058.png", - "size": { - "height": "0.71 m", - "weight": "19.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.3" - }, - "spawn-chance": "0.92", - "stats": { - "base-attack": "136", - "base-defense": "93", - "base-stamina": "146", - "max-cp": "1243", - "max-hp": "127" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "flame wheel", - "type": "fire", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "growlithe candy", - "next-evolution": [{ - "num": "059", - "name": "arcanine", - "candy-cost": "50" - }] - } - }, - { - "num": "059", - "name": "arcanine", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Arcanine is known for its high speed. It is said to be capable of running over 6,200 miles in a single day and night. The fire that blazes wildly within this Pokémon's body is its source of power.", - "img": "https://www.serebii.net/pokemongo/pokemon/059.png", - "size": { - "height": "1.91 m", - "weight": "155.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.017", - "stats": { - "base-attack": "227", - "base-defense": "166", - "base-stamina": "207", - "max-cp": "3029", - "max-hp": "175" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "fire fang", - "type": "fire", - "base-damage": "11", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "snarl", - "type": "dark", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "wild charge", - "type": "electric", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "bulldoze", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "growlithe candy", - "prev-evolution": [{ - "num": "058", - "name": "growlithe", - "candy-cost": "50" - }] - } - }, - { - "num": "060", - "name": "poliwag", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Poliwag has a very thin skin. It is possible to see the Pokémon's spiral innards right through the skin. Despite its thinness, however, the skin is also very flexible. Even sharp fangs bounce right off it.", - "img": "https://www.serebii.net/pokemongo/pokemon/060.png", - "size": { - "height": "0.61 m", - "weight": "12.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "2.19", - "stats": { - "base-attack": "101", - "base-defense": "82", - "base-stamina": "120", - "max-cp": "829", - "max-hp": "106" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "mud bomb", - "type": "ground", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "poliwag candy", - "next-evolution": [{ - "num": "061", - "name": "poliwhirl", - "candy-cost": "25", - "next-evolution": [ - { - "num": "062", - "name": "poliwrath", - "candy-cost": "100" - }, - { - "num": "186", - "name": "politoed", - "candy-cost": "100", - "evolution-item": { - "name": "kings rock", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/kings-rock.png" - } - } - ] - }] - } - }, - { - "num": "061", - "name": "poliwhirl", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "The surface of Poliwhirl's body is always wet and slick with an oily fluid. Because of this greasy covering, it can easily slip and slide out of the clutches of any enemy in battle.", - "img": "https://www.serebii.net/pokemongo/pokemon/061.png", - "size": { - "height": "0.99 m", - "weight": "20.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.13", - "stats": { - "base-attack": "130", - "base-defense": "123", - "base-stamina": "163", - "max-cp": "1419", - "max-hp": "140" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "mud bomb", - "type": "ground", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "scald", - "type": "water", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "poliwag candy", - "next-evolution": [ - { - "num": "062", - "name": "poliwrath", - "candy-cost": "100" - }, - { - "num": "186", - "name": "politoed", - "candy-cost": "100", - "evolution-item": { - "name": "kings rock", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/kings-rock.png" - } - } - ], - "prev-evolution": [{ - "num": "060", - "name": "poliwag", - "candy-cost": "25" - }] - } - }, - { - "num": "062", - "name": "poliwrath", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Poliwrath's highly developed, brawny muscles never grow fatigued, however much it exercises. It is so tirelessly strong, this Pokémon can swim back and forth across the ocean without effort.", - "img": "https://www.serebii.net/pokemongo/pokemon/062.png", - "size": { - "height": "1.30 m", - "weight": "54.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "fighting" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.011", - "stats": { - "base-attack": "182", - "base-defense": "184", - "base-stamina": "207", - "max-cp": "2586", - "max-hp": "175" - }, - "resistant": [ - "fire", - "water", - "ice", - "bug", - "rock" - ], - "weaknesses": [ - "electric", - "grass", - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "ice punch", - "type": "ice", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "dynamic punch", - "type": "fight", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "submission", - "type": "fight", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "poliwag candy", - "prev-evolution": [{ - "num": "061", - "name": "poliwhirl", - "candy-cost": "100", - "prev-evolution": [{ - "num": "060", - "name": "poliwag", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "063", - "name": "abra", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Abra sleeps for eighteen hours a day. However, it can sense the presence of foes even while it is sleeping. In such a situation, this Pokémon immediately teleports to safety.", - "img": "https://www.serebii.net/pokemongo/pokemon/063.png", - "size": { - "height": "0.89 m", - "weight": "19.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.99", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.42", - "stats": { - "base-attack": "195", - "base-defense": "82", - "base-stamina": "93", - "max-cp": "1342", - "max-hp": "85" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - }, - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - }, - { - "name": "signal beam", - "type": "bug", - "base-damage": "75", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "abra candy", - "next-evolution": [{ - "num": "064", - "name": "kadabra", - "candy-cost": "25", - "next-evolution": [{ - "num": "065", - "name": "alakazam", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "064", - "name": "kadabra", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Kadabra emits a peculiar alpha wave if it develops a headache. Only those people with a particularly strong psyche can hope to become a trainer of this Pokémon.", - "img": "https://www.serebii.net/pokemongo/pokemon/064.png", - "size": { - "height": "1.30 m", - "weight": "56.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.027", - "stats": { - "base-attack": "232", - "base-defense": "117", - "base-stamina": "120", - "max-cp": "2059", - "max-hp": "106" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "psycho cut", - "type": "psychic", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "abra candy", - "next-evolution": [{ - "num": "065", - "name": "alakazam", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "063", - "name": "abra", - "candy-cost": "25" - }] - } - }, - { - "num": "065", - "name": "alakazam", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Alakazam's brain continually grows, making its head far too heavy to support with its neck. This Pokémon holds its head up using its psychokinetic power instead.", - "img": "https://www.serebii.net/pokemongo/pokemon/065.png", - "size": { - "height": "1.50 m", - "weight": "48.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.0073", - "stats": { - "base-attack": "271", - "base-defense": "167", - "base-stamina": "146", - "max-cp": "3057", - "max-hp": "127" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "psycho cut", - "type": "psychic", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "futuresight", - "type": "psychic", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "2.7" - }, - { - "name": "focus blast", - "type": "fight", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.5" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "abra candy", - "prev-evolution": [{ - "num": "064", - "name": "kadabra", - "candy-cost": "100", - "prev-evolution": [{ - "num": "063", - "name": "abra", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "066", - "name": "machop", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Machop's muscles are special-they never get sore no matter how much they are used in exercise. This Pokémon has sufficient power to hurl a hundred adult humans.", - "img": "https://www.serebii.net/pokemongo/pokemon/066.png", - "size": { - "height": "0.79 m", - "weight": "19.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.49", - "stats": { - "base-attack": "137", - "base-defense": "82", - "base-stamina": "172", - "max-cp": "1278", - "max-hp": "147" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "karate chop", - "type": "fight", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - }, - { - "name": "low kick", - "type": "fight", - "base-damage": "6", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "low sweep", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "cross chop", - "type": "fight", - "base-damage": "50", - "energy": "-50", - "move-duration-seg": "1.5" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "machop candy", - "next-evolution": [{ - "num": "067", - "name": "machoke", - "candy-cost": "25", - "next-evolution": [{ - "num": "068", - "name": "machamp", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "067", - "name": "machoke", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Machoke's thoroughly toned muscles possess the hardness of steel. This Pokémon has so much strength, it can easily hold aloft a sumo wrestler on just one finger.", - "img": "https://www.serebii.net/pokemongo/pokemon/067.png", - "size": { - "height": "1.50 m", - "weight": "70.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.034", - "stats": { - "base-attack": "177", - "base-defense": "125", - "base-stamina": "190", - "max-cp": "2031", - "max-hp": "162" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "low kick", - "type": "fight", - "base-damage": "6", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "karate chop", - "type": "fight", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "submission", - "type": "fight", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.2" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "dynamic punch", - "type": "fight", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "cross chop", - "type": "fight", - "base-damage": "50", - "energy": "-50", - "move-duration-seg": "1.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "machop candy", - "next-evolution": [{ - "num": "068", - "name": "machamp", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "066", - "name": "machop", - "candy-cost": "25" - }] - } - }, - { - "num": "068", - "name": "machamp", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Machamp has the power to hurl anything aside. However, trying to do any work requiring care and dexterity causes its arms to get tangled. This Pokémon tends to leap into action before it thinks.", - "img": "https://www.serebii.net/pokemongo/pokemon/068.png", - "size": { - "height": "1.60 m", - "weight": "130.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.0068", - "stats": { - "base-attack": "234", - "base-defense": "159", - "base-stamina": "207", - "max-cp": "3056", - "max-hp": "175" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "bullet punch", - "type": "steel", - "base-damage": "9", - "energy": "10", - "move-duration-seg": "0.9" - }, - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "karate chop", - "type": "fight", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "heavy slam", - "type": "steel", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.1" - }, - { - "name": "dynamic punch", - "type": "fight", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "cross chop", - "type": "fight", - "base-damage": "50", - "energy": "-50", - "move-duration-seg": "1.5" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "submission", - "type": "fight", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "machop candy", - "prev-evolution": [{ - "num": "067", - "name": "machoke", - "candy-cost": "100", - "prev-evolution": [{ - "num": "066", - "name": "machop", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "069", - "name": "bellsprout", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Bellsprout's thin and flexible body lets it bend and sway to avoid any attack, however strong it may be. From its mouth, this Pokémon spits a corrosive fluid that melts even iron.", - "img": "https://www.serebii.net/pokemongo/pokemon/069.png", - "size": { - "height": "0.71 m", - "weight": "4.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "1.15", - "stats": { - "base-attack": "139", - "base-defense": "61", - "base-stamina": "137", - "max-cp": "1033", - "max-hp": "120" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "vine whip", - "type": "grass", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "power whip", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "wrap", - "type": "normal", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "bellsprout candy", - "next-evolution": [{ - "num": "070", - "name": "weepinbell", - "candy-cost": "25", - "next-evolution": [{ - "num": "071", - "name": "victreebel", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "070", - "name": "weepinbell", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Weepinbell has a large hook on its rear end. At night, the Pokémon hooks on to a tree branch and goes to sleep. If it moves around in its sleep, it may wake up to find itself on the ground.", - "img": "https://www.serebii.net/pokemongo/pokemon/070.png", - "size": { - "height": "0.99 m", - "weight": "6.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.072", - "stats": { - "base-attack": "172", - "base-defense": "92", - "base-stamina": "163", - "max-cp": "1611", - "max-hp": "140" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - }, - { - "name": "bullet seed", - "type": "grass", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "power whip", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "seed bomb", - "type": "grass", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.1" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "bellsprout candy", - "next-evolution": [{ - "num": "071", - "name": "victreebel", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "069", - "name": "bellsprout", - "candy-cost": "25" - }] - } - }, - { - "num": "071", - "name": "victreebel", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Victreebel has a long vine that extends from its head. This vine is waved and flicked about as if it were an animal to attract prey. When an unsuspecting prey draws near, this Pokémon swallows it whole.", - "img": "https://www.serebii.net/pokemongo/pokemon/071.png", - "size": { - "height": "1.70 m", - "weight": "15.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "poison" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.0059", - "stats": { - "base-attack": "207", - "base-defense": "135", - "base-stamina": "190", - "max-cp": "2431", - "max-hp": "162" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "fairy" - ], - "weaknesses": [ - "fire", - "ice", - "flying", - "psychic" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "leaf blade", - "type": "grass", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "bellsprout candy", - "prev-evolution": [{ - "num": "070", - "name": "weepinbell", - "candy-cost": "100", - "prev-evolution": [{ - "num": "069", - "name": "bellsprout", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "072", - "name": "tentacool", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Tentacool's body is largely composed of water. If it is removed from the sea, it dries up like parchment. If this Pokémon happens to become dehydrated, put it back into the sea.", - "img": "https://www.serebii.net/pokemongo/pokemon/072.png", - "size": { - "height": "0.89 m", - "weight": "45.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "poison" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.81", - "stats": { - "base-attack": "97", - "base-defense": "149", - "base-stamina": "120", - "max-cp": "1040", - "max-hp": "106" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "poison" - ], - "weaknesses": [ - "electric", - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "wrap", - "type": "normal", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "tentacool candy", - "next-evolution": [{ - "num": "073", - "name": "tentacruel", - "candy-cost": "50" - }] - } - }, - { - "num": "073", - "name": "tentacruel", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Tentacruel has large red orbs on its head. The orbs glow before lashing the vicinity with a harsh ultrasonic blast. This Pokémon's outburst creates rough waves around it.", - "img": "https://www.serebii.net/pokemongo/pokemon/073.png", - "size": { - "height": "1.60 m", - "weight": "55.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.082", - "stats": { - "base-attack": "166", - "base-defense": "209", - "base-stamina": "190", - "max-cp": "2422", - "max-hp": "162" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "poison" - ], - "weaknesses": [ - "electric", - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - }, - { - "name": "poison jab", - "type": "poison", - "base-damage": "10", - "energy": "7", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "sludge wave", - "type": "poison", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "3.2" - }, - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "tentacool candy", - "prev-evolution": [{ - "num": "072", - "name": "tentacool", - "candy-cost": "50" - }] - } - }, - { - "num": "074", - "name": "geodude", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "The longer a Geodude lives, the more its edges are chipped and worn away, making it more rounded in appearance. However, this Pokémon's heart will remain hard, craggy, and rough always.", - "img": "https://www.serebii.net/pokemongo/pokemon/074.png", - "size": { - "height": "0.41 m", - "weight": "20.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "ground" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "1.19", - "stats": { - "base-attack": "132", - "base-defense": "132", - "base-stamina": "120", - "max-cp": "1293", - "max-hp": "106" - }, - "resistant": [ - "normal", - "fire", - "electric", - "poison", - "flying" - ], - "weaknesses": [ - "water", - "grass", - "ice", - "fighting", - "ground", - "steel" - ], - "quick-move": [ - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "rock tomb", - "type": "rock", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - } - ], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "geodude candy", - "next-evolution": [{ - "num": "075", - "name": "graveler", - "candy-cost": "25", - "next-evolution": [{ - "num": "076", - "name": "golem", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "075", - "name": "graveler", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Graveler grows by feeding on rocks. Apparently, it prefers to eat rocks that are covered in moss. This Pokémon eats its way through a ton of rocks on a daily basis.", - "img": "https://www.serebii.net/pokemongo/pokemon/075.png", - "size": { - "height": "0.99 m", - "weight": "105.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "ground" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": "0.071", - "stats": { - "base-attack": "164", - "base-defense": "164", - "base-stamina": "146", - "max-cp": "1897", - "max-hp": "127" - }, - "resistant": [ - "normal", - "fire", - "electric", - "poison", - "flying" - ], - "weaknesses": [ - "water", - "grass", - "ice", - "fighting", - "ground", - "steel" - ], - "quick-move": [ - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - }, - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "rock blast", - "type": "rock", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "geodude candy", - "next-evolution": [{ - "num": "076", - "name": "golem", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "074", - "name": "geodude", - "candy-cost": "25" - }] - } - }, - { - "num": "076", - "name": "golem", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Golem live up on mountains. If there is a large earthquake, these Pokémon will come rolling down off the mountains en masse to the foothills below.", - "img": "https://www.serebii.net/pokemongo/pokemon/076.png", - "size": { - "height": "1.40 m", - "weight": "300.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "ground" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.0047", - "stats": { - "base-attack": "211", - "base-defense": "198", - "base-stamina": "190", - "max-cp": "2949", - "max-hp": "162" - }, - "resistant": [ - "normal", - "fire", - "electric", - "poison", - "flying" - ], - "weaknesses": [ - "water", - "grass", - "ice", - "fighting", - "ground", - "steel" - ], - "quick-move": [ - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - }, - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "rock blast", - "type": "rock", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "geodude candy", - "prev-evolution": [{ - "num": "075", - "name": "graveler", - "candy-cost": "100", - "prev-evolution": [{ - "num": "074", - "name": "geodude", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "077", - "name": "ponyta", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Ponyta is very weak at birth. It can barely stand up. This Pokémon becomes stronger by stumbling and falling to keep up with its parent.", - "img": "https://www.serebii.net/pokemongo/pokemon/077.png", - "size": { - "height": "0.99 m", - "weight": "30.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": "0.51", - "stats": { - "base-attack": "170", - "base-defense": "127", - "base-stamina": "137", - "max-cp": "1697", - "max-hp": "120" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "flame charge", - "type": "fire", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.8" - }, - { - "name": "flame wheel", - "type": "fire", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "stomp", - "type": "normal", - "base-damage": "55", - "energy": "-50", - "move-duration-seg": "1.7" - }, - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "ponyta candy", - "next-evolution": [{ - "num": "078", - "name": "rapidash", - "candy-cost": "50" - }] - } - }, - { - "num": "078", - "name": "rapidash", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Rapidash usually can be seen casually cantering in the fields and plains. However, when this Pokémon turns serious, its fiery manes flare and blaze as it gallops its way up to 150 mph.", - "img": "https://www.serebii.net/pokemongo/pokemon/078.png", - "size": { - "height": "1.70 m", - "weight": "95.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.15" - }, - "spawn-chance": "0.011", - "stats": { - "base-attack": "207", - "base-defense": "162", - "base-stamina": "163", - "max-cp": "2461", - "max-hp": "140" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "low kick", - "type": "fight", - "base-damage": "6", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "fire spin", - "type": "fire", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.1" - }, - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "drill run", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.8" - }, - { - "name": "heat wave", - "type": "fire", - "base-damage": "95", - "energy": "-100", - "move-duration-seg": "3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "ponyta candy", - "prev-evolution": [{ - "num": "077", - "name": "ponyta", - "candy-cost": "50" - }] - } - }, - { - "num": "079", - "name": "slowpoke", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Slowpoke uses its tail to catch prey by dipping it in water at the side of a river. However, this Pokémon often forgets what it's doing and often spends entire days just loafing at water's edge.", - "img": "https://www.serebii.net/pokemongo/pokemon/079.png", - "size": { - "height": "1.19 m", - "weight": "36.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "psychic" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "1.05", - "stats": { - "base-attack": "109", - "base-defense": "98", - "base-stamina": "207", - "max-cp": "1226", - "max-hp": "175" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "psychic" - ], - "weaknesses": [ - "electric", - "grass", - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "slowpoke candy", - "next-evolution": [ - { - "num": "080", - "name": "slowbro", - "candy-cost": "50" - }, - { - "num": "199", - "name": "slowking", - "candy-cost": "50", - "evolution-item": { - "name": "kings rock", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/kings-rock.png" - } - } - ] - } - }, - { - "num": "080", - "name": "slowbro", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Slowbro's tail has a Shellder firmly attached with a bite. As a result, the tail can't be used for fishing anymore. This causes Slowbro to grudgingly swim and catch prey instead.", - "img": "https://www.serebii.net/pokemongo/pokemon/080.png", - "size": { - "height": "1.60 m", - "weight": "78.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "psychic" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.036", - "stats": { - "base-attack": "177", - "base-defense": "180", - "base-stamina": "216", - "max-cp": "2545", - "max-hp": "182" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "psychic" - ], - "weaknesses": [ - "electric", - "grass", - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "slowpoke candy", - "prev-evolution": [{ - "num": "079", - "name": "slowpoke", - "candy-cost": "50" - }] - } - }, - { - "num": "081", - "name": "magnemite", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Magnemite attaches itself to power lines to feed on electricity. If your house has a power outage, check your circuit breakers. You may find a large number of this Pokémon clinging to the breaker box.", - "img": "https://www.serebii.net/pokemongo/pokemon/081.png", - "size": { - "height": "0.30 m", - "weight": "6.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.71", - "stats": { - "base-attack": "165", - "base-defense": "121", - "base-stamina": "93", - "max-cp": "1362", - "max-hp": "85" - }, - "resistant": [ - "normal", - "electric", - "grass", - "ice", - "poison" - ], - "weaknesses": [ - "fire", - "water", - "ground" - ], - "quick-move": [ - { - "name": "spark", - "type": "electric", - "base-damage": "6", - "energy": "9", - "move-duration-seg": "0.7" - }, - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - }, - { - "name": "magnet bomb", - "type": "steel", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "2.8" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "magnemite candy", - "next-evolution": [{ - "num": "082", - "name": "magneton", - "candy-cost": "50" - }] - } - }, - { - "num": "082", - "name": "magneton", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Magneton emits a powerful magnetic force that is fatal to mechanical devices. As a result, large cities sound sirens to warn citizens of large-scale outbreaks of this Pokémon.", - "img": "https://www.serebii.net/pokemongo/pokemon/082.png", - "size": { - "height": "0.99 m", - "weight": "60.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.023", - "stats": { - "base-attack": "223", - "base-defense": "169", - "base-stamina": "137", - "max-cp": "2485", - "max-hp": "120" - }, - "resistant": [ - "normal", - "electric", - "grass", - "ice", - "poison" - ], - "weaknesses": [ - "fire", - "water", - "ground" - ], - "quick-move": [ - { - "name": "spark", - "type": "electric", - "base-damage": "6", - "energy": "9", - "move-duration-seg": "0.7" - }, - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - }, - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "magnet bomb", - "type": "steel", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "2.8" - }, - { - "name": "flash cannon", - "type": "steel", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.7" - }, - { - "name": "zap cannon", - "type": "electric", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.7" - }, - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "magnemite candy", - "prev-evolution": [{ - "num": "081", - "name": "magnemite", - "candy-cost": "50" - }] - } - }, - { - "num": "083", - "name": "farfetch'd", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Farfetch'd is always seen with a stalk from a plant of some sort. Apparently, there are good stalks and bad stalks. This Pokémon has been known to fight with others over stalks.", - "img": "https://www.serebii.net/pokemongo/pokemon/083.png", - "size": { - "height": "0.79 m", - "weight": "15.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.3", - "common-capture-area": "early reports that this pokémon is likely to be found in: asia or hatched from an egg in that geographic area." - }, - "spawn-chance": "0.0212", - "stats": { - "base-attack": "124", - "base-defense": "115", - "base-stamina": "141", - "max-cp": "1236", - "max-hp": "123" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "fury cutter", - "type": "bug", - "base-damage": "3", - "energy": "6", - "move-duration-seg": "0.4" - }, - { - "name": "air slash", - "type": "flying", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.2" - }, - { - "name": "cut", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "air cutter", - "type": "flying", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "leaf blade", - "type": "grass", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "2.4" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "farfetch'd candy" - } - }, - { - "num": "084", - "name": "doduo", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Doduo's two heads never sleep at the same time. Its two heads take turns sleeping, so one head can always keep watch for enemies while the other one sleeps.", - "img": "https://www.serebii.net/pokemongo/pokemon/084.png", - "size": { - "height": "1.40 m", - "weight": "39.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.52", - "stats": { - "base-attack": "158", - "base-defense": "83", - "base-stamina": "111", - "max-cp": "1200", - "max-hp": "99" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "drill peck", - "type": "flying", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "brave bird", - "type": "flying", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2" - }, - { - "name": "swift", - "type": "normal", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.8" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "doduo candy", - "next-evolution": [{ - "num": "085", - "name": "dodrio", - "candy-cost": "50" - }] - } - }, - { - "num": "085", - "name": "dodrio", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Watch out if Dodrio's three heads are looking in three separate directions. It's a sure sign that it is on its guard. Don't go near this Pokémon if it's being wary-it may decide to peck you.", - "img": "https://www.serebii.net/pokemongo/pokemon/085.png", - "size": { - "height": "1.80 m", - "weight": "85.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.22", - "stats": { - "base-attack": "218", - "base-defense": "140", - "base-stamina": "155", - "max-cp": "2362", - "max-hp": "134" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - }, - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "drill peck", - "type": "flying", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "brave bird", - "type": "flying", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2" - }, - { - "name": "air cutter", - "type": "flying", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "doduo candy", - "prev-evolution": [{ - "num": "084", - "name": "doduo", - "candy-cost": "50" - }] - } - }, - { - "num": "086", - "name": "seel", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Seel hunts for prey in the frigid sea underneath sheets of ice. When it needs to breathe, it punches a hole through the ice with the sharply protruding section of its head.", - "img": "https://www.serebii.net/pokemongo/pokemon/086.png", - "size": { - "height": "1.09 m", - "weight": "90.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.28", - "stats": { - "base-attack": "85", - "base-defense": "121", - "base-stamina": "163", - "max-cp": "971", - "max-hp": "140" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "ice shard", - "type": "ice", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.2" - }, - { - "name": "lick", - "type": "ghost", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "icy wind", - "type": "ice", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "3.3" - }, - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "aurora beam", - "type": "ice", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.55" - }, - { - "name": "aqua jet", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.6" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "seel candy", - "next-evolution": [{ - "num": "087", - "name": "dewgong", - "candy-cost": "50" - }] - } - }, - { - "num": "087", - "name": "dewgong", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Dewgong loves to snooze on bitterly cold ice. The sight of this Pokémon sleeping on a glacier was mistakenly thought to be a mermaid by a mariner long ago.", - "img": "https://www.serebii.net/pokemongo/pokemon/087.png", - "size": { - "height": "1.70 m", - "weight": "120.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "ice" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.013", - "stats": { - "base-attack": "139", - "base-defense": "177", - "base-stamina": "207", - "max-cp": "1985", - "max-hp": "175" - }, - "resistant": [ - "water", - "ice" - ], - "weaknesses": [ - "electric", - "grass", - "fighting", - "rock" - ], - "quick-move": [ - { - "name": "frost breath", - "type": "ice", - "base-damage": "10", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "iron tail", - "type": "steel", - "base-damage": "15", - "energy": "7", - "move-duration-seg": "1.1" - }, - { - "name": "ice shard", - "type": "ice", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "icy wind", - "type": "ice", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "3.3" - }, - { - "name": "aqua jet", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.6" - }, - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "aurora beam", - "type": "ice", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.55" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "seel candy", - "prev-evolution": [{ - "num": "086", - "name": "seel", - "candy-cost": "50" - }] - } - }, - { - "num": "088", - "name": "grimer", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Grimer's sludgy and rubbery body can be forced through any opening, however small it may be. This Pokémon enters sewer pipes to drink filthy wastewater.", - "img": "https://www.serebii.net/pokemongo/pokemon/088.png", - "size": { - "height": "0.89 m", - "weight": "30.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.052", - "stats": { - "base-attack": "135", - "base-defense": "90", - "base-stamina": "190", - "max-cp": "1374", - "max-hp": "162" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "poison jab", - "type": "poison", - "base-damage": "10", - "energy": "7", - "move-duration-seg": "0.8" - }, - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "sludge", - "type": "poison", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "mud bomb", - "type": "ground", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "grimer candy", - "next-evolution": [{ - "num": "089", - "name": "muk", - "candy-cost": "50" - }] - } - }, - { - "num": "089", - "name": "muk", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "From Muk's body seeps a foul fluid that gives off a nose-bendingly horrible stench. Just one drop of this Pokémon's body fluid can turn a pool stagnant and rancid.", - "img": "https://www.serebii.net/pokemongo/pokemon/089.png", - "size": { - "height": "1.19 m", - "weight": "30.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.0031", - "stats": { - "base-attack": "190", - "base-defense": "172", - "base-stamina": "233", - "max-cp": "2757", - "max-hp": "195" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "poison jab", - "type": "poison", - "base-damage": "10", - "energy": "7", - "move-duration-seg": "0.8" - }, - { - "name": "infestation", - "type": "bug", - "base-damage": "10", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - }, - { - "name": "lick", - "type": "ghost", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "gunk shot", - "type": "poison", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "sludge wave", - "type": "poison", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "grimer candy", - "prev-evolution": [{ - "num": "088", - "name": "grimer", - "candy-cost": "50" - }] - } - }, - { - "num": "090", - "name": "shellder", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "At night, this Pokémon uses its broad tongue to burrow a hole in the seafloor sand and then sleep in it. While it is sleeping, Shellder closes its shell, but leaves its tongue hanging out.", - "img": "https://www.serebii.net/pokemongo/pokemon/090.png", - "size": { - "height": "0.30 m", - "weight": "4.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.52", - "stats": { - "base-attack": "116", - "base-defense": "134", - "base-stamina": "102", - "max-cp": "1080", - "max-hp": "92" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "ice shard", - "type": "ice", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.2" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "icy wind", - "type": "ice", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "3.3" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "shellder candy", - "next-evolution": [{ - "num": "091", - "name": "cloyster", - "candy-cost": "50" - }] - } - }, - { - "num": "091", - "name": "cloyster", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Cloyster is capable of swimming in the sea. It does so by swallowing water, then jetting it out toward the rear. This Pokémon shoots spikes from its shell using the same system.", - "img": "https://www.serebii.net/pokemongo/pokemon/091.png", - "size": { - "height": "1.50 m", - "weight": "132.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "ice" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.015", - "stats": { - "base-attack": "186", - "base-defense": "256", - "base-stamina": "137", - "max-cp": "2547", - "max-hp": "120" - }, - "resistant": [ - "water", - "ice" - ], - "weaknesses": [ - "electric", - "grass", - "fighting", - "rock" - ], - "quick-move": [ - { - "name": "frost breath", - "type": "ice", - "base-damage": "10", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "ice shard", - "type": "ice", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "aurora beam", - "type": "ice", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.55" - }, - { - "name": "avalanche", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "icy wind", - "type": "ice", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "3.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "shellder candy", - "prev-evolution": [{ - "num": "090", - "name": "shellder", - "candy-cost": "50" - }] - } - }, - { - "num": "092", - "name": "gastly", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Gastly is largely composed of gaseous matter. When exposed to a strong wind, the gaseous body quickly dwindles away. Groups of this Pokémon cluster under the eaves of houses to escape the ravages of wind.", - "img": "https://www.serebii.net/pokemongo/pokemon/092.png", - "size": { - "height": "1.30 m", - "weight": "0.1 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ghost", - "poison" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": "0.79", - "stats": { - "base-attack": "186", - "base-defense": "67", - "base-stamina": "102", - "max-cp": "1229", - "max-hp": "92" - }, - "resistant": [ - "normal", - "grass", - "fighting", - "poison", - "bug" - ], - "weaknesses": [ - "ground", - "psychic", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "lick", - "type": "ghost", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "astonish", - "type": "ghost", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "sucker punch", - "type": "dark", - "base-damage": "7", - "energy": "8", - "move-duration-seg": "0.7" - } - ], - "special-attack": [ - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "night shade", - "type": "ghost", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "ominous wind", - "type": "ghost", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.3" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "gastly candy", - "next-evolution": [{ - "num": "093", - "name": "haunter", - "candy-cost": "25", - "next-evolution": [{ - "num": "094", - "name": "gengar", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "093", - "name": "haunter", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Haunter is a dangerous Pokémon. If one beckons you while floating in darkness, you must never approach it. This Pokémon will try to lick you with its tongue and steal your life away.", - "img": "https://www.serebii.net/pokemongo/pokemon/093.png", - "size": { - "height": "1.60 m", - "weight": "0.1 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ghost", - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.052", - "stats": { - "base-attack": "223", - "base-defense": "107", - "base-stamina": "128", - "max-cp": "1963", - "max-hp": "113" - }, - "resistant": [ - "normal", - "grass", - "fighting", - "poison", - "bug" - ], - "weaknesses": [ - "ground", - "psychic", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "shadow claw", - "type": "ghost", - "base-damage": "9", - "energy": "6", - "move-duration-seg": "0.7" - }, - { - "name": "astonish", - "type": "ghost", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "lick", - "type": "ghost", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "shadow punch", - "type": "ghost", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "gastly candy", - "next-evolution": [{ - "num": "094", - "name": "gengar", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "092", - "name": "gastly", - "candy-cost": "25" - }] - } - }, - { - "num": "094", - "name": "gengar", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Sometimes, on a dark night, your shadow thrown by a streetlight will suddenly and startlingly overtake you. It is actually a Gengar running past you, pretending to be your shadow.", - "img": "https://www.serebii.net/pokemongo/pokemon/094.png", - "size": { - "height": "1.50 m", - "weight": "40.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ghost", - "poison" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.0067", - "stats": { - "base-attack": "261", - "base-defense": "149", - "base-stamina": "155", - "max-cp": "2878", - "max-hp": "134" - }, - "resistant": [ - "normal", - "grass", - "fighting", - "poison", - "bug" - ], - "weaknesses": [ - "ground", - "psychic", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "sucker punch", - "type": "dark", - "base-damage": "7", - "energy": "8", - "move-duration-seg": "0.7" - }, - { - "name": "hex", - "type": "ghost", - "base-damage": "10", - "energy": "15", - "move-duration-seg": "1.2" - }, - { - "name": "shadow claw", - "type": "ghost", - "base-damage": "9", - "energy": "6", - "move-duration-seg": "0.7" - } - ], - "special-attack": [ - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "focus blast", - "type": "fight", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.5" - }, - { - "name": "sludge wave", - "type": "poison", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "3.2" - }, - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "gastly candy", - "prev-evolution": [{ - "num": "093", - "name": "haunter", - "candy-cost": "100", - "prev-evolution": [{ - "num": "092", - "name": "gastly", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "095", - "name": "onix", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Onix has a magnet in its brain. It acts as a compass so that this Pokémon does not lose direction while it is tunneling. As it grows older, its body becomes increasingly rounder and smoother.", - "img": "https://www.serebii.net/pokemongo/pokemon/095.png", - "size": { - "height": "8.79 m", - "weight": "210.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "ground" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.1", - "stats": { - "base-attack": "85", - "base-defense": "232", - "base-stamina": "111", - "max-cp": "1101", - "max-hp": "99" - }, - "resistant": [ - "normal", - "fire", - "electric", - "poison", - "flying" - ], - "weaknesses": [ - "water", - "grass", - "ice", - "fighting", - "ground", - "steel" - ], - "quick-move": [ - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "sand tomb", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "4" - }, - { - "name": "heavy slam", - "type": "steel", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.1" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "iron head", - "type": "steel", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "1.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "onix candy", - "next-evolution": [{ - "num": "208", - "name": "steelix", - "candy-cost": "50", - "evolution-item": { - "name": "metal coat", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/metal-coat.png" - } - }] - } - }, - { - "num": "096", - "name": "drowzee", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "If your nose becomes itchy while you are sleeping, it's a sure sign that one of these Pokémon is standing above your pillow and trying to eat you dream through your nostrils.", - "img": "https://www.serebii.net/pokemongo/pokemon/096.png", - "size": { - "height": "0.99 m", - "weight": "32.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "3.21", - "stats": { - "base-attack": "89", - "base-defense": "136", - "base-stamina": "155", - "max-cp": "1040", - "max-hp": "134" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "drowzee candy", - "next-evolution": [{ - "num": "097", - "name": "hypno", - "candy-cost": "50" - }] - } - }, - { - "num": "097", - "name": "hypno", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Hypno holds a pendulum in its hand. The arcing movement and glitter of the pendulum lull the foe into a deep state of hypnosis. While this Pokémon searches for prey, it polishes the pendulum.", - "img": "https://www.serebii.net/pokemongo/pokemon/097.png", - "size": { - "height": "1.60 m", - "weight": "75.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.1", - "stats": { - "base-attack": "144", - "base-defense": "193", - "base-stamina": "198", - "max-cp": "2090", - "max-hp": "168" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "futuresight", - "type": "psychic", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "2.7" - }, - { - "name": "focus blast", - "type": "fight", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.5" - }, - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "drowzee candy", - "prev-evolution": [{ - "num": "096", - "name": "drowzee", - "candy-cost": "50" - }] - } - }, - { - "num": "098", - "name": "krabby", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Krabby live on beaches, burrowed inside holes dug into the sand. On sandy beaches with little in the way of food, these Pokémon can be seen squabbling with each other over territory.", - "img": "https://www.serebii.net/pokemongo/pokemon/098.png", - "size": { - "height": "0.41 m", - "weight": "6.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "2.12", - "stats": { - "base-attack": "181", - "base-defense": "124", - "base-stamina": "102", - "max-cp": "1561", - "max-hp": "92" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "vice grip", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "krabby candy", - "next-evolution": [{ - "num": "099", - "name": "kingler", - "candy-cost": "50" - }] - } - }, - { - "num": "099", - "name": "kingler", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Kingler has an enormous, oversized claw. It waves this huge claw in the air to communicate with others. However, because the claw is so heavy, the Pokémon quickly tires.", - "img": "https://www.serebii.net/pokemongo/pokemon/099.png", - "size": { - "height": "1.30 m", - "weight": "60.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.062", - "stats": { - "base-attack": "240", - "base-defense": "181", - "base-stamina": "146", - "max-cp": "2829", - "max-hp": "127" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "metal claw", - "type": "steel", - "base-damage": "8", - "energy": "7", - "move-duration-seg": "0.7" - }, - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "vice grip", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "x scissor", - "type": "water", - "base-damage": "50", - "energy": "-100", - "move-duration-seg": "4.7" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "krabby candy", - "prev-evolution": [{ - "num": "098", - "name": "krabby", - "candy-cost": "50" - }] - } - }, - { - "num": "100", - "name": "voltorb", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Voltorb was first sighted at a company that manufactures Poké Balls. The link between that sighting and the fact that this Pokémon looks very similar to a Poké Ball remains a mystery.", - "img": "https://www.serebii.net/pokemongo/pokemon/100.png", - "size": { - "height": "0.51 m", - "weight": "10.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.65", - "stats": { - "base-attack": "109", - "base-defense": "111", - "base-stamina": "120", - "max-cp": "1010", - "max-hp": "106" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "spark", - "type": "electric", - "base-damage": "6", - "energy": "9", - "move-duration-seg": "0.7" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "gyro ball", - "type": "steel", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "signal beam", - "type": "bug", - "base-damage": "75", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "voltorb candy", - "next-evolution": [{ - "num": "101", - "name": "electrode", - "candy-cost": "50" - }] - } - }, - { - "num": "101", - "name": "electrode", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Electrode eats electricity in the atmosphere. On days when lightning strikes, you can see this Pokémon exploding all over the place from eating too much electricity.", - "img": "https://www.serebii.net/pokemongo/pokemon/101.png", - "size": { - "height": "1.19 m", - "weight": "66.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.02", - "stats": { - "base-attack": "173", - "base-defense": "173", - "base-stamina": "155", - "max-cp": "2099", - "max-hp": "134" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "spark", - "type": "electric", - "base-damage": "6", - "energy": "9", - "move-duration-seg": "0.7" - }, - { - "name": "volt switch", - "type": "electric", - "base-damage": "20", - "energy": "25", - "move-duration-seg": "2.3" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "voltorb candy", - "prev-evolution": [{ - "num": "100", - "name": "voltorb", - "candy-cost": "50" - }] - } - }, - { - "num": "102", - "name": "exeggcute", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "This Pokémon consists of six eggs that form a closely knit cluster. The six eggs attract each other and spin around. When cracks increasingly appear on the eggs, Exeggcute is close to evolution.", - "img": "https://www.serebii.net/pokemongo/pokemon/102.png", - "size": { - "height": "0.41 m", - "weight": "2.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "psychic" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.78", - "stats": { - "base-attack": "107", - "base-defense": "125", - "base-stamina": "155", - "max-cp": "1175", - "max-hp": "134" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying", - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - }, - { - "name": "bullet seed", - "type": "grass", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "seed bomb", - "type": "grass", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "exeggcute candy", - "next-evolution": [{ - "num": "103", - "name": "exeggutor", - "candy-cost": "50" - }] - } - }, - { - "num": "103", - "name": "exeggutor", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Exeggutor originally came from the tropics. Its heads steadily grow larger from exposure to strong sunlight. It is said that when the heads fall off, they group together to form Exeggcute.", - "img": "https://www.serebii.net/pokemongo/pokemon/103.png", - "size": { - "height": "2.01 m", - "weight": "120.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "psychic" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.014", - "stats": { - "base-attack": "233", - "base-defense": "149", - "base-stamina": "216", - "max-cp": "3014", - "max-hp": "182" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying", - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "bullet seed", - "type": "grass", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "extrasensory", - "type": "psychic", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "seed bomb", - "type": "grass", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "exeggcute candy", - "prev-evolution": [{ - "num": "102", - "name": "exeggcute", - "candy-cost": "50" - }] - } - }, - { - "num": "104", - "name": "cubone", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Cubone pines for the mother it will never see again. Seeing a likeness of its mother in the full moon, it cries. The stains on the skull the Pokémon wears are made by the tears it sheds.", - "img": "https://www.serebii.net/pokemongo/pokemon/104.png", - "size": { - "height": "0.41 m", - "weight": "6.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": "0.61", - "stats": { - "base-attack": "90", - "base-defense": "144", - "base-stamina": "137", - "max-cp": "1019", - "max-hp": "120" - }, - "resistant": [ - "electric", - "poison", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ice" - ], - "quick-move": [ - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "bone club", - "type": "ground", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "bulldoze", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.5" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "cubone candy", - "next-evolution": [{ - "num": "105", - "name": "marowak", - "candy-cost": "50" - }] - } - }, - { - "num": "105", - "name": "marowak", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Marowak is the evolved form of a Cubone that has overcome its sadness at the loss of its mother and grown tough. This Pokémon's tempered and hardened spirit is not easily broken.", - "img": "https://www.serebii.net/pokemongo/pokemon/105.png", - "size": { - "height": "0.99 m", - "weight": "45.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.15" - }, - "spawn-chance": "0.02", - "stats": { - "base-attack": "144", - "base-defense": "186", - "base-stamina": "155", - "max-cp": "1835", - "max-hp": "134" - }, - "resistant": [ - "electric", - "poison", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ice" - ], - "quick-move": [ - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "bone club", - "type": "ground", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "cubone candy", - "prev-evolution": [{ - "num": "104", - "name": "cubone", - "candy-cost": "50" - }] - } - }, - { - "num": "106", - "name": "hitmonlee", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Hitmonlee's legs freely contract and stretch. Using these springlike legs, it bowls over foes with devastating kicks. After battle, it rubs down its legs and loosens the muscles to overcome fatigue.", - "img": "https://www.serebii.net/pokemongo/pokemon/106.png", - "size": { - "height": "1.50 m", - "weight": "49.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.02", - "stats": { - "base-attack": "224", - "base-defense": "181", - "base-stamina": "137", - "max-cp": "2576", - "max-hp": "120" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "low kick", - "type": "fight", - "base-damage": "6", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "low sweep", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "stomp", - "type": "normal", - "base-damage": "55", - "energy": "-50", - "move-duration-seg": "1.7" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "tyrogue candy", - "prev-evolution": [{ - "num": "236", - "name": "tyrogue", - "candy-cost": "25" - }] - } - }, - { - "num": "107", - "name": "hitmonchan", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Hitmonchan is said to possess the spirit of a boxer who had been working toward a world championship. This Pokémon has an indomitable spirit and will never give up in the face of adversity.", - "img": "https://www.serebii.net/pokemongo/pokemon/107.png", - "size": { - "height": "1.40 m", - "weight": "50.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.022", - "stats": { - "base-attack": "193", - "base-defense": "197", - "base-stamina": "137", - "max-cp": "2332", - "max-hp": "120" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "bullet punch", - "type": "steel", - "base-damage": "9", - "energy": "10", - "move-duration-seg": "0.9" - }, - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "fire punch", - "type": "fire", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.2" - }, - { - "name": "thunder punch", - "type": "electric", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.8" - }, - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "ice punch", - "type": "ice", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "tyrogue candy", - "prev-evolution": [{ - "num": "236", - "name": "tyrogue", - "candy-cost": "25" - }] - } - }, - { - "num": "108", - "name": "lickitung", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Whenever Lickitung comes across something new, it will unfailingly give it a lick. It does so because it memorizes things by texture and by taste. It is somewhat put off by sour things.", - "img": "https://www.serebii.net/pokemongo/pokemon/108.png", - "size": { - "height": "1.19 m", - "weight": "65.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.011", - "stats": { - "base-attack": "108", - "base-defense": "137", - "base-stamina": "207", - "max-cp": "1411", - "max-hp": "175" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "lick", - "type": "ghost", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "stomp", - "type": "normal", - "base-damage": "55", - "energy": "-50", - "move-duration-seg": "1.7" - }, - { - "name": "power whip", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "lickitung candy" - } - }, - { - "num": "109", - "name": "koffing", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "If Koffing becomes agitated, it raises the toxicity of its internal gases and then jets them out from all over its body. This Pokémon may also overinflate its round body, then explode.", - "img": "https://www.serebii.net/pokemongo/pokemon/109.png", - "size": { - "height": "0.61 m", - "weight": "1.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.2", - "stats": { - "base-attack": "119", - "base-defense": "141", - "base-stamina": "120", - "max-cp": "1214", - "max-hp": "106" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "infestation", - "type": "bug", - "base-damage": "10", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "sludge", - "type": "poison", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "koffing candy", - "next-evolution": [{ - "num": "110", - "name": "weezing", - "candy-cost": "50" - }] - } - }, - { - "num": "110", - "name": "weezing", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Weezing loves the gases given off by rotted kitchen garbage. This Pokémon will find a dirty, unkempt house and make it its home. At night, when the people in the house are asleep, it will go through the trash.", - "img": "https://www.serebii.net/pokemongo/pokemon/110.png", - "size": { - "height": "1.19 m", - "weight": "9.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.016", - "stats": { - "base-attack": "174", - "base-defense": "197", - "base-stamina": "163", - "max-cp": "2293", - "max-hp": "140" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "infestation", - "type": "bug", - "base-damage": "10", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "koffing candy", - "prev-evolution": [{ - "num": "109", - "name": "koffing", - "candy-cost": "50" - }] - } - }, - { - "num": "111", - "name": "rhyhorn", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Rhyhorn runs in a straight line, smashing everything in its path. It is not bothered even if it rushes headlong into a block of steel. This Pokémon may feel some pain from the collision the next day, however.", - "img": "https://www.serebii.net/pokemongo/pokemon/111.png", - "size": { - "height": "0.99 m", - "weight": "115.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground", - "rock" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "0.63", - "stats": { - "base-attack": "140", - "base-defense": "127", - "base-stamina": "190", - "max-cp": "1651", - "max-hp": "162" - }, - "resistant": [ - "normal", - "fire", - "electric", - "poison", - "flying" - ], - "weaknesses": [ - "water", - "grass", - "ice", - "fighting", - "ground", - "steel" - ], - "quick-move": [ - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "bulldoze", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "horn attack", - "type": "normal", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.85" - }, - { - "name": "stomp", - "type": "normal", - "base-damage": "55", - "energy": "-50", - "move-duration-seg": "1.7" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "rhyhorn candy", - "next-evolution": [{ - "num": "112", - "name": "rhydon", - "candy-cost": "50", - "next-evolution": [{ - "num": "464", - "name": "rhyperior", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - }] - } - }, - { - "num": "112", - "name": "rhydon", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Rhydon's horn can crush even uncut diamonds. One sweeping blow of its tail can topple a building. This Pokémon's hide is extremely tough. Even direct cannon hits don't leave a scratch.", - "img": "https://www.serebii.net/pokemongo/pokemon/112.png", - "size": { - "height": "1.91 m", - "weight": "120.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground", - "rock" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.05" - }, - "spawn-chance": "0.022", - "stats": { - "base-attack": "222", - "base-defense": "171", - "base-stamina": "233", - "max-cp": "3179", - "max-hp": "195" - }, - "resistant": [ - "normal", - "fire", - "electric", - "poison", - "flying" - ], - "weaknesses": [ - "water", - "grass", - "ice", - "fighting", - "ground", - "steel" - ], - "quick-move": [ - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "megahorn", - "type": "bug", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2.2" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "rhyhorn candy", - "next-evolution": [{ - "num": "464", - "name": "rhyperior", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }], - "prev-evolution": [{ - "num": "111", - "name": "rhyhorn", - "candy-cost": "25" - }] - } - }, - { - "num": "113", - "name": "chansey", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Chansey lays nutritionally excellent eggs on an everyday basis. The eggs are so delicious, they are easily and eagerly devoured by even those people who have lost their appetite.", - "img": "https://www.serebii.net/pokemongo/pokemon/113.png", - "size": { - "height": "1.09 m", - "weight": "34.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.013", - "stats": { - "base-attack": "60", - "base-defense": "128", - "base-stamina": "487", - "max-cp": "1255", - "max-hp": "396" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "chansey candy", - "next-evolution": [{ - "num": "242", - "name": "blissey" - }], - "prev-evolution": [{ - "num": "440", - "name": "happiny", - "candy-cost": "25" - }] - } - }, - { - "num": "114", - "name": "tangela", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Tangela's vines snap off easily if they are grabbed. This happens without pain, allowing it to make a quick getaway. The lost vines are replaced by newly grown vines the very next day.", - "img": "https://www.serebii.net/pokemongo/pokemon/114.png", - "size": { - "height": "0.99 m", - "weight": "35.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.4" - }, - "spawn-chance": "0.228", - "stats": { - "base-attack": "183", - "base-defense": "169", - "base-stamina": "163", - "max-cp": "2238", - "max-hp": "140" - }, - "resistant": [ - "water", - "electric", - "grass", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying", - "bug" - ], - "quick-move": [ - { - "name": "vine whip", - "type": "grass", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "infestation", - "type": "bug", - "base-damage": "10", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "grass knot", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "power whip", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "tangela candy" - } - }, - { - "num": "115", - "name": "kangaskhan", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "If you come across a young Kangaskhan playing by itself, you must never disturb it or attempt to catch it. The baby Pokémon's parent is sure to be in the area, and it will become violently enraged at you.", - "img": "https://www.serebii.net/pokemongo/pokemon/115.png", - "size": { - "height": "2.21 m", - "weight": "80.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2", - "common-capture-area": "early reports that this pokémon is likely to be found in: australia, new zealand or hatched from an egg in that geographic area." - }, - "spawn-chance": "0.0086", - "stats": { - "base-attack": "181", - "base-defense": "165", - "base-stamina": "233", - "max-cp": "2586", - "max-hp": "195" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "mud slap", - "type": "ground", - "base-damage": "15", - "energy": "12", - "move-duration-seg": "1.4" - }, - { - "name": "low kick", - "type": "fight", - "base-damage": "6", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "outrage", - "type": "dragon", - "base-damage": "110", - "energy": "-50", - "move-duration-seg": "3.9" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "stomp", - "type": "normal", - "base-damage": "55", - "energy": "-50", - "move-duration-seg": "1.7" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "kangaskhan candy" - } - }, - { - "num": "116", - "name": "horsea", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Horsea eats small insects and moss off of rocks. If the ocean current turns fast, this Pokémon anchors itself by wrapping its tail around rocks or coral to prevent being washed away.", - "img": "https://www.serebii.net/pokemongo/pokemon/116.png", - "size": { - "height": "0.41 m", - "weight": "8.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": "1.13", - "stats": { - "base-attack": "129", - "base-defense": "103", - "base-stamina": "102", - "max-cp": "1056", - "max-hp": "92" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "dragon pulse", - "type": "dragon", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.6" - }, - { - "name": "flash cannon", - "type": "steel", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.7" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "horsea candy", - "next-evolution": [{ - "num": "117", - "name": "seadra", - "candy-cost": "50", - "next-evolution": [{ - "num": "230", - "name": "kingdra", - "candy-cost": "100", - "evolution-item": { - "name": "dragon scale", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/dragon-scale.png" - } - }] - }] - } - }, - { - "num": "117", - "name": "seadra", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Seadra sleeps after wriggling itself between the branches of coral. Those trying to harvest coral are occasionally stung by this Pokémon's poison barbs if they fail to notice it.", - "img": "https://www.serebii.net/pokemongo/pokemon/117.png", - "size": { - "height": "1.19 m", - "weight": "25.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.034", - "stats": { - "base-attack": "187", - "base-defense": "156", - "base-stamina": "146", - "max-cp": "2093", - "max-hp": "127" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "dragon breath", - "type": "dragon", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "dragon pulse", - "type": "dragon", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.6" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "aurora beam", - "type": "ice", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.55" - }, - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "horsea candy", - "next-evolution": [{ - "num": "230", - "name": "kingdra", - "candy-cost": "100", - "evolution-item": { - "name": "dragon scale", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/dragon-scale.png" - } - }], - "prev-evolution": [{ - "num": "116", - "name": "horsea", - "candy-cost": "25" - }] - } - }, - { - "num": "118", - "name": "goldeen", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Goldeen is a very beautiful Pokémon with fins that billow elegantly in water. However, don't let your guard down around this Pokémon-it could ram you powerfully with its horn.", - "img": "https://www.serebii.net/pokemongo/pokemon/118.png", - "size": { - "height": "0.61 m", - "weight": "15.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "2.18", - "stats": { - "base-attack": "123", - "base-defense": "110", - "base-stamina": "128", - "max-cp": "1152", - "max-hp": "113" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "horn attack", - "type": "normal", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.85" - }, - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "goldeen candy", - "next-evolution": [{ - "num": "119", - "name": "seaking", - "candy-cost": "50" - }] - } - }, - { - "num": "119", - "name": "seaking", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "In the autumn, Seaking males can be seen performing courtship dances in riverbeds to woo females. During this season, this Pokémon's body coloration is at its most beautiful.", - "img": "https://www.serebii.net/pokemongo/pokemon/119.png", - "size": { - "height": "1.30 m", - "weight": "39.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.08", - "stats": { - "base-attack": "175", - "base-defense": "147", - "base-stamina": "190", - "max-cp": "2162", - "max-hp": "162" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "poison jab", - "type": "poison", - "base-damage": "10", - "energy": "7", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "megahorn", - "type": "bug", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2.2" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "icy wind", - "type": "ice", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "3.3" - }, - { - "name": "drill run", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "goldeen candy", - "prev-evolution": [{ - "num": "118", - "name": "goldeen", - "candy-cost": "50" - }] - } - }, - { - "num": "120", - "name": "staryu", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Staryu's center section has an organ called the core that shines bright red. If you go to a beach toward the end of summer, the glowing cores of these Pokémon look like the stars in the sky.", - "img": "https://www.serebii.net/pokemongo/pokemon/120.png", - "size": { - "height": "0.79 m", - "weight": "34.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": "1.95", - "stats": { - "base-attack": "137", - "base-defense": "112", - "base-stamina": "102", - "max-cp": "1157", - "max-hp": "92" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "swift", - "type": "normal", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.8" - }, - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "power gem", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "staryu candy", - "next-evolution": [{ - "num": "121", - "name": "starmie", - "candy-cost": "50" - }] - } - }, - { - "num": "121", - "name": "starmie", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Starmie's center section-the core-glows brightly in seven colors. Because of its luminous nature, this Pokémon has been given the nickname the gem of the sea.", - "img": "https://www.serebii.net/pokemongo/pokemon/121.png", - "size": { - "height": "1.09 m", - "weight": "80.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "psychic" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.034", - "stats": { - "base-attack": "210", - "base-defense": "184", - "base-stamina": "155", - "max-cp": "2584", - "max-hp": "134" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "psychic" - ], - "weaknesses": [ - "electric", - "grass", - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "hidden power", - "type": "normal", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "power gem", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "staryu candy", - "prev-evolution": [{ - "num": "120", - "name": "staryu", - "candy-cost": "50" - }] - } - }, - { - "num": "122", - "name": "mr. mime", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Mr. Mime is a master of pantomime. Its gestures and motions convince watchers that something unseeable actually exists. Once the watchers are convinced, the unseeable thing exists as if it were real.", - "img": "https://www.serebii.net/pokemongo/pokemon/122.png", - "size": { - "height": "1.30 m", - "weight": "54.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.3", - "common-capture-area": "early reports that this pokémon is likely to be found in: western europe or hatched from an egg in that geographic area." - }, - "spawn-chance": "0.0031", - "stats": { - "base-attack": "192", - "base-defense": "205", - "base-stamina": "120", - "max-cp": "2228", - "max-hp": "106" - }, - "resistant": [ - "fighting", - "psychic", - "dragon" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "mr. mime candy", - "prev-evolution": [{ - "num": "439", - "name": "mime jr", - "candy-cost": "50" - }] - } - }, - { - "num": "123", - "name": "scyther", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Scyther is blindingly fast. Its blazing speed enhances the effectiveness of the twin scythes on its forearms. This Pokémon's scythes are so effective, they can slice through thick logs in one wicked stroke.", - "img": "https://www.serebii.net/pokemongo/pokemon/123.png", - "size": { - "height": "1.50 m", - "weight": "56.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "flying" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.3" - }, - "spawn-chance": "0.14", - "stats": { - "base-attack": "218", - "base-defense": "170", - "base-stamina": "172", - "max-cp": "2706", - "max-hp": "147" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "bug" - ], - "weaknesses": [ - "fire", - "electric", - "ice", - "flying", - "rock" - ], - "quick-move": [ - { - "name": "fury cutter", - "type": "bug", - "base-damage": "3", - "energy": "6", - "move-duration-seg": "0.4" - }, - { - "name": "air slash", - "type": "flying", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.2" - }, - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "night slash", - "type": "dark", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.2" - }, - { - "name": "x scissor", - "type": "water", - "base-damage": "50", - "energy": "-100", - "move-duration-seg": "4.7" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "bug buzz", - "type": "bug", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.7" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "scyther candy", - "next-evolution": [{ - "num": "212", - "name": "scizor", - "candy-cost": "50", - "evolution-item": { - "name": "metal coat", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/metal-coat.png" - } - }] - } - }, - { - "num": "124", - "name": "jynx", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Jynx walks rhythmically, swaying and shaking its hips as if it were dancing. Its motions are so bouncingly alluring, people seeing it are compelled to shake their hips without giving any thought to what they are doing.", - "img": "https://www.serebii.net/pokemongo/pokemon/124.png", - "size": { - "height": "1.40 m", - "weight": "40.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ice", - "psychic" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.3" - }, - "spawn-chance": "0.35", - "stats": { - "base-attack": "223", - "base-defense": "151", - "base-stamina": "163", - "max-cp": "2555", - "max-hp": "140" - }, - "resistant": [ - "ice", - "psychic" - ], - "weaknesses": [ - "fire", - "bug", - "rock", - "ghost", - "dark", - "steel" - ], - "quick-move": [ - { - "name": "frost breath", - "type": "ice", - "base-damage": "10", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - }, - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "draining kiss", - "type": "fairy", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - }, - { - "name": "avalanche", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "ice punch", - "type": "ice", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "jynx candy", - "prev-evolution": [{ - "num": "238", - "name": "smoochum", - "candy-cost": "25" - }] - } - }, - { - "num": "125", - "name": "electabuzz", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "When a storm arrives, gangs of this Pokémon compete with each other to scale heights that are likely to be stricken by lightning bolts. Some towns use Electabuzz in place of lightning rods.", - "img": "https://www.serebii.net/pokemongo/pokemon/125.png", - "size": { - "height": "1.09 m", - "weight": "30.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.074", - "stats": { - "base-attack": "198", - "base-defense": "158", - "base-stamina": "163", - "max-cp": "2334", - "max-hp": "140" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "low kick", - "type": "fight", - "base-damage": "6", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "thunder punch", - "type": "electric", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.8" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "electabuzz candy", - "next-evolution": [{ - "num": "466", - "name": "electivire", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }], - "prev-evolution": [{ - "num": "239", - "name": "elekid", - "candy-cost": "25" - }] - } - }, - { - "num": "126", - "name": "magmar", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "In battle, Magmar blows out intensely hot flames from all over its body to intimidate its opponent. This Pokémon's fiery bursts create heat waves that ignite grass and trees in its surroundings.", - "img": "https://www.serebii.net/pokemongo/pokemon/126.png", - "size": { - "height": "1.30 m", - "weight": "44.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.1", - "stats": { - "base-attack": "206", - "base-defense": "154", - "base-stamina": "163", - "max-cp": "2394", - "max-hp": "140" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "karate chop", - "type": "fight", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "fire punch", - "type": "fire", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.2" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "magmar candy", - "next-evolution": [{ - "num": "467", - "name": "magmortar", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }], - "prev-evolution": [{ - "num": "240", - "name": "magby", - "candy-cost": "25" - }] - } - }, - { - "num": "127", - "name": "pinsir", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Pinsir is astoundingly strong. It can grip a foe weighing twice its weight in its horns and easily lift it. This Pokémon's movements turn sluggish in cold places.", - "img": "https://www.serebii.net/pokemongo/pokemon/127.png", - "size": { - "height": "1.50 m", - "weight": "55.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.3" - }, - "spawn-chance": "0.99", - "stats": { - "base-attack": "238", - "base-defense": "182", - "base-stamina": "163", - "max-cp": "2959", - "max-hp": "140" - }, - "resistant": [ - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "flying", - "rock" - ], - "quick-move": [ - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "fury cutter", - "type": "bug", - "base-damage": "3", - "energy": "6", - "move-duration-seg": "0.4" - } - ], - "special-attack": [ - { - "name": "vice grip", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "x scissor", - "type": "water", - "base-damage": "50", - "energy": "-100", - "move-duration-seg": "4.7" - }, - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "submission", - "type": "fight", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "pinsir candy" - } - }, - { - "num": "128", - "name": "tauros", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "This Pokémon is not satisfied unless it is rampaging at all times. If there is no opponent for Tauros to battle, it will charge at thick trees and knock them down to calm itself.", - "img": "https://www.serebii.net/pokemongo/pokemon/128.png", - "size": { - "height": "1.40 m", - "weight": "88.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.3", - "common-capture-area": "early reports that this pokémon is likely to be found in: north america or hatched from an egg in that geographic area." - }, - "spawn-chance": "0.12", - "stats": { - "base-attack": "198", - "base-defense": "183", - "base-stamina": "181", - "max-cp": "2620", - "max-hp": "154" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "horn attack", - "type": "normal", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.85" - }, - { - "name": "iron head", - "type": "steel", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "1.9" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "tauros candy" - } - }, - { - "num": "129", - "name": "magikarp", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Magikarp is a pathetic excuse for a Pokémon that is only capable of flopping and splashing. This behavior prompted scientists to undertake research into it.", - "img": "https://www.serebii.net/pokemongo/pokemon/129.png", - "size": { - "height": "0.89 m", - "weight": "10.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.7" - }, - "spawn-chance": "4.78", - "stats": { - "base-attack": "29", - "base-defense": "85", - "base-stamina": "85", - "max-cp": "274", - "max-hp": "79" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "splash", - "type": "water", - "base-damage": "0", - "energy": "0", - "move-duration-seg": "1.73" - }], - "special-attack": [ - { - "name": "struggle", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "2.2" - }], - "egg": "2 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "magikarp candy", - "next-evolution": [{ - "num": "130", - "name": "gyarados", - "candy-cost": "400" - }] - } - }, - { - "num": "130", - "name": "gyarados", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "When Magikarp evolves into Gyarados, its brain cells undergo a structural transformation. It is said that this transformation is to blame for this Pokémon's wildly violent nature.", - "img": "https://www.serebii.net/pokemongo/pokemon/130.png", - "size": { - "height": "6.50 m", - "weight": "235.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.0032", - "stats": { - "base-attack": "237", - "base-defense": "186", - "base-stamina": "216", - "max-cp": "3391", - "max-hp": "182" - }, - "resistant": [ - "fire", - "water", - "fighting", - "ground", - "bug" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "dragon tail", - "type": "dragon", - "base-damage": "15", - "energy": "9", - "move-duration-seg": "1.1" - }, - { - "name": "dragon breath", - "type": "dragon", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "outrage", - "type": "dragon", - "base-damage": "110", - "energy": "-50", - "move-duration-seg": "3.9" - }, - { - "name": "dragon pulse", - "type": "dragon", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.6" - }, - { - "name": "twister", - "type": "dragon", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "magikarp candy", - "prev-evolution": [{ - "num": "129", - "name": "magikarp", - "candy-cost": "400" - }] - } - }, - { - "num": "131", - "name": "lapras", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "People have driven Lapras almost to the point of extinction. In the evenings, this Pokémon is said to sing plaintively as it seeks what few others of its kind still remain.", - "img": "https://www.serebii.net/pokemongo/pokemon/131.png", - "size": { - "height": "2.49 m", - "weight": "220.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "ice" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.05" - }, - "spawn-chance": "0.006", - "stats": { - "base-attack": "165", - "base-defense": "174", - "base-stamina": "277", - "max-cp": "2641", - "max-hp": "230" - }, - "resistant": [ - "water", - "ice" - ], - "weaknesses": [ - "electric", - "grass", - "fighting", - "rock" - ], - "quick-move": [ - { - "name": "frost breath", - "type": "ice", - "base-damage": "10", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "ice shard", - "type": "ice", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "dragon pulse", - "type": "dragon", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.6" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "lapras candy" - } - }, - { - "num": "132", - "name": "ditto", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Ditto rearranges its cell structure to transform itself into other shapes. However, if it tries to transform itself into something by relying on its memory, this Pokémon manages to get details wrong.", - "img": "https://www.serebii.net/pokemongo/pokemon/132.png", - "size": { - "height": "0.30 m", - "weight": "4.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "91", - "base-defense": "91", - "base-stamina": "134", - "max-cp": "832", - "max-hp": "117" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }], - "special-attack": [ - { - "name": "struggle", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "2.2" - }], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "ditto candy" - } - }, - { - "num": "133", - "name": "eevee", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Eevee has an unstable genetic makeup that suddenly mutates due to the environment in which it lives. Radiation from various stones causes this Pokémon to evolve.", - "img": "https://www.serebii.net/pokemongo/pokemon/133.png", - "size": { - "height": "0.30 m", - "weight": "6.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": "2.75", - "stats": { - "base-attack": "104", - "base-defense": "114", - "base-stamina": "146", - "max-cp": "1071", - "max-hp": "127" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "swift", - "type": "normal", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.8" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "eevee candy", - "next-evolution": [ - { - "num": "134", - "name": "vaporeon", - "candy-cost": "25" - }, - { - "num": "135", - "name": "jolteon", - "candy-cost": "25" - }, - { - "num": "136", - "name": "flareon", - "candy-cost": "25" - }, - { - "num": "196", - "name": "espeon", - "candy-cost": "25" - }, - { - "num": "197", - "name": "umbreon", - "candy-cost": "25" - }, - { - "num": "470", - "name": "leafeon", - "candy-cost": "25" - }, - { - "num": "471", - "name": "glaceon", - "candy-cost": "25" - } - ] - } - }, - { - "num": "134", - "name": "vaporeon", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Vaporeon underwent a spontaneous mutation and grew fins and gills that allow it to live underwater. This Pokémon has the ability to freely control water.", - "img": "https://www.serebii.net/pokemongo/pokemon/134.png", - "size": { - "height": "0.99 m", - "weight": "29.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.014", - "stats": { - "base-attack": "205", - "base-defense": "161", - "base-stamina": "277", - "max-cp": "3114", - "max-hp": "230" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }], - "special-attack": [ - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "eevee candy", - "prev-evolution": [{ - "num": "133", - "name": "eevee", - "candy-cost": "25" - }] - } - }, - { - "num": "135", - "name": "jolteon", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Jolteon's cells generate a low level of electricity. This power is amplified by the static electricity of its fur, enabling the Pokémon to drop thunderbolts. The bristling fur is made of electrically charged needles.", - "img": "https://www.serebii.net/pokemongo/pokemon/135.png", - "size": { - "height": "0.79 m", - "weight": "24.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.012", - "stats": { - "base-attack": "232", - "base-defense": "182", - "base-stamina": "163", - "max-cp": "2888", - "max-hp": "140" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "volt switch", - "type": "electric", - "base-damage": "20", - "energy": "25", - "move-duration-seg": "2.3" - } - ], - "special-attack": [ - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "eevee candy", - "prev-evolution": [{ - "num": "133", - "name": "eevee", - "candy-cost": "25" - }] - } - }, - { - "num": "136", - "name": "flareon", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Flareon's fluffy fur has a functional purpose-it releases heat into the air so that its body does not get excessively hot. This Pokémon's body temperature can rise to a maximum of 1,650 degrees Fahrenheit.", - "img": "https://www.serebii.net/pokemongo/pokemon/136.png", - "size": { - "height": "0.89 m", - "weight": "25.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.125" - }, - "spawn-chance": "0.017", - "stats": { - "base-attack": "246", - "base-defense": "179", - "base-stamina": "163", - "max-cp": "3029", - "max-hp": "140" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "fire spin", - "type": "fire", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - }, - { - "name": "overheat", - "type": "fire", - "base-damage": "160", - "energy": "-100", - "move-duration-seg": "4" - }, - { - "name": "heat wave", - "type": "fire", - "base-damage": "95", - "energy": "-100", - "move-duration-seg": "3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "eevee candy", - "prev-evolution": [{ - "num": "133", - "name": "eevee", - "candy-cost": "25" - }] - } - }, - { - "num": "137", - "name": "porygon", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Porygon is capable of reverting itself entirely back to program data and entering cyberspace. This Pokémon is copy-protected so it cannot be duplicated by copying.", - "img": "https://www.serebii.net/pokemongo/pokemon/137.png", - "size": { - "height": "0.79 m", - "weight": "36.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.4" - }, - "spawn-chance": "0.012", - "stats": { - "base-attack": "153", - "base-defense": "136", - "base-stamina": "163", - "max-cp": "1720", - "max-hp": "140" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - }, - { - "name": "hidden power", - "type": "normal", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "zap cannon", - "type": "electric", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.7" - }, - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - }, - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "signal beam", - "type": "bug", - "base-damage": "75", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "10 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "porygon candy", - "next-evolution": [{ - "num": "233", - "name": "porygon2", - "candy-cost": "25", - "evolution-item": { - "name": "up grade", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/up-grade.png" - }, - "next-evolution": [{ - "num": "474", - "name": "porygon-z", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - }] - } - }, - { - "num": "138", - "name": "omanyte", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Omanyte is one of the ancient and long-since-extinct Pokémon that have been regenerated from fossils by people. If attacked by an enemy, it withdraws itself inside its hard shell.", - "img": "https://www.serebii.net/pokemongo/pokemon/138.png", - "size": { - "height": "0.41 m", - "weight": "7.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "water" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.4" - }, - "spawn-chance": "0.14", - "stats": { - "base-attack": "155", - "base-defense": "153", - "base-stamina": "111", - "max-cp": "1544", - "max-hp": "99" - }, - "resistant": [ - "normal", - "fire", - "ice", - "poison", - "flying" - ], - "weaknesses": [ - "electric", - "grass", - "fighting", - "ground" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - }, - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "rock blast", - "type": "rock", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "rock tomb", - "type": "rock", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "brine", - "type": "water", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "omanyte candy", - "next-evolution": [{ - "num": "139", - "name": "omastar", - "candy-cost": "50" - }] - } - }, - { - "num": "139", - "name": "omastar", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Omastar uses its tentacles to capture its prey. It is believed to have become extinct because its shell grew too large and heavy, causing its movements to become too slow and ponderous.", - "img": "https://www.serebii.net/pokemongo/pokemon/139.png", - "size": { - "height": "0.99 m", - "weight": "35.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "water" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.15" - }, - "spawn-chance": "0.0061", - "stats": { - "base-attack": "207", - "base-defense": "201", - "base-stamina": "172", - "max-cp": "2786", - "max-hp": "147" - }, - "resistant": [ - "normal", - "fire", - "ice", - "poison", - "flying" - ], - "weaknesses": [ - "electric", - "grass", - "fighting", - "ground" - ], - "quick-move": [ - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - }, - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "rock blast", - "type": "rock", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "omanyte candy", - "prev-evolution": [{ - "num": "138", - "name": "omanyte", - "candy-cost": "50" - }] - } - }, - { - "num": "140", - "name": "kabuto", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Kabuto is a Pokémon that has been regenerated from a fossil. However, in extremely rare cases, living examples have been discovered. The Pokémon has not changed at all for 300 million years.", - "img": "https://www.serebii.net/pokemongo/pokemon/140.png", - "size": { - "height": "0.51 m", - "weight": "11.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "water" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.4" - }, - "spawn-chance": "0.1", - "stats": { - "base-attack": "148", - "base-defense": "140", - "base-stamina": "102", - "max-cp": "1370", - "max-hp": "92" - }, - "resistant": [ - "normal", - "fire", - "ice", - "poison", - "flying" - ], - "weaknesses": [ - "electric", - "grass", - "fighting", - "ground" - ], - "quick-move": [ - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - }, - { - "name": "aqua jet", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.6" - }, - { - "name": "rock tomb", - "type": "rock", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "kabuto candy", - "next-evolution": [{ - "num": "141", - "name": "kabutops", - "candy-cost": "50" - }] - } - }, - { - "num": "141", - "name": "kabutops", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Kabutops swam underwater to hunt for its prey in ancient times. The Pokémon was apparently evolving from being a water-dweller to living on land as evident from the beginnings of change in its gills and legs.", - "img": "https://www.serebii.net/pokemongo/pokemon/141.png", - "size": { - "height": "1.30 m", - "weight": "40.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "water" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.15" - }, - "spawn-chance": "0.0032", - "stats": { - "base-attack": "220", - "base-defense": "186", - "base-stamina": "155", - "max-cp": "2713", - "max-hp": "134" - }, - "resistant": [ - "normal", - "fire", - "ice", - "poison", - "flying" - ], - "weaknesses": [ - "electric", - "grass", - "fighting", - "ground" - ], - "quick-move": [ - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - }, - { - "name": "fury cutter", - "type": "bug", - "base-damage": "3", - "energy": "6", - "move-duration-seg": "0.4" - } - ], - "special-attack": [ - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "kabuto candy", - "prev-evolution": [{ - "num": "140", - "name": "kabuto", - "candy-cost": "50" - }] - } - }, - { - "num": "142", - "name": "aerodactyl", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Aerodactyl is a Pokémon from the age of dinosaurs. It was regenerated from genetic material extracted from amber. It is imagined to have been the king of the skies in ancient times.", - "img": "https://www.serebii.net/pokemongo/pokemon/142.png", - "size": { - "height": "1.80 m", - "weight": "59.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "flying" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": "0.018", - "stats": { - "base-attack": "221", - "base-defense": "159", - "base-stamina": "190", - "max-cp": "2783", - "max-hp": "162" - }, - "resistant": [ - "normal", - "fire", - "poison", - "flying", - "bug" - ], - "weaknesses": [ - "water", - "electric", - "ice", - "rock", - "steel" - ], - "quick-move": [ - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - }, - { - "name": "iron head", - "type": "steel", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "1.9" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "aerodactyl candy" - } - }, - { - "num": "143", - "name": "snorlax", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Snorlax's typical day consists of nothing more than eating and sleeping. It is such a docile Pokémon that there are children who use its expansive belly as a place to play.", - "img": "https://www.serebii.net/pokemongo/pokemon/143.png", - "size": { - "height": "2.11 m", - "weight": "460.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.05" - }, - "spawn-chance": "0.016", - "stats": { - "base-attack": "190", - "base-defense": "169", - "base-stamina": "330", - "max-cp": "3225", - "max-hp": "272" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - }, - { - "name": "lick", - "type": "ghost", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "heavy slam", - "type": "steel", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.1" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "snorlax candy", - "prev-evolution": [{ - "num": "446", - "name": "munchlax", - "candy-cost": "50" - }] - } - }, - { - "num": "144", - "name": "articuno", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Articuno is a legendary bird Pokémon that can control ice. The flapping of its wings chills the air. As a result, it is said that when this Pokémon flies, snow will fall.", - "img": "https://www.serebii.net/pokemongo/pokemon/144.png", - "size": { - "height": "1.70 m", - "weight": "55.4 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "ice", - "flying" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.03" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "192", - "base-defense": "236", - "base-stamina": "207", - "max-cp": "3051", - "max-hp": "175" - }, - "resistant": [ - "grass", - "ground", - "bug" - ], - "weaknesses": [ - "fire", - "electric", - "rock", - "steel" - ], - "quick-move": [ - { - "name": "frost breath", - "type": "ice", - "base-damage": "10", - "energy": "8", - "move-duration-seg": "0.9" - }], - "special-attack": [ - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "icy wind", - "type": "ice", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "3.3" - }, - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "articuno candy" - } - }, - { - "num": "145", - "name": "zapdos", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Zapdos is a legendary bird Pokémon that has the ability to control electricity. It usually lives in thunderclouds. The Pokémon gains power if it is stricken by lightning bolts.", - "img": "https://www.serebii.net/pokemongo/pokemon/145.png", - "size": { - "height": "1.60 m", - "weight": "52.6 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "electric", - "flying" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.03" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "253", - "base-defense": "185", - "base-stamina": "207", - "max-cp": "3527", - "max-hp": "175" - }, - "resistant": [ - "grass", - "fighting", - "flying", - "bug", - "steel" - ], - "weaknesses": [ - "ice", - "rock" - ], - "quick-move": [ - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - }, - { - "name": "volt switch", - "type": "electric", - "base-damage": "20", - "energy": "25", - "move-duration-seg": "2.3" - } - ], - "special-attack": [ - { - "name": "zap cannon", - "type": "electric", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.7" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "zapdos candy" - } - }, - { - "num": "146", - "name": "moltres", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Moltres is a legendary bird Pokémon that has the ability to control fire. If this Pokémon is injured, it is said to dip its body in the molten magma of a volcano to burn and heal itself.", - "img": "https://www.serebii.net/pokemongo/pokemon/146.png", - "size": { - "height": "2.01 m", - "weight": "60.0 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "fire", - "flying" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.03" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "251", - "base-defense": "181", - "base-stamina": "207", - "max-cp": "3465", - "max-hp": "175" - }, - "resistant": [ - "fire", - "grass", - "fighting", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "electric", - "rock" - ], - "quick-move": [ - { - "name": "fire spin", - "type": "fire", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.1" - }], - "special-attack": [ - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "heat wave", - "type": "fire", - "base-damage": "95", - "energy": "-100", - "move-duration-seg": "3" - }, - { - "name": "overheat", - "type": "fire", - "base-damage": "160", - "energy": "-100", - "move-duration-seg": "4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "moltres candy" - } - }, - { - "num": "147", - "name": "dratini", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Dratini continually molts and sloughs off its old skin. It does so because the life energy within its body steadily builds to reach uncontrollable levels.", - "img": "https://www.serebii.net/pokemongo/pokemon/147.png", - "size": { - "height": "1.80 m", - "weight": "3.3 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "dragon" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.4" - }, - "spawn-chance": "0.3", - "stats": { - "base-attack": "119", - "base-defense": "91", - "base-stamina": "121", - "max-cp": "1004", - "max-hp": "107" - }, - "resistant": [ - "fire", - "water", - "electric", - "grass" - ], - "weaknesses": [ - "ice", - "dragon", - "fairy" - ], - "quick-move": [ - { - "name": "dragon breath", - "type": "dragon", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "iron tail", - "type": "steel", - "base-damage": "15", - "energy": "7", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "wrap", - "type": "normal", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.9" - }, - { - "name": "twister", - "type": "dragon", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.8" - }, - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "dratini candy", - "next-evolution": [{ - "num": "148", - "name": "dragonair", - "candy-cost": "25", - "next-evolution": [{ - "num": "149", - "name": "dragonite", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "148", - "name": "dragonair", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Dragonair stores an enormous amount of energy inside its body. It is said to alter weather conditions in its vicinity by discharging energy from its crystals on its neck and tail.", - "img": "https://www.serebii.net/pokemongo/pokemon/148.png", - "size": { - "height": "3.99 m", - "weight": "16.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "dragon" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.1" - }, - "spawn-chance": "0.02", - "stats": { - "base-attack": "163", - "base-defense": "135", - "base-stamina": "156", - "max-cp": "1780", - "max-hp": "135" - }, - "resistant": [ - "fire", - "water", - "electric", - "grass" - ], - "weaknesses": [ - "ice", - "dragon", - "fairy" - ], - "quick-move": [ - { - "name": "dragon breath", - "type": "dragon", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "iron tail", - "type": "steel", - "base-damage": "15", - "energy": "7", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "wrap", - "type": "normal", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.9" - }, - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "dragon pulse", - "type": "dragon", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "dratini candy", - "next-evolution": [{ - "num": "149", - "name": "dragonite", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "147", - "name": "dratini", - "candy-cost": "25" - }] - } - }, - { - "num": "149", - "name": "dragonite", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Dragonite is capable of circling the globe in just 16 hours. It is a kindhearted Pokémon that leads lost and foundering ships in a storm to the safety of land.", - "img": "https://www.serebii.net/pokemongo/pokemon/149.png", - "size": { - "height": "2.21 m", - "weight": "210.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "dragon", - "flying" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": "0.0011", - "stats": { - "base-attack": "263", - "base-defense": "198", - "base-stamina": "209", - "max-cp": "3792", - "max-hp": "177" - }, - "resistant": [ - "fire", - "water", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "ice", - "rock", - "dragon", - "fairy" - ], - "quick-move": [ - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - }, - { - "name": "dragon tail", - "type": "dragon", - "base-damage": "15", - "energy": "9", - "move-duration-seg": "1.1" - }, - { - "name": "dragon breath", - "type": "dragon", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "hurricane", - "type": "flying", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "2.7" - }, - { - "name": "outrage", - "type": "dragon", - "base-damage": "110", - "energy": "-50", - "move-duration-seg": "3.9" - }, - { - "name": "dragon claw", - "type": "dragon", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.7" - }, - { - "name": "dragon pulse", - "type": "dragon", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "dratini candy", - "prev-evolution": [{ - "num": "148", - "name": "dragonair", - "candy-cost": "100", - "prev-evolution": [{ - "num": "147", - "name": "dratini", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "150", - "name": "mewtwo", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Mewtwo is a Pokémon that was created by genetic manipulation. However, even though the scientific power of humans created this Pokémon's body, they failed to endow Mewtwo with a compassionate heart", - "img": "https://www.serebii.net/pokemongo/pokemon/150.png", - "size": { - "height": "2.01 m", - "weight": "122.0 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.06" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "300", - "base-defense": "182", - "base-stamina": "214", - "max-cp": "4178", - "max-hp": "180" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "psycho cut", - "type": "psychic", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "focus blast", - "type": "fight", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "mewtwo candy" - } - }, - { - "num": "151", - "name": "mew", - "generation": { - "num": "generation i", - "name": "kanto" - }, - "about": "Mew is said to possess the genetic composition of all Pokémon. It is capable of making itself invisible at will, so it entirely avoids notice even if it approaches people.", - "img": "https://www.serebii.net/pokemongo/pokemon/151.png", - "size": { - "height": "0.41 m", - "weight": "4.0 kg" - }, - "pokemon-rarity": "mythic", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0", - "base-capture-rate": "100" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "210", - "base-defense": "210", - "base-stamina": "225", - "max-cp": "3265", - "max-hp": "189" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }], - "special-attack": [ - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "focus blast", - "type": "fight", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.5" - }, - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - }, - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "mew candy" - } - }, - { - "num": "152", - "name": "chikorita", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "In battle, Chikorita waves its leaf around to keep the foe at bay. However, a sweet fragrance also wafts from the leaf, becalming the battling Pokémon and creating a cozy, friendly atmosphere all around.", - "img": "https://www.serebii.net/pokemongo/pokemon/152.png", - "size": { - "height": "0.89 m", - "weight": "6.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "92", - "base-defense": "122", - "base-stamina": "128", - "max-cp": "935", - "max-hp": "113" - }, - "resistant": [ - "water", - "electric", - "grass", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "vine whip", - "type": "grass", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "energy ball", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.9" - }, - { - "name": "grass knot", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "chikorita candy", - "next-evolution": [{ - "num": "153", - "name": "bayleef", - "candy-cost": "25", - "next-evolution": [{ - "num": "154", - "name": "meganium", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "153", - "name": "bayleef", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Bayleef's neck is ringed by curled-up leaves. Inside each tubular leaf is a small shoot of a tree. The fragrance of this shoot makes people peppy.", - "img": "https://www.serebii.net/pokemongo/pokemon/153.png", - "size": { - "height": "1.19 m", - "weight": "15.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "122", - "base-defense": "155", - "base-stamina": "155", - "max-cp": "1454", - "max-hp": "134" - }, - "resistant": [ - "water", - "electric", - "grass", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "energy ball", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.9" - }, - { - "name": "grass knot", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "chikorita candy", - "next-evolution": [{ - "num": "154", - "name": "meganium", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "152", - "name": "chikorita", - "candy-cost": "25" - }] - } - }, - { - "num": "154", - "name": "meganium", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "The fragrance of Meganium's flower soothes and calms emotions. In battle, this Pokémon gives off more of its becalming scent to blunt the foe's fighting spirit.", - "img": "https://www.serebii.net/pokemongo/pokemon/154.png", - "size": { - "height": "1.80 m", - "weight": "100.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "168", - "base-defense": "202", - "base-stamina": "190", - "max-cp": "2410", - "max-hp": "162" - }, - "resistant": [ - "water", - "electric", - "grass", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "vine whip", - "type": "grass", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "petal blizzard", - "type": "grass", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "2.6" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "chikorita candy", - "prev-evolution": [{ - "num": "153", - "name": "bayleef", - "candy-cost": "100", - "prev-evolution": [{ - "num": "152", - "name": "chikorita", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "155", - "name": "cyndaquil", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Cyndaquil protects itself by flaring up the flames on its back. The flames are vigorous if the Pokémon is angry. However, if it is tired, the flames splutter fitfully with incomplete combustion.", - "img": "https://www.serebii.net/pokemongo/pokemon/155.png", - "size": { - "height": "0.51 m", - "weight": "7.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "116", - "base-defense": "93", - "base-stamina": "118", - "max-cp": "980", - "max-hp": "105" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "flame charge", - "type": "fire", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.8" - }, - { - "name": "swift", - "type": "normal", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.8" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "cyndaquil candy", - "next-evolution": [{ - "num": "156", - "name": "quilava", - "candy-cost": "25", - "next-evolution": [{ - "num": "157", - "name": "typhlosion", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "156", - "name": "quilava", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Quilava keeps its foes at bay with the intensity of its flames and gusts of superheated air. This Pokémon applies its outstanding nimbleness to dodge attacks even while scorching the foe with flames.", - "img": "https://www.serebii.net/pokemongo/pokemon/156.png", - "size": { - "height": "0.89 m", - "weight": "19.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "158", - "base-defense": "126", - "base-stamina": "151", - "max-cp": "1653", - "max-hp": "131" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "flame charge", - "type": "fire", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.8" - }, - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "cyndaquil candy", - "next-evolution": [{ - "num": "157", - "name": "typhlosion", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "155", - "name": "cyndaquil", - "candy-cost": "25" - }] - } - }, - { - "num": "157", - "name": "typhlosion", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Typhlosion obscures itself behind a shimmering heat haze that it creates using its intensely hot flames. This Pokémon creates blazing explosive blasts that burn everything to cinders.", - "img": "https://www.serebii.net/pokemongo/pokemon/157.png", - "size": { - "height": "1.70 m", - "weight": "79.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "223", - "base-defense": "173", - "base-stamina": "186", - "max-cp": "2889", - "max-hp": "158" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "shadow claw", - "type": "ghost", - "base-damage": "9", - "energy": "6", - "move-duration-seg": "0.7" - } - ], - "special-attack": [ - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "overheat", - "type": "fire", - "base-damage": "160", - "energy": "-100", - "move-duration-seg": "4" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "cyndaquil candy", - "prev-evolution": [{ - "num": "156", - "name": "quilava", - "candy-cost": "100", - "prev-evolution": [{ - "num": "155", - "name": "cyndaquil", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "158", - "name": "totodile", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Despite the smallness of its body, Totodile's jaws are very powerful. While the Pokémon may think it is just playfully nipping, its bite has enough power to cause serious injury.", - "img": "https://www.serebii.net/pokemongo/pokemon/158.png", - "size": { - "height": "0.61 m", - "weight": "9.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "117", - "base-defense": "109", - "base-stamina": "137", - "max-cp": "1131", - "max-hp": "120" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "aqua jet", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "2.6" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "totodile candy", - "next-evolution": [{ - "num": "159", - "name": "croconaw", - "candy-cost": "25", - "next-evolution": [{ - "num": "160", - "name": "feraligatr", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "159", - "name": "croconaw", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Once Croconaw has clamped its jaws on its foe, it will absolutely not let go. Because the tips of its fangs are forked back like barbed fishhooks, they become impossible to remove when they have sunk in.", - "img": "https://www.serebii.net/pokemongo/pokemon/159.png", - "size": { - "height": "1.09 m", - "weight": "25.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "150", - "base-defense": "142", - "base-stamina": "163", - "max-cp": "1722", - "max-hp": "140" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "ice punch", - "type": "ice", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "totodile candy", - "next-evolution": [{ - "num": "160", - "name": "feraligatr", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "158", - "name": "totodile", - "candy-cost": "25" - }] - } - }, - { - "num": "160", - "name": "feraligatr", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Feraligatr intimidates its foes by opening its huge mouth. In battle, it will kick the ground hard with its thick and powerful hind legs to charge at the foe at an incredible speed.", - "img": "https://www.serebii.net/pokemongo/pokemon/160.png", - "size": { - "height": "2.31 m", - "weight": "88.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "205", - "base-defense": "188", - "base-stamina": "198", - "max-cp": "2857", - "max-hp": "168" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "totodile candy", - "prev-evolution": [{ - "num": "159", - "name": "croconaw", - "candy-cost": "100", - "prev-evolution": [{ - "num": "158", - "name": "totodile", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "161", - "name": "sentret", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "When Sentret sleeps, it does so while another stands guard. The sentry wakes the others at the first sign of danger. When this Pokémon becomes separated from its pack, it becomes incapable of sleep due to fear.", - "img": "https://www.serebii.net/pokemongo/pokemon/161.png", - "size": { - "height": "0.79 m", - "weight": "6.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "79", - "base-defense": "73", - "base-stamina": "111", - "max-cp": "618", - "max-hp": "99" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "grass knot", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "sentret candy", - "next-evolution": [{ - "num": "162", - "name": "furret", - "candy-cost": "25" - }] - } - }, - { - "num": "162", - "name": "furret", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Furret has a very slim build. When under attack, it can slickly squirm through narrow spaces and get away. In spite of its short limbs, this Pokémon is very nimble and fleet.", - "img": "https://www.serebii.net/pokemongo/pokemon/162.png", - "size": { - "height": "1.80 m", - "weight": "32.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "148", - "base-defense": "125", - "base-stamina": "198", - "max-cp": "1758", - "max-hp": "168" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "sucker punch", - "type": "dark", - "base-damage": "7", - "energy": "8", - "move-duration-seg": "0.7" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "sentret candy", - "prev-evolution": [{ - "num": "161", - "name": "sentret", - "candy-cost": "25" - }] - } - }, - { - "num": "163", - "name": "hoothoot", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Hoothoot has an internal organ that senses and tracks the earth's rotation. Using this special organ, this Pokémon begins hooting at precisely the same time every day.", - "img": "https://www.serebii.net/pokemongo/pokemon/163.png", - "size": { - "height": "0.71 m", - "weight": "21.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "67", - "base-defense": "88", - "base-stamina": "155", - "max-cp": "677", - "max-hp": "134" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "ice", - "rock" - ], - "quick-move": [ - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - }, - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "hoothoot candy", - "next-evolution": [{ - "num": "164", - "name": "noctowl", - "candy-cost": "50" - }] - } - }, - { - "num": "164", - "name": "noctowl", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Noctowl never fails at catching prey in darkness. This Pokémon owes its success to its superior vision that allows it to see in minimal light, and to its soft, supple wings that make no sound in flight.", - "img": "https://www.serebii.net/pokemongo/pokemon/164.png", - "size": { - "height": "1.60 m", - "weight": "40.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "145", - "base-defense": "156", - "base-stamina": "225", - "max-cp": "2024", - "max-hp": "189" - }, - "resistant": [ - "grass", - "ground", - "bug", - "ghost" - ], - "weaknesses": [ - "electric", - "ice", - "rock" - ], - "quick-move": [ - { - "name": "wing attack", - "type": "flying", - "base-damage": "8", - "energy": "9", - "move-duration-seg": "0.8" - }, - { - "name": "extrasensory", - "type": "psychic", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "sky attack", - "type": "flying", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - }, - { - "name": "night shade", - "type": "ghost", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "hoothoot candy", - "prev-evolution": [{ - "num": "163", - "name": "hoothoot", - "candy-cost": "50" - }] - } - }, - { - "num": "165", - "name": "ledyba", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Ledyba secretes an aromatic fluid from where its legs join its body. This fluid is used for communicating with others. This Pokémon conveys its feelings to others by altering the fluid's scent.", - "img": "https://www.serebii.net/pokemongo/pokemon/165.png", - "size": { - "height": "0.99 m", - "weight": "10.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "flying" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "72", - "base-defense": "118", - "base-stamina": "120", - "max-cp": "728", - "max-hp": "106" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "bug" - ], - "weaknesses": [ - "fire", - "electric", - "ice", - "flying" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "silver wind", - "type": "bug", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.7" - }, - { - "name": "swift", - "type": "normal", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.8" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "ledyba candy", - "next-evolution": [{ - "num": "166", - "name": "ledian", - "candy-cost": "25" - }] - } - }, - { - "num": "166", - "name": "ledian", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "It is said that in lands with clean air, where the stars fill the sky, there live Ledian in countless numbers. There is a good reason for this-the Pokémon uses the light of the stars as its energy.", - "img": "https://www.serebii.net/pokemongo/pokemon/166.png", - "size": { - "height": "1.40 m", - "weight": "35.6 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "107", - "base-defense": "179", - "base-stamina": "146", - "max-cp": "1346", - "max-hp": "127" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "bug" - ], - "weaknesses": [ - "fire", - "electric", - "ice", - "flying" - ], - "quick-move": [ - { - "name": "struggle bug", - "type": "bug", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "bug buzz", - "type": "bug", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.7" - }, - { - "name": "silver wind", - "type": "bug", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.7" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "ledyba candy", - "prev-evolution": [{ - "num": "165", - "name": "ledyba", - "candy-cost": "25" - }] - } - }, - { - "num": "167", - "name": "spinarak", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "The web spun by Spinarak can be considered its second nervous system. It is said that this Pokémon can determine what kind of prey is touching its web just by the tiny vibrations it feels through the web's strands.", - "img": "https://www.serebii.net/pokemongo/pokemon/167.png", - "size": { - "height": "0.51 m", - "weight": "8.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "poison" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "105", - "base-defense": "73", - "base-stamina": "120", - "max-cp": "816", - "max-hp": "106" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "fire", - "flying", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "night slash", - "type": "dark", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.2" - }, - { - "name": "signal beam", - "type": "bug", - "base-damage": "75", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "cross poison", - "type": "poison", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "spinarak candy", - "next-evolution": [{ - "num": "168", - "name": "ariados", - "candy-cost": "50" - }] - } - }, - { - "num": "168", - "name": "ariados", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Ariados's feet are tipped with tiny hooked claws that enable it to scuttle on ceilings and vertical walls. This Pokémon constricts the foe with thin and strong silk webbing.", - "img": "https://www.serebii.net/pokemongo/pokemon/168.png", - "size": { - "height": "1.09 m", - "weight": "33.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "poison" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "161", - "base-defense": "124", - "base-stamina": "172", - "max-cp": "1772", - "max-hp": "147" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "fire", - "flying", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - }, - { - "name": "infestation", - "type": "bug", - "base-damage": "10", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "shadow sneak", - "type": "ghost", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.9" - }, - { - "name": "megahorn", - "type": "bug", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2.2" - }, - { - "name": "cross poison", - "type": "poison", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "spinarak candy", - "prev-evolution": [{ - "num": "167", - "name": "spinarak", - "candy-cost": "50" - }] - } - }, - { - "num": "169", - "name": "crobat", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "If this Pokémon is flying by fluttering only a pair of wings on either the forelegs or hind legs, it's proof that Crobat has been flying a long distance. It switches the wings it uses if it is tired.", - "img": "https://www.serebii.net/pokemongo/pokemon/169.png", - "size": { - "height": "1.80 m", - "weight": "75.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "poison", - "flying" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": null, - "stats": { - "base-attack": "194", - "base-defense": "178", - "base-stamina": "198", - "max-cp": "2646", - "max-hp": "168" - }, - "resistant": [ - "grass", - "fighting", - "poison", - "bug", - "fairy" - ], - "weaknesses": [ - "electric", - "ice", - "psychic", - "rock" - ], - "quick-move": [ - { - "name": "air slash", - "type": "flying", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.2" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "air cutter", - "type": "flying", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "zubat candy", - "prev-evolution": [{ - "num": "042", - "name": "golbat", - "candy-cost": "100", - "prev-evolution": [{ - "num": "041", - "name": "zubat", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "170", - "name": "chinchou", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Chinchou lets loose positive and negative electrical charges from its two antennas to make its prey faint. This Pokémon flashes its electric lights to exchange signals with others.", - "img": "https://www.serebii.net/pokemongo/pokemon/170.png", - "size": { - "height": "0.51 m", - "weight": "12.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "electric" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": null, - "stats": { - "base-attack": "106", - "base-defense": "97", - "base-stamina": "181", - "max-cp": "1119", - "max-hp": "154" - }, - "resistant": [ - "fire", - "water", - "ice", - "flying", - "steel" - ], - "weaknesses": [ - "grass", - "ground" - ], - "quick-move": [ - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "spark", - "type": "electric", - "base-damage": "6", - "energy": "9", - "move-duration-seg": "0.7" - } - ], - "special-attack": [ - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "chinchou candy", - "next-evolution": [{ - "num": "171", - "name": "lanturn", - "candy-cost": "50" - }] - } - }, - { - "num": "171", - "name": "lanturn", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Lanturn is nicknamed \"the deep-sea star for its illuminated antenna. This Pokémon produces light by causing a chemical reaction between bacteria and its bodily fluids inside the antenna.", - "img": "https://www.serebii.net/pokemongo/pokemon/171.png", - "size": { - "height": "1.19 m", - "weight": "22.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "electric" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "146", - "base-defense": "137", - "base-stamina": "268", - "max-cp": "2085", - "max-hp": "223" - }, - "resistant": [ - "fire", - "water", - "ice", - "flying", - "steel" - ], - "weaknesses": [ - "grass", - "ground" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "chinchou candy", - "prev-evolution": [{ - "num": "170", - "name": "chinchou", - "candy-cost": "50" - }] - } - }, - { - "num": "172", - "name": "pichu", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Pichu charges itself with electricity more easily on days with thunderclouds or when the air is very dry. You can hear the crackling of static electricity coming off this Pokémon.", - "img": "https://www.serebii.net/pokemongo/pokemon/172.png", - "size": { - "height": "0.30 m", - "weight": "2.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "not in capture", - "base-capture-rate": "not in capture" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "77", - "base-defense": "53", - "base-stamina": "85", - "max-cp": "473", - "max-hp": "79" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "disarming voice", - "type": "fairy", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.9" - }, - { - "name": "thunder punch", - "type": "electric", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.8" - } - ], - "egg": "7 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "pikachu candy", - "next-evolution": [{ - "num": "025", - "name": "pikachu", - "candy-cost": "25", - "next-evolution": [{ - "num": "026", - "name": "raichu", - "candy-cost": "50" - }] - }] - } - }, - { - "num": "173", - "name": "cleffa", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "On nights with many shooting stars, Cleffa can be seen dancing in a ring. They dance through the night and stop only at the break of day, when these Pokémon quench their thirst with the morning dew.", - "img": "https://www.serebii.net/pokemongo/pokemon/173.png", - "size": { - "height": "0.30 m", - "weight": "3.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fairy" - ], - "encounter": { - "base-flee-rate": "not in capture", - "base-capture-rate": "not in capture" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "75", - "base-defense": "79", - "base-stamina": "137", - "max-cp": "671", - "max-hp": "120" - }, - "resistant": [ - "fighting", - "bug", - "dragon", - "dark" - ], - "weaknesses": [ - "poison", - "steel" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "grass knot", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - }, - { - "name": "signal beam", - "type": "bug", - "base-damage": "75", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "7 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "clefairy candy", - "next-evolution": [{ - "num": "035", - "name": "clefairy", - "candy-cost": "25", - "next-evolution": [{ - "num": "036", - "name": "clefable", - "candy-cost": "50" - }] - }] - } - }, - { - "num": "174", - "name": "igglybuff", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Igglybuff's vocal cords are not sufficiently developed. It would hurt its throat if it were to sing too much. This Pokémon gargles with freshwater from a clean stream.", - "img": "https://www.serebii.net/pokemongo/pokemon/174.png", - "size": { - "height": "0.30 m", - "weight": "1.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "fairy" - ], - "encounter": { - "base-flee-rate": "not in capture", - "base-capture-rate": "not in capture" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "69", - "base-defense": "32", - "base-stamina": "207", - "max-cp": "535", - "max-hp": "175" - }, - "resistant": [ - "bug", - "ghost", - "dragon", - "dark" - ], - "weaknesses": [ - "poison", - "steel" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "wild charge", - "type": "electric", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "shadow ball", - "type": "ghost", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "7 km", - "buddy-distance-km": "1", - "evolution": { - "candy": "jigglypuff candy", - "next-evolution": [{ - "num": "039", - "name": "jigglypuff", - "candy-cost": "25", - "next-evolution": [{ - "num": "040", - "name": "wigglytuff", - "candy-cost": "50" - }] - }] - } - }, - { - "num": "175", - "name": "togepi", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "As its energy, Togepi uses the positive emotions of compassion and pleasure exuded by people and Pokémon. This Pokémon stores up feelings of happiness inside its shell, then shares them with others.", - "img": "https://www.serebii.net/pokemongo/pokemon/175.png", - "size": { - "height": "0.30 m", - "weight": "1.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fairy" - ], - "encounter": { - "base-flee-rate": "not in capture", - "base-capture-rate": "not in capture" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "67", - "base-defense": "116", - "base-stamina": "111", - "max-cp": "657", - "max-hp": "99" - }, - "resistant": [ - "fighting", - "bug", - "dragon", - "dark" - ], - "weaknesses": [ - "poison", - "steel" - ], - "quick-move": [ - { - "name": "hidden power", - "type": "normal", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }, - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - }, - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - } - ], - "egg": "7 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "togepi candy", - "next-evolution": [{ - "num": "176", - "name": "togetic", - "candy-cost": "50", - "next-evolution": [{ - "num": "468", - "name": "togekiss", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - }] - } - }, - { - "num": "176", - "name": "togetic", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Togetic is said to be a Pokémon that brings good fortune. When the Pokémon spots someone who is pure of heart, it is said to appear and share its happiness with that person.", - "img": "https://www.serebii.net/pokemongo/pokemon/176.png", - "size": { - "height": "0.61 m", - "weight": "3.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fairy", - "flying" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "139", - "base-defense": "181", - "base-stamina": "146", - "max-cp": "1708", - "max-hp": "127" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "bug", - "dragon" - ], - "weaknesses": [ - "electric", - "ice", - "poison", - "rock" - ], - "quick-move": [ - { - "name": "extrasensory", - "type": "psychic", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - }, - { - "name": "hidden power", - "type": "normal", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - } - ], - "special-attack": [ - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "togepi candy", - "next-evolution": [{ - "num": "468", - "name": "togekiss", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }], - "prev-evolution": [{ - "num": "175", - "name": "togepi", - "candy-cost": "25" - }] - } - }, - { - "num": "177", - "name": "natu", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Natu cannot fly because its wings are not yet fully grown. If your eyes meet with this Pokémon's eyes, it will stare back intently at you. But if you move even slightly, it will hop away to safety.", - "img": "https://www.serebii.net/pokemongo/pokemon/177.png", - "size": { - "height": "0.21 m", - "weight": "2.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic", - "flying" - ], - "encounter": { - "base-flee-rate": "0.15", - "base-capture-rate": "0.4" - }, - "spawn-chance": null, - "stats": { - "base-attack": "134", - "base-defense": "89", - "base-stamina": "120", - "max-cp": "1102", - "max-hp": "106" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "psychic" - ], - "weaknesses": [ - "electric", - "ice", - "rock", - "ghost" - ], - "quick-move": [ - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "night shade", - "type": "ghost", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - }, - { - "name": "drill peck", - "type": "flying", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "natu candy", - "next-evolution": [{ - "num": "178", - "name": "xatu", - "candy-cost": "50" - }] - } - }, - { - "num": "178", - "name": "xatu", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Xatu stands rooted and still in one spot all day long. People believe that this Pokémon does so out of fear of the terrible things it has foreseen in the future.", - "img": "https://www.serebii.net/pokemongo/pokemon/178.png", - "size": { - "height": "1.50 m", - "weight": "15.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "192", - "base-defense": "146", - "base-stamina": "163", - "max-cp": "2188", - "max-hp": "140" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "psychic" - ], - "weaknesses": [ - "electric", - "ice", - "rock", - "ghost" - ], - "quick-move": [ - { - "name": "air slash", - "type": "flying", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.2" - }, - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "ominous wind", - "type": "ghost", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "futuresight", - "type": "psychic", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "2.7" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "natu candy", - "prev-evolution": [{ - "num": "177", - "name": "natu", - "candy-cost": "50" - }] - } - }, - { - "num": "179", - "name": "mareep", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Mareep's fluffy coat of wool rubs together and builds a static charge. The more static electricity is charged, the more brightly the lightbulb at the tip of its tail glows.", - "img": "https://www.serebii.net/pokemongo/pokemon/179.png", - "size": { - "height": "0.61 m", - "weight": "7.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "114", - "base-defense": "79", - "base-stamina": "146", - "max-cp": "991", - "max-hp": "127" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "mareep candy", - "next-evolution": [{ - "num": "180", - "name": "flaaffy", - "candy-cost": "25", - "next-evolution": [{ - "num": "181", - "name": "ampharos", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "180", - "name": "flaaffy", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Flaaffy's wool quality changes so that it can generate a high amount of static electricity with a small amount of wool. The bare and slick parts of its hide are shielded against electricity.", - "img": "https://www.serebii.net/pokemongo/pokemon/180.png", - "size": { - "height": "0.79 m", - "weight": "13.3 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": null, - "stats": { - "base-attack": "145", - "base-defense": "109", - "base-stamina": "172", - "max-cp": "1521", - "max-hp": "147" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "power gem", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "mareep candy", - "next-evolution": [{ - "num": "181", - "name": "ampharos", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "179", - "name": "mareep", - "candy-cost": "25" - }] - } - }, - { - "num": "181", - "name": "ampharos", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Ampharos gives off so much light that it can be seen even from space. People in the old days used the light of this Pokémon to send signals back and forth with others far away.", - "img": "https://www.serebii.net/pokemongo/pokemon/181.png", - "size": { - "height": "1.40 m", - "weight": "61.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "211", - "base-defense": "169", - "base-stamina": "207", - "max-cp": "2852", - "max-hp": "175" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - }, - { - "name": "volt switch", - "type": "electric", - "base-damage": "20", - "energy": "25", - "move-duration-seg": "2.3" - } - ], - "special-attack": [ - { - "name": "zap cannon", - "type": "electric", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.7" - }, - { - "name": "focus blast", - "type": "fight", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.5" - }, - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "mareep candy", - "prev-evolution": [{ - "num": "180", - "name": "flaaffy", - "candy-cost": "100", - "prev-evolution": [{ - "num": "179", - "name": "mareep", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "182", - "name": "bellossom", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "When Bellossom gets exposed to plenty of sunlight, the leaves ringing its body begin to spin around. This Pokémon's dancing is renowned in the southern lands.", - "img": "https://www.serebii.net/pokemongo/pokemon/182.png", - "size": { - "height": "0.41 m", - "weight": "5.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "169", - "base-defense": "186", - "base-stamina": "181", - "max-cp": "2281", - "max-hp": "154" - }, - "resistant": [ - "water", - "electric", - "grass", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "acid", - "type": "poison", - "base-damage": "9", - "energy": "8", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "leaf blade", - "type": "grass", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "petal blizzard", - "type": "grass", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "2.6" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "oddish candy", - "prev-evolution": [{ - "num": "044", - "name": "gloom", - "candy-cost": "100", - "evolution-item": { - "name": "sun stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sun-stone.png" - }, - "prev-evolution": [{ - "num": "043", - "name": "oddish", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "183", - "name": "marill", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Marill's oil-filled tail acts much like a life preserver. If you see just its tail bobbing on the water's surface, it's a sure indication that this Pokémon is diving beneath the water to feed on aquatic plants.", - "img": "https://www.serebii.net/pokemongo/pokemon/183.png", - "size": { - "height": "0.41 m", - "weight": "8.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "fairy" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "37", - "base-defense": "93", - "base-stamina": "172", - "max-cp": "461", - "max-hp": "147" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "bug" - ], - "weaknesses": [ - "electric", - "grass", - "poison" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "marill candy", - "next-evolution": [{ - "num": "184", - "name": "azumarill", - "candy-cost": "25" - }], - "prev-evolution": [{ - "num": "298", - "name": "azurill", - "candy-cost": "25" - }] - } - }, - { - "num": "184", - "name": "azumarill", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Azumarill's long ears are indispensable sensors. By focusing its hearing, this Pokémon can identify what kinds of prey are around, even in rough and fast-running rivers.", - "img": "https://www.serebii.net/pokemongo/pokemon/184.png", - "size": { - "height": "0.79 m", - "weight": "28.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "fairy" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "112", - "base-defense": "152", - "base-stamina": "225", - "max-cp": "1588", - "max-hp": "189" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "bug" - ], - "weaknesses": [ - "electric", - "grass", - "poison" - ], - "quick-move": [ - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - }, - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "play rough", - "type": "fairy", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "marill candy", - "prev-evolution": [{ - "num": "183", - "name": "marill", - "candy-cost": "25", - "prev-evolution": [{ - "num": "298", - "name": "azurill", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "185", - "name": "sudowoodo", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Sudowoodo camouflages itself as a tree to avoid being attacked by enemies. However, because its hands remain green throughout the year, the Pokémon is easily identified as a fake during the winter.", - "img": "https://www.serebii.net/pokemongo/pokemon/185.png", - "size": { - "height": "1.19 m", - "weight": "38.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "167", - "base-defense": "176", - "base-stamina": "172", - "max-cp": "2148", - "max-hp": "147" - }, - "resistant": [ - "normal", - "fire", - "poison", - "flying" - ], - "weaknesses": [ - "water", - "grass", - "fighting", - "ground" - ], - "quick-move": [ - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - }, - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "sudowoodo candy", - "prev-evolution": [{ - "num": "438", - "name": "bonsly", - "candy-cost": "50" - }] - } - }, - { - "num": "186", - "name": "politoed", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "The curled hair on Politoed's head is proof of its status as a king. It is said that the longer and more curled the hair, the more respect this Pokémon earns from its peers.", - "img": "https://www.serebii.net/pokemongo/pokemon/186.png", - "size": { - "height": "10.90 m", - "weight": "33.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": null, - "stats": { - "base-attack": "174", - "base-defense": "179", - "base-stamina": "207", - "max-cp": "2449", - "max-hp": "175" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - }, - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "poliwag candy", - "prev-evolution": [{ - "num": "061", - "name": "poliwhirl", - "candy-cost": "100", - "evolution-item": { - "name": "kings rock", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/kings-rock.png" - }, - "prev-evolution": [{ - "num": "060", - "name": "poliwag", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "187", - "name": "hoppip", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "This Pokémon drifts and floats with the wind. If it senses the approach of strong winds, Hoppip links its leaves with other Hoppip to prepare against being blown away.", - "img": "https://www.serebii.net/pokemongo/pokemon/187.png", - "size": { - "height": "0.41 m", - "weight": "0.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "flying" - ], - "encounter": { - "base-flee-rate": "0.12", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "67", - "base-defense": "94", - "base-stamina": "111", - "max-cp": "600", - "max-hp": "99" - }, - "resistant": [ - "water", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bullet seed", - "type": "grass", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "grass knot", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "seed bomb", - "type": "grass", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.1" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "hoppip candy", - "next-evolution": [{ - "num": "188", - "name": "skiploom", - "candy-cost": "25", - "next-evolution": [{ - "num": "189", - "name": "jumpluff", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "188", - "name": "skiploom", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Skiploom's flower blossoms when the temperature rises above 64 degrees Fahrenheit. How much the flower opens depends on the temperature. For that reason, this Pokémon is sometimes used as a thermometer.", - "img": "https://www.serebii.net/pokemongo/pokemon/188.png", - "size": { - "height": "0.61 m", - "weight": "1.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": null, - "stats": { - "base-attack": "91", - "base-defense": "120", - "base-stamina": "146", - "max-cp": "976", - "max-hp": "127" - }, - "resistant": [ - "water", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bullet seed", - "type": "grass", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "grass knot", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "energy ball", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "hoppip candy", - "next-evolution": [{ - "num": "189", - "name": "jumpluff", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "187", - "name": "hoppip", - "candy-cost": "25" - }] - } - }, - { - "num": "189", - "name": "jumpluff", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Jumpluff rides warm southern winds to cross the sea and fly to foreign lands. The Pokémon descends to the ground when it encounters cold air while it is floating.", - "img": "https://www.serebii.net/pokemongo/pokemon/189.png", - "size": { - "height": "0.79 m", - "weight": "3.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass", - "flying" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "118", - "base-defense": "183", - "base-stamina": "181", - "max-cp": "1636", - "max-hp": "154" - }, - "resistant": [ - "water", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "infestation", - "type": "bug", - "base-damage": "10", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "bullet seed", - "type": "grass", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "energy ball", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.9" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "hoppip candy", - "prev-evolution": [{ - "num": "188", - "name": "skiploom", - "candy-cost": "100", - "prev-evolution": [{ - "num": "187", - "name": "hoppip", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "190", - "name": "aipom", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Aipom's tail ends in a hand-like appendage that can be cleverly manipulated. However, because the Pokémon uses its tail so much, its real hands have become rather clumsy.", - "img": "https://www.serebii.net/pokemongo/pokemon/190.png", - "size": { - "height": "0.79 m", - "weight": "11.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "136", - "base-defense": "112", - "base-stamina": "146", - "max-cp": "1348", - "max-hp": "127" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "astonish", - "type": "ghost", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "low sweep", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "swift", - "type": "normal", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.8" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "aipom candy" - } - }, - { - "num": "191", - "name": "sunkern", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Sunkern tries to move as little as it possibly can. It does so because it tries to conserve all the nutrients it has stored in its body for its evolution. It will not eat a thing, subsisting only on morning dew.", - "img": "https://www.serebii.net/pokemongo/pokemon/191.png", - "size": { - "height": "0.30 m", - "weight": "1.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "55", - "base-defense": "55", - "base-stamina": "102", - "max-cp": "395", - "max-hp": "92" - }, - "resistant": [ - "water", - "electric", - "grass", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "cut", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "energy ball", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.9" - }, - { - "name": "grass knot", - "type": "grass", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "seed bomb", - "type": "grass", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.1" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "sunkern candy", - "next-evolution": [{ - "num": "192", - "name": "sunflora", - "candy-cost": "50", - "evolution-item": { - "name": "sun stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sun-stone.png" - } - }] - } - }, - { - "num": "192", - "name": "sunflora", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Sunflora converts solar energy into nutrition. It moves around actively in the daytime when it is warm. It stops moving as soon as the sun goes down for the night.", - "img": "https://www.serebii.net/pokemongo/pokemon/192.png", - "size": { - "height": "0.79 m", - "weight": "8.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "grass" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.1" - }, - "spawn-chance": null, - "stats": { - "base-attack": "185", - "base-defense": "135", - "base-stamina": "181", - "max-cp": "2141", - "max-hp": "154" - }, - "resistant": [ - "water", - "electric", - "grass", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "razor leaf", - "type": "grass", - "base-damage": "13", - "energy": "7", - "move-duration-seg": "1" - }, - { - "name": "bullet seed", - "type": "grass", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "petal blizzard", - "type": "grass", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "2.6" - }, - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "sunkern candy", - "prev-evolution": [{ - "num": "191", - "name": "sunkern", - "candy-cost": "50", - "evolution-item": { - "name": "sun stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sun-stone.png" - } - }] - } - }, - { - "num": "193", - "name": "yanma", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Yanma is capable of seeing 360 degrees without having to move its eyes. It is a great flier that is adept at making sudden stops and turning midair. This Pokémon uses its flying ability to quickly chase down targeted prey.", - "img": "https://www.serebii.net/pokemongo/pokemon/193.png", - "size": { - "height": "1.19 m", - "weight": "38.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "flying" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "154", - "base-defense": "94", - "base-stamina": "163", - "max-cp": "1470", - "max-hp": "140" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "bug" - ], - "weaknesses": [ - "fire", - "electric", - "ice", - "flying" - ], - "quick-move": [ - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - }, - { - "name": "wing attack", - "type": "flying", - "base-damage": "8", - "energy": "9", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "silver wind", - "type": "bug", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.7" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "yanma candy" - } - }, - { - "num": "194", - "name": "wooper", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Wooper usually lives in water. However, it occasionally comes out onto land in search of food. On land, it coats its body with a gooey, toxic film.", - "img": "https://www.serebii.net/pokemongo/pokemon/194.png", - "size": { - "height": "0.41 m", - "weight": "8.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "ground" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": null, - "stats": { - "base-attack": "75", - "base-defense": "66", - "base-stamina": "146", - "max-cp": "641", - "max-hp": "127" - }, - "resistant": [ - "fire", - "poison", - "rock", - "steel" - ], - "weaknesses": [ - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "mud bomb", - "type": "ground", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "wooper candy", - "next-evolution": [{ - "num": "195", - "name": "quagsire", - "candy-cost": "50" - }] - } - }, - { - "num": "195", - "name": "quagsire", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Quagsire hunts for food by leaving its mouth wide open in water and waiting for its prey to blunder in unaware. Because the Pokémon does not move, it does not get very hungry.", - "img": "https://www.serebii.net/pokemongo/pokemon/195.png", - "size": { - "height": "1.40 m", - "weight": "75.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "ground" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "152", - "base-defense": "143", - "base-stamina": "216", - "max-cp": "1992", - "max-hp": "182" - }, - "resistant": [ - "fire", - "poison", - "rock", - "steel" - ], - "weaknesses": [ - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "sludge bomb", - "type": "poison", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.3" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "wooper candy", - "prev-evolution": [{ - "num": "194", - "name": "wooper", - "candy-cost": "50" - }] - } - }, - { - "num": "196", - "name": "espeon", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Espeon is extremely loyal to any Trainer it considers to be worthy. It is said that this Pokémon developed its precognitive powers to protect its Trainer from harm.", - "img": "https://www.serebii.net/pokemongo/pokemon/196.png", - "size": { - "height": "0.89 m", - "weight": "26.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "261", - "base-defense": "175", - "base-stamina": "163", - "max-cp": "3170", - "max-hp": "140" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "psybeam", - "type": "psychic", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "futuresight", - "type": "psychic", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "eevee candy", - "prev-evolution": [{ - "num": "133", - "name": "eevee", - "candy-cost": "25" - }] - } - }, - { - "num": "197", - "name": "umbreon", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Umbreon evolved as a result of exposure to the moon's waves. It hides silently in darkness and waits for its foes to make a move. The rings on its body glow when it leaps to attack.", - "img": "https://www.serebii.net/pokemongo/pokemon/197.png", - "size": { - "height": "0.99 m", - "weight": "27.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "dark" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "126", - "base-defense": "240", - "base-stamina": "216", - "max-cp": "2137", - "max-hp": "182" - }, - "resistant": [ - "psychic", - "ghost", - "dark" - ], - "weaknesses": [ - "fighting", - "bug", - "fairy" - ], - "quick-move": [ - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - }, - { - "name": "snarl", - "type": "dark", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "foul play", - "type": "dark", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "eevee candy", - "prev-evolution": [{ - "num": "133", - "name": "eevee", - "candy-cost": "25" - }] - } - }, - { - "num": "198", - "name": "murkrow", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Murkrow was feared and loathed as the alleged bearer of ill fortune. This Pokémon shows strong interest in anything that sparkles or glitters. It will even try to steal rings from women.", - "img": "https://www.serebii.net/pokemongo/pokemon/198.png", - "size": { - "height": "0.51 m", - "weight": "2.1 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "dark", - "flying" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "175", - "base-defense": "87", - "base-stamina": "155", - "max-cp": "1562", - "max-hp": "134" - }, - "resistant": [ - "grass", - "ground", - "psychic", - "ghost", - "dark" - ], - "weaknesses": [ - "electric", - "ice", - "rock", - "fairy" - ], - "quick-move": [ - { - "name": "peck", - "type": "flying", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "drill peck", - "type": "flying", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "2.3" - }, - { - "name": "foul play", - "type": "dark", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - }, - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "murkrow candy", - "next-evolution": [{ - "num": "430", - "name": "honchkrow", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - } - }, - { - "num": "199", - "name": "slowking", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Slowking undertakes research every day in an effort to solve the mysteries of the world. However, this Pokémon apparently forgets everything it has learned if the Shellder on its head comes off.", - "img": "https://www.serebii.net/pokemongo/pokemon/199.png", - "size": { - "height": "2.01 m", - "weight": "79.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "psychic" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": null, - "stats": { - "base-attack": "177", - "base-defense": "180", - "base-stamina": "216", - "max-cp": "2545", - "max-hp": "182" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "psychic" - ], - "weaknesses": [ - "electric", - "grass", - "bug", - "ghost" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "slowpoke candy", - "prev-evolution": [{ - "num": "079", - "name": "slowpoke", - "candy-cost": "50", - "evolution-item": { - "name": "kings rock", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/kings-rock.png" - } - }] - } - }, - { - "num": "200", - "name": "misdreavus", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Misdreavus frightens people with a creepy, sobbing cry. The Pokémon apparently uses its red spheres to absorb the fearful feelings of foes and turn them into nutrition.", - "img": "https://www.serebii.net/pokemongo/pokemon/200.png", - "size": { - "height": "0.71 m", - "weight": "1.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ghost" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "167", - "base-defense": "154", - "base-stamina": "155", - "max-cp": "1926", - "max-hp": "134" - }, - "resistant": [ - "normal", - "fighting", - "poison", - "bug" - ], - "weaknesses": [ - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "astonish", - "type": "ghost", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - }, - { - "name": "hex", - "type": "ghost", - "base-damage": "10", - "energy": "15", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "shadow sneak", - "type": "ghost", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.9" - }, - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - }, - { - "name": "ominous wind", - "type": "ghost", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.3" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "misdreavus candy", - "next-evolution": [{ - "num": "429", - "name": "mismagius", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - } - }, - { - "num": "201", - "name": "unown", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "This Pokémon is shaped like ancient writing. It is a mystery as to which came first, the ancient writings or the various Unown. Research into this topic is ongoing but nothing is known.", - "img": "https://www.serebii.net/pokemongo/pokemon/201.png", - "size": { - "height": "0.51 m", - "weight": "5.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "136", - "base-defense": "91", - "base-stamina": "134", - "max-cp": "1185", - "max-hp": "117" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "hidden power", - "type": "normal", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }], - "special-attack": [ - { - "name": "struggle", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "2.2" - }], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "unown candy" - } - }, - { - "num": "202", - "name": "wobbuffet", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "If two or more Wobbuffet meet, they will turn competitive and try to outdo each other's endurance. However, they may try to see which one can endure the longest without food. Trainers need to beware of this habit.", - "img": "https://www.serebii.net/pokemongo/pokemon/202.png", - "size": { - "height": "1.30 m", - "weight": "28.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "psychic" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": null, - "stats": { - "base-attack": "60", - "base-defense": "106", - "base-stamina": "382", - "max-cp": "1026", - "max-hp": "313" - }, - "resistant": [ - "fighting", - "psychic" - ], - "weaknesses": [ - "bug", - "ghost", - "dark" - ], - "quick-move": [ - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "splash", - "type": "water", - "base-damage": "0", - "energy": "0", - "move-duration-seg": "1.73" - } - ], - "special-attack": [ - { - "name": "mirror coat", - "type": "psychic", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.6" - }], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "wobbuffet candy", - "prev-evolution": [{ - "num": "360", - "name": "wynaut", - "candy-cost": "25" - }] - } - }, - { - "num": "203", - "name": "girafarig", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Girafarig's rear head also has a brain, but it is small. The rear head attacks in response to smells and sounds. Approaching this Pokémon from behind can cause the rear head to suddenly lash out and bite.", - "img": "https://www.serebii.net/pokemongo/pokemon/203.png", - "size": { - "height": "1.50 m", - "weight": "41.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal", - "psychic" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "182", - "base-defense": "133", - "base-stamina": "172", - "max-cp": "2046", - "max-hp": "147" - }, - "resistant": [ - "psychic" - ], - "weaknesses": [ - "bug", - "dark" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - } - ], - "special-attack": [ - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "mirror coat", - "type": "psychic", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "2.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "girafarig candy" - } - }, - { - "num": "204", - "name": "pineco", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Pineco hangs from a tree branch and patiently waits for prey to come along. If the Pokémon is disturbed while eating by someone shaking its tree, it drops down to the ground and explodes with no warning.", - "img": "https://www.serebii.net/pokemongo/pokemon/204.png", - "size": { - "height": "0.61 m", - "weight": "7.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug" - ], - "encounter": { - "base-flee-rate": "0.12", - "base-capture-rate": "0.4" - }, - "spawn-chance": null, - "stats": { - "base-attack": "108", - "base-defense": "122", - "base-stamina": "137", - "max-cp": "1108", - "max-hp": "120" - }, - "resistant": [ - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "flying", - "rock" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "gyro ball", - "type": "steel", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "rock tomb", - "type": "rock", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "sand tomb", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "4" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "pineco candy", - "next-evolution": [{ - "num": "205", - "name": "forretress", - "candy-cost": "50" - }] - } - }, - { - "num": "205", - "name": "forretress", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Forretress conceals itself inside its hardened steel shell. The shell is opened when the Pokémon is catching prey, but it does so at such a quick pace that the shell's inside cannot be seen.", - "img": "https://www.serebii.net/pokemongo/pokemon/205.png", - "size": { - "height": "1.19 m", - "weight": "125.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "steel" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "161", - "base-defense": "205", - "base-stamina": "181", - "max-cp": "2282", - "max-hp": "154" - }, - "resistant": [ - "normal", - "grass", - "ice", - "poison", - "psychic" - ], - "weaknesses": [ - "fire" - ], - "quick-move": [ - { - "name": "bug bite", - "type": "bug", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - }, - { - "name": "struggle bug", - "type": "bug", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - } - ], - "special-attack": [ - { - "name": "heavy slam", - "type": "steel", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.1" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "rock tomb", - "type": "rock", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "pineco candy", - "prev-evolution": [{ - "num": "204", - "name": "pineco", - "candy-cost": "50" - }] - } - }, - { - "num": "206", - "name": "dunsparce", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Dunsparce has a drill for its tail. It uses this tail to burrow into the ground backward. This Pokémon is known to make its nest in complex shapes deep under the ground.", - "img": "https://www.serebii.net/pokemongo/pokemon/206.png", - "size": { - "height": "1.50 m", - "weight": "14.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "131", - "base-defense": "128", - "base-stamina": "225", - "max-cp": "1689", - "max-hp": "189" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "astonish", - "type": "ghost", - "base-damage": "8", - "energy": "14", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "drill run", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.8" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "dunsparce candy" - } - }, - { - "num": "207", - "name": "gligar", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Gligar glides through the air without a sound as if it were sliding. This Pokémon hangs on to the face of its foe using its clawed hind legs and the large pincers on its forelegs, then injects the prey with its poison barb.", - "img": "https://www.serebii.net/pokemongo/pokemon/207.png", - "size": { - "height": "1.09 m", - "weight": "64.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "143", - "base-defense": "184", - "base-stamina": "163", - "max-cp": "1857", - "max-hp": "140" - }, - "resistant": [ - "fighting", - "poison", - "ground", - "bug" - ], - "weaknesses": [ - "water", - "ice" - ], - "quick-move": [ - { - "name": "fury cutter", - "type": "bug", - "base-damage": "3", - "energy": "6", - "move-duration-seg": "0.4" - }, - { - "name": "wing attack", - "type": "flying", - "base-damage": "8", - "energy": "9", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - }, - { - "name": "night slash", - "type": "dark", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.2" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "gligar candy", - "next-evolution": [{ - "num": "472", - "name": "gliscor", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - } - }, - { - "num": "208", - "name": "steelix", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Steelix lives even further underground than Onix. This Pokémon is known to dig toward the earth's core. There are records of this Pokémon reaching a depth of over six-tenths of a mile underground.", - "img": "https://www.serebii.net/pokemongo/pokemon/208.png", - "size": { - "height": "9.19 m", - "weight": "400.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "steel", - "ground" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": null, - "stats": { - "base-attack": "148", - "base-defense": "272", - "base-stamina": "181", - "max-cp": "2414", - "max-hp": "154" - }, - "resistant": [ - "normal", - "electric", - "poison", - "flying", - "psychic" - ], - "weaknesses": [ - "fire", - "water", - "fighting", - "ground" - ], - "quick-move": [ - { - "name": "iron tail", - "type": "steel", - "base-damage": "15", - "energy": "7", - "move-duration-seg": "1.1" - }, - { - "name": "dragon tail", - "type": "dragon", - "base-damage": "15", - "energy": "9", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "heavy slam", - "type": "steel", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.1" - }, - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "onix candy", - "prev-evolution": [{ - "num": "095", - "name": "onix", - "candy-cost": "50", - "evolution-item": { - "name": "metal coat", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/metal-coat.png" - } - }] - } - }, - { - "num": "209", - "name": "snubbull", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "By baring its fangs and making a scary face, Snubbull sends smaller Pokémon scurrying away in terror. However, this Pokémon seems a little sad at making its foes flee.", - "img": "https://www.serebii.net/pokemongo/pokemon/209.png", - "size": { - "height": "0.61 m", - "weight": "7.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fairy" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": null, - "stats": { - "base-attack": "137", - "base-defense": "85", - "base-stamina": "155", - "max-cp": "1237", - "max-hp": "134" - }, - "resistant": [ - "fighting", - "bug", - "dragon", - "dark" - ], - "weaknesses": [ - "poison", - "steel" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "snubbull candy", - "next-evolution": [{ - "num": "210", - "name": "granbull", - "candy-cost": "50" - }] - } - }, - { - "num": "210", - "name": "granbull", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Granbull has a particularly well-developed lower jaw. The enormous fangs are heavy, causing the Pokémon to tip its head back for balance. Unless it is startled, it will not try to bite indiscriminately.", - "img": "https://www.serebii.net/pokemongo/pokemon/210.png", - "size": { - "height": "1.40 m", - "weight": "48.7 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fairy" - ], - "encounter": { - "base-flee-rate": "0.08", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "212", - "base-defense": "131", - "base-stamina": "207", - "max-cp": "2552", - "max-hp": "175" - }, - "resistant": [ - "fighting", - "bug", - "dragon", - "dark" - ], - "weaknesses": [ - "poison", - "steel" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "snarl", - "type": "dark", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "play rough", - "type": "fairy", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "snubbull candy", - "prev-evolution": [{ - "num": "209", - "name": "snubbull", - "candy-cost": "50" - }] - } - }, - { - "num": "211", - "name": "qwilfish", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Qwilfish sucks in water, inflating itself. This Pokémon uses the pressure of the water it swallowed to shoot toxic quills all at once from all over its body. It finds swimming somewhat challenging.", - "img": "https://www.serebii.net/pokemongo/pokemon/211.png", - "size": { - "height": "0.51 m", - "weight": "3.9 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "poison" - ], - "encounter": { - "base-flee-rate": "0.08", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "184", - "base-defense": "138", - "base-stamina": "163", - "max-cp": "2051", - "max-hp": "140" - }, - "resistant": [ - "fire", - "water", - "ice", - "fighting", - "poison" - ], - "weaknesses": [ - "electric", - "ground", - "psychic" - ], - "quick-move": [ - { - "name": "poison sting", - "type": "poison", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - }, - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "aqua tail", - "type": "water", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "sludge wave", - "type": "poison", - "base-damage": "110", - "energy": "-100", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "qwilfish candy" - } - }, - { - "num": "212", - "name": "scizor", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Scizor has a body with the hardness of steel. It is not easily fazed by ordinary sorts of attacks. This Pokémon flaps its wings to regulate its body temperature.", - "img": "https://www.serebii.net/pokemongo/pokemon/212.png", - "size": { - "height": "2.01 m", - "weight": "125.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "steel" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "236", - "base-defense": "181", - "base-stamina": "172", - "max-cp": "3001", - "max-hp": "147" - }, - "resistant": [ - "normal", - "grass", - "ice", - "poison", - "psychic" - ], - "weaknesses": [ - "fire" - ], - "quick-move": [ - { - "name": "bullet punch", - "type": "steel", - "base-damage": "9", - "energy": "10", - "move-duration-seg": "0.9" - }, - { - "name": "fury cutter", - "type": "bug", - "base-damage": "3", - "energy": "6", - "move-duration-seg": "0.4" - } - ], - "special-attack": [ - { - "name": "x scissor", - "type": "water", - "base-damage": "50", - "energy": "-100", - "move-duration-seg": "4.7" - }, - { - "name": "iron head", - "type": "steel", - "base-damage": "60", - "energy": "-50", - "move-duration-seg": "1.9" - }, - { - "name": "night slash", - "type": "dark", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "scyther candy", - "prev-evolution": [{ - "num": "123", - "name": "scyther", - "candy-cost": "50", - "evolution-item": { - "name": "metal coat", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/metal-coat.png" - } - }] - } - }, - { - "num": "213", - "name": "shuckle", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Shuckle quietly hides itself under rocks, keeping its body concealed inside its hard shell while eating berries it has stored away. The berries mix with its body fluids to become a juice.", - "img": "https://www.serebii.net/pokemongo/pokemon/213.png", - "size": { - "height": "0.61 m", - "weight": "20.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "rock" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "17", - "base-defense": "396", - "base-stamina": "85", - "max-cp": "405", - "max-hp": "79" - }, - "resistant": [ - "normal", - "poison" - ], - "weaknesses": [ - "water", - "rock", - "steel" - ], - "quick-move": [ - { - "name": "struggle bug", - "type": "bug", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }, - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "rock blast", - "type": "rock", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "gyro ball", - "type": "steel", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.3" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "shuckle candy" - } - }, - { - "num": "214", - "name": "heracross", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Heracross charges in a straight line at its foe, slips beneath the foe's grasp, and then scoops up and hurls the opponent with its mighty horn. This Pokémon even has enough power to topple a massive tree.", - "img": "https://www.serebii.net/pokemongo/pokemon/214.png", - "size": { - "height": "1.50 m", - "weight": "54.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "bug", - "fighting" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "234", - "base-defense": "179", - "base-stamina": "190", - "max-cp": "3101", - "max-hp": "162" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "bug", - "dark" - ], - "weaknesses": [ - "fire", - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - }, - { - "name": "struggle bug", - "type": "bug", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - } - ], - "special-attack": [ - { - "name": "megahorn", - "type": "bug", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2.2" - }, - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "heracross candy" - } - }, - { - "num": "215", - "name": "sneasel", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Sneasel scales trees by punching its hooked claws into the bark. This Pokémon seeks out unguarded nests and steals eggs for food while the parents are away.", - "img": "https://www.serebii.net/pokemongo/pokemon/215.png", - "size": { - "height": "0.89 m", - "weight": "28.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "dark", - "ice" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "189", - "base-defense": "146", - "base-stamina": "146", - "max-cp": "2051", - "max-hp": "127" - }, - "resistant": [ - "ice", - "psychic", - "ghost", - "dark" - ], - "weaknesses": [ - "fire", - "fighting", - "bug", - "rock" - ], - "quick-move": [ - { - "name": "ice shard", - "type": "ice", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.2" - }, - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "avalanche", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "ice punch", - "type": "ice", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "foul play", - "type": "dark", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "sneasel candy", - "next-evolution": [{ - "num": "461", - "name": "weavile", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - } - }, - { - "num": "216", - "name": "teddiursa", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "This Pokémon likes to lick its palms that are sweetened by being soaked in honey. Teddiursa concocts its own honey by blending fruits and pollen collected by Beedrill.", - "img": "https://www.serebii.net/pokemongo/pokemon/216.png", - "size": { - "height": "0.61 m", - "weight": "8.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "142", - "base-defense": "93", - "base-stamina": "155", - "max-cp": "1328", - "max-hp": "134" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "scratch", - "type": "normal", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "lick", - "type": "ghost", - "base-damage": "5", - "energy": "6", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "cross chop", - "type": "fight", - "base-damage": "50", - "energy": "-50", - "move-duration-seg": "1.5" - }, - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "play rough", - "type": "fairy", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "teddiursa candy", - "next-evolution": [{ - "num": "217", - "name": "ursaring", - "candy-cost": "50" - }] - } - }, - { - "num": "217", - "name": "ursaring", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "In the forests inhabited by Ursaring, it is said that there are many streams and towering trees where they gather food. This Pokémon walks through its forest gathering food every day.", - "img": "https://www.serebii.net/pokemongo/pokemon/217.png", - "size": { - "height": "1.80 m", - "weight": "125.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "236", - "base-defense": "144", - "base-stamina": "207", - "max-cp": "2945", - "max-hp": "175" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "metal claw", - "type": "steel", - "base-damage": "8", - "energy": "7", - "move-duration-seg": "0.7" - }, - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "play rough", - "type": "fairy", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "teddiursa candy", - "prev-evolution": [{ - "num": "216", - "name": "teddiursa", - "candy-cost": "50" - }] - } - }, - { - "num": "218", - "name": "slugma", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Molten magma courses throughout Slugma's circulatory system. If this Pokémon is chilled, the magma cools and hardens. Its body turns brittle and chunks fall off, reducing its size.", - "img": "https://www.serebii.net/pokemongo/pokemon/218.png", - "size": { - "height": "0.71 m", - "weight": "35.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "118", - "base-defense": "71", - "base-stamina": "120", - "max-cp": "895", - "max-hp": "106" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "flame burst", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "flame charge", - "type": "fire", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.8" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "slugma candy", - "next-evolution": [{ - "num": "219", - "name": "magcargo", - "candy-cost": "50" - }] - } - }, - { - "num": "219", - "name": "magcargo", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Magcargo's shell is actually its skin that hardened as a result of cooling. Its shell is very brittle and fragile-just touching it causes it to crumble apart. This Pokémon returns to its original size by dipping itself in magma.", - "img": "https://www.serebii.net/pokemongo/pokemon/219.png", - "size": { - "height": "0.79 m", - "weight": "55.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire", - "rock" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "139", - "base-defense": "191", - "base-stamina": "137", - "max-cp": "1702", - "max-hp": "120" - }, - "resistant": [ - "normal", - "fire", - "ice", - "poison", - "flying" - ], - "weaknesses": [ - "water", - "fighting", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "rock throw", - "type": "rock", - "base-damage": "12", - "energy": "7", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "heat wave", - "type": "fire", - "base-damage": "95", - "energy": "-100", - "move-duration-seg": "3" - }, - { - "name": "overheat", - "type": "fire", - "base-damage": "160", - "energy": "-100", - "move-duration-seg": "4" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "slugma candy", - "prev-evolution": [{ - "num": "218", - "name": "slugma", - "candy-cost": "50" - }] - } - }, - { - "num": "220", - "name": "swinub", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Swinub roots for food by rubbing its snout against the ground. Its favorite food is a mushroom that grows under the cover of dead grass. This Pokémon occasionally roots out hot springs.", - "img": "https://www.serebii.net/pokemongo/pokemon/220.png", - "size": { - "height": "0.41 m", - "weight": "6.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ice", - "ground" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "90", - "base-defense": "69", - "base-stamina": "137", - "max-cp": "741", - "max-hp": "120" - }, - "resistant": [ - "electric", - "poison" - ], - "weaknesses": [ - "fire", - "water", - "grass", - "fighting" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "powder snow", - "type": "ice", - "base-damage": "6", - "energy": "15", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "icy wind", - "type": "ice", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "3.3" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - } - ], - "egg": "2 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "swinub candy", - "next-evolution": [{ - "num": "221", - "name": "piloswine", - "candy-cost": "50" - }] - } - }, - { - "num": "221", - "name": "piloswine", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Piloswine is covered by a thick coat of long hair that enables it to endure the freezing cold. This Pokémon uses its tusks to dig up food that has been buried under ice.", - "img": "https://www.serebii.net/pokemongo/pokemon/221.png", - "size": { - "height": "1.09 m", - "weight": "55.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ice", - "ground" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "181", - "base-defense": "138", - "base-stamina": "225", - "max-cp": "2345", - "max-hp": "189" - }, - "resistant": [ - "electric", - "poison" - ], - "weaknesses": [ - "fire", - "water", - "grass", - "fighting" - ], - "quick-move": [ - { - "name": "ice shard", - "type": "ice", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.2" - }, - { - "name": "powder snow", - "type": "ice", - "base-damage": "6", - "energy": "15", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "avalanche", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "bulldoze", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "swinub candy", - "prev-evolution": [{ - "num": "220", - "name": "swinub", - "candy-cost": "50" - }] - } - }, - { - "num": "222", - "name": "corsola", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Corsola's branches glitter very beautifully in seven colors when they catch sunlight. If any branch breaks off, this Pokémon grows it back in just one night.", - "img": "https://www.serebii.net/pokemongo/pokemon/222.png", - "size": { - "height": "0.61 m", - "weight": "5.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "rock" - ], - "encounter": { - "base-flee-rate": "0.12", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "118", - "base-defense": "156", - "base-stamina": "146", - "max-cp": "1378", - "max-hp": "127" - }, - "resistant": [ - "normal", - "fire", - "ice", - "poison", - "flying" - ], - "weaknesses": [ - "electric", - "grass", - "fighting", - "ground" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "rock blast", - "type": "rock", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - }, - { - "name": "power gem", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.9" - }, - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "corsola candy" - } - }, - { - "num": "223", - "name": "remoraid", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Remoraid sucks in water, then expels it at high velocity using its abdominal muscles to shoot down flying prey. When evolution draws near, this Pokémon travels downstream from rivers.", - "img": "https://www.serebii.net/pokemongo/pokemon/223.png", - "size": { - "height": "0.61 m", - "weight": "12.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "127", - "base-defense": "69", - "base-stamina": "111", - "max-cp": "912", - "max-hp": "99" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "aurora beam", - "type": "ice", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.55" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "rock blast", - "type": "rock", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "2.1" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "remoraid candy", - "next-evolution": [{ - "num": "224", - "name": "octillery", - "candy-cost": "50" - }] - } - }, - { - "num": "224", - "name": "octillery", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Octillery grabs onto its foe using its tentacles. This Pokémon tries to immobilize it before delivering the finishing blow. If the foe turns out to be too strong, Octillery spews ink to escape.", - "img": "https://www.serebii.net/pokemongo/pokemon/224.png", - "size": { - "height": "0.89 m", - "weight": "28.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "197", - "base-defense": "141", - "base-stamina": "181", - "max-cp": "2315", - "max-hp": "154" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "mud shot", - "type": "ground", - "base-damage": "5", - "energy": "7", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "gunk shot", - "type": "poison", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "aurora beam", - "type": "ice", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.55" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "1", - "evolution": { - "candy": "remoraid candy", - "prev-evolution": [{ - "num": "223", - "name": "remoraid", - "candy-cost": "50" - }] - } - }, - { - "num": "225", - "name": "delibird", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Delibird carries its food bundled up in its tail. There once was a famous explorer who managed to reach the peak of the world's highest mountain, thanks to one of these Pokémon sharing its food.", - "img": "https://www.serebii.net/pokemongo/pokemon/225.png", - "size": { - "height": "0.89 m", - "weight": "16.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ice", - "flying" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "128", - "base-defense": "90", - "base-stamina": "128", - "max-cp": "1094", - "max-hp": "113" - }, - "resistant": [ - "grass", - "ground", - "bug" - ], - "weaknesses": [ - "fire", - "electric", - "rock", - "steel" - ], - "quick-move": [ - { - "name": "ice shard", - "type": "ice", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.2" - }, - { - "name": "quick attack", - "type": "normal", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "ice punch", - "type": "ice", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "icy wind", - "type": "ice", - "base-damage": "60", - "energy": "-33", - "move-duration-seg": "3.3" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "delibird candy" - } - }, - { - "num": "226", - "name": "mantine", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "On sunny days, schools of Mantine can be seen elegantly leaping over the sea's waves. This Pokémon is not bothered by the Remoraid that hitches rides.", - "img": "https://www.serebii.net/pokemongo/pokemon/226.png", - "size": { - "height": "2.11 m", - "weight": "220.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "flying" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "148", - "base-defense": "226", - "base-stamina": "163", - "max-cp": "2108", - "max-hp": "140" - }, - "resistant": [ - "fire", - "water", - "fighting", - "ground", - "bug" - ], - "weaknesses": [ - "electric", - "rock" - ], - "quick-move": [ - { - "name": "bubble", - "type": "water", - "base-damage": "12", - "energy": "14", - "move-duration-seg": "1.2" - }, - { - "name": "wing attack", - "type": "flying", - "base-damage": "8", - "energy": "9", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - }, - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "aerial ace", - "type": "flying", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "mantine candy", - "prev-evolution": [{ - "num": "458", - "name": "mantyke", - "candy-cost": "50" - }] - } - }, - { - "num": "227", - "name": "skarmory", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Skarmory is entirely encased in hard, protective armor. This Pokémon flies at close to 190 mph. It slashes foes with its wings that possess swordlike cutting edges.", - "img": "https://www.serebii.net/pokemongo/pokemon/227.png", - "size": { - "height": "1.70 m", - "weight": "50.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "steel", - "flying" - ], - "encounter": { - "base-flee-rate": "0.09", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "148", - "base-defense": "226", - "base-stamina": "163", - "max-cp": "2108", - "max-hp": "140" - }, - "resistant": [ - "normal", - "grass", - "poison", - "flying", - "psychic" - ], - "weaknesses": [ - "fire", - "electric" - ], - "quick-move": [ - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - }, - { - "name": "air slash", - "type": "flying", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.2" - } - ], - "special-attack": [ - { - "name": "brave bird", - "type": "flying", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2" - }, - { - "name": "sky attack", - "type": "flying", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - }, - { - "name": "flash cannon", - "type": "steel", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.7" - } - ], - "egg": "5 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "skarmory candy" - } - }, - { - "num": "228", - "name": "houndour", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Houndour hunt as a coordinated pack. They communicate with each other using a variety of cries to corner their prey. This Pokémon's remarkable teamwork is unparalleled.", - "img": "https://www.serebii.net/pokemongo/pokemon/228.png", - "size": { - "height": "0.61 m", - "weight": "10.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "dark", - "fire" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": null, - "stats": { - "base-attack": "152", - "base-defense": "83", - "base-stamina": "128", - "max-cp": "1234", - "max-hp": "113" - }, - "resistant": [ - "fire", - "grass", - "ice", - "psychic", - "ghost" - ], - "weaknesses": [ - "water", - "fighting", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "feint attack", - "type": "dark", - "base-damage": "10", - "energy": "9", - "move-duration-seg": "0.9" - }, - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - } - ], - "special-attack": [ - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - }, - { - "name": "dark pulse", - "type": "dark", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "houndour candy", - "next-evolution": [{ - "num": "229", - "name": "houndoom", - "candy-cost": "50" - }] - } - }, - { - "num": "229", - "name": "houndoom", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "In a Houndoom pack, the one with its horns raked sharply toward the back serves a leadership role. These Pokémon choose their leader by fighting among themselves.", - "img": "https://www.serebii.net/pokemongo/pokemon/229.png", - "size": { - "height": "1.40 m", - "weight": "35.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "dark", - "fire" - ], - "encounter": { - "base-flee-rate": "0.06", - "base-capture-rate": "0.15" - }, - "spawn-chance": null, - "stats": { - "base-attack": "224", - "base-defense": "144", - "base-stamina": "181", - "max-cp": "2635", - "max-hp": "154" - }, - "resistant": [ - "fire", - "grass", - "ice", - "psychic", - "ghost" - ], - "weaknesses": [ - "water", - "fighting", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "snarl", - "type": "dark", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - }, - { - "name": "fire fang", - "type": "fire", - "base-damage": "11", - "energy": "8", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "foul play", - "type": "dark", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "houndour candy", - "prev-evolution": [{ - "num": "228", - "name": "houndour", - "candy-cost": "50" - }] - } - }, - { - "num": "230", - "name": "kingdra", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Kingdra lives at extreme ocean depths that are otherwise uninhabited. It has long been believed that the yawning of this Pokémon creates spiraling ocean currents.", - "img": "https://www.serebii.net/pokemongo/pokemon/230.png", - "size": { - "height": "1.80 m", - "weight": "152.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "water", - "dragon" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": null, - "stats": { - "base-attack": "194", - "base-defense": "194", - "base-stamina": "181", - "max-cp": "2641", - "max-hp": "154" - }, - "resistant": [ - "fire", - "water", - "steel" - ], - "weaknesses": [ - "dragon", - "fairy" - ], - "quick-move": [ - { - "name": "water gun", - "type": "water", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "dragon breath", - "type": "dragon", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "blizzard", - "type": "ice", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.1" - }, - { - "name": "outrage", - "type": "dragon", - "base-damage": "110", - "energy": "-50", - "move-duration-seg": "3.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "horsea candy", - "prev-evolution": [{ - "num": "117", - "name": "seadra", - "candy-cost": "100", - "evolution-item": { - "name": "dragon scale", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/dragon-scale.png" - }, - "prev-evolution": [{ - "num": "116", - "name": "horsea", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "231", - "name": "phanpy", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "For its nest, Phanpy digs a vertical pit in the ground at the edge of a river. It marks the area around its nest with its trunk to let the others know that the area has been claimed.", - "img": "https://www.serebii.net/pokemongo/pokemon/231.png", - "size": { - "height": "0.51 m", - "weight": "33.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground" - ], - "encounter": { - "base-flee-rate": "0.2", - "base-capture-rate": "0.5" - }, - "spawn-chance": null, - "stats": { - "base-attack": "107", - "base-defense": "98", - "base-stamina": "207", - "max-cp": "1206", - "max-hp": "175" - }, - "resistant": [ - "electric", - "poison", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ice" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "bulldoze", - "type": "ground", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.5" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "5 km", - "buddy-distance-km": "3", - "evolution": { - "candy": "phanpy candy", - "next-evolution": [{ - "num": "232", - "name": "donphan", - "candy-cost": "50" - }] - } - }, - { - "num": "232", - "name": "donphan", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Donphan's favorite attack is curling its body into a ball, then charging at its foe while rolling at high speed. Once it starts rolling, this Pokémon can't stop very easily.", - "img": "https://www.serebii.net/pokemongo/pokemon/232.png", - "size": { - "height": "1.09 m", - "weight": "120.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ground" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.125" - }, - "spawn-chance": null, - "stats": { - "base-attack": "214", - "base-defense": "185", - "base-stamina": "207", - "max-cp": "3013", - "max-hp": "175" - }, - "resistant": [ - "electric", - "poison", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ice" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "earthquake", - "type": "ground", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "3.6" - }, - { - "name": "heavy slam", - "type": "steel", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.1" - }, - { - "name": "play rough", - "type": "fairy", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "phanpy candy", - "prev-evolution": [{ - "num": "231", - "name": "phanpy", - "candy-cost": "50" - }] - } - }, - { - "num": "233", - "name": "porygon2", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Porygon2 was created by humans using the power of science. The man-made Pokémon has been endowed with artificial intelligence that enables it to learn new gestures and emotions on its own.", - "img": "https://www.serebii.net/pokemongo/pokemon/233.png", - "size": { - "height": "0.61 m", - "weight": "32.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "198", - "base-defense": "180", - "base-stamina": "198", - "max-cp": "2711", - "max-hp": "168" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "hidden power", - "type": "normal", - "base-damage": "15", - "energy": "15", - "move-duration-seg": "1.5" - }, - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "zap cannon", - "type": "electric", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "3.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "porygon candy", - "next-evolution": [{ - "num": "474", - "name": "porygon-z", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }], - "prev-evolution": [{ - "num": "137", - "name": "porygon", - "candy-cost": "25", - "evolution-item": { - "name": "up grade", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/up-grade.png" - } - }] - } - }, - { - "num": "234", - "name": "stantler", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Stantler's magnificent antlers were traded at high prices as works of art. As a result, this Pokémon was hunted close to extinction by those who were after the priceless antlers.", - "img": "https://www.serebii.net/pokemongo/pokemon/234.png", - "size": { - "height": "1.40 m", - "weight": "71.2 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.08", - "base-capture-rate": "0.3" - }, - "spawn-chance": null, - "stats": { - "base-attack": "192", - "base-defense": "131", - "base-stamina": "177", - "max-cp": "2164", - "max-hp": "151" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "stomp", - "type": "normal", - "base-damage": "55", - "energy": "-50", - "move-duration-seg": "1.7" - }, - { - "name": "wild charge", - "type": "electric", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "megahorn", - "type": "bug", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "stantler candy" - } - }, - { - "num": "235", - "name": "smeargle", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Smeargle marks the boundaries of its territory using a body fluid that leaks out from the tip of its tail. Over 5,000 different marks left by this Pokémon have been found.", - "img": "https://www.serebii.net/pokemongo/pokemon/235.png", - "size": { - "height": "1.19 m", - "weight": "58.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.25" - }, - "spawn-chance": null, - "stats": { - "base-attack": "40", - "base-defense": "83", - "base-stamina": "146", - "max-cp": "431", - "max-hp": "127" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }], - "special-attack": [ - { - "name": "struggle", - "type": "normal", - "base-damage": "35", - "energy": "-33", - "move-duration-seg": "2.2" - }], - "egg": "not in eggs", - "buddy-distance-km": "3", - "evolution": { - "candy": "smeargle candy" - } - }, - { - "num": "236", - "name": "tyrogue", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Tyrogue becomes stressed out if it does not get to train every day. When raising this Pokémon, the Trainer must establish and uphold various training methods.", - "img": "https://www.serebii.net/pokemongo/pokemon/236.png", - "size": { - "height": "0.71 m", - "weight": "21.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "not in capture", - "base-capture-rate": "not in capture" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "64", - "base-defense": "64", - "base-stamina": "111", - "max-cp": "492", - "max-hp": "99" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - }, - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - } - ], - "special-attack": [ - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "rock slide", - "type": "rock", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.7" - }, - { - "name": "low sweep", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.9" - } - ], - "egg": "7 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "tyrogue candy", - "next-evolution": [ - { - "num": "106", - "name": "hitmonlee", - "candy-cost": "25" - }, - { - "num": "107", - "name": "hitmonchan", - "candy-cost": "25" - }, - { - "num": "237", - "name": "hitmontop", - "candy-cost": "25" - } - ] - } - }, - { - "num": "237", - "name": "hitmontop", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Hitmontop spins on its head at high speed, all the while delivering kicks. This technique is a remarkable mix of both offense and defense at the same time. The Pokémon travels faster spinning than it does walking.", - "img": "https://www.serebii.net/pokemongo/pokemon/237.png", - "size": { - "height": "1.40 m", - "weight": "48.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fighting" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.1" - }, - "spawn-chance": null, - "stats": { - "base-attack": "173", - "base-defense": "207", - "base-stamina": "137", - "max-cp": "2156", - "max-hp": "120" - }, - "resistant": [ - "bug", - "rock", - "dark" - ], - "weaknesses": [ - "flying", - "psychic", - "fairy" - ], - "quick-move": [ - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - }, - { - "name": "counter", - "type": "fight", - "base-damage": "12", - "energy": "8", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "close combat", - "type": "fight", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - }, - { - "name": "gyro ball", - "type": "steel", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "tyrogue candy", - "prev-evolution": [{ - "num": "236", - "name": "tyrogue", - "candy-cost": "25" - }] - } - }, - { - "num": "238", - "name": "smoochum", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Smoochum actively runs about, but also falls quite often. Whenever the chance arrives, it will look for its reflection to make sure its face hasn't become dirty.", - "img": "https://www.serebii.net/pokemongo/pokemon/238.png", - "size": { - "height": "0.41 m", - "weight": "6.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "ice", - "psychic" - ], - "encounter": { - "base-flee-rate": "not in capture", - "base-capture-rate": "not in capture" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "153", - "base-defense": "91", - "base-stamina": "128", - "max-cp": "1291", - "max-hp": "113" - }, - "resistant": [ - "ice", - "psychic" - ], - "weaknesses": [ - "fire", - "bug", - "rock", - "ghost" - ], - "quick-move": [ - { - "name": "powder snow", - "type": "ice", - "base-damage": "6", - "energy": "15", - "move-duration-seg": "1" - }, - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "frost breath", - "type": "ice", - "base-damage": "10", - "energy": "8", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "ice beam", - "type": "ice", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "3.3" - }, - { - "name": "ice punch", - "type": "ice", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "psyshock", - "type": "psychic", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.7" - } - ], - "egg": "7 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "jynx candy", - "next-evolution": [{ - "num": "124", - "name": "jynx", - "candy-cost": "25" - }] - } - }, - { - "num": "239", - "name": "elekid", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Elekid stores electricity in its body. If it touches metal and accidentally discharges all its built-up electricity, this Pokémon begins swinging its arms in circles to recharge itself.", - "img": "https://www.serebii.net/pokemongo/pokemon/239.png", - "size": { - "height": "0.61 m", - "weight": "23.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "not in capture", - "base-capture-rate": "not in capture" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "135", - "base-defense": "101", - "base-stamina": "128", - "max-cp": "1206", - "max-hp": "113" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "low kick", - "type": "fight", - "base-damage": "6", - "energy": "6", - "move-duration-seg": "0.6" - } - ], - "special-attack": [ - { - "name": "thunder punch", - "type": "electric", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.8" - }, - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "discharge", - "type": "electric", - "base-damage": "65", - "energy": "-33", - "move-duration-seg": "2.5" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - } - ], - "egg": "7 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "electabuzz candy", - "next-evolution": [{ - "num": "125", - "name": "electabuzz", - "candy-cost": "25", - "next-evolution": [{ - "num": "466", - "name": "electivire", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - }] - } - }, - { - "num": "240", - "name": "magby", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Magby's state of health is determined by observing the fire it breathes. If the Pokémon is spouting yellow flames from its mouth, it is in good health. When it is fatigued, black smoke will be mixed in with the flames.", - "img": "https://www.serebii.net/pokemongo/pokemon/240.png", - "size": { - "height": "0.71 m", - "weight": "21.4 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "not in capture", - "base-capture-rate": "not in capture" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "151", - "base-defense": "99", - "base-stamina": "128", - "max-cp": "1323", - "max-hp": "113" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "ember", - "type": "fire", - "base-damage": "10", - "energy": "10", - "move-duration-seg": "1" - }, - { - "name": "karate chop", - "type": "fight", - "base-damage": "8", - "energy": "10", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "brick break", - "type": "fight", - "base-damage": "40", - "energy": "-33", - "move-duration-seg": "1.6" - }, - { - "name": "fire punch", - "type": "fire", - "base-damage": "55", - "energy": "-33", - "move-duration-seg": "2.2" - }, - { - "name": "flame burst", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.6" - }, - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - } - ], - "egg": "7 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "magmar candy", - "next-evolution": [{ - "num": "126", - "name": "magmar", - "candy-cost": "25", - "next-evolution": [{ - "num": "467", - "name": "magmortar", - "candy-cost": "100", - "evolution-item": { - "name": "sinnoh stone", - "img": "https://pokemon.gameinfo.io/images/item/thumbs/200/sinnoh-stone.png" - } - }] - }] - } - }, - { - "num": "241", - "name": "miltank", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Miltank gives over five gallons of milk on a daily basis. Its sweet milk is enjoyed by children and grown-ups alike. People who can't drink milk turn it into yogurt and eat it instead.", - "img": "https://www.serebii.net/pokemongo/pokemon/241.png", - "size": { - "height": "1.19 m", - "weight": "75.5 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.08", - "base-capture-rate": "0.2" - }, - "spawn-chance": null, - "stats": { - "base-attack": "157", - "base-defense": "193", - "base-stamina": "216", - "max-cp": "2354", - "max-hp": "182" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "tackle", - "type": "normal", - "base-damage": "5", - "energy": "5", - "move-duration-seg": "0.5" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "stomp", - "type": "normal", - "base-damage": "55", - "energy": "-50", - "move-duration-seg": "1.7" - }, - { - "name": "body slam", - "type": "normal", - "base-damage": "50", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "gyro ball", - "type": "steel", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "3.3" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "miltank candy" - } - }, - { - "num": "242", - "name": "blissey", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Blissey senses sadness with its fluffy coat of fur. If it does so, this Pokémon will rush over to a sad person, no matter how far away, to share a Lucky Egg that brings a smile to any face.", - "img": "https://www.serebii.net/pokemongo/pokemon/242.png", - "size": { - "height": "1.50 m", - "weight": "46.8 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "normal" - ], - "encounter": { - "base-flee-rate": "0.05", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "129", - "base-defense": "169", - "base-stamina": "496", - "max-cp": "2757", - "max-hp": "403" - }, - "resistant": [ - "ghost" - ], - "weaknesses": [ - "fighting" - ], - "quick-move": [ - { - "name": "pound", - "type": "normal", - "base-damage": "7", - "energy": "6", - "move-duration-seg": "0.6" - }, - { - "name": "zen headbutt", - "type": "psychic", - "base-damage": "12", - "energy": "10", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "chansey candy", - "prev-evolution": [{ - "num": "113", - "name": "chansey", - "candy-cost": "50", - "prev-evolution": [{ - "num": "440", - "name": "happiny", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "243", - "name": "raikou", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Raikou embodies the speed of lightning. The roars of this Pokémon send shock waves shuddering through the air and shake the ground as if lightning bolts had come crashing down.", - "img": "https://www.serebii.net/pokemongo/pokemon/243.png", - "size": { - "height": "1.91 m", - "weight": "178.0 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "electric" - ], - "encounter": { - "base-flee-rate": "0.04", - "base-capture-rate": "0.02" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "241", - "base-defense": "195", - "base-stamina": "207", - "max-cp": "3452", - "max-hp": "175" - }, - "resistant": [ - "electric", - "flying", - "steel" - ], - "weaknesses": [ - "ground" - ], - "quick-move": [ - { - "name": "thunder shock", - "type": "electric", - "base-damage": "5", - "energy": "8", - "move-duration-seg": "0.6" - }, - { - "name": "volt switch", - "type": "electric", - "base-damage": "20", - "energy": "25", - "move-duration-seg": "2.3" - } - ], - "special-attack": [ - { - "name": "thunder", - "type": "electric", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.4" - }, - { - "name": "thunderbolt", - "type": "electric", - "base-damage": "80", - "energy": "-50", - "move-duration-seg": "2.5" - }, - { - "name": "wild charge", - "type": "electric", - "base-damage": "90", - "energy": "-50", - "move-duration-seg": "2.6" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "raikou candy" - } - }, - { - "num": "244", - "name": "entei", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Entei embodies the passion of magma. This Pokémon is thought to have been born in the eruption of a volcano. It sends up massive bursts of fire that utterly consume all that they touch.", - "img": "https://www.serebii.net/pokemongo/pokemon/244.png", - "size": { - "height": "2.11 m", - "weight": "198.0 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "fire" - ], - "encounter": { - "base-flee-rate": "0.04", - "base-capture-rate": "0.02" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "235", - "base-defense": "171", - "base-stamina": "251", - "max-cp": "3473", - "max-hp": "210" - }, - "resistant": [ - "fire", - "grass", - "ice", - "bug", - "steel" - ], - "weaknesses": [ - "water", - "ground", - "rock" - ], - "quick-move": [ - { - "name": "fire spin", - "type": "fire", - "base-damage": "14", - "energy": "10", - "move-duration-seg": "1.1" - }, - { - "name": "fire fang", - "type": "fire", - "base-damage": "11", - "energy": "8", - "move-duration-seg": "0.9" - } - ], - "special-attack": [ - { - "name": "flamethrower", - "type": "fire", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2.2" - }, - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "overheat", - "type": "fire", - "base-damage": "160", - "energy": "-100", - "move-duration-seg": "4" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "entei candy" - } - }, - { - "num": "245", - "name": "suicune", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Suicune embodies the compassion of a pure spring of water. It runs across the land with gracefulness. This Pokémon has the power to purify dirty water.", - "img": "https://www.serebii.net/pokemongo/pokemon/245.png", - "size": { - "height": "2.01 m", - "weight": "187.0 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "water" - ], - "encounter": { - "base-flee-rate": "0.04", - "base-capture-rate": "0.02" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "180", - "base-defense": "235", - "base-stamina": "225", - "max-cp": "2983", - "max-hp": "189" - }, - "resistant": [ - "fire", - "water", - "ice", - "steel" - ], - "weaknesses": [ - "electric", - "grass" - ], - "quick-move": [ - { - "name": "extrasensory", - "type": "psychic", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - }, - { - "name": "snarl", - "type": "dark", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "bubble beam", - "type": "water", - "base-damage": "45", - "energy": "-33", - "move-duration-seg": "1.9" - }, - { - "name": "water pulse", - "type": "water", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "3.2" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "suicune candy" - } - }, - { - "num": "246", - "name": "larvitar", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Larvitar is born deep under the ground. To come up to the surface, this Pokémon must eat its way through the soil above. Until it does so, Larvitar cannot see its parents.", - "img": "https://www.serebii.net/pokemongo/pokemon/246.png", - "size": { - "height": "0.60 m", - "weight": "72.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "ground" - ], - "encounter": { - "base-flee-rate": "0.1", - "base-capture-rate": "0.4" - }, - "spawn-chance": null, - "stats": { - "base-attack": "115", - "base-defense": "93", - "base-stamina": "137", - "max-cp": "1040", - "max-hp": "120" - }, - "resistant": [ - "electric", - "poison", - "fire", - "flying", - "normal", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ground", - "ice", - "steel", - "fighting" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "stomp", - "type": "normal", - "base-damage": "55", - "energy": "-50", - "move-duration-seg": "1.7" - }, - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - } - ], - "egg": "10 km", - "buddy-distance-km": "5", - "evolution": { - "candy": "larvitar candy", - "next-evolution": [{ - "num": "247", - "name": "pupitar", - "candy-cost": "25", - "next-evolution": [{ - "num": "248", - "name": "tyranitar", - "candy-cost": "100" - }] - }] - } - }, - { - "num": "247", - "name": "pupitar", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Pupitar creates a gas inside its body that it compresses and forcefully ejects to propel itself like a jet. The body is very durable—it avoids damage even if it hits solid steel.", - "img": "https://www.serebii.net/pokemongo/pokemon/247.png", - "size": { - "height": "1.20 m", - "weight": "152.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "ground" - ], - "encounter": { - "base-flee-rate": "0.07", - "base-capture-rate": "0.1" - }, - "spawn-chance": null, - "stats": { - "base-attack": "155", - "base-defense": "133", - "base-stamina": "172", - "max-cp": "1766", - "max-hp": "147" - }, - "resistant": [ - "electric", - "poison", - "fire", - "flying", - "normal", - "rock" - ], - "weaknesses": [ - "water", - "grass", - "ground", - "ice", - "steel", - "fighting" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "rock smash", - "type": "fight", - "base-damage": "15", - "energy": "10", - "move-duration-seg": "1.3" - } - ], - "special-attack": [ - { - "name": "dig", - "type": "ground", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "4.7" - }, - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "ancient power", - "type": "rock", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "larvitar candy", - "next-evolution": [{ - "num": "248", - "name": "tyranitar", - "candy-cost": "100" - }], - "prev-evolution": [{ - "num": "246", - "name": "larvitar", - "candy-cost": "25" - }] - } - }, - { - "num": "248", - "name": "tyranitar", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Tyranitar is so overwhelmingly powerful, it can bring down a whole mountain to make its nest. This Pokémon wanders about in mountains seeking new opponents to fight.", - "img": "https://www.serebii.net/pokemongo/pokemon/248.png", - "size": { - "height": "2.00 m", - "weight": "202.0 kg" - }, - "pokemon-rarity": "normal", - "type": [ - "rock", - "dark" - ], - "encounter": { - "base-flee-rate": "0.04", - "base-capture-rate": "0.05" - }, - "spawn-chance": null, - "stats": { - "base-attack": "251", - "base-defense": "207", - "base-stamina": "225", - "max-cp": "3834", - "max-hp": "189" - }, - "resistant": [ - "psychic", - "dark", - "ghost", - "fire", - "poison", - "flying", - "normal" - ], - "weaknesses": [ - "fighting", - "ground", - "steel", - "water", - "grass", - "bug", - "fairy" - ], - "quick-move": [ - { - "name": "bite", - "type": "dark", - "base-damage": "6", - "energy": "4", - "move-duration-seg": "0.5" - }, - { - "name": "iron tail", - "type": "steel", - "base-damage": "15", - "energy": "7", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "crunch", - "type": "dark", - "base-damage": "70", - "energy": "-33", - "move-duration-seg": "3.2" - }, - { - "name": "stone edge", - "type": "rock", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.3" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "5", - "evolution": { - "candy": "larvitar candy", - "prev-evolution": [{ - "num": "247", - "name": "pupitar", - "candy-cost": "100", - "prev-evolution": [{ - "num": "246", - "name": "larvitar", - "candy-cost": "25" - }] - }] - } - }, - { - "num": "249", - "name": "lugia", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Lugia's wings pack devastating power-a light fluttering of its wings can blow apart regular houses. As a result, this Pokémon chooses to live out of sight deep under the sea.", - "img": "https://www.serebii.net/pokemongo/pokemon/249.png", - "size": { - "height": "5.21 m", - "weight": "216.0 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "psychic", - "flying" - ], - "encounter": { - "base-flee-rate": "0.04", - "base-capture-rate": "0.02" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "193", - "base-defense": "310", - "base-stamina": "235", - "max-cp": "3703", - "max-hp": "197" - }, - "resistant": [ - "grass", - "fighting", - "ground", - "psychic" - ], - "weaknesses": [ - "electric", - "ice", - "rock", - "ghost" - ], - "quick-move": [ - { - "name": "extrasensory", - "type": "psychic", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - }, - { - "name": "dragon tail", - "type": "dragon", - "base-damage": "15", - "energy": "9", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "sky attack", - "type": "flying", - "base-damage": "70", - "energy": "-50", - "move-duration-seg": "2" - }, - { - "name": "hydro pump", - "type": "water", - "base-damage": "130", - "energy": "-100", - "move-duration-seg": "3.3" - }, - { - "name": "futuresight", - "type": "psychic", - "base-damage": "120", - "energy": "-100", - "move-duration-seg": "2.7" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "lugia candy" - } - }, - { - "num": "250", - "name": "ho-oh", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "Ho-Oh's feathers glow in seven colors depending on the angle at which they are struck by light. These feathers are said to bring happiness to the bearers. This Pokémon is said to live at the foot of a rainbow.", - "img": "https://www.serebii.net/pokemongo/pokemon/250.png", - "size": { - "height": "3.80 m", - "weight": "199.0 kg" - }, - "pokemon-rarity": "legendary", - "type": [ - "fire", - "flying" - ], - "encounter": { - "base-flee-rate": "0.04", - "base-capture-rate": "0.02" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "239", - "base-defense": "244", - "base-stamina": "214", - "max-cp": "3863", - "max-hp": "180" - }, - "resistant": [ - "fighting", - "bug", - "grass", - "steel", - "fire", - "fairy" - ], - "weaknesses": [ - "rock", - "ground", - "electric", - "water" - ], - "quick-move": [ - { - "name": "extrasensory", - "type": "psychic", - "base-damage": "12", - "energy": "12", - "move-duration-seg": "1.1" - }, - { - "name": "steel wing", - "type": "steel", - "base-damage": "11", - "energy": "6", - "move-duration-seg": "0.8" - } - ], - "special-attack": [ - { - "name": "brave bird", - "type": "flying", - "base-damage": "90", - "energy": "-100", - "move-duration-seg": "2" - }, - { - "name": "fire blast", - "type": "fire", - "base-damage": "140", - "energy": "-100", - "move-duration-seg": "4.2" - }, - { - "name": "solar beam", - "type": "grass", - "base-damage": "180", - "energy": "-100", - "move-duration-seg": "4.9" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "ho-oh candy" - } - }, - { - "num": "251", - "name": "celebi", - "generation": { - "num": "generation ii", - "name": "johto" - }, - "about": "This Pokémon came from the future by crossing over time. It is thought that so long as Celebi appears, a bright and shining future awaits us.", - "img": "https://www.serebii.net/pokemongo/pokemon/251.png", - "size": { - "height": "0.61 m", - "weight": "5.0 kg" - }, - "pokemon-rarity": "mythic", - "type": [ - "psychic", - "grass" - ], - "encounter": { - "base-flee-rate": "0", - "base-capture-rate": "100" - }, - "spawn-chance": "0", - "stats": { - "base-attack": "210", - "base-defense": "210", - "base-stamina": "225", - "max-cp": "3265", - "max-hp": "189" - }, - "resistant": [ - "water", - "electric", - "grass", - "fighting", - "ground" - ], - "weaknesses": [ - "fire", - "ice", - "poison", - "flying" - ], - "quick-move": [ - { - "name": "confusion", - "type": "psychic", - "base-damage": "20", - "energy": "15", - "move-duration-seg": "1.6" - }, - { - "name": "charge beam", - "type": "electric", - "base-damage": "8", - "energy": "15", - "move-duration-seg": "1.1" - } - ], - "special-attack": [ - { - "name": "hyper beam", - "type": "normal", - "base-damage": "150", - "energy": "-100", - "move-duration-seg": "3.8" - }, - { - "name": "psychic", - "type": "psychic", - "base-damage": "100", - "energy": "-100", - "move-duration-seg": "2.8" - }, - { - "name": "dazzling gleam", - "type": "fairy", - "base-damage": "100", - "energy": "-50", - "move-duration-seg": "3.5" - } - ], - "egg": "not in eggs", - "buddy-distance-km": "20", - "evolution": { - "candy": "celebi candy" - } - }] -} diff --git a/src/data/rickandmorty/README.md b/src/data/rickandmorty/README.md deleted file mode 100644 index 10632ccc..00000000 --- a/src/data/rickandmorty/README.md +++ /dev/null @@ -1,40 +0,0 @@ -# Rick and Morty - -Rick y Morty es una serie de televisión estadounidense de animación para -adultos. La serie tiene gran acogida a nivel mundial, de todo este fandom hay -un grupo que desea poder interactuar y ver la información de los personajes y -de la serie en general. - -## Hallazgos - -Hicimos una rápida investigación sobre la información que podrían necesitar -nuestros usuarios y encontramos que los datos de mayor interés para ellos son: - -Información relevante sobre los personajes, como nombre, género, especie, lugar -de origen, imagen y episodios donde aparece. - -Adicionalmente a esta información, para nuestros usuarios es importante poder -ver la lista de personajes que aparecen en la serie, la cantidad de -episodios, los diferentes lugares de origen, para tener mayor información de la -serie. - -## Detalles de la data - -* Con este set de datos puedes obtener los siguientes datos de un personaje: - - - nombre - - imagen - - estado de vida - - especie - - género - - lugar de origen (planeta tierra) - - lugar donde vive. - - episodios donde aparece. - -* Con este set de datos también puedes obtener lo siguiente: - - - Cantidad de personajes. - - Cantidad de lugares de origen. - - Lista de episodios de la serie. - - Lista de personajes que pertenecen a una cierta locación. - - Todos los personajes de la serie. diff --git a/src/data/rickandmorty/README.pt-BR.md b/src/data/rickandmorty/README.pt-BR.md deleted file mode 100644 index 3d07ad1c..00000000 --- a/src/data/rickandmorty/README.pt-BR.md +++ /dev/null @@ -1,40 +0,0 @@ -# Rick e Morty - -Rick and Morty é uma série de televisão de animação americana para adultos. A -série é muito bem recebida mundialmente, e de todo esse grupo de fãs, há um -grupo que quer ser capaz de interagir e ver as informações dos personagens e da -série em geral. - -## Constatações - -Pesquisamos rapidamente as informações de que nossos usuários precisam e -descobrimos que os dados mais interessantes para eles são: - -Informações relevantes sobre os personagens, como nome, gênero, espécie, local -de origem, imagem e episódios em que aparecem. - -Além dessas informações, para nossos usuários, é importante poder ver a lista de -personagens que aparecem na série, o número de episódios, os diferentes locais -de origem, para obter mais informações sobre a série. - -## Detalhes dos dados - -* Com este conjunto de dados, você pode obter os seguintes dados para um - personagem: - - - nome - - imagem - - estado de vida - - espécie - - gênero - - local de origem (planeta Terra) - - lugar onde vive - - episódios em que aparece - -* Com esse conjunto de dados, você também pode obter o seguinte: - - - Número de personagens. - - Número de lugares de origem. - - Lista de episódios da série. - - Lista de personagens que pertencem a um determinado local. - - Todos os personagens da série. diff --git a/src/data/rickandmorty/rickandmorty.js b/src/data/rickandmorty/rickandmorty.js deleted file mode 100644 index e6a9b0de..00000000 --- a/src/data/rickandmorty/rickandmorty.js +++ /dev/null @@ -1,11165 +0,0 @@ -export default { - "info": { - "count": 493, - "pages": 25, - "next": "https://rickandmortyapi.com/api/character/?page=2", - "prev": "" - }, - "results": [ - { - "id": 1, - "name": "Rick Sanchez", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/1.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/3", - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/7", - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/12", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/14", - "https://rickandmortyapi.com/api/episode/15", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/17", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/20", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/23", - "https://rickandmortyapi.com/api/episode/24", - "https://rickandmortyapi.com/api/episode/25", - "https://rickandmortyapi.com/api/episode/26", - "https://rickandmortyapi.com/api/episode/27", - "https://rickandmortyapi.com/api/episode/28", - "https://rickandmortyapi.com/api/episode/29", - "https://rickandmortyapi.com/api/episode/30", - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/1", - "created": "2017-11-04T18:48:46.250Z" - }, - { - "id": 2, - "name": "Morty Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/2.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/3", - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/7", - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/12", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/14", - "https://rickandmortyapi.com/api/episode/15", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/17", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/20", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/23", - "https://rickandmortyapi.com/api/episode/24", - "https://rickandmortyapi.com/api/episode/25", - "https://rickandmortyapi.com/api/episode/26", - "https://rickandmortyapi.com/api/episode/27", - "https://rickandmortyapi.com/api/episode/28", - "https://rickandmortyapi.com/api/episode/29", - "https://rickandmortyapi.com/api/episode/30", - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/2", - "created": "2017-11-04T18:50:21.651Z" - }, - { - "id": 3, - "name": "Summer Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/3.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/7", - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/12", - "https://rickandmortyapi.com/api/episode/14", - "https://rickandmortyapi.com/api/episode/15", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/17", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/20", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/23", - "https://rickandmortyapi.com/api/episode/24", - "https://rickandmortyapi.com/api/episode/25", - "https://rickandmortyapi.com/api/episode/26", - "https://rickandmortyapi.com/api/episode/27", - "https://rickandmortyapi.com/api/episode/29", - "https://rickandmortyapi.com/api/episode/30", - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/3", - "created": "2017-11-04T19:09:56.428Z" - }, - { - "id": 4, - "name": "Beth Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/4.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/7", - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/12", - "https://rickandmortyapi.com/api/episode/14", - "https://rickandmortyapi.com/api/episode/15", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/20", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/23", - "https://rickandmortyapi.com/api/episode/24", - "https://rickandmortyapi.com/api/episode/25", - "https://rickandmortyapi.com/api/episode/26", - "https://rickandmortyapi.com/api/episode/27", - "https://rickandmortyapi.com/api/episode/28", - "https://rickandmortyapi.com/api/episode/29", - "https://rickandmortyapi.com/api/episode/30", - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/4", - "created": "2017-11-04T19:22:43.665Z" - }, - { - "id": 5, - "name": "Jerry Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/5.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/7", - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/12", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/14", - "https://rickandmortyapi.com/api/episode/15", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/20", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/23", - "https://rickandmortyapi.com/api/episode/26", - "https://rickandmortyapi.com/api/episode/29", - "https://rickandmortyapi.com/api/episode/30", - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/5", - "created": "2017-11-04T19:26:56.301Z" - }, - { - "id": 6, - "name": "Abadango Cluster Princess", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Female", - "origin": { - "name": "Abadango", - "url": "https://rickandmortyapi.com/api/location/2" - }, - "location": { - "name": "Abadango", - "url": "https://rickandmortyapi.com/api/location/2" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/6.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/6", - "created": "2017-11-04T19:50:28.250Z" - }, - { - "id": 7, - "name": "Abradolf Lincler", - "status": "unknown", - "species": "Human", - "type": "Genetic experiment", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Testicle Monster Dimension", - "url": "https://rickandmortyapi.com/api/location/21" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/7.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11" - ], - "url": "https://rickandmortyapi.com/api/character/7", - "created": "2017-11-04T19:59:20.523Z" - }, - { - "id": 8, - "name": "Adjudicator Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/8.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/8", - "created": "2017-11-04T20:03:34.737Z" - }, - { - "id": 9, - "name": "Agency Director", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/9.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/24" - ], - "url": "https://rickandmortyapi.com/api/character/9", - "created": "2017-11-04T20:06:54.976Z" - }, - { - "id": 10, - "name": "Alan Rails", - "status": "Dead", - "species": "Human", - "type": "Superhuman (Ghost trains summoner)", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/10.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/10", - "created": "2017-11-04T20:19:09.017Z" - }, - { - "id": 11, - "name": "Albert Einstein", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/11.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/12" - ], - "url": "https://rickandmortyapi.com/api/character/11", - "created": "2017-11-04T20:20:20.965Z" - }, - { - "id": 12, - "name": "Alexander", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/12.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/12", - "created": "2017-11-04T20:32:33.144Z" - }, - { - "id": 13, - "name": "Alien Googah", - "status": "unknown", - "species": "Alien", - "type": "", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/13.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/13", - "created": "2017-11-04T20:33:30.779Z" - }, - { - "id": 14, - "name": "Alien Morty", - "status": "unknown", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/14.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/14", - "created": "2017-11-04T20:51:31.373Z" - }, - { - "id": 15, - "name": "Alien Rick", - "status": "unknown", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/15.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/15", - "created": "2017-11-04T20:56:13.215Z" - }, - { - "id": 16, - "name": "Amish Cyborg", - "status": "Dead", - "species": "Alien", - "type": "Parasite, Cyborg", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/16.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/16", - "created": "2017-11-04T21:12:45.235Z" - }, - { - "id": 17, - "name": "Annie", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/17.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/17", - "created": "2017-11-04T22:21:24.481Z" - }, - { - "id": 18, - "name": "Antenna Morty", - "status": "Alive", - "species": "Human", - "type": "Human with antennae", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/18.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/18", - "created": "2017-11-04T22:25:29.008Z" - }, - { - "id": 19, - "name": "Antenna Rick", - "status": "unknown", - "species": "Human", - "type": "Human with antennae", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/19.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/19", - "created": "2017-11-04T22:28:13.756Z" - }, - { - "id": 20, - "name": "Ants in my Eyes Johnson", - "status": "unknown", - "species": "Human", - "type": "Human with ants in his eyes", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/20.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/20", - "created": "2017-11-04T22:34:53.659Z" - }, - { - "id": 21, - "name": "Aqua Morty", - "status": "unknown", - "species": "Humanoid", - "type": "Fish-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/21.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/21", - "created": "2017-11-04T22:39:48.055Z" - }, - { - "id": 22, - "name": "Aqua Rick", - "status": "unknown", - "species": "Humanoid", - "type": "Fish-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/22.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/22", - "created": "2017-11-04T22:41:07.171Z" - }, - { - "id": 23, - "name": "Arcade Alien", - "status": "unknown", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Immortality Field Resort", - "url": "https://rickandmortyapi.com/api/location/7" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/23.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/25", - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/23", - "created": "2017-11-05T08:43:05.095Z" - }, - { - "id": 24, - "name": "Armagheadon", - "status": "Alive", - "species": "Alien", - "type": "Cromulon", - "gender": "Male", - "origin": { - "name": "Signus 5 Expanse", - "url": "https://rickandmortyapi.com/api/location/22" - }, - "location": { - "name": "Signus 5 Expanse", - "url": "https://rickandmortyapi.com/api/location/22" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/24.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/24", - "created": "2017-11-05T08:48:30.776Z" - }, - { - "id": 25, - "name": "Armothy", - "status": "Dead", - "species": "unknown", - "type": "Self-aware arm", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/25.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/25", - "created": "2017-11-05T08:54:29.343Z" - }, - { - "id": 26, - "name": "Arthricia", - "status": "Alive", - "species": "Alien", - "type": "Cat-Person", - "gender": "Female", - "origin": { - "name": "Purge Planet", - "url": "https://rickandmortyapi.com/api/location/9" - }, - "location": { - "name": "Purge Planet", - "url": "https://rickandmortyapi.com/api/location/9" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/26.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/20" - ], - "url": "https://rickandmortyapi.com/api/character/26", - "created": "2017-11-05T08:56:46.165Z" - }, - { - "id": 27, - "name": "Artist Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/27.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/27", - "created": "2017-11-05T08:59:07.457Z" - }, - { - "id": 28, - "name": "Attila Starwar", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/28.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/28", - "created": "2017-11-05T09:02:16.595Z" - }, - { - "id": 29, - "name": "Baby Legs", - "status": "Alive", - "species": "Human", - "type": "Human with baby legs", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/29.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/29", - "created": "2017-11-05T09:06:19.644Z" - }, - { - "id": 30, - "name": "Baby Poopybutthole", - "status": "Alive", - "species": "Poopybutthole", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/30.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/30", - "created": "2017-11-05T09:13:16.483Z" - }, - { - "id": 31, - "name": "Baby Wizard", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/31.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/31", - "created": "2017-11-05T09:15:11.286Z" - }, - { - "id": 32, - "name": "Bearded Lady", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/32.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/32", - "created": "2017-11-05T09:18:04.184Z" - }, - { - "id": 33, - "name": "Beebo", - "status": "Dead", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "Venzenulon 7", - "url": "https://rickandmortyapi.com/api/location/10" - }, - "location": { - "name": "Venzenulon 7", - "url": "https://rickandmortyapi.com/api/location/10" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/33.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/33", - "created": "2017-11-05T09:21:55.595Z" - }, - { - "id": 34, - "name": "Benjamin", - "status": "Alive", - "species": "Poopybutthole", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/34.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/34", - "created": "2017-11-05T09:24:04.748Z" - }, - { - "id": 35, - "name": "Bepisian", - "status": "Alive", - "species": "Alien", - "type": "Bepisian", - "gender": "unknown", - "origin": { - "name": "Bepis 9", - "url": "https://rickandmortyapi.com/api/location/11" - }, - "location": { - "name": "Bepis 9", - "url": "https://rickandmortyapi.com/api/location/11" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/35.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/35", - "created": "2017-11-05T09:27:38.491Z" - }, - { - "id": 36, - "name": "Beta-Seven", - "status": "Alive", - "species": "Alien", - "type": "Hivemind", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/36.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/14" - ], - "url": "https://rickandmortyapi.com/api/character/36", - "created": "2017-11-05T09:31:08.952Z" - }, - { - "id": 37, - "name": "Beth Sanchez", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "location": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/37.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/37", - "created": "2017-11-05T09:38:22.960Z" - }, - { - "id": 38, - "name": "Beth Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/38.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/3", - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/38", - "created": "2017-11-05T09:48:44.230Z" - }, - { - "id": 39, - "name": "Beth Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "location": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/39.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/39", - "created": "2017-11-05T09:52:31.777Z" - }, - { - "id": 40, - "name": "Beth's Mytholog", - "status": "Dead", - "species": "Mytholog", - "type": "", - "gender": "Female", - "origin": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/40.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/40", - "created": "2017-11-05T10:02:26.701Z" - }, - { - "id": 41, - "name": "Big Boobed Waitress", - "status": "Alive", - "species": "Humanoid", - "type": "", - "gender": "Female", - "origin": { - "name": "Fantasy World", - "url": "https://rickandmortyapi.com/api/location/48" - }, - "location": { - "name": "Fantasy World", - "url": "https://rickandmortyapi.com/api/location/48" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/41.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/41", - "created": "2017-11-05T10:13:45.960Z" - }, - { - "id": 42, - "name": "Big Head Morty", - "status": "unknown", - "species": "Human", - "type": "Human with giant head", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/42.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/42", - "created": "2017-11-05T10:15:53.349Z" - }, - { - "id": 43, - "name": "Big Morty", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/43.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/43", - "created": "2017-11-05T10:17:04.997Z" - }, - { - "id": 44, - "name": "Body Guard Morty", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/44.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/44", - "created": "2017-11-05T10:18:11.062Z" - }, - { - "id": 45, - "name": "Bill", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/45.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/45", - "created": "2017-11-05T10:22:27.446Z" - }, - { - "id": 46, - "name": "Bill", - "status": "unknown", - "species": "Animal", - "type": "Dog", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/46.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/46", - "created": "2017-11-05T10:24:38.089Z" - }, - { - "id": 47, - "name": "Birdperson", - "status": "Dead", - "species": "Alien", - "type": "Bird-Person", - "gender": "Male", - "origin": { - "name": "Bird World", - "url": "https://rickandmortyapi.com/api/location/15" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/47.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/47", - "created": "2017-11-05T11:13:36.018Z" - }, - { - "id": 48, - "name": "Black Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/48.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/48", - "created": "2017-11-05T11:15:26.044Z" - }, - { - "id": 49, - "name": "Blamph", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/49.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/49", - "created": "2017-11-05T11:18:26.702Z" - }, - { - "id": 50, - "name": "Blim Blam", - "status": "Alive", - "species": "Alien", - "type": "Korblock", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/50.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/14" - ], - "url": "https://rickandmortyapi.com/api/character/50", - "created": "2017-11-05T11:21:43.756Z" - }, - { - "id": 51, - "name": "Blue Diplomat", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/51.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/51", - "created": "2017-11-05T11:24:49.688Z" - }, - { - "id": 52, - "name": "Blue Footprint Guy", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/52.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/52", - "created": "2017-11-05T11:26:42.084Z" - }, - { - "id": 53, - "name": "Blue Shirt Morty", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/53.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/53", - "created": "2017-11-05T11:28:38.627Z" - }, - { - "id": 54, - "name": "Bobby Moynihan", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/54.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/54", - "created": "2017-11-05T11:31:26.348Z" - }, - { - "id": 55, - "name": "Boobloosian", - "status": "Dead", - "species": "Alien", - "type": "Boobloosian", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/55.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/55", - "created": "2017-11-05T11:32:53.847Z" - }, - { - "id": 56, - "name": "Bootleg Portal Chemist Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/56.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/56", - "created": "2017-11-05T11:34:16.447Z" - }, - { - "id": 57, - "name": "Borpocian", - "status": "Alive", - "species": "Alien", - "type": "Elephant-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/57.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/57", - "created": "2017-11-05T11:38:29.459Z" - }, - { - "id": 58, - "name": "Brad", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/58.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/58", - "created": "2017-11-05T11:40:02.554Z" - }, - { - "id": 59, - "name": "Brad Anderson", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/59.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/7" - ], - "url": "https://rickandmortyapi.com/api/character/59", - "created": "2017-11-05T11:41:38.964Z" - }, - { - "id": 60, - "name": "Calypso", - "status": "Dead", - "species": "Human", - "type": "Superhuman", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/60.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/60", - "created": "2017-11-05T11:52:45.852Z" - }, - { - "id": 61, - "name": "Campaign Manager Morty", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/61.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/61", - "created": "2017-11-05T11:53:44.737Z" - }, - { - "id": 62, - "name": "Canklanker Thom", - "status": "Dead", - "species": "Alien", - "type": "Gromflomite", - "gender": "Male", - "origin": { - "name": "Gromflom Prime", - "url": "https://rickandmortyapi.com/api/location/19" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/62.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1" - ], - "url": "https://rickandmortyapi.com/api/character/62", - "created": "2017-11-05T12:06:23.217Z" - }, - { - "id": 63, - "name": "Centaur", - "status": "Alive", - "species": "Humanoid", - "type": "Centaur", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/63.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/63", - "created": "2017-11-05T12:22:17.848Z" - }, - { - "id": 64, - "name": "Chris", - "status": "Dead", - "species": "Alien", - "type": "Organic gun", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/64.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/12" - ], - "url": "https://rickandmortyapi.com/api/character/64", - "created": "2017-11-05T12:25:03.541Z" - }, - { - "id": 65, - "name": "Chris", - "status": "Alive", - "species": "Humanoid", - "type": "Microverse inhabitant", - "gender": "Male", - "origin": { - "name": "Rick's Battery Microverse", - "url": "https://rickandmortyapi.com/api/location/24" - }, - "location": { - "name": "Rick's Battery Microverse", - "url": "https://rickandmortyapi.com/api/location/24" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/65.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/65", - "created": "2017-11-30T11:02:41.935Z" - }, - { - "id": 66, - "name": "Coach Feratu (Balik Alistane)", - "status": "Dead", - "species": "Vampire", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/66.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/66", - "created": "2017-11-30T11:10:10.491Z" - }, - { - "id": 67, - "name": "Collector", - "status": "Alive", - "species": "Alien", - "type": "Light bulb-Alien", - "gender": "Male", - "origin": { - "name": "The Menagerie", - "url": "https://rickandmortyapi.com/api/location/25" - }, - "location": { - "name": "The Menagerie", - "url": "https://rickandmortyapi.com/api/location/25" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/67.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/67", - "created": "2017-11-30T11:13:46.785Z" - }, - { - "id": 68, - "name": "Colossus", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/68.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/68", - "created": "2017-11-30T11:17:32.733Z" - }, - { - "id": 69, - "name": "Commander Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/69.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/69", - "created": "2017-11-30T11:28:06.461Z" - }, - { - "id": 70, - "name": "Concerto", - "status": "Dead", - "species": "Humanoid", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/70.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/24" - ], - "url": "https://rickandmortyapi.com/api/character/70", - "created": "2017-11-30T11:31:41.926Z" - }, - { - "id": 71, - "name": "Conroy", - "status": "Dead", - "species": "Robot", - "type": "", - "gender": "unknown", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/71.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/71", - "created": "2017-11-30T11:35:50.183Z" - }, - { - "id": 72, - "name": "Cool Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (K-83)", - "url": "https://rickandmortyapi.com/api/location/26" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/72.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/72", - "created": "2017-11-30T11:41:11.542Z" - }, - { - "id": 73, - "name": "Cop Morty", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/73.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/73", - "created": "2017-11-30T11:43:04.217Z" - }, - { - "id": 74, - "name": "Cop Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/74.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/74", - "created": "2017-11-30T11:48:18.950Z" - }, - { - "id": 75, - "name": "Courier Flap", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/75.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/75", - "created": "2017-11-30T12:12:57.553Z" - }, - { - "id": 76, - "name": "Cousin Nicky", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/76.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/76", - "created": "2017-11-30T14:11:52.882Z" - }, - { - "id": 77, - "name": "Cowboy Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/77.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/77", - "created": "2017-11-30T14:13:17.371Z" - }, - { - "id": 78, - "name": "Cowboy Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/78.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/78", - "created": "2017-11-30T14:15:18.347Z" - }, - { - "id": 79, - "name": "Crab Spider", - "status": "Alive", - "species": "Alien", - "type": "Animal", - "gender": "unknown", - "origin": { - "name": "Hideout Planet", - "url": "https://rickandmortyapi.com/api/location/27" - }, - "location": { - "name": "Hideout Planet", - "url": "https://rickandmortyapi.com/api/location/27" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/79.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/79", - "created": "2017-11-30T14:18:16.899Z" - }, - { - "id": 80, - "name": "Creepy Little Girl", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/80.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/80", - "created": "2017-11-30T14:20:35.772Z" - }, - { - "id": 81, - "name": "Crocubot", - "status": "Dead", - "species": "Humanoid", - "type": "Robot-Crocodile hybrid", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/81.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/81", - "created": "2017-11-30T14:23:41.053Z" - }, - { - "id": 82, - "name": "Cronenberg Rick", - "status": "unknown", - "species": "Cronenberg", - "type": "", - "gender": "Male", - "origin": { - "name": "Cronenberg Earth", - "url": "https://rickandmortyapi.com/api/location/12" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/82.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/82", - "created": "2017-11-30T14:28:54.596Z" - }, - { - "id": 83, - "name": "Cronenberg Morty", - "status": "unknown", - "species": "Cronenberg", - "type": "", - "gender": "Male", - "origin": { - "name": "Cronenberg Earth", - "url": "https://rickandmortyapi.com/api/location/12" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/83.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/83", - "created": "2017-11-30T20:02:29.204Z" - }, - { - "id": 84, - "name": "Cult Leader Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Hideout Planet", - "url": "https://rickandmortyapi.com/api/location/27" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/84.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/84", - "created": "2017-11-30T20:41:48.080Z" - }, - { - "id": 85, - "name": "Cyclops Morty", - "status": "Alive", - "species": "Humanoid", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/85.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/85", - "created": "2017-11-30T20:49:52.133Z" - }, - { - "id": 86, - "name": "Cyclops Rick", - "status": "Dead", - "species": "Humanoid", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/86.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/86", - "created": "2017-11-30T20:53:10.382Z" - }, - { - "id": 87, - "name": "Cynthia", - "status": "Dead", - "species": "Alien", - "type": "Zigerion", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Zigerion's Base", - "url": "https://rickandmortyapi.com/api/location/46" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/87.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/4" - ], - "url": "https://rickandmortyapi.com/api/character/87", - "created": "2017-11-30T21:08:32.534Z" - }, - { - "id": 88, - "name": "Cynthia", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/88.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/88", - "created": "2017-11-30T21:16:35.633Z" - }, - { - "id": 89, - "name": "Dale", - "status": "Dead", - "species": "Humanoid", - "type": "Giant", - "gender": "Male", - "origin": { - "name": "Giant's Town", - "url": "https://rickandmortyapi.com/api/location/14" - }, - "location": { - "name": "Giant's Town", - "url": "https://rickandmortyapi.com/api/location/14" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/89.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/89", - "created": "2017-12-01T10:32:08.340Z" - }, - { - "id": 90, - "name": "Daron Jefferson", - "status": "Alive", - "species": "Alien", - "type": "Cone-nippled alien", - "gender": "Male", - "origin": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "location": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/90.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/14" - ], - "url": "https://rickandmortyapi.com/api/character/90", - "created": "2017-12-01T10:54:34.736Z" - }, - { - "id": 91, - "name": "David Letterman", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "location": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/91.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/91", - "created": "2017-12-01T11:12:25.105Z" - }, - { - "id": 92, - "name": "Davin", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/92.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/92", - "created": "2017-12-01T11:20:51.247Z" - }, - { - "id": 93, - "name": "Diablo Verde", - "status": "Dead", - "species": "Humanoid", - "type": "Demon", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Dorian 5", - "url": "https://rickandmortyapi.com/api/location/29" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/93.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/93", - "created": "2017-12-01T11:36:16.467Z" - }, - { - "id": 94, - "name": "Diane Sanchez", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Unknown dimension)", - "url": "https://rickandmortyapi.com/api/location/30" - }, - "location": { - "name": "Earth (Unknown dimension)", - "url": "https://rickandmortyapi.com/api/location/30" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/94.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/94", - "created": "2017-12-01T11:49:43.929Z" - }, - { - "id": 95, - "name": "Dipper and Mabel Mortys", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/95.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/95", - "created": "2017-12-01T11:54:36.670Z" - }, - { - "id": 96, - "name": "Tuberculosis", - "status": "Dead", - "species": "Disease", - "type": "", - "gender": "unknown", - "origin": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/96.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/96", - "created": "2017-12-01T11:59:04.796Z" - }, - { - "id": 97, - "name": "Gonorrhea", - "status": "Dead", - "species": "Disease", - "type": "", - "gender": "unknown", - "origin": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/97.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/97", - "created": "2017-12-01T12:00:27.028Z" - }, - { - "id": 98, - "name": "Hepatitis A", - "status": "Dead", - "species": "Disease", - "type": "", - "gender": "unknown", - "origin": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/98.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/98", - "created": "2017-12-01T12:01:43.742Z" - }, - { - "id": 99, - "name": "Hepatitis C", - "status": "Dead", - "species": "Disease", - "type": "", - "gender": "unknown", - "origin": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/99.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/99", - "created": "2017-12-01T12:02:00.935Z" - }, - { - "id": 100, - "name": "Bubonic Plague", - "status": "Dead", - "species": "Disease", - "type": "", - "gender": "unknown", - "origin": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/100.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/100", - "created": "2017-12-01T12:02:21.611Z" - }, - { - "id": 101, - "name": "E. Coli", - "status": "Dead", - "species": "Disease", - "type": "", - "gender": "unknown", - "origin": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/101.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/101", - "created": "2017-12-01T12:03:31.433Z" - }, - { - "id": 102, - "name": "Donna Gueterman", - "status": "Dead", - "species": "Robot", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/102.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/102", - "created": "2017-12-01T12:21:21.357Z" - }, - { - "id": 103, - "name": "Doofus Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (J19ζ7)", - "url": "https://rickandmortyapi.com/api/location/31" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/103.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/103", - "created": "2017-12-01T12:29:27.984Z" - }, - { - "id": 104, - "name": "Doom-Nomitron", - "status": "Dead", - "species": "Alien", - "type": "Shapeshifter", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Dorian 5", - "url": "https://rickandmortyapi.com/api/location/29" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/104.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/104", - "created": "2017-12-26T12:34:36.758Z" - }, - { - "id": 105, - "name": "Dr. Glip-Glop", - "status": "Dead", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/105.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/105", - "created": "2017-12-26T12:39:22.855Z" - }, - { - "id": 106, - "name": "Dr. Schmidt", - "status": "unknown", - "species": "Human", - "type": "Game", - "gender": "Male", - "origin": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "location": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/106.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/106", - "created": "2017-12-26T12:46:48.805Z" - }, - { - "id": 107, - "name": "Dr. Wong", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/107.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/24" - ], - "url": "https://rickandmortyapi.com/api/character/107", - "created": "2017-12-26T12:55:58.449Z" - }, - { - "id": 108, - "name": "Dr. Xenon Bloom", - "status": "Dead", - "species": "Humanoid", - "type": "Amoeba-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/108.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/108", - "created": "2017-12-26T13:14:12.157Z" - }, - { - "id": 109, - "name": "Duck With Muscles", - "status": "Dead", - "species": "Parasite", - "type": "Alien", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/109.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/109", - "created": "2017-12-26T13:17:40.686Z" - }, - { - "id": 110, - "name": "Eli", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/110.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/110", - "created": "2017-12-26T13:37:27.635Z" - }, - { - "id": 111, - "name": "Eli's Girlfriend", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/111.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/111", - "created": "2017-12-26T13:38:47.115Z" - }, - { - "id": 112, - "name": "Eric McMan", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/112.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/112", - "created": "2017-12-26T13:40:06.005Z" - }, - { - "id": 113, - "name": "Eric Stoltz Mask Morty", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Eric Stoltz Mask Earth", - "url": "https://rickandmortyapi.com/api/location/33" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/113.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/113", - "created": "2017-12-26T13:43:29.296Z" - }, - { - "id": 114, - "name": "Ethan", - "status": "unknown", - "species": "Human", - "type": "Cronenberg", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/114.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/114", - "created": "2017-12-26T16:01:13.904Z" - }, - { - "id": 115, - "name": "Ethan", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/115.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/115", - "created": "2017-12-26T16:01:50.939Z" - }, - { - "id": 116, - "name": "Evil Beth Clone", - "status": "Dead", - "species": "Human", - "type": "Clone", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/116.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/116", - "created": "2017-12-26T16:10:47.781Z" - }, - { - "id": 117, - "name": "Evil Jerry Clone", - "status": "Dead", - "species": "Human", - "type": "Clone", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/117.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/117", - "created": "2017-12-26T16:11:15.395Z" - }, - { - "id": 118, - "name": "Evil Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/118.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/118", - "created": "2017-12-26T16:13:41.103Z" - }, - { - "id": 119, - "name": "Evil Rick", - "status": "Dead", - "species": "Humanoid", - "type": "Robot", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/119.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/119", - "created": "2017-12-26T16:17:16.472Z" - }, - { - "id": 120, - "name": "Evil Summer Clone", - "status": "Dead", - "species": "Human", - "type": "Clone", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/120.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/120", - "created": "2017-12-26T16:24:02.059Z" - }, - { - "id": 121, - "name": "Eyehole Man", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/121.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/121", - "created": "2017-12-26T16:41:58.391Z" - }, - { - "id": 122, - "name": "Fart", - "status": "Dead", - "species": "Alien", - "type": "Interdimensional gaseous being", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/122.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/122", - "created": "2017-12-26T17:19:40.474Z" - }, - { - "id": 123, - "name": "Fat Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/123.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/123", - "created": "2017-12-26T17:22:40.315Z" - }, - { - "id": 124, - "name": "Father Bob", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/124.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/124", - "created": "2017-12-26T17:31:29.113Z" - }, - { - "id": 125, - "name": "Flansian", - "status": "Alive", - "species": "Alien", - "type": "Flansian", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/125.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/125", - "created": "2017-12-26T17:43:58.410Z" - }, - { - "id": 126, - "name": "Fleeb", - "status": "unknown", - "species": "Alien", - "type": "", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/126.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/126", - "created": "2017-12-26T18:45:42.593Z" - }, - { - "id": 127, - "name": "Frank Palicky", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/127.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1" - ], - "url": "https://rickandmortyapi.com/api/character/127", - "created": "2017-12-26T19:22:48.474Z" - }, - { - "id": 128, - "name": "Frankenstein's Monster", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/128.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/128", - "created": "2017-12-26T19:24:56.679Z" - }, - { - "id": 129, - "name": "Fulgora", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/129.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/129", - "created": "2017-12-26T19:30:02.242Z" - }, - { - "id": 130, - "name": "Galactic Federation President", - "status": "Dead", - "species": "Alien", - "type": "Gromflomite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/130.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/130", - "created": "2017-12-26T19:49:41.160Z" - }, - { - "id": 131, - "name": "Gar Gloonch", - "status": "Dead", - "species": "Alien", - "type": "Zombodian", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/131.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/131", - "created": "2017-12-26T19:54:43.476Z" - }, - { - "id": 132, - "name": "Gar's Mytholog", - "status": "Dead", - "species": "Mytholog", - "type": "", - "gender": "Male", - "origin": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/132.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/132", - "created": "2017-12-26T20:02:38.033Z" - }, - { - "id": 133, - "name": "Garblovian", - "status": "Alive", - "species": "Alien", - "type": "Garblovian", - "gender": "Male", - "origin": { - "name": "Glaagablaaga", - "url": "https://rickandmortyapi.com/api/location/36" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/133.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/133", - "created": "2017-12-26T20:30:45.943Z" - }, - { - "id": 134, - "name": "Garmanarnar", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/134.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/134", - "created": "2017-12-26T20:36:54.577Z" - }, - { - "id": 135, - "name": "Garment District Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/135.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/135", - "created": "2017-12-26T20:51:43.614Z" - }, - { - "id": 136, - "name": "Gazorpazorpfield", - "status": "Alive", - "species": "Alien", - "type": "Gazorpian", - "gender": "Male", - "origin": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/136.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/136", - "created": "2017-12-27T17:59:59.058Z" - }, - { - "id": 137, - "name": "Gene", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/137.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/137", - "created": "2017-12-27T18:14:57.885Z" - }, - { - "id": 138, - "name": "General Nathan", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/138.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/138", - "created": "2017-12-27T18:22:18.387Z" - }, - { - "id": 139, - "name": "General Store Owner", - "status": "Dead", - "species": "Alien", - "type": "Cat-Person", - "gender": "Male", - "origin": { - "name": "Purge Planet", - "url": "https://rickandmortyapi.com/api/location/9" - }, - "location": { - "name": "Purge Planet", - "url": "https://rickandmortyapi.com/api/location/9" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/139.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/20" - ], - "url": "https://rickandmortyapi.com/api/character/139", - "created": "2017-12-27T18:41:03.124Z" - }, - { - "id": 140, - "name": "Genital Washer", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/140.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/140", - "created": "2017-12-27T18:47:44.566Z" - }, - { - "id": 141, - "name": "Ghost in a Jar", - "status": "Dead", - "species": "Alien", - "type": "Parasite, Ghost", - "gender": "Genderless", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/141.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/141", - "created": "2017-12-27T19:14:14.545Z" - }, - { - "id": 142, - "name": "Gibble Snake", - "status": "Dead", - "species": "Alien", - "type": "Animal", - "gender": "unknown", - "origin": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "location": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/142.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/142", - "created": "2017-12-27T20:16:32.187Z" - }, - { - "id": 143, - "name": "Glasses Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/143.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/143", - "created": "2017-12-27T20:37:26.134Z" - }, - { - "id": 144, - "name": "Glenn", - "status": "Dead", - "species": "Alien", - "type": "Gromflomite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Customs", - "url": "https://rickandmortyapi.com/api/location/38" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/144.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1" - ], - "url": "https://rickandmortyapi.com/api/character/144", - "created": "2017-12-29T10:37:48.319Z" - }, - { - "id": 145, - "name": "Glenn", - "status": "Alive", - "species": "Human", - "type": "Eat shiter-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/145.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/145", - "created": "2017-12-29T11:03:43.118Z" - }, - { - "id": 146, - "name": "Glexo Slim Slom", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/146.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/146", - "created": "2017-12-29T11:28:29.380Z" - }, - { - "id": 147, - "name": "Gobo", - "status": "Dead", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/147.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/147", - "created": "2017-12-29T11:38:29.578Z" - }, - { - "id": 148, - "name": "Goddess Beth", - "status": "unknown", - "species": "Mytholog", - "type": "", - "gender": "Female", - "origin": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/148.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/148", - "created": "2017-12-29T11:40:25.135Z" - }, - { - "id": 149, - "name": "Gordon Lunas", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/149.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/149", - "created": "2017-12-29T11:44:00.169Z" - }, - { - "id": 150, - "name": "Cornvelious Daniel", - "status": "Dead", - "species": "Alien", - "type": "Gromflomite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Galactic Federation Prison", - "url": "https://rickandmortyapi.com/api/location/39" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/150.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/150", - "created": "2017-12-29T12:02:33.550Z" - }, - { - "id": 151, - "name": "Gwendolyn", - "status": "unknown", - "species": "Robot", - "type": "Gazorpian reproduction robot", - "gender": "Female", - "origin": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/151.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/7" - ], - "url": "https://rickandmortyapi.com/api/character/151", - "created": "2017-12-29T12:31:50.388Z" - }, - { - "id": 152, - "name": "Hammerhead Morty", - "status": "unknown", - "species": "Humanoid", - "type": "Hammerhead-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/152.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/152", - "created": "2017-12-29T15:20:16.842Z" - }, - { - "id": 153, - "name": "Hamster In Butt", - "status": "Alive", - "species": "Animal", - "type": "", - "gender": "unknown", - "origin": { - "name": "Hamster in Butt World", - "url": "https://rickandmortyapi.com/api/location/41" - }, - "location": { - "name": "Hamster in Butt World", - "url": "https://rickandmortyapi.com/api/location/41" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/153.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/153", - "created": "2017-12-29T15:27:54.281Z" - }, - { - "id": 154, - "name": "Hamurai", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/154.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/154", - "created": "2017-12-29T15:32:05.287Z" - }, - { - "id": 155, - "name": "Harold", - "status": "Alive", - "species": "Cronenberg", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/155.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/155", - "created": "2017-12-29T15:41:18.773Z" - }, - { - "id": 156, - "name": "Hemorrhage", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/156.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/156", - "created": "2017-12-29T15:44:40.083Z" - }, - { - "id": 157, - "name": "Hole in the Wall Where the Men Can See it All", - "status": "unknown", - "species": "unknown", - "type": "Hole", - "gender": "Genderless", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/157.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/157", - "created": "2017-12-29T15:47:57.352Z" - }, - { - "id": 158, - "name": "Hookah Alien", - "status": "Alive", - "species": "Alien", - "type": "Tuskfish", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Customs", - "url": "https://rickandmortyapi.com/api/location/38" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/158.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1" - ], - "url": "https://rickandmortyapi.com/api/character/158", - "created": "2017-12-29T15:53:48.952Z" - }, - { - "id": 159, - "name": "Hunter", - "status": "Dead", - "species": "Human", - "type": "Clone", - "gender": "Male", - "origin": { - "name": "Earth (Giant Telepathic Spiders Dimension)", - "url": "https://rickandmortyapi.com/api/location/42" - }, - "location": { - "name": "Earth (Giant Telepathic Spiders Dimension)", - "url": "https://rickandmortyapi.com/api/location/42" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/159.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/159", - "created": "2017-12-29T16:03:28.792Z" - }, - { - "id": 160, - "name": "Hunter's Father", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Giant Telepathic Spiders Dimension)", - "url": "https://rickandmortyapi.com/api/location/42" - }, - "location": { - "name": "Earth (Giant Telepathic Spiders Dimension)", - "url": "https://rickandmortyapi.com/api/location/42" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/160.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/160", - "created": "2017-12-29T16:07:04.040Z" - }, - { - "id": 161, - "name": "Hydrogen-F", - "status": "Alive", - "species": "Alien", - "type": "Alphabetrian", - "gender": "Female", - "origin": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "location": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/161.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/161", - "created": "2017-12-29T16:10:40.290Z" - }, - { - "id": 162, - "name": "Ice-T", - "status": "Alive", - "species": "Alien", - "type": "Alphabetrian", - "gender": "Male", - "origin": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "location": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/162.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/162", - "created": "2017-12-29T16:42:59.207Z" - }, - { - "id": 163, - "name": "Ideal Jerry", - "status": "Dead", - "species": "Mytholog", - "type": "", - "gender": "Male", - "origin": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/163.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/163", - "created": "2017-12-29T16:46:41.345Z" - }, - { - "id": 164, - "name": "Insurance Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/164.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/164", - "created": "2017-12-29T17:03:08.645Z" - }, - { - "id": 165, - "name": "Investigator Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/165.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/165", - "created": "2017-12-29T17:05:15.514Z" - }, - { - "id": 166, - "name": "Invisi-trooper", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/166.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/166", - "created": "2017-12-29T17:06:28.325Z" - }, - { - "id": 167, - "name": "Izzy", - "status": "Alive", - "species": "Animal", - "type": "Cat", - "gender": "unknown", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/167.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/24" - ], - "url": "https://rickandmortyapi.com/api/character/167", - "created": "2017-12-29T17:07:59.024Z" - }, - { - "id": 168, - "name": "Jackie", - "status": "Alive", - "species": "Alien", - "type": "Gazorpian", - "gender": "Female", - "origin": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "location": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/168.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/7" - ], - "url": "https://rickandmortyapi.com/api/character/168", - "created": "2017-12-29T17:14:03.430Z" - }, - { - "id": 169, - "name": "Jacob", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/169.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3", - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/169", - "created": "2017-12-29T17:20:52.037Z" - }, - { - "id": 170, - "name": "Jacqueline", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/170.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/170", - "created": "2017-12-29T17:22:17.707Z" - }, - { - "id": 171, - "name": "Jaguar", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/171.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/24" - ], - "url": "https://rickandmortyapi.com/api/character/171", - "created": "2017-12-29T17:25:38.138Z" - }, - { - "id": 172, - "name": "Jamey", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/172.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/172", - "created": "2017-12-29T17:30:20.654Z" - }, - { - "id": 173, - "name": "Jan-Michael Vincent", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/173.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/173", - "created": "2017-12-29T17:33:23.972Z" - }, - { - "id": 174, - "name": "Jerry 5-126", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (5-126)", - "url": "https://rickandmortyapi.com/api/location/17" - }, - "location": { - "name": "Jerryboree", - "url": "https://rickandmortyapi.com/api/location/44" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/174.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/174", - "created": "2017-12-29T17:50:19.991Z" - }, - { - "id": 175, - "name": "Jerry Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/175.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/3", - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/175", - "created": "2017-12-29T18:07:17.610Z" - }, - { - "id": 176, - "name": "Celebrity Jerry", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "location": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/176.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/176", - "created": "2017-12-29T18:25:11.930Z" - }, - { - "id": 177, - "name": "Jerry Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "location": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/177.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/177", - "created": "2017-12-29T18:28:19.424Z" - }, - { - "id": 178, - "name": "Jerry's Mytholog", - "status": "Dead", - "species": "Mytholog", - "type": "", - "gender": "Male", - "origin": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/178.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/178", - "created": "2017-12-29T18:29:31.279Z" - }, - { - "id": 179, - "name": "Jessica", - "status": "Alive", - "species": "Cronenberg", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/179.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/179", - "created": "2017-12-29T18:34:37.806Z" - }, - { - "id": 180, - "name": "Jessica", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/180.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/17", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/26", - "https://rickandmortyapi.com/api/episode/27", - "https://rickandmortyapi.com/api/episode/28", - "https://rickandmortyapi.com/api/episode/29", - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/180", - "created": "2017-12-29T18:36:27.225Z" - }, - { - "id": 181, - "name": "Jessica's Friend", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/181.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/17", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/25", - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/181", - "created": "2017-12-29T18:47:23.345Z" - }, - { - "id": 182, - "name": "Jim", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/182.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/182", - "created": "2017-12-29T18:49:48.953Z" - }, - { - "id": 183, - "name": "Johnny Depp", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "location": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/183.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/183", - "created": "2017-12-29T18:51:29.693Z" - }, - { - "id": 184, - "name": "Jon", - "status": "Alive", - "species": "Alien", - "type": "Gazorpian", - "gender": "Male", - "origin": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/184.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/184", - "created": "2017-12-29T18:54:04.572Z" - }, - { - "id": 185, - "name": "Joseph Eli Lipkip", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/185.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/185", - "created": "2017-12-29T18:56:15.622Z" - }, - { - "id": 186, - "name": "Joyce Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/186.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/186", - "created": "2017-12-29T18:58:34.530Z" - }, - { - "id": 187, - "name": "Juggling Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/187.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/187", - "created": "2017-12-29T18:59:47.440Z" - }, - { - "id": 188, - "name": "Karen Entity", - "status": "Alive", - "species": "Alien", - "type": "Unknown-nippled alien", - "gender": "Female", - "origin": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "location": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/188.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/14" - ], - "url": "https://rickandmortyapi.com/api/character/188", - "created": "2017-12-29T19:10:16.171Z" - }, - { - "id": 189, - "name": "Katarina", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/189.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/24" - ], - "url": "https://rickandmortyapi.com/api/character/189", - "created": "2017-12-29T19:13:57.070Z" - }, - { - "id": 190, - "name": "Keara", - "status": "Alive", - "species": "Alien", - "type": "Krootabulan", - "gender": "Female", - "origin": { - "name": "Krootabulon", - "url": "https://rickandmortyapi.com/api/location/45" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/190.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/190", - "created": "2017-12-29T19:26:06.900Z" - }, - { - "id": 191, - "name": "Kevin", - "status": "Dead", - "species": "Alien", - "type": "Zigerion", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Zigerion's Base", - "url": "https://rickandmortyapi.com/api/location/46" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/191.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/4" - ], - "url": "https://rickandmortyapi.com/api/character/191", - "created": "2017-12-29T19:40:07.816Z" - }, - { - "id": 192, - "name": "King Flippy Nips", - "status": "Alive", - "species": "Alien", - "type": "Plutonian", - "gender": "Male", - "origin": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "location": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/192.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9" - ], - "url": "https://rickandmortyapi.com/api/character/192", - "created": "2017-12-29T19:49:29.297Z" - }, - { - "id": 193, - "name": "King Jellybean", - "status": "Dead", - "species": "Alien", - "type": "Jellybean", - "gender": "Male", - "origin": { - "name": "Fantasy World", - "url": "https://rickandmortyapi.com/api/location/48" - }, - "location": { - "name": "Fantasy World", - "url": "https://rickandmortyapi.com/api/location/48" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/193.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/193", - "created": "2017-12-29T19:58:44.743Z" - }, - { - "id": 194, - "name": "Kozbian", - "status": "Alive", - "species": "Alien", - "type": "Tentacle alien", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/194.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/194", - "created": "2017-12-30T12:13:53.878Z" - }, - { - "id": 195, - "name": "Kristen Stewart", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "location": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/195.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/195", - "created": "2017-12-30T12:19:16.042Z" - }, - { - "id": 196, - "name": "Krombopulos Michael", - "status": "Dead", - "species": "Alien", - "type": "Gromflomite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/196.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/196", - "created": "2017-12-30T12:28:52.954Z" - }, - { - "id": 197, - "name": "Kyle", - "status": "Dead", - "species": "Humanoid", - "type": "Miniverse inhabitant", - "gender": "Male", - "origin": { - "name": "Zeep Xanflorp's Miniverse", - "url": "https://rickandmortyapi.com/api/location/49" - }, - "location": { - "name": "Kyle's Teenyverse", - "url": "https://rickandmortyapi.com/api/location/50" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/197.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/197", - "created": "2017-12-30T12:39:09.025Z" - }, - { - "id": 198, - "name": "Lady Katana", - "status": "Dead", - "species": "Humanoid", - "type": "Cyborg", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Dorian 5", - "url": "https://rickandmortyapi.com/api/location/29" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/198.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/198", - "created": "2017-12-30T12:43:37.571Z" - }, - { - "id": 199, - "name": "Larva Alien", - "status": "Alive", - "species": "Alien", - "type": "Larva alien", - "gender": "unknown", - "origin": { - "name": "Larva Alien's Planet", - "url": "https://rickandmortyapi.com/api/location/51" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/199.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/199", - "created": "2017-12-30T12:48:44.677Z" - }, - { - "id": 200, - "name": "Lawyer Morty", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/200.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/200", - "created": "2017-12-30T12:49:52.971Z" - }, - { - "id": 201, - "name": "Leonard Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/201.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/201", - "created": "2017-12-30T12:51:27.835Z" - }, - { - "id": 202, - "name": "Lighthouse Keeper", - "status": "Dead", - "species": "Alien", - "type": "Cat-Person", - "gender": "Male", - "origin": { - "name": "Purge Planet", - "url": "https://rickandmortyapi.com/api/location/9" - }, - "location": { - "name": "Purge Planet", - "url": "https://rickandmortyapi.com/api/location/9" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/202.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/20" - ], - "url": "https://rickandmortyapi.com/api/character/202", - "created": "2017-12-30T12:53:11.937Z" - }, - { - "id": 203, - "name": "Lil B", - "status": "Dead", - "species": "Alien", - "type": "Snail alien", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/203.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/203", - "created": "2017-12-30T12:54:31.725Z" - }, - { - "id": 204, - "name": "Lisa", - "status": "Dead", - "species": "Alien", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Immortality Field Resort", - "url": "https://rickandmortyapi.com/api/location/7" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/204.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/204", - "created": "2017-12-30T12:59:58.460Z" - }, - { - "id": 205, - "name": "Little Dipper", - "status": "Alive", - "species": "Humanoid", - "type": "Tinymouth", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/205.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/205", - "created": "2017-12-30T13:03:12.366Z" - }, - { - "id": 206, - "name": "Lizard Morty", - "status": "Alive", - "species": "Humanoid", - "type": "Lizard-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/206.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/206", - "created": "2017-12-30T13:06:09.094Z" - }, - { - "id": 207, - "name": "Loggins", - "status": "Alive", - "species": "Alien", - "type": "Alligator-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/207.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/207", - "created": "2017-12-30T13:54:28.627Z" - }, - { - "id": 208, - "name": "Logic", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/208.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/208", - "created": "2017-12-30T13:58:41.417Z" - }, - { - "id": 209, - "name": "Long Sleeved Morty", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/209.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/209", - "created": "2017-12-30T14:00:06.755Z" - }, - { - "id": 210, - "name": "Lucy", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/210.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11" - ], - "url": "https://rickandmortyapi.com/api/character/210", - "created": "2017-12-30T14:01:23.319Z" - }, - { - "id": 211, - "name": "Ma-Sha", - "status": "Alive", - "species": "Alien", - "type": "Gazorpian", - "gender": "Female", - "origin": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "location": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/211.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/7" - ], - "url": "https://rickandmortyapi.com/api/character/211", - "created": "2017-12-30T14:16:00.484Z" - }, - { - "id": 212, - "name": "Magma-Q", - "status": "Dead", - "species": "Alien", - "type": "Alphabetrian", - "gender": "Male", - "origin": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "location": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/212.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/212", - "created": "2017-12-30T14:19:10.419Z" - }, - { - "id": 213, - "name": "Magnesium-J", - "status": "Alive", - "species": "Alien", - "type": "Alphabetrian", - "gender": "Male", - "origin": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "location": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/213.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/213", - "created": "2017-12-30T14:21:16.121Z" - }, - { - "id": 214, - "name": "Man Painted Silver Who Makes Robot Noises", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/214.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/214", - "created": "2017-12-30T14:24:57.993Z" - }, - { - "id": 215, - "name": "Maximums Rickimus", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/215.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/215", - "created": "2017-12-30T14:27:55.489Z" - }, - { - "id": 216, - "name": "MC Haps", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/216.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/216", - "created": "2017-12-30T14:30:06.479Z" - }, - { - "id": 217, - "name": "Mechanical Morty", - "status": "Dead", - "species": "Robot", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/217.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/217", - "created": "2017-12-30T14:32:17.158Z" - }, - { - "id": 218, - "name": "Mechanical Rick", - "status": "unknown", - "species": "Robot", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/218.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/218", - "created": "2017-12-30T14:33:16.920Z" - }, - { - "id": 219, - "name": "Mechanical Summer", - "status": "unknown", - "species": "Robot", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/219.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/219", - "created": "2017-12-30T14:33:49.392Z" - }, - { - "id": 220, - "name": "Mega Fruit Farmer Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/220.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/220", - "created": "2017-12-30T14:35:30.736Z" - }, - { - "id": 221, - "name": "Melissa", - "status": "Alive", - "species": "Humanoid", - "type": "Monster", - "gender": "Female", - "origin": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "location": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/221.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/221", - "created": "2017-12-30T14:38:04.718Z" - }, - { - "id": 222, - "name": "Michael Denny and the Denny Singers", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/222.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/222", - "created": "2017-12-30T14:44:05.245Z" - }, - { - "id": 223, - "name": "Michael Jenkins", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/223.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/223", - "created": "2017-12-30T14:44:51.373Z" - }, - { - "id": 224, - "name": "Michael McLick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/224.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/224", - "created": "2017-12-30T15:49:28.666Z" - }, - { - "id": 225, - "name": "Michael Thompson", - "status": "Alive", - "species": "Humanoid", - "type": "Conjoined twin", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/225.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/225", - "created": "2017-12-30T15:59:31.558Z" - }, - { - "id": 226, - "name": "Million Ants", - "status": "Dead", - "species": "Animal", - "type": "Sentient ant colony", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/226.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/226", - "created": "2017-12-30T16:04:56.879Z" - }, - { - "id": 227, - "name": "Mitch", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/227.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/227", - "created": "2017-12-30T16:08:38.157Z" - }, - { - "id": 228, - "name": "Mohawk Guy", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/228.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/228", - "created": "2017-12-30T16:10:03.881Z" - }, - { - "id": 229, - "name": "Morty Mart Manager Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/229.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/229", - "created": "2017-12-30T16:12:33.382Z" - }, - { - "id": 230, - "name": "Morty Jr.", - "status": "Alive", - "species": "Humanoid", - "type": "Human Gazorpian", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/230.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/7" - ], - "url": "https://rickandmortyapi.com/api/character/230", - "created": "2017-12-30T16:20:51.391Z" - }, - { - "id": 231, - "name": "Morty Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/231.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/231", - "created": "2017-12-30T16:23:45.894Z" - }, - { - "id": 232, - "name": "Morty Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "location": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/232.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/232", - "created": "2017-12-30T16:29:27.863Z" - }, - { - "id": 233, - "name": "Morty K-22", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (K-22)", - "url": "https://rickandmortyapi.com/api/location/52" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/233.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/233", - "created": "2017-12-30T16:33:49.577Z" - }, - { - "id": 234, - "name": "Morty Smith", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/234.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/234", - "created": "2017-12-30T16:35:01.223Z" - }, - { - "id": 235, - "name": "Mortytown Loco", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/235.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/235", - "created": "2017-12-30T16:37:07.150Z" - }, - { - "id": 236, - "name": "Mr. Beauregard", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/236.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/236", - "created": "2017-12-30T17:28:28.409Z" - }, - { - "id": 237, - "name": "Mr. Benson", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/237.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/12" - ], - "url": "https://rickandmortyapi.com/api/character/237", - "created": "2017-12-30T17:30:31.757Z" - }, - { - "id": 238, - "name": "Mr. Booby Buyer", - "status": "Alive", - "species": "Animal", - "type": "Boobie buyer reptilian", - "gender": "Male", - "origin": { - "name": "Fantasy World", - "url": "https://rickandmortyapi.com/api/location/48" - }, - "location": { - "name": "Fantasy World", - "url": "https://rickandmortyapi.com/api/location/48" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/238.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/238", - "created": "2017-12-30T17:36:12.853Z" - }, - { - "id": 239, - "name": "Mr. Goldenfold", - "status": "Alive", - "species": "Cronenberg", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/239.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/239", - "created": "2017-12-30T17:42:11.894Z" - }, - { - "id": 240, - "name": "Mr. Goldenfold", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/240.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/17", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/24", - "https://rickandmortyapi.com/api/episode/27", - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/240", - "created": "2017-12-30T17:42:56.349Z" - }, - { - "id": 241, - "name": "Mr. Marklovitz", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/241.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/241", - "created": "2017-12-30T17:46:19.052Z" - }, - { - "id": 242, - "name": "Mr. Meeseeks", - "status": "unknown", - "species": "Humanoid", - "type": "Meeseeks", - "gender": "Male", - "origin": { - "name": "Mr. Meeseeks Box", - "url": "https://rickandmortyapi.com/api/location/53" - }, - "location": { - "name": "Blips and Chitz", - "url": "https://rickandmortyapi.com/api/location/67" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/242.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/242", - "created": "2017-12-30T17:52:12.243Z" - }, - { - "id": 243, - "name": "Mr. Needful", - "status": "Alive", - "species": "Humanoid", - "type": "The Devil", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/243.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9" - ], - "url": "https://rickandmortyapi.com/api/character/243", - "created": "2017-12-30T17:54:06.996Z" - }, - { - "id": 244, - "name": "Mr. Poopybutthole", - "status": "Alive", - "species": "Poopybutthole", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/244.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/29", - "https://rickandmortyapi.com/api/episode/30", - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/244", - "created": "2017-12-30T18:03:48.054Z" - }, - { - "id": 245, - "name": "Mrs. Lipkip", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/245.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/245", - "created": "2017-12-30T18:05:59.999Z" - }, - { - "id": 246, - "name": "Mrs. Pancakes", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/246.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/246", - "created": "2017-12-30T18:09:39.304Z" - }, - { - "id": 247, - "name": "Mrs. Poopybutthole", - "status": "Alive", - "species": "Poopybutthole", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/247.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/247", - "created": "2017-12-30T18:10:48.293Z" - }, - { - "id": 248, - "name": "Mrs. Refrigerator", - "status": "Dead", - "species": "Alien", - "type": "Parasite, Refrigerator", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/248.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/248", - "created": "2017-12-30T18:12:38.369Z" - }, - { - "id": 249, - "name": "Mrs. Sanchez", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/249.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/14", - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/249", - "created": "2017-12-30T18:18:10.965Z" - }, - { - "id": 250, - "name": "Mrs. Sullivan", - "status": "Dead", - "species": "Human", - "type": "Cat controlled dead lady", - "gender": "Female", - "origin": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/250.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/250", - "created": "2017-12-30T18:24:49.372Z" - }, - { - "id": 251, - "name": "Nancy", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/251.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/25", - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/251", - "created": "2017-12-31T12:46:54.095Z" - }, - { - "id": 252, - "name": "Noob-Noob", - "status": "Alive", - "species": "Poopybutthole", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Vindicator's Base", - "url": "https://rickandmortyapi.com/api/location/54" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/252.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/252", - "created": "2017-12-31T12:57:37.849Z" - }, - { - "id": 253, - "name": "Numbericon", - "status": "unknown", - "species": "Alien", - "type": "Numbericon", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/253.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/253", - "created": "2017-12-31T13:04:01.585Z" - }, - { - "id": 254, - "name": "Octopus Man", - "status": "Alive", - "species": "Humanoid", - "type": "Octopus-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/254.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/254", - "created": "2017-12-31T13:06:35.982Z" - }, - { - "id": 255, - "name": "Orthodox Jew", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/255.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/255", - "created": "2017-12-31T13:19:29.825Z" - }, - { - "id": 256, - "name": "Pat Gueterman", - "status": "Dead", - "species": "Robot", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/256.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/256", - "created": "2017-12-31T13:23:08.567Z" - }, - { - "id": 257, - "name": "Paul Fleishman", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Jerryboree", - "url": "https://rickandmortyapi.com/api/location/44" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/257.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/257", - "created": "2017-12-31T13:23:47.704Z" - }, - { - "id": 258, - "name": "Pawnshop Clerk", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Pawn Shop Planet", - "url": "https://rickandmortyapi.com/api/location/55" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/258.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/7" - ], - "url": "https://rickandmortyapi.com/api/character/258", - "created": "2017-12-31T13:30:33.611Z" - }, - { - "id": 259, - "name": "Pencilvester", - "status": "Dead", - "species": "Alien", - "type": "Parasite, Pencil", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/259.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/259", - "created": "2017-12-31T13:33:48.488Z" - }, - { - "id": 260, - "name": "Phillip Jacobs", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/260.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/260", - "created": "2017-12-31T13:34:58.839Z" - }, - { - "id": 261, - "name": "Photography Cyborg", - "status": "unknown", - "species": "Robot", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/261.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/261", - "created": "2017-12-31T13:38:53.640Z" - }, - { - "id": 262, - "name": "Photography Raptor", - "status": "Dead", - "species": "Alien", - "type": "Parasite, Dinosaur", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/262.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/262", - "created": "2017-12-31T13:40:32.312Z" - }, - { - "id": 263, - "name": "Pibbles Bodyguard", - "status": "Alive", - "species": "Alien", - "type": "Hairy alien", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/263.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/263", - "created": "2017-12-31T13:43:30.513Z" - }, - { - "id": 264, - "name": "Pichael Thompson", - "status": "Alive", - "species": "Humanoid", - "type": "Conjoined twin", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/264.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/264", - "created": "2017-12-31T13:44:43.176Z" - }, - { - "id": 265, - "name": "Pickle Rick", - "status": "Alive", - "species": "unknown", - "type": "Pickle", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/265.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/24" - ], - "url": "https://rickandmortyapi.com/api/character/265", - "created": "2017-12-31T13:47:10.617Z" - }, - { - "id": 266, - "name": "Piece of Toast", - "status": "Alive", - "species": "unknown", - "type": "Bread", - "gender": "Genderless", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/266.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/266", - "created": "2017-12-31T13:48:58.850Z" - }, - { - "id": 267, - "name": "Plumber Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/267.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/267", - "created": "2017-12-31T13:50:57.337Z" - }, - { - "id": 268, - "name": "Poncho", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/268.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/268", - "created": "2017-12-31T13:53:25.411Z" - }, - { - "id": 269, - "name": "Presidentress of The Mega Gargantuans", - "status": "Alive", - "species": "Humanoid", - "type": "Mega Gargantuan", - "gender": "Female", - "origin": { - "name": "Mega Gargantuan Kingdom", - "url": "https://rickandmortyapi.com/api/location/56" - }, - "location": { - "name": "Mega Gargantuan Kingdom", - "url": "https://rickandmortyapi.com/api/location/56" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/269.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/269", - "created": "2017-12-31T14:01:44.995Z" - }, - { - "id": 270, - "name": "Prince Nebulon", - "status": "Dead", - "species": "Alien", - "type": "Zigerion", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Zigerion's Base", - "url": "https://rickandmortyapi.com/api/location/46" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/270.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/4" - ], - "url": "https://rickandmortyapi.com/api/character/270", - "created": "2017-12-31T14:05:24.406Z" - }, - { - "id": 271, - "name": "Principal Vagina", - "status": "Alive", - "species": "Cronenberg", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/271.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/271", - "created": "2017-12-31T14:08:43.602Z" - }, - { - "id": 272, - "name": "Principal Vagina", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/272.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/24", - "https://rickandmortyapi.com/api/episode/27", - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/272", - "created": "2017-12-31T14:09:09.071Z" - }, - { - "id": 273, - "name": "Purge Planet Ruler", - "status": "Dead", - "species": "Alien", - "type": "Cat-Person", - "gender": "Male", - "origin": { - "name": "Purge Planet", - "url": "https://rickandmortyapi.com/api/location/9" - }, - "location": { - "name": "Purge Planet", - "url": "https://rickandmortyapi.com/api/location/9" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/273.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/20" - ], - "url": "https://rickandmortyapi.com/api/character/273", - "created": "2017-12-31T14:13:54.909Z" - }, - { - "id": 274, - "name": "Quantum Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/274.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/274", - "created": "2017-12-31T14:15:28.051Z" - }, - { - "id": 275, - "name": "Randy Dicknose", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/275.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/275", - "created": "2017-12-31T14:16:45.776Z" - }, - { - "id": 276, - "name": "Rat Boss", - "status": "Dead", - "species": "Animal", - "type": "Rat", - "gender": "unknown", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/276.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/24" - ], - "url": "https://rickandmortyapi.com/api/character/276", - "created": "2017-12-31T14:17:21.782Z" - }, - { - "id": 277, - "name": "Real Fake Doors Salesman", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/277.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/277", - "created": "2017-12-31T14:18:30.570Z" - }, - { - "id": 278, - "name": "Regional Manager Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/278.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/278", - "created": "2017-12-31T14:19:36.487Z" - }, - { - "id": 279, - "name": "Regular Legs", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/279.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/279", - "created": "2017-12-31T14:20:31.936Z" - }, - { - "id": 280, - "name": "Reverse Giraffe", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/280.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/280", - "created": "2017-12-31T14:22:46.285Z" - }, - { - "id": 281, - "name": "Reverse Rick Outrage", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/281.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/281", - "created": "2017-12-31T14:23:53.056Z" - }, - { - "id": 282, - "name": "Revolio Clockberg Jr.", - "status": "unknown", - "species": "Alien", - "type": "Gear-Person", - "gender": "Male", - "origin": { - "name": "Gear World", - "url": "https://rickandmortyapi.com/api/location/57" - }, - "location": { - "name": "Gear World", - "url": "https://rickandmortyapi.com/api/location/57" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/282.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/282", - "created": "2017-12-31T19:21:17.351Z" - }, - { - "id": 283, - "name": "Rick D. Sanchez III", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/283.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/283", - "created": "2017-12-31T19:23:53.188Z" - }, - { - "id": 284, - "name": "Rick Guilt Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/284.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/284", - "created": "2017-12-31T19:25:18.205Z" - }, - { - "id": 285, - "name": "Rick Prime", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/285.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/285", - "created": "2017-12-31T19:45:46.470Z" - }, - { - "id": 286, - "name": "Rick D-99", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (D-99)", - "url": "https://rickandmortyapi.com/api/location/58" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/286.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/286", - "created": "2017-12-31T19:49:55.181Z" - }, - { - "id": 287, - "name": "Rick D716", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (D716)", - "url": "https://rickandmortyapi.com/api/location/59" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/287.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/287", - "created": "2017-12-31T19:51:33.244Z" - }, - { - "id": 288, - "name": "Rick D716-B", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (D716-B)", - "url": "https://rickandmortyapi.com/api/location/60" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/288.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/288", - "created": "2017-12-31T19:55:25.101Z" - }, - { - "id": 289, - "name": "Rick D716-C", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (D716-C)", - "url": "https://rickandmortyapi.com/api/location/61" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/289.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/289", - "created": "2017-12-31T19:57:36.546Z" - }, - { - "id": 290, - "name": "Rick Sanchez", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "location": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/290.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/290", - "created": "2017-12-31T20:15:25.716Z" - }, - { - "id": 291, - "name": "Rick J-22", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (J-22)", - "url": "https://rickandmortyapi.com/api/location/62" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/291.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/291", - "created": "2017-12-31T20:16:52.337Z" - }, - { - "id": 292, - "name": "Rick K-22", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (K-22)", - "url": "https://rickandmortyapi.com/api/location/52" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/292.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/292", - "created": "2017-12-31T20:20:40.484Z" - }, - { - "id": 293, - "name": "Rick Sanchez", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/293.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/293", - "created": "2017-12-31T20:22:29.032Z" - }, - { - "id": 294, - "name": "Ricktiminus Sancheziminius", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/294.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/294", - "created": "2017-12-31T20:24:30.396Z" - }, - { - "id": 295, - "name": "Riq IV", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/295.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/295", - "created": "2017-12-31T20:25:28.554Z" - }, - { - "id": 296, - "name": "Risotto Groupon", - "status": "Dead", - "species": "Alien", - "type": "Blue ape alien", - "gender": "Male", - "origin": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "location": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/296.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/296", - "created": "2017-12-31T20:32:33.361Z" - }, - { - "id": 297, - "name": "Risotto's Tentacled Henchman", - "status": "Dead", - "species": "Alien", - "type": "Tentacle alien", - "gender": "Male", - "origin": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "location": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/297.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/297", - "created": "2017-12-31T20:34:58.394Z" - }, - { - "id": 298, - "name": "Robot Morty", - "status": "unknown", - "species": "Robot", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/298.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/298", - "created": "2017-12-31T20:37:30.747Z" - }, - { - "id": 299, - "name": "Robot Rick", - "status": "unknown", - "species": "Robot", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/299.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/299", - "created": "2017-12-31T20:38:17.990Z" - }, - { - "id": 300, - "name": "Roger", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/300.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/300", - "created": "2017-12-31T20:39:35.047Z" - }, - { - "id": 301, - "name": "Ron Benson", - "status": "Alive", - "species": "Humanoid", - "type": "Ring-nippled alien", - "gender": "Male", - "origin": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "location": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/301.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/14" - ], - "url": "https://rickandmortyapi.com/api/character/301", - "created": "2018-01-05T14:02:20.902Z" - }, - { - "id": 302, - "name": "Ruben", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/302.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/302", - "created": "2018-01-05T14:03:21.824Z" - }, - { - "id": 303, - "name": "Samantha", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/303.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/303", - "created": "2018-01-05T14:09:03.150Z" - }, - { - "id": 304, - "name": "Scary Brandon", - "status": "Alive", - "species": "Humanoid", - "type": "Monster", - "gender": "Male", - "origin": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "location": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/304.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/304", - "created": "2018-01-05T14:11:17.550Z" - }, - { - "id": 305, - "name": "Scary Glenn", - "status": "Alive", - "species": "Humanoid", - "type": "Monster", - "gender": "Male", - "origin": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "location": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/305.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/305", - "created": "2018-01-05T14:11:53.287Z" - }, - { - "id": 306, - "name": "Scary Terry", - "status": "Alive", - "species": "Humanoid", - "type": "Monster", - "gender": "Male", - "origin": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "location": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/306.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/306", - "created": "2018-01-05T14:13:01.564Z" - }, - { - "id": 307, - "name": "Scroopy Noopers", - "status": "Alive", - "species": "Alien", - "type": "Plutonian", - "gender": "Male", - "origin": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "location": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/307.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9" - ], - "url": "https://rickandmortyapi.com/api/character/307", - "created": "2018-01-05T14:20:41.693Z" - }, - { - "id": 308, - "name": "Scropon", - "status": "unknown", - "species": "Alien", - "type": "Lobster-Alien", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/308.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/308", - "created": "2018-01-05T14:22:47.706Z" - }, - { - "id": 309, - "name": "Scrotian", - "status": "Alive", - "species": "Animal", - "type": "Scrotian", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Signus 5 Expanse", - "url": "https://rickandmortyapi.com/api/location/22" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/309.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/309", - "created": "2018-01-05T14:26:50.679Z" - }, - { - "id": 310, - "name": "Self-Congratulatory Jerry", - "status": "unknown", - "species": "Mytholog", - "type": "", - "gender": "Male", - "origin": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/310.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/310", - "created": "2018-01-05T14:29:21.347Z" - }, - { - "id": 311, - "name": "Shimshamian", - "status": "Alive", - "species": "Alien", - "type": "Shimshamian", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/311.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/311", - "created": "2018-01-05T14:44:01.276Z" - }, - { - "id": 312, - "name": "Shlaammi", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/312.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/312", - "created": "2018-01-05T14:45:39.235Z" - }, - { - "id": 313, - "name": "Shleemypants", - "status": "Alive", - "species": "unknown", - "type": "Omniscient being", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/313.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/12" - ], - "url": "https://rickandmortyapi.com/api/character/313", - "created": "2018-01-05T14:52:31.489Z" - }, - { - "id": 314, - "name": "Shmlamantha Shmlicelli", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/314.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/314", - "created": "2018-01-05T14:53:23.739Z" - }, - { - "id": 315, - "name": "Shmlangela Shmlobinson-Shmlower", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/315.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/315", - "created": "2018-01-05T14:54:37.641Z" - }, - { - "id": 316, - "name": "Shmlona Shmlobinson", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/316.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/316", - "created": "2018-01-05T14:55:42.034Z" - }, - { - "id": 317, - "name": "Shmlonathan Shmlower", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/317.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/317", - "created": "2018-01-05T14:56:15.428Z" - }, - { - "id": 318, - "name": "Shmlony Shmlicelli", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/318.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/318", - "created": "2018-01-05T14:56:45.502Z" - }, - { - "id": 319, - "name": "Shmooglite Runner", - "status": "unknown", - "species": "Alien", - "type": "Animal", - "gender": "Male", - "origin": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "location": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/319.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/319", - "created": "2018-01-05T14:59:34.798Z" - }, - { - "id": 320, - "name": "Shnoopy Bloopers", - "status": "unknown", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Immortality Field Resort", - "url": "https://rickandmortyapi.com/api/location/7" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/320.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/320", - "created": "2018-01-05T15:02:28.103Z" - }, - { - "id": 321, - "name": "Shrimply Pibbles", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/321.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/321", - "created": "2018-01-05T15:07:50.789Z" - }, - { - "id": 322, - "name": "Simple Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/322.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/322", - "created": "2018-01-05T15:12:03.933Z" - }, - { - "id": 323, - "name": "Slaveowner", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/323.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/323", - "created": "2018-01-05T15:13:46.862Z" - }, - { - "id": 324, - "name": "Sleepy Gary", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/324.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/324", - "created": "2018-01-05T15:17:26.876Z" - }, - { - "id": 325, - "name": "Slick Morty", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/325.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/325", - "created": "2018-01-10T16:06:48.366Z" - }, - { - "id": 326, - "name": "Slippery Stair", - "status": "Alive", - "species": "Animal", - "type": "Slug", - "gender": "Male", - "origin": { - "name": "Fantasy World", - "url": "https://rickandmortyapi.com/api/location/48" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/326.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/11" - ], - "url": "https://rickandmortyapi.com/api/character/326", - "created": "2018-01-10T16:11:09.964Z" - }, - { - "id": 327, - "name": "Slow Mobius", - "status": "Alive", - "species": "Humanoid", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/327.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11" - ], - "url": "https://rickandmortyapi.com/api/character/327", - "created": "2018-01-10T16:13:26.380Z" - }, - { - "id": 328, - "name": "Slow Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/328.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/328", - "created": "2018-01-10T16:14:16.331Z" - }, - { - "id": 329, - "name": "Snuffles (Snowball)", - "status": "Alive", - "species": "Animal", - "type": "Intelligent dog", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/329.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/7", - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/15", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/24", - "https://rickandmortyapi.com/api/episode/29", - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/329", - "created": "2018-01-10T16:24:49.586Z" - }, - { - "id": 330, - "name": "Solicitor Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/330.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/330", - "created": "2018-01-10T16:26:27.705Z" - }, - { - "id": 331, - "name": "Squanchy", - "status": "unknown", - "species": "Alien", - "type": "Cat-like creature", - "gender": "Male", - "origin": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/331.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/331", - "created": "2018-01-10T16:29:25.344Z" - }, - { - "id": 332, - "name": "Stacy", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/332.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/332", - "created": "2018-01-10T16:31:10.465Z" - }, - { - "id": 333, - "name": "Stair Goblin", - "status": "Alive", - "species": "Alien", - "type": "Stair goblin", - "gender": "Genderless", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Fantasy World", - "url": "https://rickandmortyapi.com/api/location/48" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/333.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/333", - "created": "2018-01-10T16:34:19.420Z" - }, - { - "id": 334, - "name": "Stealy", - "status": "Alive", - "species": "Poopybutthole", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/334.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/334", - "created": "2018-01-10T16:36:06.982Z" - }, - { - "id": 335, - "name": "Steve", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/335.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/335", - "created": "2018-01-10T16:39:34.837Z" - }, - { - "id": 336, - "name": "Steven Phillips", - "status": "Alive", - "species": "Alien", - "type": "Unknown-nippled alien", - "gender": "Male", - "origin": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "location": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/336.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/14" - ], - "url": "https://rickandmortyapi.com/api/character/336", - "created": "2018-01-10T16:44:51.702Z" - }, - { - "id": 337, - "name": "Stu", - "status": "Dead", - "species": "Alien", - "type": "Zigerion", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Zigerion's Base", - "url": "https://rickandmortyapi.com/api/location/46" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/337.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/4" - ], - "url": "https://rickandmortyapi.com/api/character/337", - "created": "2018-01-10T16:50:57.710Z" - }, - { - "id": 338, - "name": "Summer Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/338.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/3", - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/338", - "created": "2018-01-10T16:55:03.390Z" - }, - { - "id": 339, - "name": "Summer Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "location": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/339.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/339", - "created": "2018-01-10T16:56:28.489Z" - }, - { - "id": 340, - "name": "Supernova", - "status": "Alive", - "species": "Human", - "type": "Superhuman", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/340.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/340", - "created": "2018-01-10T17:02:58.042Z" - }, - { - "id": 341, - "name": "Taddy Mason", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/341.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/20" - ], - "url": "https://rickandmortyapi.com/api/character/341", - "created": "2018-01-10T17:07:09.052Z" - }, - { - "id": 342, - "name": "Taint Washer", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/342.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/342", - "created": "2018-01-10T17:23:26.944Z" - }, - { - "id": 343, - "name": "Tammy Guetermann", - "status": "Alive", - "species": "Cronenberg", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/343.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/343", - "created": "2018-01-10T17:27:04.773Z" - }, - { - "id": 344, - "name": "Tammy Guetermann", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/344.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/344", - "created": "2018-01-10T17:31:54.889Z" - }, - { - "id": 345, - "name": "Teacher Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/345.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/345", - "created": "2018-01-10T17:33:23.437Z" - }, - { - "id": 346, - "name": "Terry", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/346.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/346", - "created": "2018-01-10T17:37:51.767Z" - }, - { - "id": 347, - "name": "The President", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/347.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/347", - "created": "2018-01-10T17:43:37.411Z" - }, - { - "id": 348, - "name": "The President of the Miniverse", - "status": "Dead", - "species": "Humanoid", - "type": "Miniverse inhabitant", - "gender": "Male", - "origin": { - "name": "Zeep Xanflorp's Miniverse", - "url": "https://rickandmortyapi.com/api/location/49" - }, - "location": { - "name": "Zeep Xanflorp's Miniverse", - "url": "https://rickandmortyapi.com/api/location/49" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/348.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/348", - "created": "2018-01-10T17:47:59.043Z" - }, - { - "id": 349, - "name": "The Scientist Formerly Known as Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/349.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/349", - "created": "2018-01-10T17:49:09.995Z" - }, - { - "id": 350, - "name": "Thomas Lipkip", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Froopyland", - "url": "https://rickandmortyapi.com/api/location/63" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/350.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/350", - "created": "2018-01-10T17:50:33.471Z" - }, - { - "id": 351, - "name": "Three Unknown Things", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/351.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/351", - "created": "2018-01-10T17:57:31.022Z" - }, - { - "id": 352, - "name": "Tinkles", - "status": "Dead", - "species": "Alien", - "type": "Parasite, Unicorn lamb", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/352.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/352", - "created": "2018-01-10T17:58:51.840Z" - }, - { - "id": 353, - "name": "Tiny Rick", - "status": "Dead", - "species": "Human", - "type": "Clone", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/353.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/353", - "created": "2018-01-10T18:00:35.848Z" - }, - { - "id": 354, - "name": "Toby Matthews", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/354.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/354", - "created": "2018-01-10T18:02:03.402Z" - }, - { - "id": 355, - "name": "Todd Crystal", - "status": "Alive", - "species": "Alien", - "type": "Unknown-nippled alien", - "gender": "Male", - "origin": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "location": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/355.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/14" - ], - "url": "https://rickandmortyapi.com/api/character/355", - "created": "2018-01-10T18:05:46.294Z" - }, - { - "id": 356, - "name": "Tom Randolph", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/356.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/356", - "created": "2018-01-10T18:07:03.215Z" - }, - { - "id": 357, - "name": "Tommy's Clone", - "status": "Alive", - "species": "Human", - "type": "Clone", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/357.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/357", - "created": "2018-01-10T18:07:45.541Z" - }, - { - "id": 358, - "name": "Tophat Jones", - "status": "Dead", - "species": "Humanoid", - "type": "Leprechaun", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/358.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/358", - "created": "2018-01-10T18:09:34.482Z" - }, - { - "id": 359, - "name": "Tortured Morty", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/359.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/359", - "created": "2018-01-10T18:14:50.992Z" - }, - { - "id": 360, - "name": "Toxic Morty", - "status": "Dead", - "species": "Humanoid", - "type": "Morty's toxic side", - "gender": "Male", - "origin": { - "name": "Detoxifier", - "url": "https://rickandmortyapi.com/api/location/64" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/360.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/360", - "created": "2018-01-10T18:18:05.422Z" - }, - { - "id": 361, - "name": "Toxic Rick", - "status": "Dead", - "species": "Humanoid", - "type": "Rick's toxic side", - "gender": "Male", - "origin": { - "name": "Detoxifier", - "url": "https://rickandmortyapi.com/api/location/64" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/361.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/361", - "created": "2018-01-10T18:20:41.703Z" - }, - { - "id": 362, - "name": "Traflorkian", - "status": "Alive", - "species": "Alien", - "type": "Traflorkian", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/362.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/362", - "created": "2018-01-10T18:52:08.927Z" - }, - { - "id": 363, - "name": "Trandor", - "status": "Alive", - "species": "Alien", - "type": "Krootabulan", - "gender": "Male", - "origin": { - "name": "Krootabulon", - "url": "https://rickandmortyapi.com/api/location/45" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/363.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/363", - "created": "2018-01-10T18:54:36.578Z" - }, - { - "id": 364, - "name": "Tree Person", - "status": "Dead", - "species": "Humanoid", - "type": "Teenyverse inhabitant", - "gender": "unknown", - "origin": { - "name": "Kyle's Teenyverse", - "url": "https://rickandmortyapi.com/api/location/50" - }, - "location": { - "name": "Kyle's Teenyverse", - "url": "https://rickandmortyapi.com/api/location/50" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/364.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/364", - "created": "2018-01-10T18:57:50.033Z" - }, - { - "id": 365, - "name": "Tricia Lange", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/365.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26", - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/365", - "created": "2018-01-10T18:59:31.842Z" - }, - { - "id": 366, - "name": "Trunk Morty", - "status": "Alive", - "species": "Humanoid", - "type": "Trunk-Person", - "gender": "Male", - "origin": { - "name": "Trunk World", - "url": "https://rickandmortyapi.com/api/location/65" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/366.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/366", - "created": "2018-01-10T19:03:13.558Z" - }, - { - "id": 367, - "name": "Trunk Man", - "status": "Alive", - "species": "Humanoid", - "type": "Trunk-Person", - "gender": "Male", - "origin": { - "name": "Trunk World", - "url": "https://rickandmortyapi.com/api/location/65" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/367.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/367", - "created": "2018-01-10T19:05:34.004Z" - }, - { - "id": 368, - "name": "Truth Tortoise", - "status": "unknown", - "species": "Animal", - "type": "Omniscient being", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/368.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/368", - "created": "2018-01-10T19:14:35.885Z" - }, - { - "id": 369, - "name": "Tusked Assassin", - "status": "unknown", - "species": "Alien", - "type": "Tuskfish", - "gender": "Male", - "origin": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "location": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/369.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/369", - "created": "2018-01-10T19:17:00.093Z" - }, - { - "id": 370, - "name": "Two Guys with Handlebar Mustaches", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/370.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/370", - "created": "2018-01-10T19:17:57.976Z" - }, - { - "id": 371, - "name": "Tumblorkian", - "status": "Alive", - "species": "Alien", - "type": "Tumblorkian", - "gender": "Male", - "origin": { - "name": "Plopstar", - "url": "https://rickandmortyapi.com/api/location/66" - }, - "location": { - "name": "Plopstar", - "url": "https://rickandmortyapi.com/api/location/66" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/371.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/371", - "created": "2018-01-10T19:18:44.560Z" - }, - { - "id": 372, - "name": "Unity", - "status": "Alive", - "species": "Alien", - "type": "Hivemind", - "gender": "Genderless", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/372.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/14" - ], - "url": "https://rickandmortyapi.com/api/character/372", - "created": "2018-01-10T19:20:50.211Z" - }, - { - "id": 373, - "name": "Unmuscular Michael", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/373.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/373", - "created": "2018-01-10T19:22:04.075Z" - }, - { - "id": 374, - "name": "Vampire Master", - "status": "Alive", - "species": "Vampire", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/374.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/374", - "created": "2018-01-10T19:23:45.478Z" - }, - { - "id": 375, - "name": "Vance Maximus", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/375.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/375", - "created": "2018-01-10T19:26:00.957Z" - }, - { - "id": 376, - "name": "Veronica Ann Bennet", - "status": "Alive", - "species": "Alien", - "type": "Gazorpian", - "gender": "Female", - "origin": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "location": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/376.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/7" - ], - "url": "https://rickandmortyapi.com/api/character/376", - "created": "2018-01-10T19:27:06.246Z" - }, - { - "id": 377, - "name": "Voltematron", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/377.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/377", - "created": "2018-01-10T19:29:08.116Z" - }, - { - "id": 378, - "name": "Wall Crawling Rick", - "status": "unknown", - "species": "Humanoid", - "type": "Lizard-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/378.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/378", - "created": "2018-01-10T19:33:30.804Z" - }, - { - "id": 379, - "name": "Wedding Bartender", - "status": "unknown", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/379.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/379", - "created": "2018-01-10T19:37:41.375Z" - }, - { - "id": 380, - "name": "Weird Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/380.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/380", - "created": "2018-01-10T19:44:22.262Z" - }, - { - "id": 381, - "name": "Woman Rick", - "status": "Alive", - "species": "Alien", - "type": "Chair", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/381.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/381", - "created": "2018-01-10T19:46:00.622Z" - }, - { - "id": 382, - "name": "Worldender", - "status": "Dead", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/382.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/382", - "created": "2018-01-10T19:47:55.859Z" - }, - { - "id": 383, - "name": "Yaarb", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/383.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/383", - "created": "2018-01-10T19:48:59.952Z" - }, - { - "id": 384, - "name": "Yellow Headed Doctor", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/384.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/384", - "created": "2018-01-10T19:50:19.351Z" - }, - { - "id": 385, - "name": "Yellow Shirt Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/385.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/385", - "created": "2018-01-10T19:51:18.996Z" - }, - { - "id": 386, - "name": "Zarbadar Gloonch", - "status": "Dead", - "species": "Alien", - "type": "Drumbloxian", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/386.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/386", - "created": "2018-01-10T19:52:40.898Z" - }, - { - "id": 387, - "name": "Zarbadar's Mytholog", - "status": "unknown", - "species": "Mytholog", - "type": "", - "gender": "Female", - "origin": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/387.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/387", - "created": "2018-01-10T19:54:17.951Z" - }, - { - "id": 388, - "name": "Zeep Xanflorp", - "status": "Alive", - "species": "Humanoid", - "type": "Microverse inhabitant", - "gender": "Male", - "origin": { - "name": "Rick's Battery Microverse", - "url": "https://rickandmortyapi.com/api/location/24" - }, - "location": { - "name": "Rick's Battery Microverse", - "url": "https://rickandmortyapi.com/api/location/24" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/388.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/388", - "created": "2018-01-10T19:56:57.790Z" - }, - { - "id": 389, - "name": "Zeta Alpha Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/389.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/389", - "created": "2018-01-10T19:57:41.191Z" - }, - { - "id": 390, - "name": "Zick Zack", - "status": "Dead", - "species": "Alien", - "type": "Floop Floopian", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/390.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/390", - "created": "2018-01-10T20:00:05.681Z" - }, - { - "id": 391, - "name": "Uncle Steve", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/391.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/391", - "created": "2018-01-14T13:34:50.096Z" - }, - { - "id": 392, - "name": "Bearded Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/392.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/392", - "created": "2018-01-14T14:48:05.977Z" - }, - { - "id": 393, - "name": "Roy", - "status": "Alive", - "species": "Human", - "type": "Game", - "gender": "Male", - "origin": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "location": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/393.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/393", - "created": "2018-01-20T19:15:27.239Z" - }, - { - "id": 394, - "name": "Davin", - "status": "Dead", - "species": "Cronenberg", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/394.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/394", - "created": "2018-01-20T19:48:42.201Z" - }, - { - "id": 395, - "name": "Greebybobe", - "status": "Alive", - "species": "Alien", - "type": "Greebybobe", - "gender": "unknown", - "origin": { - "name": "Girvonesk", - "url": "https://rickandmortyapi.com/api/location/68" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/395.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/395", - "created": "2018-04-15T16:46:31.715Z" - }, - { - "id": 396, - "name": "Scary Teacher", - "status": "Alive", - "species": "Humanoid", - "type": "Monster", - "gender": "Male", - "origin": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "location": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/396.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/396", - "created": "2018-04-15T17:10:07.639Z" - }, - { - "id": 397, - "name": "Fido", - "status": "Alive", - "species": "Animal", - "type": "Dog", - "gender": "Male", - "origin": { - "name": "Snuffles' Dream", - "url": "https://rickandmortyapi.com/api/location/70" - }, - "location": { - "name": "Snuffles' Dream", - "url": "https://rickandmortyapi.com/api/location/70" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/397.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/397", - "created": "2018-04-15T17:15:28.777Z" - }, - { - "id": 398, - "name": "Accountant dog", - "status": "Alive", - "species": "Animal", - "type": "Dog", - "gender": "Male", - "origin": { - "name": "Snuffles' Dream", - "url": "https://rickandmortyapi.com/api/location/70" - }, - "location": { - "name": "Snuffles' Dream", - "url": "https://rickandmortyapi.com/api/location/70" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/398.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/398", - "created": "2018-04-15T17:23:04.169Z" - }, - { - "id": 399, - "name": "Tiny-persons advocacy group lawyer", - "status": "Alive", - "species": "Humanoid", - "type": "Giant", - "gender": "Male", - "origin": { - "name": "Giant's Town", - "url": "https://rickandmortyapi.com/api/location/14" - }, - "location": { - "name": "Giant's Town", - "url": "https://rickandmortyapi.com/api/location/14" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/399.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/399", - "created": "2018-04-15T17:34:02.076Z" - }, - { - "id": 400, - "name": "Giant Judge", - "status": "Alive", - "species": "Humanoid", - "type": "Giant", - "gender": "Male", - "origin": { - "name": "Giant's Town", - "url": "https://rickandmortyapi.com/api/location/14" - }, - "location": { - "name": "Giant's Town", - "url": "https://rickandmortyapi.com/api/location/14" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/400.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/400", - "created": "2018-04-15T17:36:11.295Z" - }, - { - "id": 401, - "name": "Morty Jr's interviewer", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/401.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/7" - ], - "url": "https://rickandmortyapi.com/api/character/401", - "created": "2018-04-15T17:43:56.832Z" - }, - { - "id": 402, - "name": "Guy from The Bachelor", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/402.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/402", - "created": "2018-04-15T17:45:38.589Z" - }, - { - "id": 403, - "name": "Corn detective", - "status": "Dead", - "species": "Humanoid", - "type": "Corn-person", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/403.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/403", - "created": "2018-04-15T17:48:50.629Z" - }, - { - "id": 404, - "name": "Michael Jackson", - "status": "Alive", - "species": "Humanoid", - "type": "Phone-Person", - "gender": "Male", - "origin": { - "name": "Earth (Phone Dimension)", - "url": "https://rickandmortyapi.com/api/location/72" - }, - "location": { - "name": "Earth (Phone Dimension)", - "url": "https://rickandmortyapi.com/api/location/72" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/404.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/404", - "created": "2018-04-15T18:01:09.637Z" - }, - { - "id": 405, - "name": "Trunkphobic suspenders guy", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/405.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11" - ], - "url": "https://rickandmortyapi.com/api/character/405", - "created": "2018-04-15T20:31:46.065Z" - }, - { - "id": 406, - "name": "Spiderweb teddy bear", - "status": "Alive", - "species": "Animal", - "type": "Teddy Bear", - "gender": "unknown", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/406.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/406", - "created": "2018-04-15T20:45:04.863Z" - }, - { - "id": 407, - "name": "Regular Tyrion Lannister", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/407.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/407", - "created": "2018-04-15T20:50:10.475Z" - }, - { - "id": 408, - "name": "Quick Mistery Presenter", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/408.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/408", - "created": "2018-04-15T20:51:47.778Z" - }, - { - "id": 409, - "name": "Mr. Sneezy", - "status": "Alive", - "species": "Human", - "type": "Little Human", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/409.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/409", - "created": "2018-04-15T21:04:09.405Z" - }, - { - "id": 410, - "name": "Two Brothers", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/410.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/410", - "created": "2018-04-15T21:06:18.686Z" - }, - { - "id": 411, - "name": "Alien Mexican Armada", - "status": "unknown", - "species": "Alien", - "type": "Mexican", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/411.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/411", - "created": "2018-04-15T21:10:27.986Z" - }, - { - "id": 412, - "name": "Giant Cat Monster", - "status": "unknown", - "species": "Animal", - "type": "Giant Cat Monster", - "gender": "unknown", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/412.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/412", - "created": "2018-04-15T21:14:09.223Z" - }, - { - "id": 413, - "name": "Old Women", - "status": "unknown", - "species": "Human", - "type": "Old Amazons", - "gender": "Female", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/413.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/413", - "created": "2018-04-15T21:21:32.623Z" - }, - { - "id": 414, - "name": "Trunkphobic guy", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/414.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/414", - "created": "2018-04-15T21:33:59.719Z" - }, - { - "id": 415, - "name": "Pro trunk people marriage guy", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/415.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/415", - "created": "2018-04-15T21:34:21.911Z" - }, - { - "id": 416, - "name": "Muscular Mannie", - "status": "Alive", - "species": "Human", - "type": "Mannie", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/416.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/416", - "created": "2018-04-15T21:39:22.608Z" - }, - { - "id": 417, - "name": "Baby Legs Chief", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/417.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/417", - "created": "2018-04-15T21:40:39.871Z" - }, - { - "id": 418, - "name": "Mrs. Sullivan's Boyfriend", - "status": "Alive", - "species": "Human", - "type": "Necrophiliac", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/418.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/418", - "created": "2018-04-15T21:43:43.867Z" - }, - { - "id": 419, - "name": "Plutonian Hostess", - "status": "Alive", - "species": "Alien", - "type": "Plutonian", - "gender": "Female", - "origin": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "location": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/419.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9" - ], - "url": "https://rickandmortyapi.com/api/character/419", - "created": "2018-04-15T21:48:45.783Z" - }, - { - "id": 420, - "name": "Plutonian Host", - "status": "Alive", - "species": "Alien", - "type": "Plutonian", - "gender": "Male", - "origin": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "location": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/420.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9" - ], - "url": "https://rickandmortyapi.com/api/character/420", - "created": "2018-04-15T21:49:04.730Z" - }, - { - "id": 421, - "name": "Rich Plutonian", - "status": "Alive", - "species": "Alien", - "type": "Plutonian", - "gender": "Female", - "origin": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "location": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/421.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9" - ], - "url": "https://rickandmortyapi.com/api/character/421", - "created": "2018-04-15T21:51:50.534Z" - }, - { - "id": 422, - "name": "Rich Plutonian", - "status": "Alive", - "species": "Alien", - "type": "Plutonian", - "gender": "Male", - "origin": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "location": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/422.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9" - ], - "url": "https://rickandmortyapi.com/api/character/422", - "created": "2018-04-15T21:52:14.642Z" - }, - { - "id": 423, - "name": "Synthetic Laser Eels", - "status": "Alive", - "species": "Animal", - "type": "Eel", - "gender": "unknown", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/423.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11" - ], - "url": "https://rickandmortyapi.com/api/character/423", - "created": "2018-04-16T21:08:47.956Z" - }, - { - "id": 424, - "name": "Pizza-person", - "status": "Alive", - "species": "Humanoid", - "type": "Pizza", - "gender": "Male", - "origin": { - "name": "Earth (Pizza Dimension)", - "url": "https://rickandmortyapi.com/api/location/71" - }, - "location": { - "name": "Earth (Pizza Dimension)", - "url": "https://rickandmortyapi.com/api/location/71" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/424.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/424", - "created": "2018-04-16T21:45:55.310Z" - }, - { - "id": 425, - "name": "Pizza-person", - "status": "Alive", - "species": "Humanoid", - "type": "Pizza", - "gender": "Male", - "origin": { - "name": "Earth (Pizza Dimension)", - "url": "https://rickandmortyapi.com/api/location/71" - }, - "location": { - "name": "Earth (Pizza Dimension)", - "url": "https://rickandmortyapi.com/api/location/71" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/425.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/425", - "created": "2018-04-16T21:46:18.362Z" - }, - { - "id": 426, - "name": "Greasy Grandma", - "status": "Alive", - "species": "Human", - "type": "Grandma", - "gender": "Female", - "origin": { - "name": "Greasy Grandma World", - "url": "https://rickandmortyapi.com/api/location/73" - }, - "location": { - "name": "Greasy Grandma World", - "url": "https://rickandmortyapi.com/api/location/73" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/426.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/426", - "created": "2018-04-16T21:51:21.379Z" - }, - { - "id": 427, - "name": "Phone-person", - "status": "Alive", - "species": "Humanoid", - "type": "Phone", - "gender": "Male", - "origin": { - "name": "Earth (Phone Dimension)", - "url": "https://rickandmortyapi.com/api/location/72" - }, - "location": { - "name": "Earth (Phone Dimension)", - "url": "https://rickandmortyapi.com/api/location/72" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/427.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/427", - "created": "2018-04-16T21:54:05.375Z" - }, - { - "id": 428, - "name": "Phone-person", - "status": "Alive", - "species": "Humanoid", - "type": "Phone", - "gender": "Male", - "origin": { - "name": "Earth (Phone Dimension)", - "url": "https://rickandmortyapi.com/api/location/72" - }, - "location": { - "name": "Earth (Phone Dimension)", - "url": "https://rickandmortyapi.com/api/location/72" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/428.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/428", - "created": "2018-04-16T21:54:48.372Z" - }, - { - "id": 429, - "name": "Chair-person", - "status": "Alive", - "species": "Humanoid", - "type": "Chair", - "gender": "Male", - "origin": { - "name": "Earth (Chair Dimension)", - "url": "https://rickandmortyapi.com/api/location/74" - }, - "location": { - "name": "Earth (Chair Dimension)", - "url": "https://rickandmortyapi.com/api/location/74" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/429.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/429", - "created": "2018-04-16T21:59:25.798Z" - }, - { - "id": 430, - "name": "Chair-person", - "status": "Alive", - "species": "Humanoid", - "type": "Chair", - "gender": "Male", - "origin": { - "name": "Earth (Chair Dimension)", - "url": "https://rickandmortyapi.com/api/location/74" - }, - "location": { - "name": "Earth (Chair Dimension)", - "url": "https://rickandmortyapi.com/api/location/74" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/430.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/430", - "created": "2018-04-16T21:59:48.220Z" - }, - { - "id": 431, - "name": "Chair-homeless", - "status": "Alive", - "species": "Humanoid", - "type": "Chair", - "gender": "Male", - "origin": { - "name": "Earth (Chair Dimension)", - "url": "https://rickandmortyapi.com/api/location/74" - }, - "location": { - "name": "Earth (Chair Dimension)", - "url": "https://rickandmortyapi.com/api/location/74" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/431.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/431", - "created": "2018-04-16T22:01:17.927Z" - }, - { - "id": 432, - "name": "Chair-waiter", - "status": "Alive", - "species": "Humanoid", - "type": "Chair", - "gender": "Male", - "origin": { - "name": "Earth (Chair Dimension)", - "url": "https://rickandmortyapi.com/api/location/74" - }, - "location": { - "name": "Earth (Chair Dimension)", - "url": "https://rickandmortyapi.com/api/location/74" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/432.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/432", - "created": "2018-04-16T22:02:26.106Z" - }, - { - "id": 433, - "name": "Doopidoo", - "status": "Alive", - "species": "Animal", - "type": "Doopidoo", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/433.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/433", - "created": "2018-04-16T22:05:05.745Z" - }, - { - "id": 434, - "name": "Super Weird Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/434.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/434", - "created": "2018-04-16T22:16:17.789Z" - }, - { - "id": 435, - "name": "Pripudlian", - "status": "Alive", - "species": "Alien", - "type": "Pripudlian", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/435.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/435", - "created": "2018-04-16T22:21:57.962Z" - }, - { - "id": 436, - "name": "Giant Testicle Monster", - "status": "Alive", - "species": "Animal", - "type": "Monster", - "gender": "unknown", - "origin": { - "name": "Testicle Monster Dimension", - "url": "https://rickandmortyapi.com/api/location/21" - }, - "location": { - "name": "Testicle Monster Dimension", - "url": "https://rickandmortyapi.com/api/location/21" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/436.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/436", - "created": "2018-04-16T22:33:01.337Z" - }, - { - "id": 437, - "name": "Michael", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/437.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/12" - ], - "url": "https://rickandmortyapi.com/api/character/437", - "created": "2018-05-01T11:51:10.604Z" - }, - { - "id": 438, - "name": "Michael's Lawyer", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/438.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/12" - ], - "url": "https://rickandmortyapi.com/api/character/438", - "created": "2018-05-01T11:57:16.266Z" - }, - { - "id": 439, - "name": "Veterinary", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/439.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/12" - ], - "url": "https://rickandmortyapi.com/api/character/439", - "created": "2018-05-01T11:58:43.275Z" - }, - { - "id": 440, - "name": "Veterinary Nurse", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/440.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/12" - ], - "url": "https://rickandmortyapi.com/api/character/440", - "created": "2018-05-01T11:59:15.544Z" - }, - { - "id": 441, - "name": "Bearded Jerry", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Jerryboree", - "url": "https://rickandmortyapi.com/api/location/44" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/441.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/441", - "created": "2018-05-01T12:09:22.636Z" - }, - { - "id": 442, - "name": "Shaved Head Jerry", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Jerryboree", - "url": "https://rickandmortyapi.com/api/location/44" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/442.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/442", - "created": "2018-05-01T12:10:35.123Z" - }, - { - "id": 443, - "name": "Tank Top Jerry", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Jerryboree", - "url": "https://rickandmortyapi.com/api/location/44" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/443.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/443", - "created": "2018-05-01T12:23:37.165Z" - }, - { - "id": 444, - "name": "Pink Polo Shirt Jerry", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Jerryboree", - "url": "https://rickandmortyapi.com/api/location/44" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/444.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/444", - "created": "2018-05-01T12:27:08.632Z" - }, - { - "id": 445, - "name": "Jerryboree Keeper", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Jerryboree", - "url": "https://rickandmortyapi.com/api/location/44" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/445.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/445", - "created": "2018-05-01T13:09:57.921Z" - }, - { - "id": 446, - "name": "Jerryboree Receptionist", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Jerryboree", - "url": "https://rickandmortyapi.com/api/location/44" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/446.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/446", - "created": "2018-05-01T13:11:26.665Z" - }, - { - "id": 447, - "name": "Anchor Gear", - "status": "Alive", - "species": "Alien", - "type": "Gear-Person", - "gender": "Male", - "origin": { - "name": "Gear World", - "url": "https://rickandmortyapi.com/api/location/57" - }, - "location": { - "name": "Gear World", - "url": "https://rickandmortyapi.com/api/location/57" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/447.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/447", - "created": "2018-05-01T13:34:56.141Z" - }, - { - "id": 448, - "name": "Gear Cop", - "status": "Dead", - "species": "Alien", - "type": "Gear-Person", - "gender": "Male", - "origin": { - "name": "Gear World", - "url": "https://rickandmortyapi.com/api/location/57" - }, - "location": { - "name": "Gear World", - "url": "https://rickandmortyapi.com/api/location/57" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/448.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/448", - "created": "2018-05-01T13:38:21.237Z" - }, - { - "id": 449, - "name": "Roy's Mum", - "status": "Alive", - "species": "Human", - "type": "Game", - "gender": "Female", - "origin": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "location": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/449.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/449", - "created": "2018-05-01T13:55:27.886Z" - }, - { - "id": 450, - "name": "Roy's Wife", - "status": "Alive", - "species": "Human", - "type": "Game", - "gender": "Male", - "origin": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "location": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/450.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/450", - "created": "2018-05-01T13:57:55.888Z" - }, - { - "id": 451, - "name": "Roy's Son", - "status": "Alive", - "species": "Human", - "type": "Game", - "gender": "Male", - "origin": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "location": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/451.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/451", - "created": "2018-05-01T13:59:18.964Z" - }, - { - "id": 452, - "name": "Simon", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/452.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/452", - "created": "2018-05-01T14:20:10.187Z" - }, - { - "id": 453, - "name": "Vampire Master's Assistant", - "status": "Alive", - "species": "Vampire", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/453.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/453", - "created": "2018-05-01T15:20:15.582Z" - }, - { - "id": 454, - "name": "Arbolian Mentirososian", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "unknown", - "origin": { - "name": "Árboles Mentirosos", - "url": "https://rickandmortyapi.com/api/location/75" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/454.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/454", - "created": "2018-05-01T15:30:21.493Z" - }, - { - "id": 455, - "name": "St. Gloopy Noops Nurse", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/455.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/455", - "created": "2018-05-01T15:34:19.679Z" - }, - { - "id": 456, - "name": "Nano Doctor", - "status": "Alive", - "species": "Alien", - "type": "Nano Alien", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/456.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/456", - "created": "2018-05-01T15:42:07.919Z" - }, - { - "id": 457, - "name": "Funny Songs Presenter", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/457.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/457", - "created": "2018-05-01T16:08:23.458Z" - }, - { - "id": 458, - "name": "Tax Attorney", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/458.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/458", - "created": "2018-05-01T16:11:17.925Z" - }, - { - "id": 459, - "name": "Butthole Ice Cream Guy", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/459.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/459", - "created": "2018-05-01T16:53:23.462Z" - }, - { - "id": 460, - "name": "Traflorkian Journalist", - "status": "Alive", - "species": "Alien", - "type": "Traflorkian", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/460.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/460", - "created": "2018-05-01T17:03:39.846Z" - }, - { - "id": 461, - "name": "Communication's Responsible Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/461.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/461", - "created": "2018-05-22T16:06:28.494Z" - }, - { - "id": 462, - "name": "Teleportation's Responsible Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/462.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/462", - "created": "2018-05-22T16:16:02.653Z" - }, - { - "id": 463, - "name": "SEAL Team Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/463.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/463", - "created": "2018-05-22T16:21:44.379Z" - }, - { - "id": 464, - "name": "SEAL Team Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/464.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/464", - "created": "2018-05-22T16:21:58.176Z" - }, - { - "id": 465, - "name": "SEAL Team Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/465.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/465", - "created": "2018-05-22T16:22:12.309Z" - }, - { - "id": 466, - "name": "SEAL Team Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/466.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/466", - "created": "2018-05-22T16:23:24.470Z" - }, - { - "id": 467, - "name": "Morphizer-XE Customer Support", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/467.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/467", - "created": "2018-05-22T16:46:18.038Z" - }, - { - "id": 468, - "name": "Morphizer-XE Customer Support", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/468.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/468", - "created": "2018-05-22T16:46:37.603Z" - }, - { - "id": 469, - "name": "Morphizer-XE Customer Support", - "status": "unknown", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/469.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/469", - "created": "2018-05-22T16:46:50.518Z" - }, - { - "id": 470, - "name": "Alien Spa Employee", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Alien Day Spa", - "url": "https://rickandmortyapi.com/api/location/76" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/470.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/470", - "created": "2018-05-22T17:01:59.602Z" - }, - { - "id": 471, - "name": "Little Voltron", - "status": "Alive", - "species": "Robot", - "type": "", - "gender": "Genderless", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/471.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/471", - "created": "2018-05-22T17:07:21.833Z" - }, - { - "id": 472, - "name": "Baby Rick", - "status": "Alive", - "species": "Human", - "type": "Clone", - "gender": "Male", - "origin": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/472.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/472", - "created": "2018-05-22T17:11:53.084Z" - }, - { - "id": 473, - "name": "Bartender Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/473.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/473", - "created": "2018-05-22T17:14:41.628Z" - }, - { - "id": 474, - "name": "Dancer Cowboy Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/474.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/474", - "created": "2018-05-22T17:17:10.102Z" - }, - { - "id": 475, - "name": "Dancer Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/475.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/475", - "created": "2018-05-22T17:17:49.270Z" - }, - { - "id": 476, - "name": "Flower Morty", - "status": "Alive", - "species": "Human", - "type": "Human with a flower in his head", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/476.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/476", - "created": "2018-05-22T17:18:46.129Z" - }, - { - "id": 477, - "name": "Hairdresser Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/477.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/477", - "created": "2018-05-22T17:19:36.127Z" - }, - { - "id": 478, - "name": "Journalist Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/478.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/478", - "created": "2018-05-22T17:22:18.417Z" - }, - { - "id": 479, - "name": "Private Sector Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/479.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/479", - "created": "2018-05-22T17:23:18.546Z" - }, - { - "id": 480, - "name": "Purple Morty", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/480.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/480", - "created": "2018-05-22T17:24:38.571Z" - }, - { - "id": 481, - "name": "Retired General Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/481.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/481", - "created": "2018-05-22T17:29:50.642Z" - }, - { - "id": 482, - "name": "Secret Service Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/482.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/482", - "created": "2018-05-22T17:32:32.561Z" - }, - { - "id": 483, - "name": "Steve Jobs Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/483.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/483", - "created": "2018-05-22T17:33:33.815Z" - }, - { - "id": 484, - "name": "Sheik Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/484.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/484", - "created": "2018-05-22T17:35:26.250Z" - }, - { - "id": 485, - "name": "Modern Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/485.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/485", - "created": "2018-05-22T17:36:56.925Z" - }, - { - "id": 486, - "name": "Tan Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/486.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/486", - "created": "2018-05-22T17:37:37.764Z" - }, - { - "id": 487, - "name": "Visor Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/487.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/487", - "created": "2018-05-22T17:38:28.593Z" - }, - { - "id": 488, - "name": "Colonial Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/488.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/488", - "created": "2018-05-22T17:39:06.439Z" - }, - { - "id": 489, - "name": "P-Coat Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/489.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/489", - "created": "2018-05-22T17:39:37.604Z" - }, - { - "id": 490, - "name": "Chang", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "The Menagerie", - "url": "https://rickandmortyapi.com/api/location/25" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/490.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/490", - "created": "2018-05-22T17:43:52.543Z" - }, - { - "id": 491, - "name": "Dr. Eleanor Arroway", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "The Menagerie", - "url": "https://rickandmortyapi.com/api/location/25" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/491.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/491", - "created": "2018-05-22T17:44:32.071Z" - }, - { - "id": 492, - "name": "Varrix", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/492.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/492", - "created": "2018-05-22T17:49:13.883Z" - }, - { - "id": 493, - "name": "Secretary of the Interior", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/493.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/493", - "created": "2018-05-22T17:51:07.373Z" - } - ] -}; diff --git a/src/data/rickandmorty/rickandmorty.json b/src/data/rickandmorty/rickandmorty.json deleted file mode 100644 index 62daad81..00000000 --- a/src/data/rickandmorty/rickandmorty.json +++ /dev/null @@ -1,11165 +0,0 @@ -{ - "info": { - "count": 493, - "pages": 25, - "next": "https://rickandmortyapi.com/api/character/?page=2", - "prev": "" - }, - "results": [ - { - "id": 1, - "name": "Rick Sanchez", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/1.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/3", - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/7", - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/12", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/14", - "https://rickandmortyapi.com/api/episode/15", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/17", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/20", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/23", - "https://rickandmortyapi.com/api/episode/24", - "https://rickandmortyapi.com/api/episode/25", - "https://rickandmortyapi.com/api/episode/26", - "https://rickandmortyapi.com/api/episode/27", - "https://rickandmortyapi.com/api/episode/28", - "https://rickandmortyapi.com/api/episode/29", - "https://rickandmortyapi.com/api/episode/30", - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/1", - "created": "2017-11-04T18:48:46.250Z" - }, - { - "id": 2, - "name": "Morty Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/2.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/3", - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/7", - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/12", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/14", - "https://rickandmortyapi.com/api/episode/15", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/17", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/20", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/23", - "https://rickandmortyapi.com/api/episode/24", - "https://rickandmortyapi.com/api/episode/25", - "https://rickandmortyapi.com/api/episode/26", - "https://rickandmortyapi.com/api/episode/27", - "https://rickandmortyapi.com/api/episode/28", - "https://rickandmortyapi.com/api/episode/29", - "https://rickandmortyapi.com/api/episode/30", - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/2", - "created": "2017-11-04T18:50:21.651Z" - }, - { - "id": 3, - "name": "Summer Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/3.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/7", - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/12", - "https://rickandmortyapi.com/api/episode/14", - "https://rickandmortyapi.com/api/episode/15", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/17", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/20", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/23", - "https://rickandmortyapi.com/api/episode/24", - "https://rickandmortyapi.com/api/episode/25", - "https://rickandmortyapi.com/api/episode/26", - "https://rickandmortyapi.com/api/episode/27", - "https://rickandmortyapi.com/api/episode/29", - "https://rickandmortyapi.com/api/episode/30", - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/3", - "created": "2017-11-04T19:09:56.428Z" - }, - { - "id": 4, - "name": "Beth Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/4.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/7", - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/12", - "https://rickandmortyapi.com/api/episode/14", - "https://rickandmortyapi.com/api/episode/15", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/20", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/23", - "https://rickandmortyapi.com/api/episode/24", - "https://rickandmortyapi.com/api/episode/25", - "https://rickandmortyapi.com/api/episode/26", - "https://rickandmortyapi.com/api/episode/27", - "https://rickandmortyapi.com/api/episode/28", - "https://rickandmortyapi.com/api/episode/29", - "https://rickandmortyapi.com/api/episode/30", - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/4", - "created": "2017-11-04T19:22:43.665Z" - }, - { - "id": 5, - "name": "Jerry Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/5.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/7", - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/12", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/14", - "https://rickandmortyapi.com/api/episode/15", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/20", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/23", - "https://rickandmortyapi.com/api/episode/26", - "https://rickandmortyapi.com/api/episode/29", - "https://rickandmortyapi.com/api/episode/30", - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/5", - "created": "2017-11-04T19:26:56.301Z" - }, - { - "id": 6, - "name": "Abadango Cluster Princess", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Female", - "origin": { - "name": "Abadango", - "url": "https://rickandmortyapi.com/api/location/2" - }, - "location": { - "name": "Abadango", - "url": "https://rickandmortyapi.com/api/location/2" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/6.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/6", - "created": "2017-11-04T19:50:28.250Z" - }, - { - "id": 7, - "name": "Abradolf Lincler", - "status": "unknown", - "species": "Human", - "type": "Genetic experiment", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Testicle Monster Dimension", - "url": "https://rickandmortyapi.com/api/location/21" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/7.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11" - ], - "url": "https://rickandmortyapi.com/api/character/7", - "created": "2017-11-04T19:59:20.523Z" - }, - { - "id": 8, - "name": "Adjudicator Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/8.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/8", - "created": "2017-11-04T20:03:34.737Z" - }, - { - "id": 9, - "name": "Agency Director", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/9.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/24" - ], - "url": "https://rickandmortyapi.com/api/character/9", - "created": "2017-11-04T20:06:54.976Z" - }, - { - "id": 10, - "name": "Alan Rails", - "status": "Dead", - "species": "Human", - "type": "Superhuman (Ghost trains summoner)", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/10.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/10", - "created": "2017-11-04T20:19:09.017Z" - }, - { - "id": 11, - "name": "Albert Einstein", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/11.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/12" - ], - "url": "https://rickandmortyapi.com/api/character/11", - "created": "2017-11-04T20:20:20.965Z" - }, - { - "id": 12, - "name": "Alexander", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/12.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/12", - "created": "2017-11-04T20:32:33.144Z" - }, - { - "id": 13, - "name": "Alien Googah", - "status": "unknown", - "species": "Alien", - "type": "", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/13.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/13", - "created": "2017-11-04T20:33:30.779Z" - }, - { - "id": 14, - "name": "Alien Morty", - "status": "unknown", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/14.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/14", - "created": "2017-11-04T20:51:31.373Z" - }, - { - "id": 15, - "name": "Alien Rick", - "status": "unknown", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/15.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/15", - "created": "2017-11-04T20:56:13.215Z" - }, - { - "id": 16, - "name": "Amish Cyborg", - "status": "Dead", - "species": "Alien", - "type": "Parasite, Cyborg", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/16.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/16", - "created": "2017-11-04T21:12:45.235Z" - }, - { - "id": 17, - "name": "Annie", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/17.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/17", - "created": "2017-11-04T22:21:24.481Z" - }, - { - "id": 18, - "name": "Antenna Morty", - "status": "Alive", - "species": "Human", - "type": "Human with antennae", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/18.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/18", - "created": "2017-11-04T22:25:29.008Z" - }, - { - "id": 19, - "name": "Antenna Rick", - "status": "unknown", - "species": "Human", - "type": "Human with antennae", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/19.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/19", - "created": "2017-11-04T22:28:13.756Z" - }, - { - "id": 20, - "name": "Ants in my Eyes Johnson", - "status": "unknown", - "species": "Human", - "type": "Human with ants in his eyes", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/20.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/20", - "created": "2017-11-04T22:34:53.659Z" - }, - { - "id": 21, - "name": "Aqua Morty", - "status": "unknown", - "species": "Humanoid", - "type": "Fish-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/21.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/21", - "created": "2017-11-04T22:39:48.055Z" - }, - { - "id": 22, - "name": "Aqua Rick", - "status": "unknown", - "species": "Humanoid", - "type": "Fish-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/22.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/22", - "created": "2017-11-04T22:41:07.171Z" - }, - { - "id": 23, - "name": "Arcade Alien", - "status": "unknown", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Immortality Field Resort", - "url": "https://rickandmortyapi.com/api/location/7" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/23.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/25", - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/23", - "created": "2017-11-05T08:43:05.095Z" - }, - { - "id": 24, - "name": "Armagheadon", - "status": "Alive", - "species": "Alien", - "type": "Cromulon", - "gender": "Male", - "origin": { - "name": "Signus 5 Expanse", - "url": "https://rickandmortyapi.com/api/location/22" - }, - "location": { - "name": "Signus 5 Expanse", - "url": "https://rickandmortyapi.com/api/location/22" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/24.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/24", - "created": "2017-11-05T08:48:30.776Z" - }, - { - "id": 25, - "name": "Armothy", - "status": "Dead", - "species": "unknown", - "type": "Self-aware arm", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/25.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/25", - "created": "2017-11-05T08:54:29.343Z" - }, - { - "id": 26, - "name": "Arthricia", - "status": "Alive", - "species": "Alien", - "type": "Cat-Person", - "gender": "Female", - "origin": { - "name": "Purge Planet", - "url": "https://rickandmortyapi.com/api/location/9" - }, - "location": { - "name": "Purge Planet", - "url": "https://rickandmortyapi.com/api/location/9" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/26.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/20" - ], - "url": "https://rickandmortyapi.com/api/character/26", - "created": "2017-11-05T08:56:46.165Z" - }, - { - "id": 27, - "name": "Artist Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/27.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/27", - "created": "2017-11-05T08:59:07.457Z" - }, - { - "id": 28, - "name": "Attila Starwar", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/28.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/28", - "created": "2017-11-05T09:02:16.595Z" - }, - { - "id": 29, - "name": "Baby Legs", - "status": "Alive", - "species": "Human", - "type": "Human with baby legs", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/29.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/29", - "created": "2017-11-05T09:06:19.644Z" - }, - { - "id": 30, - "name": "Baby Poopybutthole", - "status": "Alive", - "species": "Poopybutthole", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/30.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/30", - "created": "2017-11-05T09:13:16.483Z" - }, - { - "id": 31, - "name": "Baby Wizard", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/31.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/31", - "created": "2017-11-05T09:15:11.286Z" - }, - { - "id": 32, - "name": "Bearded Lady", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/32.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/32", - "created": "2017-11-05T09:18:04.184Z" - }, - { - "id": 33, - "name": "Beebo", - "status": "Dead", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "Venzenulon 7", - "url": "https://rickandmortyapi.com/api/location/10" - }, - "location": { - "name": "Venzenulon 7", - "url": "https://rickandmortyapi.com/api/location/10" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/33.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/33", - "created": "2017-11-05T09:21:55.595Z" - }, - { - "id": 34, - "name": "Benjamin", - "status": "Alive", - "species": "Poopybutthole", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/34.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/34", - "created": "2017-11-05T09:24:04.748Z" - }, - { - "id": 35, - "name": "Bepisian", - "status": "Alive", - "species": "Alien", - "type": "Bepisian", - "gender": "unknown", - "origin": { - "name": "Bepis 9", - "url": "https://rickandmortyapi.com/api/location/11" - }, - "location": { - "name": "Bepis 9", - "url": "https://rickandmortyapi.com/api/location/11" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/35.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/35", - "created": "2017-11-05T09:27:38.491Z" - }, - { - "id": 36, - "name": "Beta-Seven", - "status": "Alive", - "species": "Alien", - "type": "Hivemind", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/36.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/14" - ], - "url": "https://rickandmortyapi.com/api/character/36", - "created": "2017-11-05T09:31:08.952Z" - }, - { - "id": 37, - "name": "Beth Sanchez", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "location": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/37.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/37", - "created": "2017-11-05T09:38:22.960Z" - }, - { - "id": 38, - "name": "Beth Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/38.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/3", - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/38", - "created": "2017-11-05T09:48:44.230Z" - }, - { - "id": 39, - "name": "Beth Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "location": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/39.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/39", - "created": "2017-11-05T09:52:31.777Z" - }, - { - "id": 40, - "name": "Beth's Mytholog", - "status": "Dead", - "species": "Mytholog", - "type": "", - "gender": "Female", - "origin": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/40.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/40", - "created": "2017-11-05T10:02:26.701Z" - }, - { - "id": 41, - "name": "Big Boobed Waitress", - "status": "Alive", - "species": "Humanoid", - "type": "", - "gender": "Female", - "origin": { - "name": "Fantasy World", - "url": "https://rickandmortyapi.com/api/location/48" - }, - "location": { - "name": "Fantasy World", - "url": "https://rickandmortyapi.com/api/location/48" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/41.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/41", - "created": "2017-11-05T10:13:45.960Z" - }, - { - "id": 42, - "name": "Big Head Morty", - "status": "unknown", - "species": "Human", - "type": "Human with giant head", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/42.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/42", - "created": "2017-11-05T10:15:53.349Z" - }, - { - "id": 43, - "name": "Big Morty", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/43.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/43", - "created": "2017-11-05T10:17:04.997Z" - }, - { - "id": 44, - "name": "Body Guard Morty", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/44.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/44", - "created": "2017-11-05T10:18:11.062Z" - }, - { - "id": 45, - "name": "Bill", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/45.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/45", - "created": "2017-11-05T10:22:27.446Z" - }, - { - "id": 46, - "name": "Bill", - "status": "unknown", - "species": "Animal", - "type": "Dog", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/46.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/46", - "created": "2017-11-05T10:24:38.089Z" - }, - { - "id": 47, - "name": "Birdperson", - "status": "Dead", - "species": "Alien", - "type": "Bird-Person", - "gender": "Male", - "origin": { - "name": "Bird World", - "url": "https://rickandmortyapi.com/api/location/15" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/47.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/47", - "created": "2017-11-05T11:13:36.018Z" - }, - { - "id": 48, - "name": "Black Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/48.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/48", - "created": "2017-11-05T11:15:26.044Z" - }, - { - "id": 49, - "name": "Blamph", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/49.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/49", - "created": "2017-11-05T11:18:26.702Z" - }, - { - "id": 50, - "name": "Blim Blam", - "status": "Alive", - "species": "Alien", - "type": "Korblock", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/50.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/14" - ], - "url": "https://rickandmortyapi.com/api/character/50", - "created": "2017-11-05T11:21:43.756Z" - }, - { - "id": 51, - "name": "Blue Diplomat", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/51.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/51", - "created": "2017-11-05T11:24:49.688Z" - }, - { - "id": 52, - "name": "Blue Footprint Guy", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/52.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/52", - "created": "2017-11-05T11:26:42.084Z" - }, - { - "id": 53, - "name": "Blue Shirt Morty", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/53.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/53", - "created": "2017-11-05T11:28:38.627Z" - }, - { - "id": 54, - "name": "Bobby Moynihan", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/54.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/54", - "created": "2017-11-05T11:31:26.348Z" - }, - { - "id": 55, - "name": "Boobloosian", - "status": "Dead", - "species": "Alien", - "type": "Boobloosian", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/55.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/55", - "created": "2017-11-05T11:32:53.847Z" - }, - { - "id": 56, - "name": "Bootleg Portal Chemist Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/56.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/56", - "created": "2017-11-05T11:34:16.447Z" - }, - { - "id": 57, - "name": "Borpocian", - "status": "Alive", - "species": "Alien", - "type": "Elephant-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/57.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/57", - "created": "2017-11-05T11:38:29.459Z" - }, - { - "id": 58, - "name": "Brad", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/58.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/58", - "created": "2017-11-05T11:40:02.554Z" - }, - { - "id": 59, - "name": "Brad Anderson", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/59.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/7" - ], - "url": "https://rickandmortyapi.com/api/character/59", - "created": "2017-11-05T11:41:38.964Z" - }, - { - "id": 60, - "name": "Calypso", - "status": "Dead", - "species": "Human", - "type": "Superhuman", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/60.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/60", - "created": "2017-11-05T11:52:45.852Z" - }, - { - "id": 61, - "name": "Campaign Manager Morty", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/61.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/61", - "created": "2017-11-05T11:53:44.737Z" - }, - { - "id": 62, - "name": "Canklanker Thom", - "status": "Dead", - "species": "Alien", - "type": "Gromflomite", - "gender": "Male", - "origin": { - "name": "Gromflom Prime", - "url": "https://rickandmortyapi.com/api/location/19" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/62.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1" - ], - "url": "https://rickandmortyapi.com/api/character/62", - "created": "2017-11-05T12:06:23.217Z" - }, - { - "id": 63, - "name": "Centaur", - "status": "Alive", - "species": "Humanoid", - "type": "Centaur", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/63.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/63", - "created": "2017-11-05T12:22:17.848Z" - }, - { - "id": 64, - "name": "Chris", - "status": "Dead", - "species": "Alien", - "type": "Organic gun", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/64.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/12" - ], - "url": "https://rickandmortyapi.com/api/character/64", - "created": "2017-11-05T12:25:03.541Z" - }, - { - "id": 65, - "name": "Chris", - "status": "Alive", - "species": "Humanoid", - "type": "Microverse inhabitant", - "gender": "Male", - "origin": { - "name": "Rick's Battery Microverse", - "url": "https://rickandmortyapi.com/api/location/24" - }, - "location": { - "name": "Rick's Battery Microverse", - "url": "https://rickandmortyapi.com/api/location/24" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/65.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/65", - "created": "2017-11-30T11:02:41.935Z" - }, - { - "id": 66, - "name": "Coach Feratu (Balik Alistane)", - "status": "Dead", - "species": "Vampire", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/66.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/66", - "created": "2017-11-30T11:10:10.491Z" - }, - { - "id": 67, - "name": "Collector", - "status": "Alive", - "species": "Alien", - "type": "Light bulb-Alien", - "gender": "Male", - "origin": { - "name": "The Menagerie", - "url": "https://rickandmortyapi.com/api/location/25" - }, - "location": { - "name": "The Menagerie", - "url": "https://rickandmortyapi.com/api/location/25" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/67.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/67", - "created": "2017-11-30T11:13:46.785Z" - }, - { - "id": 68, - "name": "Colossus", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/68.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/68", - "created": "2017-11-30T11:17:32.733Z" - }, - { - "id": 69, - "name": "Commander Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/69.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/69", - "created": "2017-11-30T11:28:06.461Z" - }, - { - "id": 70, - "name": "Concerto", - "status": "Dead", - "species": "Humanoid", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/70.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/24" - ], - "url": "https://rickandmortyapi.com/api/character/70", - "created": "2017-11-30T11:31:41.926Z" - }, - { - "id": 71, - "name": "Conroy", - "status": "Dead", - "species": "Robot", - "type": "", - "gender": "unknown", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/71.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/71", - "created": "2017-11-30T11:35:50.183Z" - }, - { - "id": 72, - "name": "Cool Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (K-83)", - "url": "https://rickandmortyapi.com/api/location/26" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/72.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/72", - "created": "2017-11-30T11:41:11.542Z" - }, - { - "id": 73, - "name": "Cop Morty", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/73.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/73", - "created": "2017-11-30T11:43:04.217Z" - }, - { - "id": 74, - "name": "Cop Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/74.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/74", - "created": "2017-11-30T11:48:18.950Z" - }, - { - "id": 75, - "name": "Courier Flap", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/75.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/75", - "created": "2017-11-30T12:12:57.553Z" - }, - { - "id": 76, - "name": "Cousin Nicky", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/76.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/76", - "created": "2017-11-30T14:11:52.882Z" - }, - { - "id": 77, - "name": "Cowboy Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/77.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/77", - "created": "2017-11-30T14:13:17.371Z" - }, - { - "id": 78, - "name": "Cowboy Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/78.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/78", - "created": "2017-11-30T14:15:18.347Z" - }, - { - "id": 79, - "name": "Crab Spider", - "status": "Alive", - "species": "Alien", - "type": "Animal", - "gender": "unknown", - "origin": { - "name": "Hideout Planet", - "url": "https://rickandmortyapi.com/api/location/27" - }, - "location": { - "name": "Hideout Planet", - "url": "https://rickandmortyapi.com/api/location/27" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/79.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/79", - "created": "2017-11-30T14:18:16.899Z" - }, - { - "id": 80, - "name": "Creepy Little Girl", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/80.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/80", - "created": "2017-11-30T14:20:35.772Z" - }, - { - "id": 81, - "name": "Crocubot", - "status": "Dead", - "species": "Humanoid", - "type": "Robot-Crocodile hybrid", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/81.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/81", - "created": "2017-11-30T14:23:41.053Z" - }, - { - "id": 82, - "name": "Cronenberg Rick", - "status": "unknown", - "species": "Cronenberg", - "type": "", - "gender": "Male", - "origin": { - "name": "Cronenberg Earth", - "url": "https://rickandmortyapi.com/api/location/12" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/82.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/82", - "created": "2017-11-30T14:28:54.596Z" - }, - { - "id": 83, - "name": "Cronenberg Morty", - "status": "unknown", - "species": "Cronenberg", - "type": "", - "gender": "Male", - "origin": { - "name": "Cronenberg Earth", - "url": "https://rickandmortyapi.com/api/location/12" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/83.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/83", - "created": "2017-11-30T20:02:29.204Z" - }, - { - "id": 84, - "name": "Cult Leader Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Hideout Planet", - "url": "https://rickandmortyapi.com/api/location/27" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/84.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/84", - "created": "2017-11-30T20:41:48.080Z" - }, - { - "id": 85, - "name": "Cyclops Morty", - "status": "Alive", - "species": "Humanoid", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/85.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/85", - "created": "2017-11-30T20:49:52.133Z" - }, - { - "id": 86, - "name": "Cyclops Rick", - "status": "Dead", - "species": "Humanoid", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/86.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/86", - "created": "2017-11-30T20:53:10.382Z" - }, - { - "id": 87, - "name": "Cynthia", - "status": "Dead", - "species": "Alien", - "type": "Zigerion", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Zigerion's Base", - "url": "https://rickandmortyapi.com/api/location/46" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/87.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/4" - ], - "url": "https://rickandmortyapi.com/api/character/87", - "created": "2017-11-30T21:08:32.534Z" - }, - { - "id": 88, - "name": "Cynthia", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/88.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/88", - "created": "2017-11-30T21:16:35.633Z" - }, - { - "id": 89, - "name": "Dale", - "status": "Dead", - "species": "Humanoid", - "type": "Giant", - "gender": "Male", - "origin": { - "name": "Giant's Town", - "url": "https://rickandmortyapi.com/api/location/14" - }, - "location": { - "name": "Giant's Town", - "url": "https://rickandmortyapi.com/api/location/14" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/89.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/89", - "created": "2017-12-01T10:32:08.340Z" - }, - { - "id": 90, - "name": "Daron Jefferson", - "status": "Alive", - "species": "Alien", - "type": "Cone-nippled alien", - "gender": "Male", - "origin": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "location": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/90.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/14" - ], - "url": "https://rickandmortyapi.com/api/character/90", - "created": "2017-12-01T10:54:34.736Z" - }, - { - "id": 91, - "name": "David Letterman", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "location": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/91.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/91", - "created": "2017-12-01T11:12:25.105Z" - }, - { - "id": 92, - "name": "Davin", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/92.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/92", - "created": "2017-12-01T11:20:51.247Z" - }, - { - "id": 93, - "name": "Diablo Verde", - "status": "Dead", - "species": "Humanoid", - "type": "Demon", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Dorian 5", - "url": "https://rickandmortyapi.com/api/location/29" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/93.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/93", - "created": "2017-12-01T11:36:16.467Z" - }, - { - "id": 94, - "name": "Diane Sanchez", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Unknown dimension)", - "url": "https://rickandmortyapi.com/api/location/30" - }, - "location": { - "name": "Earth (Unknown dimension)", - "url": "https://rickandmortyapi.com/api/location/30" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/94.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/94", - "created": "2017-12-01T11:49:43.929Z" - }, - { - "id": 95, - "name": "Dipper and Mabel Mortys", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/95.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/95", - "created": "2017-12-01T11:54:36.670Z" - }, - { - "id": 96, - "name": "Tuberculosis", - "status": "Dead", - "species": "Disease", - "type": "", - "gender": "unknown", - "origin": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/96.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/96", - "created": "2017-12-01T11:59:04.796Z" - }, - { - "id": 97, - "name": "Gonorrhea", - "status": "Dead", - "species": "Disease", - "type": "", - "gender": "unknown", - "origin": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/97.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/97", - "created": "2017-12-01T12:00:27.028Z" - }, - { - "id": 98, - "name": "Hepatitis A", - "status": "Dead", - "species": "Disease", - "type": "", - "gender": "unknown", - "origin": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/98.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/98", - "created": "2017-12-01T12:01:43.742Z" - }, - { - "id": 99, - "name": "Hepatitis C", - "status": "Dead", - "species": "Disease", - "type": "", - "gender": "unknown", - "origin": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/99.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/99", - "created": "2017-12-01T12:02:00.935Z" - }, - { - "id": 100, - "name": "Bubonic Plague", - "status": "Dead", - "species": "Disease", - "type": "", - "gender": "unknown", - "origin": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/100.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/100", - "created": "2017-12-01T12:02:21.611Z" - }, - { - "id": 101, - "name": "E. Coli", - "status": "Dead", - "species": "Disease", - "type": "", - "gender": "unknown", - "origin": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/101.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/101", - "created": "2017-12-01T12:03:31.433Z" - }, - { - "id": 102, - "name": "Donna Gueterman", - "status": "Dead", - "species": "Robot", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/102.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/102", - "created": "2017-12-01T12:21:21.357Z" - }, - { - "id": 103, - "name": "Doofus Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (J19ζ7)", - "url": "https://rickandmortyapi.com/api/location/31" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/103.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/103", - "created": "2017-12-01T12:29:27.984Z" - }, - { - "id": 104, - "name": "Doom-Nomitron", - "status": "Dead", - "species": "Alien", - "type": "Shapeshifter", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Dorian 5", - "url": "https://rickandmortyapi.com/api/location/29" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/104.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/104", - "created": "2017-12-26T12:34:36.758Z" - }, - { - "id": 105, - "name": "Dr. Glip-Glop", - "status": "Dead", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/105.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/105", - "created": "2017-12-26T12:39:22.855Z" - }, - { - "id": 106, - "name": "Dr. Schmidt", - "status": "unknown", - "species": "Human", - "type": "Game", - "gender": "Male", - "origin": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "location": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/106.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/106", - "created": "2017-12-26T12:46:48.805Z" - }, - { - "id": 107, - "name": "Dr. Wong", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/107.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/24" - ], - "url": "https://rickandmortyapi.com/api/character/107", - "created": "2017-12-26T12:55:58.449Z" - }, - { - "id": 108, - "name": "Dr. Xenon Bloom", - "status": "Dead", - "species": "Humanoid", - "type": "Amoeba-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/108.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/108", - "created": "2017-12-26T13:14:12.157Z" - }, - { - "id": 109, - "name": "Duck With Muscles", - "status": "Dead", - "species": "Parasite", - "type": "Alien", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/109.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/109", - "created": "2017-12-26T13:17:40.686Z" - }, - { - "id": 110, - "name": "Eli", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/110.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/110", - "created": "2017-12-26T13:37:27.635Z" - }, - { - "id": 111, - "name": "Eli's Girlfriend", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/111.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/111", - "created": "2017-12-26T13:38:47.115Z" - }, - { - "id": 112, - "name": "Eric McMan", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/112.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/112", - "created": "2017-12-26T13:40:06.005Z" - }, - { - "id": 113, - "name": "Eric Stoltz Mask Morty", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Eric Stoltz Mask Earth", - "url": "https://rickandmortyapi.com/api/location/33" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/113.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/113", - "created": "2017-12-26T13:43:29.296Z" - }, - { - "id": 114, - "name": "Ethan", - "status": "unknown", - "species": "Human", - "type": "Cronenberg", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/114.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/114", - "created": "2017-12-26T16:01:13.904Z" - }, - { - "id": 115, - "name": "Ethan", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/115.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/115", - "created": "2017-12-26T16:01:50.939Z" - }, - { - "id": 116, - "name": "Evil Beth Clone", - "status": "Dead", - "species": "Human", - "type": "Clone", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/116.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/116", - "created": "2017-12-26T16:10:47.781Z" - }, - { - "id": 117, - "name": "Evil Jerry Clone", - "status": "Dead", - "species": "Human", - "type": "Clone", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/117.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/117", - "created": "2017-12-26T16:11:15.395Z" - }, - { - "id": 118, - "name": "Evil Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/118.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/118", - "created": "2017-12-26T16:13:41.103Z" - }, - { - "id": 119, - "name": "Evil Rick", - "status": "Dead", - "species": "Humanoid", - "type": "Robot", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/119.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/119", - "created": "2017-12-26T16:17:16.472Z" - }, - { - "id": 120, - "name": "Evil Summer Clone", - "status": "Dead", - "species": "Human", - "type": "Clone", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/120.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/120", - "created": "2017-12-26T16:24:02.059Z" - }, - { - "id": 121, - "name": "Eyehole Man", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/121.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/121", - "created": "2017-12-26T16:41:58.391Z" - }, - { - "id": 122, - "name": "Fart", - "status": "Dead", - "species": "Alien", - "type": "Interdimensional gaseous being", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/122.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/122", - "created": "2017-12-26T17:19:40.474Z" - }, - { - "id": 123, - "name": "Fat Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/123.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/123", - "created": "2017-12-26T17:22:40.315Z" - }, - { - "id": 124, - "name": "Father Bob", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/124.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/124", - "created": "2017-12-26T17:31:29.113Z" - }, - { - "id": 125, - "name": "Flansian", - "status": "Alive", - "species": "Alien", - "type": "Flansian", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/125.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/125", - "created": "2017-12-26T17:43:58.410Z" - }, - { - "id": 126, - "name": "Fleeb", - "status": "unknown", - "species": "Alien", - "type": "", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/126.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/126", - "created": "2017-12-26T18:45:42.593Z" - }, - { - "id": 127, - "name": "Frank Palicky", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/127.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1" - ], - "url": "https://rickandmortyapi.com/api/character/127", - "created": "2017-12-26T19:22:48.474Z" - }, - { - "id": 128, - "name": "Frankenstein's Monster", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/128.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/128", - "created": "2017-12-26T19:24:56.679Z" - }, - { - "id": 129, - "name": "Fulgora", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/129.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/129", - "created": "2017-12-26T19:30:02.242Z" - }, - { - "id": 130, - "name": "Galactic Federation President", - "status": "Dead", - "species": "Alien", - "type": "Gromflomite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/130.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/130", - "created": "2017-12-26T19:49:41.160Z" - }, - { - "id": 131, - "name": "Gar Gloonch", - "status": "Dead", - "species": "Alien", - "type": "Zombodian", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/131.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/131", - "created": "2017-12-26T19:54:43.476Z" - }, - { - "id": 132, - "name": "Gar's Mytholog", - "status": "Dead", - "species": "Mytholog", - "type": "", - "gender": "Male", - "origin": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/132.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/132", - "created": "2017-12-26T20:02:38.033Z" - }, - { - "id": 133, - "name": "Garblovian", - "status": "Alive", - "species": "Alien", - "type": "Garblovian", - "gender": "Male", - "origin": { - "name": "Glaagablaaga", - "url": "https://rickandmortyapi.com/api/location/36" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/133.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/133", - "created": "2017-12-26T20:30:45.943Z" - }, - { - "id": 134, - "name": "Garmanarnar", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/134.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/134", - "created": "2017-12-26T20:36:54.577Z" - }, - { - "id": 135, - "name": "Garment District Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/135.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/135", - "created": "2017-12-26T20:51:43.614Z" - }, - { - "id": 136, - "name": "Gazorpazorpfield", - "status": "Alive", - "species": "Alien", - "type": "Gazorpian", - "gender": "Male", - "origin": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/136.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/136", - "created": "2017-12-27T17:59:59.058Z" - }, - { - "id": 137, - "name": "Gene", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/137.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/137", - "created": "2017-12-27T18:14:57.885Z" - }, - { - "id": 138, - "name": "General Nathan", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/138.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/138", - "created": "2017-12-27T18:22:18.387Z" - }, - { - "id": 139, - "name": "General Store Owner", - "status": "Dead", - "species": "Alien", - "type": "Cat-Person", - "gender": "Male", - "origin": { - "name": "Purge Planet", - "url": "https://rickandmortyapi.com/api/location/9" - }, - "location": { - "name": "Purge Planet", - "url": "https://rickandmortyapi.com/api/location/9" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/139.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/20" - ], - "url": "https://rickandmortyapi.com/api/character/139", - "created": "2017-12-27T18:41:03.124Z" - }, - { - "id": 140, - "name": "Genital Washer", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/140.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/140", - "created": "2017-12-27T18:47:44.566Z" - }, - { - "id": 141, - "name": "Ghost in a Jar", - "status": "Dead", - "species": "Alien", - "type": "Parasite, Ghost", - "gender": "Genderless", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/141.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/141", - "created": "2017-12-27T19:14:14.545Z" - }, - { - "id": 142, - "name": "Gibble Snake", - "status": "Dead", - "species": "Alien", - "type": "Animal", - "gender": "unknown", - "origin": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "location": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/142.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/142", - "created": "2017-12-27T20:16:32.187Z" - }, - { - "id": 143, - "name": "Glasses Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/143.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/143", - "created": "2017-12-27T20:37:26.134Z" - }, - { - "id": 144, - "name": "Glenn", - "status": "Dead", - "species": "Alien", - "type": "Gromflomite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Customs", - "url": "https://rickandmortyapi.com/api/location/38" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/144.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1" - ], - "url": "https://rickandmortyapi.com/api/character/144", - "created": "2017-12-29T10:37:48.319Z" - }, - { - "id": 145, - "name": "Glenn", - "status": "Alive", - "species": "Human", - "type": "Eat shiter-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/145.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/145", - "created": "2017-12-29T11:03:43.118Z" - }, - { - "id": 146, - "name": "Glexo Slim Slom", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/146.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/146", - "created": "2017-12-29T11:28:29.380Z" - }, - { - "id": 147, - "name": "Gobo", - "status": "Dead", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/147.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/147", - "created": "2017-12-29T11:38:29.578Z" - }, - { - "id": 148, - "name": "Goddess Beth", - "status": "unknown", - "species": "Mytholog", - "type": "", - "gender": "Female", - "origin": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/148.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/148", - "created": "2017-12-29T11:40:25.135Z" - }, - { - "id": 149, - "name": "Gordon Lunas", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/149.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/149", - "created": "2017-12-29T11:44:00.169Z" - }, - { - "id": 150, - "name": "Cornvelious Daniel", - "status": "Dead", - "species": "Alien", - "type": "Gromflomite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Galactic Federation Prison", - "url": "https://rickandmortyapi.com/api/location/39" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/150.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/150", - "created": "2017-12-29T12:02:33.550Z" - }, - { - "id": 151, - "name": "Gwendolyn", - "status": "unknown", - "species": "Robot", - "type": "Gazorpian reproduction robot", - "gender": "Female", - "origin": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/151.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/7" - ], - "url": "https://rickandmortyapi.com/api/character/151", - "created": "2017-12-29T12:31:50.388Z" - }, - { - "id": 152, - "name": "Hammerhead Morty", - "status": "unknown", - "species": "Humanoid", - "type": "Hammerhead-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/152.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/152", - "created": "2017-12-29T15:20:16.842Z" - }, - { - "id": 153, - "name": "Hamster In Butt", - "status": "Alive", - "species": "Animal", - "type": "", - "gender": "unknown", - "origin": { - "name": "Hamster in Butt World", - "url": "https://rickandmortyapi.com/api/location/41" - }, - "location": { - "name": "Hamster in Butt World", - "url": "https://rickandmortyapi.com/api/location/41" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/153.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/153", - "created": "2017-12-29T15:27:54.281Z" - }, - { - "id": 154, - "name": "Hamurai", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/154.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/154", - "created": "2017-12-29T15:32:05.287Z" - }, - { - "id": 155, - "name": "Harold", - "status": "Alive", - "species": "Cronenberg", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/155.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/155", - "created": "2017-12-29T15:41:18.773Z" - }, - { - "id": 156, - "name": "Hemorrhage", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/156.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/156", - "created": "2017-12-29T15:44:40.083Z" - }, - { - "id": 157, - "name": "Hole in the Wall Where the Men Can See it All", - "status": "unknown", - "species": "unknown", - "type": "Hole", - "gender": "Genderless", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/157.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/157", - "created": "2017-12-29T15:47:57.352Z" - }, - { - "id": 158, - "name": "Hookah Alien", - "status": "Alive", - "species": "Alien", - "type": "Tuskfish", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Customs", - "url": "https://rickandmortyapi.com/api/location/38" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/158.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1" - ], - "url": "https://rickandmortyapi.com/api/character/158", - "created": "2017-12-29T15:53:48.952Z" - }, - { - "id": 159, - "name": "Hunter", - "status": "Dead", - "species": "Human", - "type": "Clone", - "gender": "Male", - "origin": { - "name": "Earth (Giant Telepathic Spiders Dimension)", - "url": "https://rickandmortyapi.com/api/location/42" - }, - "location": { - "name": "Earth (Giant Telepathic Spiders Dimension)", - "url": "https://rickandmortyapi.com/api/location/42" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/159.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/159", - "created": "2017-12-29T16:03:28.792Z" - }, - { - "id": 160, - "name": "Hunter's Father", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Giant Telepathic Spiders Dimension)", - "url": "https://rickandmortyapi.com/api/location/42" - }, - "location": { - "name": "Earth (Giant Telepathic Spiders Dimension)", - "url": "https://rickandmortyapi.com/api/location/42" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/160.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/160", - "created": "2017-12-29T16:07:04.040Z" - }, - { - "id": 161, - "name": "Hydrogen-F", - "status": "Alive", - "species": "Alien", - "type": "Alphabetrian", - "gender": "Female", - "origin": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "location": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/161.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/161", - "created": "2017-12-29T16:10:40.290Z" - }, - { - "id": 162, - "name": "Ice-T", - "status": "Alive", - "species": "Alien", - "type": "Alphabetrian", - "gender": "Male", - "origin": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "location": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/162.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/162", - "created": "2017-12-29T16:42:59.207Z" - }, - { - "id": 163, - "name": "Ideal Jerry", - "status": "Dead", - "species": "Mytholog", - "type": "", - "gender": "Male", - "origin": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/163.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/163", - "created": "2017-12-29T16:46:41.345Z" - }, - { - "id": 164, - "name": "Insurance Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/164.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/164", - "created": "2017-12-29T17:03:08.645Z" - }, - { - "id": 165, - "name": "Investigator Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/165.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/165", - "created": "2017-12-29T17:05:15.514Z" - }, - { - "id": 166, - "name": "Invisi-trooper", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/166.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/166", - "created": "2017-12-29T17:06:28.325Z" - }, - { - "id": 167, - "name": "Izzy", - "status": "Alive", - "species": "Animal", - "type": "Cat", - "gender": "unknown", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/167.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/24" - ], - "url": "https://rickandmortyapi.com/api/character/167", - "created": "2017-12-29T17:07:59.024Z" - }, - { - "id": 168, - "name": "Jackie", - "status": "Alive", - "species": "Alien", - "type": "Gazorpian", - "gender": "Female", - "origin": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "location": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/168.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/7" - ], - "url": "https://rickandmortyapi.com/api/character/168", - "created": "2017-12-29T17:14:03.430Z" - }, - { - "id": 169, - "name": "Jacob", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/169.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3", - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/169", - "created": "2017-12-29T17:20:52.037Z" - }, - { - "id": 170, - "name": "Jacqueline", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/170.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/170", - "created": "2017-12-29T17:22:17.707Z" - }, - { - "id": 171, - "name": "Jaguar", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/171.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/24" - ], - "url": "https://rickandmortyapi.com/api/character/171", - "created": "2017-12-29T17:25:38.138Z" - }, - { - "id": 172, - "name": "Jamey", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/172.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/172", - "created": "2017-12-29T17:30:20.654Z" - }, - { - "id": 173, - "name": "Jan-Michael Vincent", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/173.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/173", - "created": "2017-12-29T17:33:23.972Z" - }, - { - "id": 174, - "name": "Jerry 5-126", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (5-126)", - "url": "https://rickandmortyapi.com/api/location/17" - }, - "location": { - "name": "Jerryboree", - "url": "https://rickandmortyapi.com/api/location/44" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/174.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/174", - "created": "2017-12-29T17:50:19.991Z" - }, - { - "id": 175, - "name": "Jerry Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/175.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/3", - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/175", - "created": "2017-12-29T18:07:17.610Z" - }, - { - "id": 176, - "name": "Celebrity Jerry", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "location": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/176.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/176", - "created": "2017-12-29T18:25:11.930Z" - }, - { - "id": 177, - "name": "Jerry Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "location": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/177.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/177", - "created": "2017-12-29T18:28:19.424Z" - }, - { - "id": 178, - "name": "Jerry's Mytholog", - "status": "Dead", - "species": "Mytholog", - "type": "", - "gender": "Male", - "origin": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/178.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/178", - "created": "2017-12-29T18:29:31.279Z" - }, - { - "id": 179, - "name": "Jessica", - "status": "Alive", - "species": "Cronenberg", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/179.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/179", - "created": "2017-12-29T18:34:37.806Z" - }, - { - "id": 180, - "name": "Jessica", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/180.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/17", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/26", - "https://rickandmortyapi.com/api/episode/27", - "https://rickandmortyapi.com/api/episode/28", - "https://rickandmortyapi.com/api/episode/29", - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/180", - "created": "2017-12-29T18:36:27.225Z" - }, - { - "id": 181, - "name": "Jessica's Friend", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/181.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/17", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/25", - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/181", - "created": "2017-12-29T18:47:23.345Z" - }, - { - "id": 182, - "name": "Jim", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/182.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/182", - "created": "2017-12-29T18:49:48.953Z" - }, - { - "id": 183, - "name": "Johnny Depp", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "location": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/183.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/183", - "created": "2017-12-29T18:51:29.693Z" - }, - { - "id": 184, - "name": "Jon", - "status": "Alive", - "species": "Alien", - "type": "Gazorpian", - "gender": "Male", - "origin": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/184.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/184", - "created": "2017-12-29T18:54:04.572Z" - }, - { - "id": 185, - "name": "Joseph Eli Lipkip", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/185.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/185", - "created": "2017-12-29T18:56:15.622Z" - }, - { - "id": 186, - "name": "Joyce Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/186.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/186", - "created": "2017-12-29T18:58:34.530Z" - }, - { - "id": 187, - "name": "Juggling Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/187.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/187", - "created": "2017-12-29T18:59:47.440Z" - }, - { - "id": 188, - "name": "Karen Entity", - "status": "Alive", - "species": "Alien", - "type": "Unknown-nippled alien", - "gender": "Female", - "origin": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "location": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/188.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/14" - ], - "url": "https://rickandmortyapi.com/api/character/188", - "created": "2017-12-29T19:10:16.171Z" - }, - { - "id": 189, - "name": "Katarina", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/189.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/24" - ], - "url": "https://rickandmortyapi.com/api/character/189", - "created": "2017-12-29T19:13:57.070Z" - }, - { - "id": 190, - "name": "Keara", - "status": "Alive", - "species": "Alien", - "type": "Krootabulan", - "gender": "Female", - "origin": { - "name": "Krootabulon", - "url": "https://rickandmortyapi.com/api/location/45" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/190.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/190", - "created": "2017-12-29T19:26:06.900Z" - }, - { - "id": 191, - "name": "Kevin", - "status": "Dead", - "species": "Alien", - "type": "Zigerion", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Zigerion's Base", - "url": "https://rickandmortyapi.com/api/location/46" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/191.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/4" - ], - "url": "https://rickandmortyapi.com/api/character/191", - "created": "2017-12-29T19:40:07.816Z" - }, - { - "id": 192, - "name": "King Flippy Nips", - "status": "Alive", - "species": "Alien", - "type": "Plutonian", - "gender": "Male", - "origin": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "location": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/192.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9" - ], - "url": "https://rickandmortyapi.com/api/character/192", - "created": "2017-12-29T19:49:29.297Z" - }, - { - "id": 193, - "name": "King Jellybean", - "status": "Dead", - "species": "Alien", - "type": "Jellybean", - "gender": "Male", - "origin": { - "name": "Fantasy World", - "url": "https://rickandmortyapi.com/api/location/48" - }, - "location": { - "name": "Fantasy World", - "url": "https://rickandmortyapi.com/api/location/48" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/193.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/193", - "created": "2017-12-29T19:58:44.743Z" - }, - { - "id": 194, - "name": "Kozbian", - "status": "Alive", - "species": "Alien", - "type": "Tentacle alien", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/194.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/194", - "created": "2017-12-30T12:13:53.878Z" - }, - { - "id": 195, - "name": "Kristen Stewart", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "location": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/195.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/195", - "created": "2017-12-30T12:19:16.042Z" - }, - { - "id": 196, - "name": "Krombopulos Michael", - "status": "Dead", - "species": "Alien", - "type": "Gromflomite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/196.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/196", - "created": "2017-12-30T12:28:52.954Z" - }, - { - "id": 197, - "name": "Kyle", - "status": "Dead", - "species": "Humanoid", - "type": "Miniverse inhabitant", - "gender": "Male", - "origin": { - "name": "Zeep Xanflorp's Miniverse", - "url": "https://rickandmortyapi.com/api/location/49" - }, - "location": { - "name": "Kyle's Teenyverse", - "url": "https://rickandmortyapi.com/api/location/50" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/197.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/197", - "created": "2017-12-30T12:39:09.025Z" - }, - { - "id": 198, - "name": "Lady Katana", - "status": "Dead", - "species": "Humanoid", - "type": "Cyborg", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Dorian 5", - "url": "https://rickandmortyapi.com/api/location/29" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/198.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/198", - "created": "2017-12-30T12:43:37.571Z" - }, - { - "id": 199, - "name": "Larva Alien", - "status": "Alive", - "species": "Alien", - "type": "Larva alien", - "gender": "unknown", - "origin": { - "name": "Larva Alien's Planet", - "url": "https://rickandmortyapi.com/api/location/51" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/199.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/199", - "created": "2017-12-30T12:48:44.677Z" - }, - { - "id": 200, - "name": "Lawyer Morty", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/200.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/200", - "created": "2017-12-30T12:49:52.971Z" - }, - { - "id": 201, - "name": "Leonard Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/201.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/201", - "created": "2017-12-30T12:51:27.835Z" - }, - { - "id": 202, - "name": "Lighthouse Keeper", - "status": "Dead", - "species": "Alien", - "type": "Cat-Person", - "gender": "Male", - "origin": { - "name": "Purge Planet", - "url": "https://rickandmortyapi.com/api/location/9" - }, - "location": { - "name": "Purge Planet", - "url": "https://rickandmortyapi.com/api/location/9" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/202.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/20" - ], - "url": "https://rickandmortyapi.com/api/character/202", - "created": "2017-12-30T12:53:11.937Z" - }, - { - "id": 203, - "name": "Lil B", - "status": "Dead", - "species": "Alien", - "type": "Snail alien", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/203.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/203", - "created": "2017-12-30T12:54:31.725Z" - }, - { - "id": 204, - "name": "Lisa", - "status": "Dead", - "species": "Alien", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Immortality Field Resort", - "url": "https://rickandmortyapi.com/api/location/7" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/204.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/204", - "created": "2017-12-30T12:59:58.460Z" - }, - { - "id": 205, - "name": "Little Dipper", - "status": "Alive", - "species": "Humanoid", - "type": "Tinymouth", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/205.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/205", - "created": "2017-12-30T13:03:12.366Z" - }, - { - "id": 206, - "name": "Lizard Morty", - "status": "Alive", - "species": "Humanoid", - "type": "Lizard-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/206.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/206", - "created": "2017-12-30T13:06:09.094Z" - }, - { - "id": 207, - "name": "Loggins", - "status": "Alive", - "species": "Alien", - "type": "Alligator-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/207.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/207", - "created": "2017-12-30T13:54:28.627Z" - }, - { - "id": 208, - "name": "Logic", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/208.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/208", - "created": "2017-12-30T13:58:41.417Z" - }, - { - "id": 209, - "name": "Long Sleeved Morty", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/209.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/209", - "created": "2017-12-30T14:00:06.755Z" - }, - { - "id": 210, - "name": "Lucy", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/210.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11" - ], - "url": "https://rickandmortyapi.com/api/character/210", - "created": "2017-12-30T14:01:23.319Z" - }, - { - "id": 211, - "name": "Ma-Sha", - "status": "Alive", - "species": "Alien", - "type": "Gazorpian", - "gender": "Female", - "origin": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "location": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/211.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/7" - ], - "url": "https://rickandmortyapi.com/api/character/211", - "created": "2017-12-30T14:16:00.484Z" - }, - { - "id": 212, - "name": "Magma-Q", - "status": "Dead", - "species": "Alien", - "type": "Alphabetrian", - "gender": "Male", - "origin": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "location": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/212.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/212", - "created": "2017-12-30T14:19:10.419Z" - }, - { - "id": 213, - "name": "Magnesium-J", - "status": "Alive", - "species": "Alien", - "type": "Alphabetrian", - "gender": "Male", - "origin": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "location": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/213.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/213", - "created": "2017-12-30T14:21:16.121Z" - }, - { - "id": 214, - "name": "Man Painted Silver Who Makes Robot Noises", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/214.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/214", - "created": "2017-12-30T14:24:57.993Z" - }, - { - "id": 215, - "name": "Maximums Rickimus", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/215.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/215", - "created": "2017-12-30T14:27:55.489Z" - }, - { - "id": 216, - "name": "MC Haps", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/216.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/216", - "created": "2017-12-30T14:30:06.479Z" - }, - { - "id": 217, - "name": "Mechanical Morty", - "status": "Dead", - "species": "Robot", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/217.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/217", - "created": "2017-12-30T14:32:17.158Z" - }, - { - "id": 218, - "name": "Mechanical Rick", - "status": "unknown", - "species": "Robot", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/218.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/218", - "created": "2017-12-30T14:33:16.920Z" - }, - { - "id": 219, - "name": "Mechanical Summer", - "status": "unknown", - "species": "Robot", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/219.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/219", - "created": "2017-12-30T14:33:49.392Z" - }, - { - "id": 220, - "name": "Mega Fruit Farmer Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/220.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/220", - "created": "2017-12-30T14:35:30.736Z" - }, - { - "id": 221, - "name": "Melissa", - "status": "Alive", - "species": "Humanoid", - "type": "Monster", - "gender": "Female", - "origin": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "location": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/221.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/221", - "created": "2017-12-30T14:38:04.718Z" - }, - { - "id": 222, - "name": "Michael Denny and the Denny Singers", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/222.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/222", - "created": "2017-12-30T14:44:05.245Z" - }, - { - "id": 223, - "name": "Michael Jenkins", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/223.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/223", - "created": "2017-12-30T14:44:51.373Z" - }, - { - "id": 224, - "name": "Michael McLick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/224.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/224", - "created": "2017-12-30T15:49:28.666Z" - }, - { - "id": 225, - "name": "Michael Thompson", - "status": "Alive", - "species": "Humanoid", - "type": "Conjoined twin", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/225.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/225", - "created": "2017-12-30T15:59:31.558Z" - }, - { - "id": 226, - "name": "Million Ants", - "status": "Dead", - "species": "Animal", - "type": "Sentient ant colony", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/226.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/226", - "created": "2017-12-30T16:04:56.879Z" - }, - { - "id": 227, - "name": "Mitch", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/227.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/227", - "created": "2017-12-30T16:08:38.157Z" - }, - { - "id": 228, - "name": "Mohawk Guy", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/228.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/228", - "created": "2017-12-30T16:10:03.881Z" - }, - { - "id": 229, - "name": "Morty Mart Manager Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/229.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/229", - "created": "2017-12-30T16:12:33.382Z" - }, - { - "id": 230, - "name": "Morty Jr.", - "status": "Alive", - "species": "Humanoid", - "type": "Human Gazorpian", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/230.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/7" - ], - "url": "https://rickandmortyapi.com/api/character/230", - "created": "2017-12-30T16:20:51.391Z" - }, - { - "id": 231, - "name": "Morty Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/231.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/231", - "created": "2017-12-30T16:23:45.894Z" - }, - { - "id": 232, - "name": "Morty Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "location": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/232.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/232", - "created": "2017-12-30T16:29:27.863Z" - }, - { - "id": 233, - "name": "Morty K-22", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (K-22)", - "url": "https://rickandmortyapi.com/api/location/52" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/233.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/233", - "created": "2017-12-30T16:33:49.577Z" - }, - { - "id": 234, - "name": "Morty Smith", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/234.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/234", - "created": "2017-12-30T16:35:01.223Z" - }, - { - "id": 235, - "name": "Mortytown Loco", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/235.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/235", - "created": "2017-12-30T16:37:07.150Z" - }, - { - "id": 236, - "name": "Mr. Beauregard", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/236.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/236", - "created": "2017-12-30T17:28:28.409Z" - }, - { - "id": 237, - "name": "Mr. Benson", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/237.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/12" - ], - "url": "https://rickandmortyapi.com/api/character/237", - "created": "2017-12-30T17:30:31.757Z" - }, - { - "id": 238, - "name": "Mr. Booby Buyer", - "status": "Alive", - "species": "Animal", - "type": "Boobie buyer reptilian", - "gender": "Male", - "origin": { - "name": "Fantasy World", - "url": "https://rickandmortyapi.com/api/location/48" - }, - "location": { - "name": "Fantasy World", - "url": "https://rickandmortyapi.com/api/location/48" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/238.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/238", - "created": "2017-12-30T17:36:12.853Z" - }, - { - "id": 239, - "name": "Mr. Goldenfold", - "status": "Alive", - "species": "Cronenberg", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/239.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/239", - "created": "2017-12-30T17:42:11.894Z" - }, - { - "id": 240, - "name": "Mr. Goldenfold", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/240.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/17", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/22", - "https://rickandmortyapi.com/api/episode/24", - "https://rickandmortyapi.com/api/episode/27", - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/240", - "created": "2017-12-30T17:42:56.349Z" - }, - { - "id": 241, - "name": "Mr. Marklovitz", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/241.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/241", - "created": "2017-12-30T17:46:19.052Z" - }, - { - "id": 242, - "name": "Mr. Meeseeks", - "status": "unknown", - "species": "Humanoid", - "type": "Meeseeks", - "gender": "Male", - "origin": { - "name": "Mr. Meeseeks Box", - "url": "https://rickandmortyapi.com/api/location/53" - }, - "location": { - "name": "Blips and Chitz", - "url": "https://rickandmortyapi.com/api/location/67" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/242.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/242", - "created": "2017-12-30T17:52:12.243Z" - }, - { - "id": 243, - "name": "Mr. Needful", - "status": "Alive", - "species": "Humanoid", - "type": "The Devil", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/243.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9" - ], - "url": "https://rickandmortyapi.com/api/character/243", - "created": "2017-12-30T17:54:06.996Z" - }, - { - "id": 244, - "name": "Mr. Poopybutthole", - "status": "Alive", - "species": "Poopybutthole", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/244.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/29", - "https://rickandmortyapi.com/api/episode/30", - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/244", - "created": "2017-12-30T18:03:48.054Z" - }, - { - "id": 245, - "name": "Mrs. Lipkip", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/245.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/245", - "created": "2017-12-30T18:05:59.999Z" - }, - { - "id": 246, - "name": "Mrs. Pancakes", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/246.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/246", - "created": "2017-12-30T18:09:39.304Z" - }, - { - "id": 247, - "name": "Mrs. Poopybutthole", - "status": "Alive", - "species": "Poopybutthole", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/247.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/247", - "created": "2017-12-30T18:10:48.293Z" - }, - { - "id": 248, - "name": "Mrs. Refrigerator", - "status": "Dead", - "species": "Alien", - "type": "Parasite, Refrigerator", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/248.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/248", - "created": "2017-12-30T18:12:38.369Z" - }, - { - "id": 249, - "name": "Mrs. Sanchez", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/249.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/14", - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/249", - "created": "2017-12-30T18:18:10.965Z" - }, - { - "id": 250, - "name": "Mrs. Sullivan", - "status": "Dead", - "species": "Human", - "type": "Cat controlled dead lady", - "gender": "Female", - "origin": { - "name": "Earth (C-500A)", - "url": "https://rickandmortyapi.com/api/location/23" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/250.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/250", - "created": "2017-12-30T18:24:49.372Z" - }, - { - "id": 251, - "name": "Nancy", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/251.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/25", - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/251", - "created": "2017-12-31T12:46:54.095Z" - }, - { - "id": 252, - "name": "Noob-Noob", - "status": "Alive", - "species": "Poopybutthole", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Vindicator's Base", - "url": "https://rickandmortyapi.com/api/location/54" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/252.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/252", - "created": "2017-12-31T12:57:37.849Z" - }, - { - "id": 253, - "name": "Numbericon", - "status": "unknown", - "species": "Alien", - "type": "Numbericon", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Alphabetrium", - "url": "https://rickandmortyapi.com/api/location/43" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/253.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/253", - "created": "2017-12-31T13:04:01.585Z" - }, - { - "id": 254, - "name": "Octopus Man", - "status": "Alive", - "species": "Humanoid", - "type": "Octopus-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/254.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/254", - "created": "2017-12-31T13:06:35.982Z" - }, - { - "id": 255, - "name": "Orthodox Jew", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/255.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/255", - "created": "2017-12-31T13:19:29.825Z" - }, - { - "id": 256, - "name": "Pat Gueterman", - "status": "Dead", - "species": "Robot", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/256.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/256", - "created": "2017-12-31T13:23:08.567Z" - }, - { - "id": 257, - "name": "Paul Fleishman", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Jerryboree", - "url": "https://rickandmortyapi.com/api/location/44" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/257.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/257", - "created": "2017-12-31T13:23:47.704Z" - }, - { - "id": 258, - "name": "Pawnshop Clerk", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Pawn Shop Planet", - "url": "https://rickandmortyapi.com/api/location/55" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/258.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/7" - ], - "url": "https://rickandmortyapi.com/api/character/258", - "created": "2017-12-31T13:30:33.611Z" - }, - { - "id": 259, - "name": "Pencilvester", - "status": "Dead", - "species": "Alien", - "type": "Parasite, Pencil", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/259.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/259", - "created": "2017-12-31T13:33:48.488Z" - }, - { - "id": 260, - "name": "Phillip Jacobs", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/260.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/260", - "created": "2017-12-31T13:34:58.839Z" - }, - { - "id": 261, - "name": "Photography Cyborg", - "status": "unknown", - "species": "Robot", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/261.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/261", - "created": "2017-12-31T13:38:53.640Z" - }, - { - "id": 262, - "name": "Photography Raptor", - "status": "Dead", - "species": "Alien", - "type": "Parasite, Dinosaur", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/262.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/262", - "created": "2017-12-31T13:40:32.312Z" - }, - { - "id": 263, - "name": "Pibbles Bodyguard", - "status": "Alive", - "species": "Alien", - "type": "Hairy alien", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/263.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/263", - "created": "2017-12-31T13:43:30.513Z" - }, - { - "id": 264, - "name": "Pichael Thompson", - "status": "Alive", - "species": "Humanoid", - "type": "Conjoined twin", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/264.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/264", - "created": "2017-12-31T13:44:43.176Z" - }, - { - "id": 265, - "name": "Pickle Rick", - "status": "Alive", - "species": "unknown", - "type": "Pickle", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/265.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/24" - ], - "url": "https://rickandmortyapi.com/api/character/265", - "created": "2017-12-31T13:47:10.617Z" - }, - { - "id": 266, - "name": "Piece of Toast", - "status": "Alive", - "species": "unknown", - "type": "Bread", - "gender": "Genderless", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/266.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/266", - "created": "2017-12-31T13:48:58.850Z" - }, - { - "id": 267, - "name": "Plumber Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/267.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/267", - "created": "2017-12-31T13:50:57.337Z" - }, - { - "id": 268, - "name": "Poncho", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/268.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/268", - "created": "2017-12-31T13:53:25.411Z" - }, - { - "id": 269, - "name": "Presidentress of The Mega Gargantuans", - "status": "Alive", - "species": "Humanoid", - "type": "Mega Gargantuan", - "gender": "Female", - "origin": { - "name": "Mega Gargantuan Kingdom", - "url": "https://rickandmortyapi.com/api/location/56" - }, - "location": { - "name": "Mega Gargantuan Kingdom", - "url": "https://rickandmortyapi.com/api/location/56" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/269.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/269", - "created": "2017-12-31T14:01:44.995Z" - }, - { - "id": 270, - "name": "Prince Nebulon", - "status": "Dead", - "species": "Alien", - "type": "Zigerion", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Zigerion's Base", - "url": "https://rickandmortyapi.com/api/location/46" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/270.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/4" - ], - "url": "https://rickandmortyapi.com/api/character/270", - "created": "2017-12-31T14:05:24.406Z" - }, - { - "id": 271, - "name": "Principal Vagina", - "status": "Alive", - "species": "Cronenberg", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/271.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/271", - "created": "2017-12-31T14:08:43.602Z" - }, - { - "id": 272, - "name": "Principal Vagina", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/272.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/24", - "https://rickandmortyapi.com/api/episode/27", - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/272", - "created": "2017-12-31T14:09:09.071Z" - }, - { - "id": 273, - "name": "Purge Planet Ruler", - "status": "Dead", - "species": "Alien", - "type": "Cat-Person", - "gender": "Male", - "origin": { - "name": "Purge Planet", - "url": "https://rickandmortyapi.com/api/location/9" - }, - "location": { - "name": "Purge Planet", - "url": "https://rickandmortyapi.com/api/location/9" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/273.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/20" - ], - "url": "https://rickandmortyapi.com/api/character/273", - "created": "2017-12-31T14:13:54.909Z" - }, - { - "id": 274, - "name": "Quantum Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/274.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/274", - "created": "2017-12-31T14:15:28.051Z" - }, - { - "id": 275, - "name": "Randy Dicknose", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/275.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/275", - "created": "2017-12-31T14:16:45.776Z" - }, - { - "id": 276, - "name": "Rat Boss", - "status": "Dead", - "species": "Animal", - "type": "Rat", - "gender": "unknown", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/276.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/24" - ], - "url": "https://rickandmortyapi.com/api/character/276", - "created": "2017-12-31T14:17:21.782Z" - }, - { - "id": 277, - "name": "Real Fake Doors Salesman", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/277.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/277", - "created": "2017-12-31T14:18:30.570Z" - }, - { - "id": 278, - "name": "Regional Manager Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/278.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/278", - "created": "2017-12-31T14:19:36.487Z" - }, - { - "id": 279, - "name": "Regular Legs", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/279.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/279", - "created": "2017-12-31T14:20:31.936Z" - }, - { - "id": 280, - "name": "Reverse Giraffe", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/280.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/280", - "created": "2017-12-31T14:22:46.285Z" - }, - { - "id": 281, - "name": "Reverse Rick Outrage", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/281.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/281", - "created": "2017-12-31T14:23:53.056Z" - }, - { - "id": 282, - "name": "Revolio Clockberg Jr.", - "status": "unknown", - "species": "Alien", - "type": "Gear-Person", - "gender": "Male", - "origin": { - "name": "Gear World", - "url": "https://rickandmortyapi.com/api/location/57" - }, - "location": { - "name": "Gear World", - "url": "https://rickandmortyapi.com/api/location/57" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/282.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/282", - "created": "2017-12-31T19:21:17.351Z" - }, - { - "id": 283, - "name": "Rick D. Sanchez III", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/283.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/283", - "created": "2017-12-31T19:23:53.188Z" - }, - { - "id": 284, - "name": "Rick Guilt Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/284.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/284", - "created": "2017-12-31T19:25:18.205Z" - }, - { - "id": 285, - "name": "Rick Prime", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/285.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/285", - "created": "2017-12-31T19:45:46.470Z" - }, - { - "id": 286, - "name": "Rick D-99", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (D-99)", - "url": "https://rickandmortyapi.com/api/location/58" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/286.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/286", - "created": "2017-12-31T19:49:55.181Z" - }, - { - "id": 287, - "name": "Rick D716", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (D716)", - "url": "https://rickandmortyapi.com/api/location/59" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/287.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/287", - "created": "2017-12-31T19:51:33.244Z" - }, - { - "id": 288, - "name": "Rick D716-B", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (D716-B)", - "url": "https://rickandmortyapi.com/api/location/60" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/288.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/288", - "created": "2017-12-31T19:55:25.101Z" - }, - { - "id": 289, - "name": "Rick D716-C", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (D716-C)", - "url": "https://rickandmortyapi.com/api/location/61" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/289.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/289", - "created": "2017-12-31T19:57:36.546Z" - }, - { - "id": 290, - "name": "Rick Sanchez", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "location": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/290.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/290", - "created": "2017-12-31T20:15:25.716Z" - }, - { - "id": 291, - "name": "Rick J-22", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (J-22)", - "url": "https://rickandmortyapi.com/api/location/62" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/291.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/291", - "created": "2017-12-31T20:16:52.337Z" - }, - { - "id": 292, - "name": "Rick K-22", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (K-22)", - "url": "https://rickandmortyapi.com/api/location/52" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/292.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/292", - "created": "2017-12-31T20:20:40.484Z" - }, - { - "id": 293, - "name": "Rick Sanchez", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/293.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/293", - "created": "2017-12-31T20:22:29.032Z" - }, - { - "id": 294, - "name": "Ricktiminus Sancheziminius", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/294.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/294", - "created": "2017-12-31T20:24:30.396Z" - }, - { - "id": 295, - "name": "Riq IV", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/295.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/295", - "created": "2017-12-31T20:25:28.554Z" - }, - { - "id": 296, - "name": "Risotto Groupon", - "status": "Dead", - "species": "Alien", - "type": "Blue ape alien", - "gender": "Male", - "origin": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "location": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/296.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/296", - "created": "2017-12-31T20:32:33.361Z" - }, - { - "id": 297, - "name": "Risotto's Tentacled Henchman", - "status": "Dead", - "species": "Alien", - "type": "Tentacle alien", - "gender": "Male", - "origin": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "location": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/297.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/297", - "created": "2017-12-31T20:34:58.394Z" - }, - { - "id": 298, - "name": "Robot Morty", - "status": "unknown", - "species": "Robot", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/298.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/298", - "created": "2017-12-31T20:37:30.747Z" - }, - { - "id": 299, - "name": "Robot Rick", - "status": "unknown", - "species": "Robot", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/299.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/299", - "created": "2017-12-31T20:38:17.990Z" - }, - { - "id": 300, - "name": "Roger", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Anatomy Park", - "url": "https://rickandmortyapi.com/api/location/5" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/300.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/300", - "created": "2017-12-31T20:39:35.047Z" - }, - { - "id": 301, - "name": "Ron Benson", - "status": "Alive", - "species": "Humanoid", - "type": "Ring-nippled alien", - "gender": "Male", - "origin": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "location": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/301.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/14" - ], - "url": "https://rickandmortyapi.com/api/character/301", - "created": "2018-01-05T14:02:20.902Z" - }, - { - "id": 302, - "name": "Ruben", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/302.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/302", - "created": "2018-01-05T14:03:21.824Z" - }, - { - "id": 303, - "name": "Samantha", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/303.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/303", - "created": "2018-01-05T14:09:03.150Z" - }, - { - "id": 304, - "name": "Scary Brandon", - "status": "Alive", - "species": "Humanoid", - "type": "Monster", - "gender": "Male", - "origin": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "location": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/304.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/304", - "created": "2018-01-05T14:11:17.550Z" - }, - { - "id": 305, - "name": "Scary Glenn", - "status": "Alive", - "species": "Humanoid", - "type": "Monster", - "gender": "Male", - "origin": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "location": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/305.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/305", - "created": "2018-01-05T14:11:53.287Z" - }, - { - "id": 306, - "name": "Scary Terry", - "status": "Alive", - "species": "Humanoid", - "type": "Monster", - "gender": "Male", - "origin": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "location": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/306.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/306", - "created": "2018-01-05T14:13:01.564Z" - }, - { - "id": 307, - "name": "Scroopy Noopers", - "status": "Alive", - "species": "Alien", - "type": "Plutonian", - "gender": "Male", - "origin": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "location": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/307.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9" - ], - "url": "https://rickandmortyapi.com/api/character/307", - "created": "2018-01-05T14:20:41.693Z" - }, - { - "id": 308, - "name": "Scropon", - "status": "unknown", - "species": "Alien", - "type": "Lobster-Alien", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/308.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/308", - "created": "2018-01-05T14:22:47.706Z" - }, - { - "id": 309, - "name": "Scrotian", - "status": "Alive", - "species": "Animal", - "type": "Scrotian", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Signus 5 Expanse", - "url": "https://rickandmortyapi.com/api/location/22" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/309.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/309", - "created": "2018-01-05T14:26:50.679Z" - }, - { - "id": 310, - "name": "Self-Congratulatory Jerry", - "status": "unknown", - "species": "Mytholog", - "type": "", - "gender": "Male", - "origin": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/310.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/310", - "created": "2018-01-05T14:29:21.347Z" - }, - { - "id": 311, - "name": "Shimshamian", - "status": "Alive", - "species": "Alien", - "type": "Shimshamian", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/311.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/311", - "created": "2018-01-05T14:44:01.276Z" - }, - { - "id": 312, - "name": "Shlaammi", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/312.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/312", - "created": "2018-01-05T14:45:39.235Z" - }, - { - "id": 313, - "name": "Shleemypants", - "status": "Alive", - "species": "unknown", - "type": "Omniscient being", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/313.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/12" - ], - "url": "https://rickandmortyapi.com/api/character/313", - "created": "2018-01-05T14:52:31.489Z" - }, - { - "id": 314, - "name": "Shmlamantha Shmlicelli", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/314.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/314", - "created": "2018-01-05T14:53:23.739Z" - }, - { - "id": 315, - "name": "Shmlangela Shmlobinson-Shmlower", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/315.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/315", - "created": "2018-01-05T14:54:37.641Z" - }, - { - "id": 316, - "name": "Shmlona Shmlobinson", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/316.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/316", - "created": "2018-01-05T14:55:42.034Z" - }, - { - "id": 317, - "name": "Shmlonathan Shmlower", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/317.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/317", - "created": "2018-01-05T14:56:15.428Z" - }, - { - "id": 318, - "name": "Shmlony Shmlicelli", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/318.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/318", - "created": "2018-01-05T14:56:45.502Z" - }, - { - "id": 319, - "name": "Shmooglite Runner", - "status": "unknown", - "species": "Alien", - "type": "Animal", - "gender": "Male", - "origin": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "location": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/319.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/319", - "created": "2018-01-05T14:59:34.798Z" - }, - { - "id": 320, - "name": "Shnoopy Bloopers", - "status": "unknown", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Immortality Field Resort", - "url": "https://rickandmortyapi.com/api/location/7" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/320.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/320", - "created": "2018-01-05T15:02:28.103Z" - }, - { - "id": 321, - "name": "Shrimply Pibbles", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/321.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/321", - "created": "2018-01-05T15:07:50.789Z" - }, - { - "id": 322, - "name": "Simple Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/322.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/322", - "created": "2018-01-05T15:12:03.933Z" - }, - { - "id": 323, - "name": "Slaveowner", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/323.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/323", - "created": "2018-01-05T15:13:46.862Z" - }, - { - "id": 324, - "name": "Sleepy Gary", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/324.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/324", - "created": "2018-01-05T15:17:26.876Z" - }, - { - "id": 325, - "name": "Slick Morty", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/325.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/325", - "created": "2018-01-10T16:06:48.366Z" - }, - { - "id": 326, - "name": "Slippery Stair", - "status": "Alive", - "species": "Animal", - "type": "Slug", - "gender": "Male", - "origin": { - "name": "Fantasy World", - "url": "https://rickandmortyapi.com/api/location/48" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/326.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/11" - ], - "url": "https://rickandmortyapi.com/api/character/326", - "created": "2018-01-10T16:11:09.964Z" - }, - { - "id": 327, - "name": "Slow Mobius", - "status": "Alive", - "species": "Humanoid", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/327.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11" - ], - "url": "https://rickandmortyapi.com/api/character/327", - "created": "2018-01-10T16:13:26.380Z" - }, - { - "id": 328, - "name": "Slow Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/328.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/328", - "created": "2018-01-10T16:14:16.331Z" - }, - { - "id": 329, - "name": "Snuffles (Snowball)", - "status": "Alive", - "species": "Animal", - "type": "Intelligent dog", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/329.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/7", - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/15", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/24", - "https://rickandmortyapi.com/api/episode/29", - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/329", - "created": "2018-01-10T16:24:49.586Z" - }, - { - "id": 330, - "name": "Solicitor Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/330.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/330", - "created": "2018-01-10T16:26:27.705Z" - }, - { - "id": 331, - "name": "Squanchy", - "status": "unknown", - "species": "Alien", - "type": "Cat-like creature", - "gender": "Male", - "origin": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/331.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/331", - "created": "2018-01-10T16:29:25.344Z" - }, - { - "id": 332, - "name": "Stacy", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/332.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/332", - "created": "2018-01-10T16:31:10.465Z" - }, - { - "id": 333, - "name": "Stair Goblin", - "status": "Alive", - "species": "Alien", - "type": "Stair goblin", - "gender": "Genderless", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Fantasy World", - "url": "https://rickandmortyapi.com/api/location/48" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/333.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/333", - "created": "2018-01-10T16:34:19.420Z" - }, - { - "id": 334, - "name": "Stealy", - "status": "Alive", - "species": "Poopybutthole", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/334.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/334", - "created": "2018-01-10T16:36:06.982Z" - }, - { - "id": 335, - "name": "Steve", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/335.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/335", - "created": "2018-01-10T16:39:34.837Z" - }, - { - "id": 336, - "name": "Steven Phillips", - "status": "Alive", - "species": "Alien", - "type": "Unknown-nippled alien", - "gender": "Male", - "origin": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "location": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/336.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/14" - ], - "url": "https://rickandmortyapi.com/api/character/336", - "created": "2018-01-10T16:44:51.702Z" - }, - { - "id": 337, - "name": "Stu", - "status": "Dead", - "species": "Alien", - "type": "Zigerion", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Zigerion's Base", - "url": "https://rickandmortyapi.com/api/location/46" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/337.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/4" - ], - "url": "https://rickandmortyapi.com/api/character/337", - "created": "2018-01-10T16:50:57.710Z" - }, - { - "id": 338, - "name": "Summer Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/338.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/3", - "https://rickandmortyapi.com/api/episode/4", - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/6", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/338", - "created": "2018-01-10T16:55:03.390Z" - }, - { - "id": 339, - "name": "Summer Smith", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "location": { - "name": "Earth (Evil Rick's Target Dimension)", - "url": "https://rickandmortyapi.com/api/location/34" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/339.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/339", - "created": "2018-01-10T16:56:28.489Z" - }, - { - "id": 340, - "name": "Supernova", - "status": "Alive", - "species": "Human", - "type": "Superhuman", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/340.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/340", - "created": "2018-01-10T17:02:58.042Z" - }, - { - "id": 341, - "name": "Taddy Mason", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/341.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/20" - ], - "url": "https://rickandmortyapi.com/api/character/341", - "created": "2018-01-10T17:07:09.052Z" - }, - { - "id": 342, - "name": "Taint Washer", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "location": { - "name": "Post-Apocalyptic Earth", - "url": "https://rickandmortyapi.com/api/location/8" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/342.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/23" - ], - "url": "https://rickandmortyapi.com/api/character/342", - "created": "2018-01-10T17:23:26.944Z" - }, - { - "id": 343, - "name": "Tammy Guetermann", - "status": "Alive", - "species": "Cronenberg", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/343.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5", - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/343", - "created": "2018-01-10T17:27:04.773Z" - }, - { - "id": 344, - "name": "Tammy Guetermann", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/344.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/344", - "created": "2018-01-10T17:31:54.889Z" - }, - { - "id": 345, - "name": "Teacher Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/345.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/345", - "created": "2018-01-10T17:33:23.437Z" - }, - { - "id": 346, - "name": "Terry", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/346.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/346", - "created": "2018-01-10T17:37:51.767Z" - }, - { - "id": 347, - "name": "The President", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/347.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/347", - "created": "2018-01-10T17:43:37.411Z" - }, - { - "id": 348, - "name": "The President of the Miniverse", - "status": "Dead", - "species": "Humanoid", - "type": "Miniverse inhabitant", - "gender": "Male", - "origin": { - "name": "Zeep Xanflorp's Miniverse", - "url": "https://rickandmortyapi.com/api/location/49" - }, - "location": { - "name": "Zeep Xanflorp's Miniverse", - "url": "https://rickandmortyapi.com/api/location/49" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/348.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/348", - "created": "2018-01-10T17:47:59.043Z" - }, - { - "id": 349, - "name": "The Scientist Formerly Known as Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/349.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/349", - "created": "2018-01-10T17:49:09.995Z" - }, - { - "id": 350, - "name": "Thomas Lipkip", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Froopyland", - "url": "https://rickandmortyapi.com/api/location/63" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/350.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/350", - "created": "2018-01-10T17:50:33.471Z" - }, - { - "id": 351, - "name": "Three Unknown Things", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/351.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/351", - "created": "2018-01-10T17:57:31.022Z" - }, - { - "id": 352, - "name": "Tinkles", - "status": "Dead", - "species": "Alien", - "type": "Parasite, Unicorn lamb", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/352.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/352", - "created": "2018-01-10T17:58:51.840Z" - }, - { - "id": 353, - "name": "Tiny Rick", - "status": "Dead", - "species": "Human", - "type": "Clone", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/353.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/353", - "created": "2018-01-10T18:00:35.848Z" - }, - { - "id": 354, - "name": "Toby Matthews", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/354.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/354", - "created": "2018-01-10T18:02:03.402Z" - }, - { - "id": 355, - "name": "Todd Crystal", - "status": "Alive", - "species": "Alien", - "type": "Unknown-nippled alien", - "gender": "Male", - "origin": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "location": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/355.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/14" - ], - "url": "https://rickandmortyapi.com/api/character/355", - "created": "2018-01-10T18:05:46.294Z" - }, - { - "id": 356, - "name": "Tom Randolph", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/356.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/3" - ], - "url": "https://rickandmortyapi.com/api/character/356", - "created": "2018-01-10T18:07:03.215Z" - }, - { - "id": 357, - "name": "Tommy's Clone", - "status": "Alive", - "species": "Human", - "type": "Clone", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/357.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/357", - "created": "2018-01-10T18:07:45.541Z" - }, - { - "id": 358, - "name": "Tophat Jones", - "status": "Dead", - "species": "Humanoid", - "type": "Leprechaun", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/358.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/18", - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/358", - "created": "2018-01-10T18:09:34.482Z" - }, - { - "id": 359, - "name": "Tortured Morty", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/359.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/359", - "created": "2018-01-10T18:14:50.992Z" - }, - { - "id": 360, - "name": "Toxic Morty", - "status": "Dead", - "species": "Humanoid", - "type": "Morty's toxic side", - "gender": "Male", - "origin": { - "name": "Detoxifier", - "url": "https://rickandmortyapi.com/api/location/64" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/360.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/360", - "created": "2018-01-10T18:18:05.422Z" - }, - { - "id": 361, - "name": "Toxic Rick", - "status": "Dead", - "species": "Humanoid", - "type": "Rick's toxic side", - "gender": "Male", - "origin": { - "name": "Detoxifier", - "url": "https://rickandmortyapi.com/api/location/64" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/361.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/361", - "created": "2018-01-10T18:20:41.703Z" - }, - { - "id": 362, - "name": "Traflorkian", - "status": "Alive", - "species": "Alien", - "type": "Traflorkian", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/362.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/21", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/362", - "created": "2018-01-10T18:52:08.927Z" - }, - { - "id": 363, - "name": "Trandor", - "status": "Alive", - "species": "Alien", - "type": "Krootabulan", - "gender": "Male", - "origin": { - "name": "Krootabulon", - "url": "https://rickandmortyapi.com/api/location/45" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/363.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/363", - "created": "2018-01-10T18:54:36.578Z" - }, - { - "id": 364, - "name": "Tree Person", - "status": "Dead", - "species": "Humanoid", - "type": "Teenyverse inhabitant", - "gender": "unknown", - "origin": { - "name": "Kyle's Teenyverse", - "url": "https://rickandmortyapi.com/api/location/50" - }, - "location": { - "name": "Kyle's Teenyverse", - "url": "https://rickandmortyapi.com/api/location/50" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/364.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/364", - "created": "2018-01-10T18:57:50.033Z" - }, - { - "id": 365, - "name": "Tricia Lange", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/365.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26", - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/365", - "created": "2018-01-10T18:59:31.842Z" - }, - { - "id": 366, - "name": "Trunk Morty", - "status": "Alive", - "species": "Humanoid", - "type": "Trunk-Person", - "gender": "Male", - "origin": { - "name": "Trunk World", - "url": "https://rickandmortyapi.com/api/location/65" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/366.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/366", - "created": "2018-01-10T19:03:13.558Z" - }, - { - "id": 367, - "name": "Trunk Man", - "status": "Alive", - "species": "Humanoid", - "type": "Trunk-Person", - "gender": "Male", - "origin": { - "name": "Trunk World", - "url": "https://rickandmortyapi.com/api/location/65" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/367.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/367", - "created": "2018-01-10T19:05:34.004Z" - }, - { - "id": 368, - "name": "Truth Tortoise", - "status": "unknown", - "species": "Animal", - "type": "Omniscient being", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/368.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/368", - "created": "2018-01-10T19:14:35.885Z" - }, - { - "id": 369, - "name": "Tusked Assassin", - "status": "unknown", - "species": "Alien", - "type": "Tuskfish", - "gender": "Male", - "origin": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "location": { - "name": "Resort Planet", - "url": "https://rickandmortyapi.com/api/location/37" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/369.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/369", - "created": "2018-01-10T19:17:00.093Z" - }, - { - "id": 370, - "name": "Two Guys with Handlebar Mustaches", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/370.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/370", - "created": "2018-01-10T19:17:57.976Z" - }, - { - "id": 371, - "name": "Tumblorkian", - "status": "Alive", - "species": "Alien", - "type": "Tumblorkian", - "gender": "Male", - "origin": { - "name": "Plopstar", - "url": "https://rickandmortyapi.com/api/location/66" - }, - "location": { - "name": "Plopstar", - "url": "https://rickandmortyapi.com/api/location/66" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/371.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/371", - "created": "2018-01-10T19:18:44.560Z" - }, - { - "id": 372, - "name": "Unity", - "status": "Alive", - "species": "Alien", - "type": "Hivemind", - "gender": "Genderless", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Unity's Planet", - "url": "https://rickandmortyapi.com/api/location/28" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/372.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/14" - ], - "url": "https://rickandmortyapi.com/api/character/372", - "created": "2018-01-10T19:20:50.211Z" - }, - { - "id": 373, - "name": "Unmuscular Michael", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/373.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/373", - "created": "2018-01-10T19:22:04.075Z" - }, - { - "id": 374, - "name": "Vampire Master", - "status": "Alive", - "species": "Vampire", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/374.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/374", - "created": "2018-01-10T19:23:45.478Z" - }, - { - "id": 375, - "name": "Vance Maximus", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/375.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/375", - "created": "2018-01-10T19:26:00.957Z" - }, - { - "id": 376, - "name": "Veronica Ann Bennet", - "status": "Alive", - "species": "Alien", - "type": "Gazorpian", - "gender": "Female", - "origin": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "location": { - "name": "Gazorpazorp", - "url": "https://rickandmortyapi.com/api/location/40" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/376.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/7" - ], - "url": "https://rickandmortyapi.com/api/character/376", - "created": "2018-01-10T19:27:06.246Z" - }, - { - "id": 377, - "name": "Voltematron", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/377.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/377", - "created": "2018-01-10T19:29:08.116Z" - }, - { - "id": 378, - "name": "Wall Crawling Rick", - "status": "unknown", - "species": "Humanoid", - "type": "Lizard-Person", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/378.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/378", - "created": "2018-01-10T19:33:30.804Z" - }, - { - "id": 379, - "name": "Wedding Bartender", - "status": "unknown", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Planet Squanch", - "url": "https://rickandmortyapi.com/api/location/35" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/379.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/379", - "created": "2018-01-10T19:37:41.375Z" - }, - { - "id": 380, - "name": "Weird Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/380.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/380", - "created": "2018-01-10T19:44:22.262Z" - }, - { - "id": 381, - "name": "Woman Rick", - "status": "Alive", - "species": "Alien", - "type": "Chair", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/381.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/381", - "created": "2018-01-10T19:46:00.622Z" - }, - { - "id": 382, - "name": "Worldender", - "status": "Dead", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/382.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/382", - "created": "2018-01-10T19:47:55.859Z" - }, - { - "id": 383, - "name": "Yaarb", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/383.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/383", - "created": "2018-01-10T19:48:59.952Z" - }, - { - "id": 384, - "name": "Yellow Headed Doctor", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/384.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/384", - "created": "2018-01-10T19:50:19.351Z" - }, - { - "id": 385, - "name": "Yellow Shirt Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/385.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/385", - "created": "2018-01-10T19:51:18.996Z" - }, - { - "id": 386, - "name": "Zarbadar Gloonch", - "status": "Dead", - "species": "Alien", - "type": "Drumbloxian", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/386.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13", - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/386", - "created": "2018-01-10T19:52:40.898Z" - }, - { - "id": 387, - "name": "Zarbadar's Mytholog", - "status": "unknown", - "species": "Mytholog", - "type": "", - "gender": "Female", - "origin": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "location": { - "name": "Nuptia 4", - "url": "https://rickandmortyapi.com/api/location/13" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/387.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/387", - "created": "2018-01-10T19:54:17.951Z" - }, - { - "id": 388, - "name": "Zeep Xanflorp", - "status": "Alive", - "species": "Humanoid", - "type": "Microverse inhabitant", - "gender": "Male", - "origin": { - "name": "Rick's Battery Microverse", - "url": "https://rickandmortyapi.com/api/location/24" - }, - "location": { - "name": "Rick's Battery Microverse", - "url": "https://rickandmortyapi.com/api/location/24" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/388.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/17" - ], - "url": "https://rickandmortyapi.com/api/character/388", - "created": "2018-01-10T19:56:57.790Z" - }, - { - "id": 389, - "name": "Zeta Alpha Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/389.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/389", - "created": "2018-01-10T19:57:41.191Z" - }, - { - "id": 390, - "name": "Zick Zack", - "status": "Dead", - "species": "Alien", - "type": "Floop Floopian", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/390.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/390", - "created": "2018-01-10T20:00:05.681Z" - }, - { - "id": 391, - "name": "Uncle Steve", - "status": "Dead", - "species": "Alien", - "type": "Parasite", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/391.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/15" - ], - "url": "https://rickandmortyapi.com/api/character/391", - "created": "2018-01-14T13:34:50.096Z" - }, - { - "id": 392, - "name": "Bearded Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/392.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/392", - "created": "2018-01-14T14:48:05.977Z" - }, - { - "id": 393, - "name": "Roy", - "status": "Alive", - "species": "Human", - "type": "Game", - "gender": "Male", - "origin": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "location": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/393.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/393", - "created": "2018-01-20T19:15:27.239Z" - }, - { - "id": 394, - "name": "Davin", - "status": "Dead", - "species": "Cronenberg", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "location": { - "name": "Earth (C-137)", - "url": "https://rickandmortyapi.com/api/location/1" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/394.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/6" - ], - "url": "https://rickandmortyapi.com/api/character/394", - "created": "2018-01-20T19:48:42.201Z" - }, - { - "id": 395, - "name": "Greebybobe", - "status": "Alive", - "species": "Alien", - "type": "Greebybobe", - "gender": "unknown", - "origin": { - "name": "Girvonesk", - "url": "https://rickandmortyapi.com/api/location/68" - }, - "location": { - "name": "Worldender's lair", - "url": "https://rickandmortyapi.com/api/location/4" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/395.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/395", - "created": "2018-04-15T16:46:31.715Z" - }, - { - "id": 396, - "name": "Scary Teacher", - "status": "Alive", - "species": "Humanoid", - "type": "Monster", - "gender": "Male", - "origin": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "location": { - "name": "Mr. Goldenfold's dream", - "url": "https://rickandmortyapi.com/api/location/18" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/396.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/396", - "created": "2018-04-15T17:10:07.639Z" - }, - { - "id": 397, - "name": "Fido", - "status": "Alive", - "species": "Animal", - "type": "Dog", - "gender": "Male", - "origin": { - "name": "Snuffles' Dream", - "url": "https://rickandmortyapi.com/api/location/70" - }, - "location": { - "name": "Snuffles' Dream", - "url": "https://rickandmortyapi.com/api/location/70" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/397.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/397", - "created": "2018-04-15T17:15:28.777Z" - }, - { - "id": 398, - "name": "Accountant dog", - "status": "Alive", - "species": "Animal", - "type": "Dog", - "gender": "Male", - "origin": { - "name": "Snuffles' Dream", - "url": "https://rickandmortyapi.com/api/location/70" - }, - "location": { - "name": "Snuffles' Dream", - "url": "https://rickandmortyapi.com/api/location/70" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/398.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2" - ], - "url": "https://rickandmortyapi.com/api/character/398", - "created": "2018-04-15T17:23:04.169Z" - }, - { - "id": 399, - "name": "Tiny-persons advocacy group lawyer", - "status": "Alive", - "species": "Humanoid", - "type": "Giant", - "gender": "Male", - "origin": { - "name": "Giant's Town", - "url": "https://rickandmortyapi.com/api/location/14" - }, - "location": { - "name": "Giant's Town", - "url": "https://rickandmortyapi.com/api/location/14" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/399.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/399", - "created": "2018-04-15T17:34:02.076Z" - }, - { - "id": 400, - "name": "Giant Judge", - "status": "Alive", - "species": "Humanoid", - "type": "Giant", - "gender": "Male", - "origin": { - "name": "Giant's Town", - "url": "https://rickandmortyapi.com/api/location/14" - }, - "location": { - "name": "Giant's Town", - "url": "https://rickandmortyapi.com/api/location/14" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/400.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/5" - ], - "url": "https://rickandmortyapi.com/api/character/400", - "created": "2018-04-15T17:36:11.295Z" - }, - { - "id": 401, - "name": "Morty Jr's interviewer", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/401.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/7" - ], - "url": "https://rickandmortyapi.com/api/character/401", - "created": "2018-04-15T17:43:56.832Z" - }, - { - "id": 402, - "name": "Guy from The Bachelor", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/402.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/402", - "created": "2018-04-15T17:45:38.589Z" - }, - { - "id": 403, - "name": "Corn detective", - "status": "Dead", - "species": "Humanoid", - "type": "Corn-person", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/403.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/403", - "created": "2018-04-15T17:48:50.629Z" - }, - { - "id": 404, - "name": "Michael Jackson", - "status": "Alive", - "species": "Humanoid", - "type": "Phone-Person", - "gender": "Male", - "origin": { - "name": "Earth (Phone Dimension)", - "url": "https://rickandmortyapi.com/api/location/72" - }, - "location": { - "name": "Earth (Phone Dimension)", - "url": "https://rickandmortyapi.com/api/location/72" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/404.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/404", - "created": "2018-04-15T18:01:09.637Z" - }, - { - "id": 405, - "name": "Trunkphobic suspenders guy", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/405.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/2", - "https://rickandmortyapi.com/api/episode/8", - "https://rickandmortyapi.com/api/episode/10", - "https://rickandmortyapi.com/api/episode/11" - ], - "url": "https://rickandmortyapi.com/api/character/405", - "created": "2018-04-15T20:31:46.065Z" - }, - { - "id": 406, - "name": "Spiderweb teddy bear", - "status": "Alive", - "species": "Animal", - "type": "Teddy Bear", - "gender": "unknown", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/406.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/406", - "created": "2018-04-15T20:45:04.863Z" - }, - { - "id": 407, - "name": "Regular Tyrion Lannister", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/407.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/407", - "created": "2018-04-15T20:50:10.475Z" - }, - { - "id": 408, - "name": "Quick Mistery Presenter", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/408.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/408", - "created": "2018-04-15T20:51:47.778Z" - }, - { - "id": 409, - "name": "Mr. Sneezy", - "status": "Alive", - "species": "Human", - "type": "Little Human", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/409.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/409", - "created": "2018-04-15T21:04:09.405Z" - }, - { - "id": 410, - "name": "Two Brothers", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/410.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/410", - "created": "2018-04-15T21:06:18.686Z" - }, - { - "id": 411, - "name": "Alien Mexican Armada", - "status": "unknown", - "species": "Alien", - "type": "Mexican", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/411.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/411", - "created": "2018-04-15T21:10:27.986Z" - }, - { - "id": 412, - "name": "Giant Cat Monster", - "status": "unknown", - "species": "Animal", - "type": "Giant Cat Monster", - "gender": "unknown", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/412.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/412", - "created": "2018-04-15T21:14:09.223Z" - }, - { - "id": 413, - "name": "Old Women", - "status": "unknown", - "species": "Human", - "type": "Old Amazons", - "gender": "Female", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/413.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/413", - "created": "2018-04-15T21:21:32.623Z" - }, - { - "id": 414, - "name": "Trunkphobic guy", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/414.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/414", - "created": "2018-04-15T21:33:59.719Z" - }, - { - "id": 415, - "name": "Pro trunk people marriage guy", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/415.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/415", - "created": "2018-04-15T21:34:21.911Z" - }, - { - "id": 416, - "name": "Muscular Mannie", - "status": "Alive", - "species": "Human", - "type": "Mannie", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/416.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/416", - "created": "2018-04-15T21:39:22.608Z" - }, - { - "id": 417, - "name": "Baby Legs Chief", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/417.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/417", - "created": "2018-04-15T21:40:39.871Z" - }, - { - "id": 418, - "name": "Mrs. Sullivan's Boyfriend", - "status": "Alive", - "species": "Human", - "type": "Necrophiliac", - "gender": "Male", - "origin": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/418.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/8" - ], - "url": "https://rickandmortyapi.com/api/character/418", - "created": "2018-04-15T21:43:43.867Z" - }, - { - "id": 419, - "name": "Plutonian Hostess", - "status": "Alive", - "species": "Alien", - "type": "Plutonian", - "gender": "Female", - "origin": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "location": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/419.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9" - ], - "url": "https://rickandmortyapi.com/api/character/419", - "created": "2018-04-15T21:48:45.783Z" - }, - { - "id": 420, - "name": "Plutonian Host", - "status": "Alive", - "species": "Alien", - "type": "Plutonian", - "gender": "Male", - "origin": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "location": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/420.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9" - ], - "url": "https://rickandmortyapi.com/api/character/420", - "created": "2018-04-15T21:49:04.730Z" - }, - { - "id": 421, - "name": "Rich Plutonian", - "status": "Alive", - "species": "Alien", - "type": "Plutonian", - "gender": "Female", - "origin": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "location": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/421.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9" - ], - "url": "https://rickandmortyapi.com/api/character/421", - "created": "2018-04-15T21:51:50.534Z" - }, - { - "id": 422, - "name": "Rich Plutonian", - "status": "Alive", - "species": "Alien", - "type": "Plutonian", - "gender": "Male", - "origin": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "location": { - "name": "Pluto", - "url": "https://rickandmortyapi.com/api/location/47" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/422.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/9" - ], - "url": "https://rickandmortyapi.com/api/character/422", - "created": "2018-04-15T21:52:14.642Z" - }, - { - "id": 423, - "name": "Synthetic Laser Eels", - "status": "Alive", - "species": "Animal", - "type": "Eel", - "gender": "unknown", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/423.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11" - ], - "url": "https://rickandmortyapi.com/api/character/423", - "created": "2018-04-16T21:08:47.956Z" - }, - { - "id": 424, - "name": "Pizza-person", - "status": "Alive", - "species": "Humanoid", - "type": "Pizza", - "gender": "Male", - "origin": { - "name": "Earth (Pizza Dimension)", - "url": "https://rickandmortyapi.com/api/location/71" - }, - "location": { - "name": "Earth (Pizza Dimension)", - "url": "https://rickandmortyapi.com/api/location/71" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/424.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/424", - "created": "2018-04-16T21:45:55.310Z" - }, - { - "id": 425, - "name": "Pizza-person", - "status": "Alive", - "species": "Humanoid", - "type": "Pizza", - "gender": "Male", - "origin": { - "name": "Earth (Pizza Dimension)", - "url": "https://rickandmortyapi.com/api/location/71" - }, - "location": { - "name": "Earth (Pizza Dimension)", - "url": "https://rickandmortyapi.com/api/location/71" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/425.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/425", - "created": "2018-04-16T21:46:18.362Z" - }, - { - "id": 426, - "name": "Greasy Grandma", - "status": "Alive", - "species": "Human", - "type": "Grandma", - "gender": "Female", - "origin": { - "name": "Greasy Grandma World", - "url": "https://rickandmortyapi.com/api/location/73" - }, - "location": { - "name": "Greasy Grandma World", - "url": "https://rickandmortyapi.com/api/location/73" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/426.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/426", - "created": "2018-04-16T21:51:21.379Z" - }, - { - "id": 427, - "name": "Phone-person", - "status": "Alive", - "species": "Humanoid", - "type": "Phone", - "gender": "Male", - "origin": { - "name": "Earth (Phone Dimension)", - "url": "https://rickandmortyapi.com/api/location/72" - }, - "location": { - "name": "Earth (Phone Dimension)", - "url": "https://rickandmortyapi.com/api/location/72" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/427.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/427", - "created": "2018-04-16T21:54:05.375Z" - }, - { - "id": 428, - "name": "Phone-person", - "status": "Alive", - "species": "Humanoid", - "type": "Phone", - "gender": "Male", - "origin": { - "name": "Earth (Phone Dimension)", - "url": "https://rickandmortyapi.com/api/location/72" - }, - "location": { - "name": "Earth (Phone Dimension)", - "url": "https://rickandmortyapi.com/api/location/72" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/428.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/428", - "created": "2018-04-16T21:54:48.372Z" - }, - { - "id": 429, - "name": "Chair-person", - "status": "Alive", - "species": "Humanoid", - "type": "Chair", - "gender": "Male", - "origin": { - "name": "Earth (Chair Dimension)", - "url": "https://rickandmortyapi.com/api/location/74" - }, - "location": { - "name": "Earth (Chair Dimension)", - "url": "https://rickandmortyapi.com/api/location/74" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/429.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/429", - "created": "2018-04-16T21:59:25.798Z" - }, - { - "id": 430, - "name": "Chair-person", - "status": "Alive", - "species": "Humanoid", - "type": "Chair", - "gender": "Male", - "origin": { - "name": "Earth (Chair Dimension)", - "url": "https://rickandmortyapi.com/api/location/74" - }, - "location": { - "name": "Earth (Chair Dimension)", - "url": "https://rickandmortyapi.com/api/location/74" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/430.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/430", - "created": "2018-04-16T21:59:48.220Z" - }, - { - "id": 431, - "name": "Chair-homeless", - "status": "Alive", - "species": "Humanoid", - "type": "Chair", - "gender": "Male", - "origin": { - "name": "Earth (Chair Dimension)", - "url": "https://rickandmortyapi.com/api/location/74" - }, - "location": { - "name": "Earth (Chair Dimension)", - "url": "https://rickandmortyapi.com/api/location/74" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/431.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/431", - "created": "2018-04-16T22:01:17.927Z" - }, - { - "id": 432, - "name": "Chair-waiter", - "status": "Alive", - "species": "Humanoid", - "type": "Chair", - "gender": "Male", - "origin": { - "name": "Earth (Chair Dimension)", - "url": "https://rickandmortyapi.com/api/location/74" - }, - "location": { - "name": "Earth (Chair Dimension)", - "url": "https://rickandmortyapi.com/api/location/74" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/432.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/432", - "created": "2018-04-16T22:02:26.106Z" - }, - { - "id": 433, - "name": "Doopidoo", - "status": "Alive", - "species": "Animal", - "type": "Doopidoo", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/433.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/433", - "created": "2018-04-16T22:05:05.745Z" - }, - { - "id": 434, - "name": "Super Weird Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "unknown", - "url": "" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/434.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/10" - ], - "url": "https://rickandmortyapi.com/api/character/434", - "created": "2018-04-16T22:16:17.789Z" - }, - { - "id": 435, - "name": "Pripudlian", - "status": "Alive", - "species": "Alien", - "type": "Pripudlian", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/435.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/1", - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/25" - ], - "url": "https://rickandmortyapi.com/api/character/435", - "created": "2018-04-16T22:21:57.962Z" - }, - { - "id": 436, - "name": "Giant Testicle Monster", - "status": "Alive", - "species": "Animal", - "type": "Monster", - "gender": "unknown", - "origin": { - "name": "Testicle Monster Dimension", - "url": "https://rickandmortyapi.com/api/location/21" - }, - "location": { - "name": "Testicle Monster Dimension", - "url": "https://rickandmortyapi.com/api/location/21" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/436.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/11", - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/436", - "created": "2018-04-16T22:33:01.337Z" - }, - { - "id": 437, - "name": "Michael", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/437.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/12" - ], - "url": "https://rickandmortyapi.com/api/character/437", - "created": "2018-05-01T11:51:10.604Z" - }, - { - "id": 438, - "name": "Michael's Lawyer", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/438.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/12" - ], - "url": "https://rickandmortyapi.com/api/character/438", - "created": "2018-05-01T11:57:16.266Z" - }, - { - "id": 439, - "name": "Veterinary", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/439.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/12" - ], - "url": "https://rickandmortyapi.com/api/character/439", - "created": "2018-05-01T11:58:43.275Z" - }, - { - "id": 440, - "name": "Veterinary Nurse", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/440.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/12" - ], - "url": "https://rickandmortyapi.com/api/character/440", - "created": "2018-05-01T11:59:15.544Z" - }, - { - "id": 441, - "name": "Bearded Jerry", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Jerryboree", - "url": "https://rickandmortyapi.com/api/location/44" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/441.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/441", - "created": "2018-05-01T12:09:22.636Z" - }, - { - "id": 442, - "name": "Shaved Head Jerry", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Jerryboree", - "url": "https://rickandmortyapi.com/api/location/44" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/442.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/442", - "created": "2018-05-01T12:10:35.123Z" - }, - { - "id": 443, - "name": "Tank Top Jerry", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Jerryboree", - "url": "https://rickandmortyapi.com/api/location/44" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/443.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/443", - "created": "2018-05-01T12:23:37.165Z" - }, - { - "id": 444, - "name": "Pink Polo Shirt Jerry", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Jerryboree", - "url": "https://rickandmortyapi.com/api/location/44" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/444.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/444", - "created": "2018-05-01T12:27:08.632Z" - }, - { - "id": 445, - "name": "Jerryboree Keeper", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Jerryboree", - "url": "https://rickandmortyapi.com/api/location/44" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/445.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/445", - "created": "2018-05-01T13:09:57.921Z" - }, - { - "id": 446, - "name": "Jerryboree Receptionist", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Jerryboree", - "url": "https://rickandmortyapi.com/api/location/44" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/446.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/446", - "created": "2018-05-01T13:11:26.665Z" - }, - { - "id": 447, - "name": "Anchor Gear", - "status": "Alive", - "species": "Alien", - "type": "Gear-Person", - "gender": "Male", - "origin": { - "name": "Gear World", - "url": "https://rickandmortyapi.com/api/location/57" - }, - "location": { - "name": "Gear World", - "url": "https://rickandmortyapi.com/api/location/57" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/447.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/447", - "created": "2018-05-01T13:34:56.141Z" - }, - { - "id": 448, - "name": "Gear Cop", - "status": "Dead", - "species": "Alien", - "type": "Gear-Person", - "gender": "Male", - "origin": { - "name": "Gear World", - "url": "https://rickandmortyapi.com/api/location/57" - }, - "location": { - "name": "Gear World", - "url": "https://rickandmortyapi.com/api/location/57" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/448.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/448", - "created": "2018-05-01T13:38:21.237Z" - }, - { - "id": 449, - "name": "Roy's Mum", - "status": "Alive", - "species": "Human", - "type": "Game", - "gender": "Female", - "origin": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "location": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/449.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/449", - "created": "2018-05-01T13:55:27.886Z" - }, - { - "id": 450, - "name": "Roy's Wife", - "status": "Alive", - "species": "Human", - "type": "Game", - "gender": "Male", - "origin": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "location": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/450.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/450", - "created": "2018-05-01T13:57:55.888Z" - }, - { - "id": 451, - "name": "Roy's Son", - "status": "Alive", - "species": "Human", - "type": "Game", - "gender": "Male", - "origin": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "location": { - "name": "Roy: A Life Well Lived", - "url": "https://rickandmortyapi.com/api/location/32" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/451.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/13" - ], - "url": "https://rickandmortyapi.com/api/character/451", - "created": "2018-05-01T13:59:18.964Z" - }, - { - "id": 452, - "name": "Simon", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/452.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16" - ], - "url": "https://rickandmortyapi.com/api/character/452", - "created": "2018-05-01T14:20:10.187Z" - }, - { - "id": 453, - "name": "Vampire Master's Assistant", - "status": "Alive", - "species": "Vampire", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/453.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/18" - ], - "url": "https://rickandmortyapi.com/api/character/453", - "created": "2018-05-01T15:20:15.582Z" - }, - { - "id": 454, - "name": "Arbolian Mentirososian", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "unknown", - "origin": { - "name": "Árboles Mentirosos", - "url": "https://rickandmortyapi.com/api/location/75" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/454.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/16", - "https://rickandmortyapi.com/api/episode/19", - "https://rickandmortyapi.com/api/episode/21" - ], - "url": "https://rickandmortyapi.com/api/character/454", - "created": "2018-05-01T15:30:21.493Z" - }, - { - "id": 455, - "name": "St. Gloopy Noops Nurse", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/455.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/455", - "created": "2018-05-01T15:34:19.679Z" - }, - { - "id": 456, - "name": "Nano Doctor", - "status": "Alive", - "species": "Alien", - "type": "Nano Alien", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/456.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/456", - "created": "2018-05-01T15:42:07.919Z" - }, - { - "id": 457, - "name": "Funny Songs Presenter", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/457.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/457", - "created": "2018-05-01T16:08:23.458Z" - }, - { - "id": 458, - "name": "Tax Attorney", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/458.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/458", - "created": "2018-05-01T16:11:17.925Z" - }, - { - "id": 459, - "name": "Butthole Ice Cream Guy", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Interdimensional Cable", - "url": "https://rickandmortyapi.com/api/location/6" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/459.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/459", - "created": "2018-05-01T16:53:23.462Z" - }, - { - "id": 460, - "name": "Traflorkian Journalist", - "status": "Alive", - "species": "Alien", - "type": "Traflorkian", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "St. Gloopy Noops Hospital", - "url": "https://rickandmortyapi.com/api/location/16" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/460.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/19" - ], - "url": "https://rickandmortyapi.com/api/character/460", - "created": "2018-05-01T17:03:39.846Z" - }, - { - "id": 461, - "name": "Communication's Responsible Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/461.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/461", - "created": "2018-05-22T16:06:28.494Z" - }, - { - "id": 462, - "name": "Teleportation's Responsible Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/462.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/462", - "created": "2018-05-22T16:16:02.653Z" - }, - { - "id": 463, - "name": "SEAL Team Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/463.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/463", - "created": "2018-05-22T16:21:44.379Z" - }, - { - "id": 464, - "name": "SEAL Team Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/464.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/464", - "created": "2018-05-22T16:21:58.176Z" - }, - { - "id": 465, - "name": "SEAL Team Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/465.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/465", - "created": "2018-05-22T16:22:12.309Z" - }, - { - "id": 466, - "name": "SEAL Team Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/466.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/22" - ], - "url": "https://rickandmortyapi.com/api/character/466", - "created": "2018-05-22T16:23:24.470Z" - }, - { - "id": 467, - "name": "Morphizer-XE Customer Support", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/467.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/467", - "created": "2018-05-22T16:46:18.038Z" - }, - { - "id": 468, - "name": "Morphizer-XE Customer Support", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/468.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/468", - "created": "2018-05-22T16:46:37.603Z" - }, - { - "id": 469, - "name": "Morphizer-XE Customer Support", - "status": "unknown", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/469.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/26" - ], - "url": "https://rickandmortyapi.com/api/character/469", - "created": "2018-05-22T16:46:50.518Z" - }, - { - "id": 470, - "name": "Alien Spa Employee", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Alien Day Spa", - "url": "https://rickandmortyapi.com/api/location/76" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/470.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/470", - "created": "2018-05-22T17:01:59.602Z" - }, - { - "id": 471, - "name": "Little Voltron", - "status": "Alive", - "species": "Robot", - "type": "", - "gender": "Genderless", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/471.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/27" - ], - "url": "https://rickandmortyapi.com/api/character/471", - "created": "2018-05-22T17:07:21.833Z" - }, - { - "id": 472, - "name": "Baby Rick", - "status": "Alive", - "species": "Human", - "type": "Clone", - "gender": "Male", - "origin": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/472.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/472", - "created": "2018-05-22T17:11:53.084Z" - }, - { - "id": 473, - "name": "Bartender Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/473.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/473", - "created": "2018-05-22T17:14:41.628Z" - }, - { - "id": 474, - "name": "Dancer Cowboy Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/474.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/474", - "created": "2018-05-22T17:17:10.102Z" - }, - { - "id": 475, - "name": "Dancer Morty", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/475.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/475", - "created": "2018-05-22T17:17:49.270Z" - }, - { - "id": 476, - "name": "Flower Morty", - "status": "Alive", - "species": "Human", - "type": "Human with a flower in his head", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/476.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/476", - "created": "2018-05-22T17:18:46.129Z" - }, - { - "id": 477, - "name": "Hairdresser Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/477.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/477", - "created": "2018-05-22T17:19:36.127Z" - }, - { - "id": 478, - "name": "Journalist Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/478.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/478", - "created": "2018-05-22T17:22:18.417Z" - }, - { - "id": 479, - "name": "Private Sector Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/479.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/479", - "created": "2018-05-22T17:23:18.546Z" - }, - { - "id": 480, - "name": "Purple Morty", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/480.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/480", - "created": "2018-05-22T17:24:38.571Z" - }, - { - "id": 481, - "name": "Retired General Rick", - "status": "unknown", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/481.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/481", - "created": "2018-05-22T17:29:50.642Z" - }, - { - "id": 482, - "name": "Secret Service Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/482.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/482", - "created": "2018-05-22T17:32:32.561Z" - }, - { - "id": 483, - "name": "Steve Jobs Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/483.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/483", - "created": "2018-05-22T17:33:33.815Z" - }, - { - "id": 484, - "name": "Sheik Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/484.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/484", - "created": "2018-05-22T17:35:26.250Z" - }, - { - "id": 485, - "name": "Modern Rick", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/485.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/485", - "created": "2018-05-22T17:36:56.925Z" - }, - { - "id": 486, - "name": "Tan Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/486.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/486", - "created": "2018-05-22T17:37:37.764Z" - }, - { - "id": 487, - "name": "Visor Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/487.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/487", - "created": "2018-05-22T17:38:28.593Z" - }, - { - "id": 488, - "name": "Colonial Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/488.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/488", - "created": "2018-05-22T17:39:06.439Z" - }, - { - "id": 489, - "name": "P-Coat Rick", - "status": "Dead", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Citadel of Ricks", - "url": "https://rickandmortyapi.com/api/location/3" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/489.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/28" - ], - "url": "https://rickandmortyapi.com/api/character/489", - "created": "2018-05-22T17:39:37.604Z" - }, - { - "id": 490, - "name": "Chang", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "The Menagerie", - "url": "https://rickandmortyapi.com/api/location/25" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/490.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/490", - "created": "2018-05-22T17:43:52.543Z" - }, - { - "id": 491, - "name": "Dr. Eleanor Arroway", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Female", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "The Menagerie", - "url": "https://rickandmortyapi.com/api/location/25" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/491.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/29" - ], - "url": "https://rickandmortyapi.com/api/character/491", - "created": "2018-05-22T17:44:32.071Z" - }, - { - "id": 492, - "name": "Varrix", - "status": "Alive", - "species": "Alien", - "type": "", - "gender": "unknown", - "origin": { - "name": "unknown", - "url": "" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/492.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/30" - ], - "url": "https://rickandmortyapi.com/api/character/492", - "created": "2018-05-22T17:49:13.883Z" - }, - { - "id": 493, - "name": "Secretary of the Interior", - "status": "Alive", - "species": "Human", - "type": "", - "gender": "Male", - "origin": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "location": { - "name": "Earth (Replacement Dimension)", - "url": "https://rickandmortyapi.com/api/location/20" - }, - "image": "https://raw.githubusercontent.com/Laboratoria/rick-and-morty-images/master/images/493.jpeg", - "episode": [ - "https://rickandmortyapi.com/api/episode/31" - ], - "url": "https://rickandmortyapi.com/api/character/493", - "created": "2018-05-22T17:51:07.373Z" - } - ] -} diff --git a/src/img/Image1.png b/src/img/Image1.png new file mode 100644 index 0000000000000000000000000000000000000000..1a6a865569bffc95f5354087ac9c8be2521a644e GIT binary patch literal 635406 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�cnb`Wk;&)BNZfA7^TunF2BabRh&iURCo3N7bTJTRX6EYt`d3m|9?7J#{`D490 z%4KqK!hiR|@#pB__y#wI8IsAX2vzcirbdKKn(e7S724K5+7|2m3oXXj8qyY>P{G#Z zwut;{q%bjCLKtXOVNEe)wGX5{)xJtpf^b~$-&>n%2?8JfhoykurLm^?*Z0NXQCLp$=cpVwoY_@7sTinTz^2F$2q*Q4x08F?vcE_U)$clY$8JAG_<#$w`td z)G$hSyv%lYyCgO_D#l-+0rOcha;s-f&gaWRQ%B2axHgsehH?v5G#Uwvt&0zAuz@ZX z`HIgs=SLOe{}#)a+Zuv=FU^|+i?qmKQn%@F@yO^MIQBtI`=4zt#f_@X`HDBMbR$vQ z;P7$UfO^g7v3z|4%dWa3;_ueqw9Qe__zjVE5o6;CmLqnbOPDTTQ2gThf3$@(AgPmY z>A(8;c=eWvaSG`EFA=>WpP^HR?JlN~8nr47Em8v=lxa!WdY7y^d9FXDahH{jtTL|L zGdakmsMQ?&?WI1tliOS!DvoY4rfrg@f{?b6@BJ^QC=zphhbZSLz6d8?TDu_jQVNE# z-!Co85&&K|2s?%(r(JDvh#28rKxBPhSCygWaAV4PJ2kKD8nq;I^;|vf1_KlYNYVsv zY~(I(a7Sic$p+h^%?;|ecT`8p{>l7S{!&|E$bJsFl8dNxnq78!5xl!q@fDpfW~)~l z-b*Sh<+gxXyH}k=1O;S$M##~OmT9bXcAq6Vb-U zrU80dg%jIVyYKtz4+Cgr$14f=8|jBQV7yE9ZQXe%LP75Hx3(d0w)7iZ51S>u%EYmU zpPAhtl`J#0sZ2J#eRHOky9L!g&59xozXkEZrj(qnSk~xvk2xS~wsmu47fkw2v@bdr zaG-RPEEO2wnc$-P*0N?EI1oRILc?c`ZueP ztLON$i+BrJR@6O+ZtAUrW_-KXI6HsA%B|sc+)Jipe)4e};U{(y8^KH1+#gM4m|1MA z(AL0pv(_@y3|D@2nsqyb&MXtwQs5henegsN`VV6+yr-fk`dTiAUpmE$(`t;hdRJwk zNWo=H+=AQDp2{O_lnS?G&~;729^~!B{ENgSQgvJdNMoPOTy{`P>eh*LOFET%qbdH- z^4e=%i!BLafRg2#FTIzQaBOwmAAD@(?>D6Aki^OhTFq6!(k#x- zcsAV69lCm59s3;1TfFPc@#($P2+xX;1%lZJ-i3i3UP=Q8Yj zZWNShG}YhB8~N_+--;=H*n6aZ%rh9cvkW`7f}?eB=_;w!oWve5e_Fq%I>lPjq45|u zA!d(DL{0vuwk#^u?jN=GlbAhnR`nn0ooVu+`Fx1Z6n}nERq&7nKCc>x$MP{KRWOt? zz($^&R1aR+u^r#?&oP-_V^DW1z+(L9LPUWj6X{+flmd=9Rj(khtCXJ~bE*g=@VFiI zpri+XtrqI_9T`uwdRp_U5X1cNNP}HoFkMY$T1!qQ34VtEnJ(5=NA!s%ED+d9l)5vcoCTXwfdC{(=wm6tnb5^MAoJDcu90h;{1J7+HeG~sy$We$n$L*0)fBbfdJpvvn95%Z88)gA{Q?v8GoYnn z0e9=P0Tw;daNs(jw6^${*p~+U9Ql)Aitb0TQUPRzbYQd2T1p|^3SE7W8Td-8T@;hS z&qd7MGyRsel=0Yq_gL9p3hDWb_USFCWi8(6Vq8P=gxO1nY(ahFPXo7{amTqXs6hi- zb_e(d#X2=H18In3s6i*Bv6Y#&0i3}!ySy#hRD6sO57#c%$M-W1Iz3=puy?AjA4%9ol65t|J1#C z@B`}OT)H%fkFqch3Q;P$c-1e(u)wx|8hvVvTEBtk>iQ4aYsB2R8TB@6vvu(#(8P!j z#+TYQ?Qd-Vcq|c>+>;}bj}O#$J|a1U8t<9gcag)J%R0m~5g*~7#lpv*-3fKZ{dxoU zxZ^(?^6)R&G8KimK!SH63^W#cIvY?!0F%f1`Mt zaz_4@ti&EzUHEE=`ULgUY7sXfE0Vu7IAh=3PDNiQfqPRdWVaN6U^27Spt}v<_vuYiK+I?5`W9ugc zyqyDH;(GETf~4)=Av{!l3p--4WupA(=8o_{=j)R%D?dW;zT^;5P57E$MSIq#$$ke?edA@ATjeIQx{;s3OXYYB6 z$gV*NNFe(8$|LyCjSkG9M4&`jYBIfIcZ0D?Zi#-1HsLu;ydb*~d-n{Lz+JV6Tt&&P zgIN9qRi{2=`-^Jl&NVRwjnDMCFW5>QZ2+NZeat7r0Brn%AUk zTW-G8In_`Yn_5}VWRCgTG`b_BtgT&t!0)09gVz(^5Ch4IM?sZwqH4X}j3Ks%*z3Zx zNh?SWHBQ(6<`hN#j^5k*9vpTx+*tKzX2toPp_{}zW~lX-6k5p@U9R45Atz(cb#wr2 zSS1O{E~g+)4?0KgormHx?nlRyQM1uwV`MRPLali;L3giOtqGvUs8rW*qFpZC4e#nF z*RRb(j@ploD-4kh=Nw03tHv)d2rGb9t6y<8Q?iX82Z|eT3rKnlvcBy`c1+2nVESE? z=D*(A1(Qu*f8OJDy0RQ#HhU)93{_;N$Ic(&PBzrC`g3oSxcS=hsns9u_Cn(9LQ#dxX!f=1w$&aC zn^tK152jgm)cR<7`d=<1VIL%7kK-xDLfcHE+7+E*atSb($FY-T#Irs&l%`>fkq90+42>v(d9~&GQ*i16?Jkr%%Alks>Y zV;9lV`t!3&fl)X$ik&)?(D1lX^#t75d#^oyE`3SB1^+64+f3e$vh!Ssdt?)W8@p%B z-3I?TWP^^9s3({-pm5eya>}}#6#B1ez+A#lWAQ(MAoi~vmEo`31$d*=Q*Z8MeWBI= zGYpYFKzBJpbo(7iC0)q*UlT{vz5m4W!$+&O%1bG9_fk*~n7odUbTC!+Srs|vblfhMRM$<^l-X~UF@kR zI{4Ugu!1! zfBpA%0;rd@Rx}eL?6FD8z;J>5Y(dzywo8OR_~xz@Sx3D*YqOjaxeK6c`&g^HS2P^( zD0aZP$1r#VgD`zq=?{@EJ23a`d^tvGM71q_p|2!|)dm-B_Muc6bn@b9>gDs559xNY zLfOI#dm-v~ov9nc^8_!lkeMp^?@GRYuiBG1f~6Cml9 zUROX!bB4jTt<9mvUul@`1g)Q2YDm(J3jB+fw8`O3-TzwZhABEtOF{N5%fEo|NzZGo zt6sBXG!~n@uHvk#ynXWrs3R;3Nrm()k`Z(jx|qQP$Pg3EuK5^b5p{(r=~5L(`q9gryFfr*P7381WsBk zheDFI?(GfW`RWRwLz78=Ez!4UrQDz>65{~+$Wzm7DEcIWf5@P~R4_VdmX=~O@mSDN z12`c%OZlr?-WMmFIB+|Rv}m}j7E;bkrvk8T35lW8jCo$rYRv+Srmx_KSl9g$RO~;f z9*0qT)Cjuwm)09%R@$sgBMH}U>{ib1e`{_+&9rj$Zb33Xf+X0H9%8}(VF@S_rco4m z6pXwg%cV!qecCH*mBR(Tvg3MsWw9=K(}q3ioUXx4=}iH z;u`RfCK4<{hq@z^-j1#T4uEs_&FxS+Ok$J?48CB;Kxz5VBSL-7afrx>(0U6Gv8xgV zTA3L#4TrcdW}@&mU~7>57W9e2#&7lDT{XjSTAeHyYwp-XFNrw=UbBs1MN^G&NoJYJ zPNRG81N6tpMR#X3i(>mD{z;=@#}?p?0)2I(qP4@ znPXz4PjSlHQn-;Igr1AN^Y{D_c%3CpGaOQ&)GZy|pZQGdyl#6o!~TQG;K2yIJaw9| zsbOp5wnqyvm*DCvER#$6VCz?ifxOt$gQe>Yw8-VftiUG~6-M667ujwJpa-g5gMIK!q{1LE zi9-hxo6$zy_&~nxxcpC}EbP{w&AxLVECgfLusgQ=rZM_zoCr)hunP6 zebv5cQ%`?J`K}vkd3?!~`BS+a!)`_OpT&Eq>Bj6irXu%5Pdd(ujF z2)f7cr1HvK41BxSF41x*+?P-KhN-!w-IR@-2IH)AwXF^4#3&@H-fl4-=f}50$TJ`v4?Ssfy}E>|xVy@BR7%sR8x;!9vzSEEA}KiZ zCdJgld_FvLysO->8S_`2FWGn1sJf>gH(wtSi%#wd;}4uOD#a73BlfQ%o)WxQ5fm}kz{8TYQq>jY-vTeWu z(7>$`p}>kiXB*mCX1Nx0*z!!?K~=6*;pL%La6p#b@Fwxz=c~t#;dD1aEDKu)2M|${ z^fkag6B+ z@?(T;?uGeQ(>-Qgyp=H_j8lDSKeaDQ4-Gou~iJ0YI-ITDTtk)KFyaclDSD z4dVVeuVJkR+y|e5V$Ra@mnK`P@Cz8nm5rK#cSA9wJUJVRC~RBXGhk5k6@#*8-}&(O zv-Ke@PrZh@9qZ!NgM`I{{tf>Xh>CDUwtAD@vlr|bpyv7?)(^lo^p-znd;G&g8aFpG zgr4Nf!MHLKa3J2SE3fPovTXN!y<=2q6*foz389vNulct)@s$U^<`L<3{qX8&r7`Xqx-Jsf5Q*` zW=+X%xcPmbTPEd1Cd_0-o78w}3}5chAS673%~jG*PW`5+%7FzGBo0~=mvlM|X`vYd z!k!1$XK$@64Km!0-Z58)>E;Yf7~x%K0&#jGns z*ZkI9XYKXtW}LD%c}xyE8y>dF7T@eRCI5Db0CM|1BCqjH7~2s|-HsG*c~OD7Kx?bE z8wL6l5e1K88kS|2_i$Si85qT_A7I3#Sp#UCaDt#O0Zwl0c=maBkr0p>vHaJj8duXQ4|F1h>nn5zJa(lc%wE}aw&CE< zd)Mn2nk<`+9Rs)3sV88A^77D|EYE!0Y$at`qiFWiL)^XLWbEObwUHlvE1HhT-v=Ah z62IDDn5SjL;9|}uUU}rycA$D=A@Z{Cm?uZmV&nnGndOeeMRjztFJZpv0ZV6UE5f}Z z-^WcS(~_PiQ$gPVD({+L@b&LrNqhQJP}LR)h01?;2NYP&-nd4u{fF~{d^~x4Pi>V) zxIyhIqr8Lqmx#|8gA2+tW@8T&@0VrF^*hY?!(Ft)z!w(fkF?jsyXL!3VYw=9KW}7XU4UWjLGCo0+G+a3yPVNeiK3OY|+gb?W*ZKWGhD#z6i^ z&}7AKmTiwA4P!$}rIpB7aorE_a>Ffx2b`YKX)u+%I{r{53Q7ST3LUuQ_l!ufPUam# z_Y7|zJw<7KHCzTr0f;-#fQZ`Y%S~(gmjE9tq!iPzqqzw@LlTwA%DBQc(m>! ztuonunG8L(^9K*@|xmv0q;%-LB_`z7t=G2ii1EtPL3cf}^&eSXYnNZO|3^%`=rU>BDm#_VzPF zFf{^38>od2ThGVRu2ZakmOeAtw1T=}w>pUdrpx}@&du_DyuC}=CQv0ivi81Bz41@d z=AR~bY(p!()$Vw!`IE}{H8YC5y$!Oy4B?D|R`eEpm{k=onj{lyD^rK=)#MzyTImIy zE%C@!BL3^OU{E#0KC5%Eof&f}jEurl;HPHt?tk~9pHhvzo4Jm^`?!@e_Xy%n0B&2vA12n zsHbEAmZcKcPqvr*uu4MlNRyBChny&2#*jlZ>5rU%2P#PTo8N{}PA6 z>|?bxnPy@1vDI(}O8B@>H9K^x5)^aN=DaO}xgzA5xmMh@FfN?1>9ORenpsT59F`*F zA#}bDekM+YTX{EXS3C_vSZ_hI^UIjpl=79iKS;$_pf~NV06_+415VIVaDm5Ah|n+< zF|m3kEh5qHvVt#2b&nf0lB_IT*Ig|8m$hY6?W#|F#4cN6Na2Ncz-p7}Ldytrt)bOF zC%y`QB?UIygei9I5GwH3o+_NCSz6%$#9vw5@u7OT-f#=}L~^(V?Kg^|ZbC6+H)ze&hyLzxHH@U=GEZdu~pvoGtMJbksrhn>~4`Ni7Q$|rE& zK9cgKGMomUS^N-0{4mh&Rvh+a^wZt=$I(6aM@{7W#Z`Vv9(6?Mm=f9B1aSyAYj5&@ zu)ae+$iz#hunl}{sAbzq@uvUw>#Uk3f%aI_4(X%%56n87{>di4(0MuHEPe-rvOH;t z-!lf;Fs|NzrjLi*z?<1iNgtjz%PHUT05~K64+pMm;M=oS|LFfnIu}PK`~Uw}y3ihc_wq3j4@7L@3d_12cl1!MIjOc5#x*8oPEUj zd5vhx?M_QKbt``955 zPD5CgU@K?{@JZS6w*YELe|T&@Egz2apk>QC8G zh}Nz6+%B5yve7g4u-f+qzth}f!66K22TJc8?Ev;}#w2m>&0E@kO(e=Y_+uIX;#o4% z_3biTOehyAzLgg}Qx7JO#GY<}E&f$&odgmz>tnG4fIV@%?m<4yXzprGBc&A?ouo$` zTrap=mtcy{sW{Ymz><@Z%?2XQ@U&=%`A_K8Z^-x-EkIo|YyUOTQQY zE$KyUTx2z>T11Rjo@!Cjsa;?z zY>f?`E-(&`KLx3TP?icKuI3TB>K@JOSMxNH%Z}N>ceNyxo?nGNpoNq`Io*b^Dux^GnMvX&sy%3H$r{wXnzwm2s-o`I}DjL*C;%J^$2gc zw1LXDS_W^+ZItJ8pTGD)GsY%luI286ZhwpoeqxLmcYP5(uTlQ3QITIq)fhRV)qz6T zsgO0*_-4AU+CC3sFlTXlj*zsfxK*4>AL7t&w%}oZJ*r^w{#vDd<5_BYwhF_#z%?a8XCp7YvT0&*?W(h(=6hJv z9cmspG6y8BlyI8Mu}HXj*-Ks>Ubw(KE~?+aCG!|IMza$q0u~E0Myc(f_(kE_-pRZ$=A|B?Hdo28htBEK(G(2CuB>q2HzM zg0VK7~ex?3P_%{Il;U1o81A(IZe4u;kG@N4>-Y zZ*wtpkP%8mp~+Ql65<5jqJl`eRZNui+&v?HIfa<2>OwG#g5Lm%V~FgRml8p?@^O>q zdjDd^GoA_o&M(}nefb;-z9dh4ab9LzU+X<^fRPq47l~>kU1;`Dm|=!S?*A@|ABOm! z_M3`OkfOZP^lB}ZTmPpRh=ZUD*Ut4styN}7KdVI58U&y>6M*;`9zG@;ivCS<+*4qw zhYu#?%W=Tl%^Ge8G$oo|i0wT;8=M5GDJ(WfQ1g%vJz00&R)`VvoXn%#BlK0qTAXl3 z2uf0X<_t2w28NDudxrK1a@wv#+)5saZRZn20c>5V5H+yPuzFSZ2FoNBw=e?N+S4ED z^zvTn+`^A-DeDULW^BMRToOSe!xPwHu;wFJgJeP2>Jn14oP) z;j*;0EP)jw+*|PvAruvBQT@t}*vqn|_~o9}dC5pk3G};LeLyO2dgX?-RzQfEPj!nA0TcGJT5iWfm>zxL; zd=tDMHePT9*9Kq=TN)lG$+CFY2>MesydlnZez)W4dtQ^S8YR3ILhzfjTu3g3%sX*U zUxmNO*p^Y$hTy**{CL0EKOn)Z>Cm$FALlgdu;KIX{7rNGOooqx9n$Ol4C;^I^T7X! zN7Dxyh^4nFuLYGl{6QHb6GbZ*^@#1O8tfvTo$bIMH)q@OQ);&w|lKnFZkobg2A4TskJ~D_QtxWu8oPTL1RY(7EhkE&c&NbLF%#y6}Vm z=f%_f2-ixw)rs?BIA8*PTbsDi-r%OC5(=E$xV*B3z7<=@+O>#&Pk&QsS^)Y}WM(?b zzk-D47hh3Z)U{~N7pOC%$26h4B)|TaNXNUvd_HS)ACPdrjzstr4F_C6;|62yV~Z#A zMCug;z-;I9^Aq__IqgV6EHG-r5!pNG!W%D(vX=jvLMGu4(=odg$;;1|6j1IB$L7-o zdT6-#FO7|z!%Ra}Em~lxVcACXS!>&1z@Z%wA3BUoD5cCVoZ4LwAtI zRzzxH>o{9UmgjuNY6T$|E*PA$QdzPzd%&_Bejfb#6!C1DNRR2YJHqQlU5Kz72Z0UJA|UgBzJ-mF=J_jxsUNp}_gX^ixK7rvxa!=2N?OYrd4!ql|s z2&!)O9(L-ctLg!nWoqSS4)DKHiNH?B+_ZfRjwW7@Yh_8N4L1E!D_g1xkk8)~W-C8> zJ!U}9ol^g#D7r$;o=$X}f6FTjBjV;CnY5V2%~&tsf5wufUMi}lm(^3XgOl;qf+pDI zX8(_@pX(n_Xgamm0OZT``!<}+NV{TwG^Pl&)Om?>)k5YL$F$7q9&)v10AI{!!kobD z*G!#G-0!>ncky9vV)L>~&D{;V`OlK?-$r4vmk2;}*XhsDcTQY2#;2E5TOO)^t5-YdFJKLk}Eb1&D}AKk#k&m)C3N4aah+0on#UaLi<&0Ch14^ z@;NS1JhrAb!v6fCs63)y^L2LxQx6rHV@PFU0rFU|WjHN<Docqk!aZR?z`eyR3f%PV zOm)@mq|xKW$3}HRfG*T4e zQCQQQTC<1F9YNFomAiQ=J}zC24(zIZp-+bp(;z>l-KQ0OL)I2AYBa4q+>PAEx5|Om zZsY6rYOjno|GhFtKwqjOz&c{bt#0uf1p5PCTD%u_u7}_?YIFPxeR>{=+#X0j@fcMu zH`3%b&g!F6p2NjwWG*wJB>-9&x~O`MmF4^2Mn>@6F(JKsfw;(zV!^QupG9}u`lP~9 zLXZzy!+7D1~PjXgW&d94!SeBcKjQkB-^{wFk{!{xoZA>;PXR2=0a(JtL_w zs(>aJ01}MyKTr`dMB{o#}BZgBJ3Z$;U{v}@3ge+&{?HDQJL82D7 zkqd!AO;^X2^L=)TN(OR3@~^dnC4sCR@Dl*>Zj=U!Dk5DE$L_~|&$rgO;W*YkyYS2G zXkwMsF9{rs=9G!x;gqqVNCWaeVb~$#;XQg;+DmYBEw#e4C#i7@F^_FmmygS9FOq{7}NFmgUQze7u+ElOieM8&$4FdOLfT*&BqfUEcjjtJG0%q*GWZaI`~w- z$}LZf0TwZs)pg;#hTd}Uxa8BZzEw2HH&md%FGXLD9piJH zD{0sF1i#J0GxRhF7_zO!tU5SnWYx5rP~|pCIs;res%)uZsSAYm*i*0k9ZIRe#xrg{ zUVzN`&SW?)#$rpTR$}nR5#!Rk$wBL%_MmR~FTy4yTUo&F+4QfU4vO2q@%>3~S7RqSFp@C;9_Fyhy8H>w zz-d!gBET^wnuW75_UyL;0141MTnoTMw|xr>F91cYAT@-BgaE1Z4E8|C{s=0hY;Dhu zwZuoRj@8NL>1!UmVeG_|t zlj--UE~nyMM_pHc`vF}6PcV$QH%3M~9OSy-kBFh@n;qMRrrg^qv zO{2~es&W!XtFq!vxG`|pnCLT7|2bjtuZEz93$e-oh`-3c!P*b0^3BSM{^(xu+9WvK zA?QHOjRaBU_K2)O#K04(iOA9TMC!yC6_8DmolBKu-!aEldk-x*UZ}vWFB>SMg7#^x zNqf^2kB%Hs(1<{^_cbrz#s2!0GqV-Y%9frJ3(p;)ecOH|40iY{a?%oCOJ5|~H2+bc zO5Mx@KUSSJ`q^Y$WbE6e?x&>Z(Hk8gvis!t=%zQ-kQ1pS84Nlj*NF?>7t&sIR><37 zBl7}-teY>RC(VKn-oNVCkbNRCN$APA2cF(QZT$8F2u$M;q0+CociUY7Br z2n}2AY*}vMzmxg7)le_w0e<4R09=C&c@Uge+CvTd!{k(dnQy;+AieBuQ4MK!jkIxL zIuII}&6uc2koe9Y{4v(7DEE0~T4kzrXXLx}avv-N|HcwW#qX*Y@e?s};c! zT4W2A5;3+!dQ*+Vz<5PfvYT)>2TF1W`%Zs~RsBG;5AR`#;9Z_|VT>>O1 zyAI@(Id;r5d_%3H>V)+S>|9fwGRsC?pzk>f4YioRj@{uS*~xA=xObq8n@L($;}(LB zVhN#ZkDOt)rNKvvERHxSE*yq$;0bC2x`6QQ<%2sHum6`<@ptqZCCAiuaOmSE@AcQ>dpD?9eVXULSAIc%0Q!TfQl7%Ho^Y z->V3f>fOA*BVsNqCyQK^>Fhs&l`#0rzjl%l{}x-KPa9EMjLjCS^^_I`wZ>p8XYs$cEE{julCS_}W`psPM!ZUG5mi%U$u z%_UkX0aM|CCi%v_zJ=Z;Qw-ZQEKVmw?L<4eOqr9asbDVZPf=6V8_v@Qg^cc61}ZA* zTqV3{F3_ns%hGb?%R3+WkWVA{=pDTACJ1m7rc_ReZ~gh9=@vDH^ibdrohCIeUPvo* znPDw|wtk2R9n(G^0JYHwHUS0@sXhL}bqDnl3wWiSCpg z4I0+3$DnJ)8{W_D6K{rQu*3mMAV*tu@3c9c=U>G;yR$G$wFUAi$MvZ$<+T>&v2}?l zH1{VDcW@!I4;@yjv2_aR5AEWu7 zUr4l;R)5ju{#tuA55|dr0n&2QXBs*J8tGH4{5&{m#LVIA#F1mN%H?CSqBXsK2>S}P zjJ!2_J+*WSFFRkHm=<*f_sEspRkKtATgdIvIoJrI{T zv^TsnAWPH_d1+jU#$_$NHG%+TZc_nQrnQP&K5Muq1w;Nf4S_vNJwVvT((C7eGof1u z0QgwX&iFR}rk1J?kZY?Zz(N++Pc1}6nh2NN6=3;*_4_rDKdcTbA1$kZs(6fFpTG-| z(o@f*gSTjgmj<~Jjvnb`RL)O>(S3TQpsRC<*&?!?*VXUtBDfQ?PiRi-2f)k7i#|{> zU;~>m7dV=?$M!m|2Pt5yLSGNgvK#bcu?t(_oV`+YJ$Er0lUw+Qpz>`c(9rScCk{na zb>Zjuj$*SrJ-*|)&BudM15-&rhbGe^_^LBZUgwA(G)*PWs_GHEikGsM7Y~oA(HS?0 z{k6guh6}}JdWi(YOnnYM{CXU%=>cBDYgcikyKpHCbZ02}7UBw7gR9j-)Ph z1{6M^s+~>W6Upe*)_t>Z!})BQah2eooXL;Wb^iy?P65gQ2FYzac@wGl&{wR%4|!aD zcZAV5rKzo=iT_y~lwQS_*(1X-y%FE%fCcA#1}m8z_cKzIsHA*uqpf-6P_@AZ;@-~T zdBci7;4j&OS!oBec|jd3{1>vx_yo;?yS5giK?;o5T~OxQ|4}p&j0T@J1v|R4V4~a# zWk#|VK5xi`{ZBUth%%iFHII7*6p-cW#)zpA8#pmC^c8{-k} zx>CRwhcI&#Gq31=7nSHXg^Gb2iIlLrj z;A6gPPhLRwaBnn-RH}S0G$3&$wU0XRpr>;1YER<0G8c?lYRh~A()vd&72>BV)&#+Y3Rq1nx zRPk+M@$_M1|KcIUVvcE71&)`e-e#7{J{&b>#ra4m|G=%s-9vNHz4YDskDGj~rGM!q z2D767ep}C<9-8rMMtKVGf4`kHaKtogqVrgGq=}EJHCT5!qM*=}A_XU!i zmV%%z2_LbOxz>{->P4_&aWQ|YFO&6;mvBh>V7Y!|2{{(SkEPP~pRGD|u18D5wgdiD zD{LBWzaFhCLO2%9#M=dGGd>4oW12cfdgTWO#$FSQAB-18ou@aI3u=~KmM@NJXZe@+ zcwWT{y8bg5fJny+4KuR%`09<*=3(4!XLmv<@2L1ZRAgrtb%LDEp#p-an49c3D%p_b z0cveNS1n3PQet-~J6Azdts{%)F!sc$hU%sYq~BVI7@R7bkW%}r&QhyxLxT~O#6;Qd zby0Y%*2AaSuay;u+Vla%jhXYH(oiWdHP6yi7mQzxGsrM#V>tWEd)ZH7Qsmmik(@_T zPr{b$gsdB34*O6IplP$s(68Q1f9>O_J!MlW$#6m*{ z+u`GhJzpDYZz#?ygzhw#yvmB*SgJsK%w?13_Da+>cvIC|R#{)ybx7i4jXEB@Nbl=H z#XaZ4J+FoD8u4eU`Z&vxWnq_NPdia<5`_dW2(>-A5Jk7;tf;lxL^cx%N0 z$Vn=%)bki`WE!jnxgtYb{5x#>-~{Rn@f**8vIu4$rqWVwR=kX^c$s{ zo7P`96y!T}G=6ZLxG9)y5O1L$BO0-!!_{HU*LP9v^MyO-${-#s2E4AOFW#748Co&7 zgeX_4G4$A(shk>Xe!%ciuX@TWOK(xtt*}4217ySWQaT5f8Y>$&0fl4Shg&e8YP0kS|iqa4P9eTGzvyBOswV^(W9ba_r|f7cW+g=iOhkOh_39 z<%F;f4wk1#*0`SIS(SvT!}q-5>y7r&Jhz_DK*B8@rOqtZUBz&C1CrCZ_8=<;iMBt! z;W=H4mw|HPsv7>w@W=0Wn-zD(MiOoqfZrt|FVXL{Nw(9?Iv)J3SrH%<@0(im>^SnL z@G|tulzV~kc$bl%J-3dH9VdYtXfqz{h% z=)k}>7a89rTpI+W>@X5y46 z>5j4U4yHY~(5P>P(W6(SnP%UOhJBTsz@M4Z<}i^7qMq}J|Q!;OXSUoR(^A>JP=&q@T3W-B|Xb-gr_D&dG=I4c1>O=7osLnG`B4E9$kdy z=IE*G6aU~-Pvscwh^60m%w}*IwAL1K!*-xmN4yo57M!V#l@2xFJ9x1kG3YJpsORiQ zLJDNLj0yaJ>APe0c8gQ#$LL#2)im`=m9BXE;B|>;k-uJ|M~n2+TdAvJ?GcWO+{HCd zmJD*z)nFNy>9SVHreV-cd0^y4)OEtbm@<3^dbqt#6mOgYuRP^vd4JR~>sj3m>iMyd z_oCZ&f?haem0NKPr{Ee7Yp=PI5*>L*W0*8)m-vjavPEgu_*n5!4Qb>)G00x{XD#Wo zGhODs1lm-OpQ{iXpOyxTh+6TI2CoA6FRv3cwjTE%(kYcD=cA!9UJIJ-mNNgu*{W&0 znL~E|1jLYeFk6b+STZIo4;IcSj{G%uRICqHCU>j$*XD*Yab=`gMKFdI_pK2jkb^p3 z!)e5mv;(}DJ9~U|g>I>(G-O}g-50_LXMi2D<}HeJ=&de=tR2-Ol&yrYjXjru2P9Ri zc2QQ_paoa5k=YJg1EXNSPfljd9=ha@RN#{6)Nscbz^~>%6#LsRyF?LD0t;a*_+QLM z0#-g*fhQnZRizh&C4oib+QojkG`x!qt0E$r=RUN0q=x0@XglfJy#F3V04(-PV3yPJ z+{FuS3CNt|0};%hWmMJhm&H;4F*D0a#8lp&4M|em%6ADFy7*x1hYbKpmRvYSuQ2zm zH!c!7pSwdTBbYWb3bo|K5|QWS4J`A1j~?R=(96=CR70kk%f>seDkIpN=8b)lML%A% zZiuR125$BUJBL2X*NojAlwmysTv?lA=s8Ww$7WI!M#frFHsApKxa2lgQP)R4=i<}! z>#4z*X3DbF>-`bv&n^M1hGE~(%EM|NRN+*{j0 zU-}YO+_Ju@2kLf@G7iZDy_Ag~#&$F<^qsP&Z^nAWyBCkP;N;i=%xHK) z?civ5#Qf=5-s+|7<$-PKa1Ek|2Mx)&+^i#BS*bID_~Q?(biOHy0_99vIC|3ms2pLM z2NdOiGa&eQOtDiR0o3Z+`Xlz6@zU=|L6iIu9u)cOm~xD7g8l{#ueHhWcL))JzBeW( zGeZAB2KN~9fL4Hs_=Pml_H--sK~EJ^kujV4SpGZzIzbe8a#scZOaBM!iC9wbdrgCF zs)dqy?2lj=)gz?J(ZU@z!k~DU)71UD6Q5#Xj@fvv=ae)=TUpr++&|r`N0u(sM$cO5 z`-U()59PCNK9Bgf(mr;=J!n)HbMJBO`WAhOa-{w!18Pf*n`Xv}^2fTgo2>8i)dy(c z9{GOCXQAjRC~E0#E1j41LF8C`SAI4**rKATXt}&RoBFyHP88&Z(gxw=ZC`9hUyA_z zDZh~Zzmy1(@ug-o(wj9{*k~4Ri9ROK&2Bws+|3s!*2X4W|VKBlDJr#0rqF;5!A|Bydz}FW7LY;M+g~GdqvxX zqE1z$M8z7={q2~SG@3f8dz?jAWK1C`2+gSe6z*K5J93_J*z|G%W^QYCS=Qiy<1E`m z9F)YWJ?v<1`0rc+B$RUpAN}P>Kvqh=5@IovK^ibW2E&VkoFhD*VCHT6rEfJk}Y9A;C2k(>Y7!RYJ5NO?+W{K_bV3HGl@MDP}0~}*t4!PT5cpshG^U|m+r-#Q1 zLT?8lk7D;&MkEgD9?TWRPn;PB6i;MKQmWpurYJ~C@M89GGc$F_lczC|a_HxU)5@o6 zKKpmupQJoL`16$;C$O(@uP$W_&rvnhB$5ADOhLH+*yS5`51s2*V(lB8-IDaoTyt=5 zDu%qI)7@mczU&eUfZA4OUOh)I?rQ$Su2Ef~-7J};1gEMYI~AwSoBa#9vX_5uxHXK3 zAPF++T;qA6vPzp+RKYu=y#X()`gIw6zGd^%sFox!1xFyRr1y7TeXs7d%h6NZ@=|9 z=ZGChc<0(u`#QE`eP52x)Uh+%Z9XXA`n%Th|8cp*(erkfXMh;wue11smbIX{-zqxf z>f|AS?4dHm|47HM9<;yEG=!G;fwwOl*3PM3TIh)(Neh)9H_13>adnr#F?NSlJbZG; z1@$C`N`hqPdRhha$`8*;<w8as2#V+6!pj-kHO^ZjH zV6DiRORQ5mFn+CrxuVokL5LI8n`@qPD!Ly!n)5VDmEsCoj(Tk_1`_*M=EGB?yVZ6@ z?n&&U@Si7I`HV*VW5CG%Y^8>B4Zt|S^{)_dwfj-bVFl4|ntwKFH(p9eRR&Rb539zK3o+wjwH&!<9hLHFv|A%SkOqRn8fBI?EC zFUr3<95IUp8p{?@LV2Z zv<*#vpA>v)%Y8Q2N9zaGdW=eTF}QSNj5Geo-Q_r+IxIsNazY}y3O3hXHy(IU#$K!K9>gqD@P zUF6J@o?dP6W(YBzENgMK7;*H6gaS# z67^{HJh;it8U`L11N*DXGzfJKTEDugJ&Q_s^NikVhwiuK{nhRH9J#;~0e&c)3#S}frEgtKRZQn#XYhw%4;n4HMl*}Qqth>yH?xbg zJ(IFRB^rdb;4nZj?rz7c5ziehMSrjd`~@o`b1XNTls&&eQjfj&Y%ZIsR`!YOY8_dI*d-}<%9cMt9aY}o%HZ_Ni`6JY_2Csde z%RNVp$7~CQmjLiRLyIt+8t@X67-#Tr_Zx@8PQ!CvAftAF&XP(S&5o9rW?oetmV_+L2LsM$3k zxeF0lb_U~wGg$xp)xab%KAc=&On|W;VN`}MDh*GKfWJ6~CZgNFhSL@Tt|L~yhQ~}> z`HoC`%^s6K#SG`2@wlgyjP@NfNB0c~R|C!sX>+O#)NRRvUA19Ar90p$HxW{Vce%20 z>YW(r`T48Z{S{{96V3c2g|UUy`lQm(G}n4?mKAXc$qmts#K!b4lW#zK>P@{8^krP0 z(Mg|*b)CQIJJA|4r%{YqKo0A}|Jiz(_~mZ5_-GrdX=s)!GIy zdkkyO6lb819)c|n+;|{6(R~{d>Xe3-I9f#h!dOG@Z#MxBro)f?Ei>-pQVa!Igt{@^ zdBs35uJS@b=7NaZk#(G*ht2OSGNZjTaI(DrSt8v%T42vs7hYd_@zXeLk=eF|v(N8}CX|zCPuw3G z$wwkNLt#&iH$|C+Wqcvc>lUqzm=~7TouWR0*w00mQ5o6OcX#uhCT=dSb(`07ko0re z+B24i3RaEoYaHg@O>&9Q>V})J4%b_1>YdxzKhPLjN#N+pbmW1J1-W0%d zzkNi3RGdnZpOgcKM&JJ15F0NtbQhw){Pmz#TWj=Nmb$fJWRnbAKV3CYHt_H3Av1a= zn%l2f5WyqnhLdAX8sJ(2%y)$qTm-9 z>3JRt4PwuZh)GX|e=*6?oSXF{8@Z{0nfs!;EGPp$$K<&8ievmfQqn+NftF3bRK4(F zl>=PGBCFxEXCE9CEjVw{b{*PdK{b&fJX=jgc(&~}j8%_8lIW}UV`WqCO5haX^I;dd zx$?ZK_Sjz8uhxSLT@%0Sly%@uC$%t^n^xjBSR0b%vzylbRNWVBq`dG@(P$=p0~W`} zjcfk5*s@K7_hYl3DRsiGUwXOXLr!$cj!9;nB6eJnUh**R;=%XM48V@Wk{e)D%y?cy z$+03`P&g}gpL8zhutzgs`MIK@A1l|bq^-Uc?AI0P95&+4)Q1OYlT|o{>QaZgJ0Ih= z!j5aIbf70)&*6yl_i@s4(_|CB#8dBbP46)8pJrC(Im^z2XB9yOr7Zt6_|9~f4$Bce z&%7Fwz9X-cS|fAY31sEc;pV8i0EikS@svnr`3U-vvewqnXjB}EixFSsic6$VcR z?HbHBcfap@x=nsXO*+$Z(86Q+33##k(Q5O|QqZdH0nEZJbv`=o0!1@+%`$AMFOCmz z2BT5IAO4UJS}i{+Tkb`(`~IX!j!0SvV~%6-Fpv1DV*hO3Grj5;UH>}{@vGS3>e?<5tCcy_VCmF|bg~7=YK6;eK z;<*kvukk&B>zya;GYowG_P7&Pdwv1IoMH%H8|7!ypV(wtzLVN8xvEf~yq>@5tv8t( z0qlRQjqOA(@LJkRS$G5WMp{a~eMNoqm)lrgXp`wCQTNAiPUhkZ(e_}VAaxizJC;&+ z$~gx<6XLSas#;#*bt|z$@_J-ecB@6Sd2AP@)>)dm?%n>>zq^RCrS2eXs`kOtn@Uqb zwQ1I+@bnj)g{ZDssWx+;RUGhV*zK!g48z3nD^rLBp94Z0g(fowVo2-0J1t%Aa^+ zsU-m6*>+CAyaN>##qEcEyn;*h6uHeWjF$Zu`q7a(Qrv3_^L#;pc$QI21j2EOWnB3) z;z!YRP3ZI}#RS2PQ&@REQ~=Jhyq2t}&!uV>C!U=7MSImOKYJ4WJnH9gA@@XOppGq225{^X=6=3Abg)-eh%27XkLhNVA%@npza$_22`e-_p( zvr5aDb)dtvz6gUZ!>SbtQIZNnP0qKj68sj+e+fsQXPH*9Q(S}q<=K8{`!&DSm@nU!?g|9jQJICy`)2V zf2(adu^aSA-_I^e+WWw#t!cTNEj*%oE(d-4DX`CQ!3;)T;uM6*>;Xz#Z`4KUV_3+z z0y7|)H$PIjouX()ucDJ-0cZi#a0o~2Fx%;W<`$N*SBmg{x&C6AI_fxjL9W9sC>=!SY17g6Oj*J)y!?iS}m^?mzg=vHDI>`99fxLx~Cc-!| z0w|p%cmM%KEzGH_(fzmKT||z9#QXQB;pnMbBF{z}O&8vDPPaW*{f%2;X>!mWDsw|~6xMtC|S?&hl~Vn_!|^nu7cfflHwvZrGH6u{+6@M5o&rcv*o z`&jwGx;Z5&CO!V&YYcUkP`nBt@|eycTp**;+=iSlR=s=5fZsaxqD0~Y^K^g|8OD}9PwF6)CnRdZil|DB`w|F>%LV0XBD zZLV~Et_#?iRWWk*g0z=7H#Q_x zFY!Aqqv|GtXoE1yYI?LlVP=23r(d(cy&r4%1=_F&5xTf(guZ2ow-4R)Y({%MdB=+R zFNDatT`)=fVhKy6H~p%p2iUy<|Gcrd7KC3iLfrvvSBGTd3eoK_t%` zPL9N&#rQke;L{O-`#7L?+ht+isP@;Tip+d&KN&-$#jN%c%D8`mK7Tj12-l)6os3$I zci6G8*&`CU{t-wBtkTJHw&p`g-1;9|mCL*mWKX?Pjon2VbuK3JZD*)?pc~=E?=%8J zPQd2Z@Gv=}mu6VP-Sa7K|D;{njg4YY;kj_Xqzv}mCXBplV}E!W`|i5NK-C4}aFyQy zU2$k?DGVM!;Y{Zoy?7 zLN60K&P-_6Y66u4nQ3bmENG275X&IdD#ETQq_B5TPr)5m7noiN#ItR2+pGbwWTQJ_ zdGvU#Fdza~$nGme2C7}BM3HHsLCoU=>XQrBv0g!GcCk{-y9M~pi|9(6lJ}yb`=C3bGRcs58vP5qx#&Fv#Hs z-DG*xh^w=i=^0;FfOd|y&|G*r!83}|dQT_|w4m)*%kp$wt`{I=Hq3Frf*JnuW>UaX zy;!i8&0F5NvV_>|RQ&eL$qxAJZpJ){*ost|_^jA6@W^7)*fe>>dI64cX)ZIrg9U(- zEcJ|{P+gz%LcClZ+PR;dh^1J3BQ_;S4OhsH6dgi5DtmwvvA!HC2afX+*B>o3!g-)lH;K*WvVPXBhJ3T%Csd({>j zW{sQ0+an+gFC53*HP47zB>&goseZq5aV){K67t;ePPKJ%v&Y=~sHDb2#e^ssHwQg4 zuds&`6PTm{!|?RAj+ETfYR?vrINsn&$9*`TQWf4GTqO6vw#;~m{%0Uc#e7q@ z;i)^4ULf{KU)qVy34%dI3i+(ES)pZoqV*YEbIfkMq6hYKR4xy}CHjG933WCt?j5w% zt<;mBD;%?;s%sRlq|_djyn07JN>}z)Y&h7rS=4YwB%Z`a?Ql(G9lhnT?eL?3R6=bCqx`R(TC(Oroi zi9?%XC%CE}S+%0fo{@tyFk6eHlk)ZpT~@)wpHw8|C+?q;fjvI5m!cNSEupDXWB(9T zh4$YjR@{Ld=7yrjTr}aUNt8=Vp?vUl7v_~eG^joRZW7JZ7@GFX(Fy_}c-eTUd8tmc z*ivCqPiP+gf!rN&QmeGAKwcQ5H~x0a+OFy(t+UF*huA^?I$w3}wc%0v5PZNaLUTd- zX^EFrCVX}N6{I7A3}RRG#{-RFSucFJZz}WaL1rb*J?Ao|dqI0uvqY>JhgzyP-MEiB z$}W+%#Fzq{{z6zOk?&cyd0z}-zT+C5!o=eQ+ECIR=KX2 z+E~1_!U@Eg)tfQ%!<$j@Q$zK z^ijwDLqYvekMzl^GxBp7M#-W@n7lE$f(J}tvZ1iRv^s#(w#|zio`n~U6xibg1JT9W z4DNqW|Hfqt2ZkL!!&FCJSxrMR?CnawUSfqAu_|hHmxBi@7}evLb7`W1b;1i~M07eV zpgGfuW$b`NM8{d+fNC9WEj)EV`Qa(jp+&o#s(rNoA`Vc{*PNrOv&}Qs(ygJR@sJs( z{($4$C7{w8<$22`KHr`b;zO=)d^l*oZbQjnym_W(hw*sFx-?CLZ8619p#Gj{?>|14 z+;6T-J=WT8hS?$PIjsziSy}xIFmRW-nth_%!b8B?C(QsoYg^4)Um&+6oI>O!8y{`W zTi25JX*E`%`e+-tshx2r3l=R}M<-OYu-YBh5;|L~E2dCywt^SV{;LKocpWy|ui zj3OF_GMl3K33Vj&R<@fHzz1SaTN#Npt6R%VTnsVN!ZYGtSw~Iq-Aa2c*b2kRwO)qH zUQR(vUL5?{AW<|-v{sM17C$^T5`bz=sI4tr>O-DZRY}uw{#nH#@Qe>#WR0kd@Y@lv ziLD{3vpn=}0C?u7c!F*6M^_+_>Lc_k<7lnvI!1b1HJ zaO%6pg{ZXB!*tj#>H99&Jp;E_{(D@fd+Doh#}7v)*>KudQXSl@7lZ2$Frt!5pbP_` zVVK|4wyJDYEbLwfUnDoCz{)RIzoN4Ph)JpeJ~CRn?qOaCD`Kt<;m;s=!WdG`bFbHf z2(cHeCs4E;{t503H)gS#=E)fN5d1m_zvMb7^A66T>JATlG9{l-nK6Ro3p$0naVy`L z%RYS(@Q`LEa)#Z{y@;ExDmBU$y*4I}2nee#h(6&O?g}AsNWCq3LbWJ3FR-GVok`&; z2#w%-f}Ew67>?CLbqyofr|N%+9_#nML?8A+wzJ=voSltD8F11xZRdKjjhT16mPe~m zjvsCUGx9hF$!B1Fz%`@Y@ zip7D%jRDHh3%b#ua?Osqy3&SSp0S%kWZjqfCd--yne7pz;UZpt)5nbaHq-}k=3lpZ zF{{Tr4KmhMZJ5BRf z-)BO4=@V)$&D}TEQ(q(4}edZJN(on@@v$+gTr~g6Xc+=~7U|nKi_7 zyVICpWe?3Y%xafU6Zn5^tgLWO!)8Oy9uxpr{pgx%%CFoROx=*!_RIrI%x39O>4fI~ z748|t^CS(7rR5LPj10-wRR8&qeY1vBm`R11F)hifBj7vgPFsLCHfU&4%h@7mJS5J81?5T)!#-&A+Za%9IRc#f&Q%|hA+>00kObM{ys53J157Yv_Lvk!w zL6QKH*m&V8!q>NY%?WsVv!%4V03yiYJO>*m zub6WquId@7S-06tSY`J}(~5C{8X=rP$7(ss>e+)PiThv(tu8ZmaN)JQZ|O*1NOdo5 zO~cCB96g|Xj`O#}oURTt+mVAm>tK5^ake6*vXNa`Mp&q@2QR6{qAoE4^dE;Es-UN* z*cnDPlAM%ggQ3s|AI~oj5M`j$*HlcaohMV7^gi9{w_o6ln{Yx zRqYIh|Bq*cC=shZc-h?fIY&I;GYX0W-j&OyQ5yB!81!P!VAKe-Q*2@;-c)mF{mejB zU0=ZPui~gb3vXYh3h!Q~>==ey1GTbmV;QOeuB#u{6O}4yR9bCz5Ao@|1?P{Rw23vH z1Ilp-)vmOD#)_ZB_FkCZ>-9Fyg2z{QaFmetk#OE6%rgt-mU9fBaU(VJ|7Y> z|DI1p)4RU=#KDph24^x9HUB4S-t##%(+wKTseU-Bi+aHgFP@Hn(rwF(`j!tvkC@g% zF@J5rzNVy(StgU8H9=~1TL6}l^n?@8a^9DR#**EFNoU3N4&wRo4MHQ7Ia)e9FP(T0 zq;c{1ACJ_=n7)Z>`*qEJJpA+9w&NZDVvj4niEno>8Fu*d_V=p_suYu&Hl-hjRJ5;s znA+_Osa~x5_t{-4uWnwp4yB2XVEV7!Olta%Q#?926qsgR9s@@e5(J_rz%=gP4ljlqGHHCf)^L+6S{Yc8`q;uxBSqd{_A0N--fT7gf0H3Q5s3_(^xiiaocUS z`X7$-ZCmZe^9M;%c-%Y<&7)xWlnIkZ@~DT#Z#CnF-Ly{69onC$wT`!)i5o7d9dO{*S5Qs+I4AWaY1-0EJZAhIVg;iAv1Ww5P@$H}qtyY znc^&^DdL0!;D`u_0y2E`{pH6w=h-~_-TPf@y=y5)470-f!KPrM(T{|(rI+NS$)k8` z$K5ps2a+l zftg!Vz7N#d^U~AGlHqf|GOavZF#TSIB}r8Pb&mA4!*xfdC^%7~N;%e%FE5rID&#=>=!ntE(QqPwtj)hxRg)6?z0QqaM+w?ho>|~ZOHamjX5$JMN%U;p_ zbUqESCYMqb(&1==y5yEdY0<#>5B~4Ck*CW5bR0+!UoTGeVAKP`Ro%F*Hevs)Zed9r_4NQ6vxge^tH;KC)aaPzRx{B> zg~zwVYa`TnJ2bkQaY>`WE-5!@@>{+{(Gl>}MnrO5XkJL^zo+Lo- ztnFBfLw}^BwO6gjTQf?FGeFqj2d7vr^dMsC*HIy zjKlnSFNNis^96i#MjZ0;qOx>7RWLR?RN0Sk+;!*`QU^5pEcjG6;0`AB)Si zCxs?<%xnoo`qFRQ9<*{CY1w23%Q6oYBZ%)Jn(}YA!^)@>PYZ8>SHxP5HTRoCEAxQp z;+V!T^+v?2hD2viQ`S$T+Fr8GYM<^D%SUpZ!6#^#t!7$0;i|HZBqaCr2xg3+BVtKEDBblyQ5bUe?7afU>p>DVkZ)b9HZ5>$3IXR#^WkfXXLdn_Ce3<8q3Q-jKio8P zt3h;^R(n3+J46f80Ng9NYVd^>&FokFXw8Q}-$>J?v}h|YlLvocH*jA<+o^u`(!)7n zHkl4t)f$DC>}K1uQ_*)Q-MbKMKaX>qAd5+u&Lgn(#7k@xOb9lepE~e9KW92nY8P4s zAbaX9#U&Js`GL*_mU~aVkL;MLG(pEum$5N~{XGkeBV+k>xR5^e`qyzrW3h@uyvxK~ zhC8X<**e0pY`M%Nc)I>H!K{zwEloG;w(~uV)7rrf@#=B zvw;i5zTKRaBQaqH?cB!_^Bn6Rjy@gj;_m3} zER!7DR~PW_Mg3G?yTOpc3Z0)reqkebRyarB`?@40;(qwW5AL`4ESeiNxzP%6a3O2) zgV1K3TT!6V+2PxyxfQ&8%p z^9TJq6B0f7{Z*9Ji64V)*-oBsspcv0p_L6y1*M2wF=0wEuaJ<(NFPR`A6ewurSFw} zK6}??7^Q8&aQ^aiyYF9-sAfoqgI+)0r1joAq!XsX2laHjj&1OJJZsS2v2|mc&+vJZ zdBDLbq&nF{Z1NHwmas3fmjH-8S7Ia=9G2OC9 zn{{c&w~EAlYUX_>;A;zcQM_Jt(_gT~gd@Z`3mHGL`87ra4&|Rk83c(_48$ol^J!II z)Ky&}OBFsOo>2;LUoh?k+tLHmMF`I7s``}R$A_AIP&z3i4>l7>&<|Z%?lFHx2n{x~0!=`gWuFLP%{d zUDBXeCIZ+Nhc+3RT1RK-!MN)U62ys$%fPg}Z@FWYK#vw9F?uInZ@Powuy)E9)+ji> z6UHB(8x$XX{L)I0!=Gyy3A?G@wqj|w!TpyQ*Cdn`_(l3o zNKWjmr>DT#`e|1%n*HOyLE%BVo_@Q(I z7fUx)C%KH+pbo|;6=8FT^Wp@D#qi&u$<6MoxlF<9)NS--k4tzeNLE0F-nxx=?pDNdxXQ8>X)=gy#Cmz0gCzxLGy+zD%nS zlfZT6yiXQhZlTXmL!@Wf2+ZWSB2uvVB0SkLAuV` zexA74!eXf7jMwqCF|KT^Mt!aJX5FhSjrqLOQ3+ODNj`kcEzYQAeQ;nQ9`#U}GmK9( zow2`y%D~s3c4}~%`hSA@u<4n+ybAvt`)y52fBLSo_e?o{U*{9p!;)9F*Lg7HKH&1M zMJ9l*So93s53pHtB#g*kPdc^#WlN%k%lgul@{NENHy5EZtrt7r8|yohIody z;4Q@{%Ho#3m7@%YEVR7WGJ$hLrujL7z^N2{R1{-8#Eo$^N!d1|Hgr7?yAw0cIPZuX z>HrV4t$5ARc4VF0xy48&7@Z_z zAIVoD0hjI$eE(HMIMF=%aI)@h`3_oKFv=q5vc+4E+DEI&j!?UIg+ckRbGDJfCHGR- zD1>d-a5WxT0-3Qw>B~ESkh2k_jJ+q48?1~SjHksy{;2B7yv(npe}<`cp=MA}XSv)6 zrq^cSOxzrBaC!r$)pphQ+(8CKch<$?m5T$T`QKHiJ93oD z9_jhHB>7Adso(dRPBA41johC_irZRAN`cRv!>ps;nrZ0P_+{@bk)(_iMa>%%RGXJPzzF(4NFw{t)QL&eZKF{5z$^(;`Kmak+KG z=#EN@C2NPWeMLPlGO%J_oqAj14%*KH1j{oZvX=Sb0@SQp?rdSgN7RQa+xrlM91~x| z=3Lpc$q#Pm;XIS6KCY;|TK;?H-3?pPx@-;Zv-`Omdd@o0OgM|!PiI#4!4yu4-`U*= zgX{cnsq6viU;t17pad3Au@=C-mF*B~UItZ!ROdIgPQ0|H+*!><@tygJow4*WbDiOp?Lqkt zZv=-|9C+DssJ7B0VvT^FB&T*>3YF9fGRAUy9C#&MYR5iMhG6$M-13%QYPG;z;chmb zf-rwL??i6rb8TZ5^jm71s!Q#}Le_am9oUh6$=HMXa55Nwh8;fnpF0D(er=}sYrNn_ z3-SAr7-Uxt`-JQ7EXSaiRP^~Y&e80aIKS}ykBTV z4F$X;2aiRf@(%BW_5Fb+dWXi8X3Aim({3ZMdmP=GB*@nlCinc^YGwRD5I8&u4%%wg z6TuFggZAUU6$=EPuwjQT)K7N#(;rx}0w<%4K=>%aeHBsvrL{kaC+`rPx7=>$aSwM% zo|nILZu8TJPbh0w$!2TuNOfp>Pc$yF$jlU3C}BIv{UA3PgVt^kcQVUnjZ2|i@zcrh zkWV4cga~FSJHIsALaL9%w?#ZrMzgye%uCJPO>$SAtleC*Zw`iEQ@vpvobeUw*+s}C zn-{n6kADJ5zk^U~vr~Tc6#&`=^M~m=sIh(GV+XAIS6#K-h85Re6;>xiF+>TBFe7?r z>vuI7YQV5K{*BJ{^J5lIWvk`g5ubO!foVGGNFL!-%tg|V+V&kk8_ppe#~-+qu?AIM z#blAP=Qja@G%c++Ba>ZgCm<~ zlwQHaHq|o$Yo!w+_>7Tz41DQzMC)c9ov)=2Q1!3s*%{#Jq-~D#c~$ga?>vZfwosSe zQoMaO??+bdV}Q**nTFFtYEHFuyUVJ!jWy+htsseQ^#TllMwFx?>^|Bd-}p)kQFA${ zZv&%z6PAm@6^?UpFH#pC82hymogK6Rm)K{M%ZZrUxwa(|ZX0Y0`dcu%LO$KIBPv-#mr zShuO{nu|IMWXtzI2mD?FhRy{hoD*a@Mb9{cG(x2V$Fcj~o|kHaXqr@f*%8+1sgahE zw$;t;=F0a7^w*4I`Btn4L|)qIfwY<(*jH}Yfx8mB?rFW=w^&%dF=0Ozg5jAf-nU{V z-wSSxA6={zkI=!N$W`A$0 zQS&a;*RzY_=ysQ+8N?QdFu~hq_7C(tF}i5A&D^o^QmAD@d+}jPe7|Lg?0^~A{Xm9f z81)ve>!#;9WP*l(K_3x~Luu;m1+oKh1Lz*s3u`hvY(%))m?gIty5~Jk&47`Nz_kL| zwJy>>tdN)@P%tRdJPmv*7Q{#q|t$sQ&9=H1Zr|8>e-}_x2X8sd)xjLvq(_u7@ zk5L`OT297Jup05cD=uww`lP42%lITeqA1k!LFBWpt;?8m^sPcn+0MC8b?L(7=-a8g z&)lo~Q%2agKF!x`Qvu!h#Mww5VaE2YeWcn_H8<3l{m^(S*lU^81kR0%tXFf1H zn4G2a&qv$+b%rVd*Bk%-nV{wd&I`D?-}8?FBW|*)8`Ndv**C|oa{>C zFL#gs?+iuRC{wRujBpx?8;a!=o`u$B^vMu+ojFfZMgwE0du`S- z^4>oHN4fHP1~g;B^Kgils~jKNVnEW!#?oocIlb#q~sc0 z>`_xPCf;uDR^ol~f`o2deL$8^fOPJ@S*wHPEdOrghx)A1m|FZ}JN1@mSL`nMJ1WK9 z&usA(+WfWgsn+`12q}Tz-m00(IjLx9EEiXSC1w|d+hiEy0!0E0sY9JXZNA-tHpiD1 z>T#JWi6vaYJ0g0}U5LFL4W3RH=%5#hVXXgtfD_4t&hES&&fJxdFsV zbyoO0I|}das@X`(>xx;y78@)pSD{g$;O7!idlYPyuGndt_hW$uKc?)FLg%^k>2$_~ ztKFNmmvY$M)=`<0xtJcb(7d%B-?F^Vx!kKO@$R72xoQ&@U^EuOCpMXx_99P@WpJg3 zp*(S($ZVjwm_$0-=JPKxmQMN<;~=mxokk|QTZ&_fcN3cP26>^{&SJ;0L@aB%aZt{v zT7N8?>by{?#F6yr&~|*nn!bY29KU+l`69Ow@RgESjLx_s4Ki#|Ppb)5KF)e>&FgsW zQ{EZ4%3$20{)^#@MG3?(&I3!F$Lk1f!p=w!W72H+1ShI7;aa$2O(7?fW#@TZ`68Dj z`&E$1W;Z4Lz4S9-U?EB8n0#jFJQGHGZ0u$6DC~u=eDO@^v(fiqd^5v@D4=#6=0tj8 zn20aHQ!wvdV{th)nb|%;%I&prNyvzPw(TY(K21#o9VZ+H1Iy~QM##lqUM&44ajnK0DKWUtQ|=wdk4l8Mf{@!5dVr}SPkh?u7s}Kuo8>U z6auFNQ5IrI+iJ5}hz(mWl}fT!xW)Z)YuFP*=Wh0I-(z6SdPYM=f@sxGz^%xeI<5xI zd97Q?a}l-`*}@=0C<=I%Shrrc0>q09N8TVHr1RyTARxs;tUBiHeAe-x+WliG!V${C{{eCLe9`JQ&-uf4tv6|8O4M(j zg(z&aWgT)bA1alZr%y99$Gb-#Ykedg>@Q4K@D=+Je@EAfNXMCw4g3WYDzzUtNKU3{nMzxBH*&8b)kT0la!gu7<(41>m zCb!ETw-^t_mY_>Rld0N>$ar-5QGmhO3c4{zNshUguWd!`vGGZ>9Jpw!Wa3N4{GDi) zqBn6>wA~N!$zaxUp z-8}4)G_KO(Ne1gMBioGrKDnC`8`_jH#->(FDnmlUZiZ6K3@JCs3A4Z?9bAVIQ?Mg8 zRLzSwXmgYB#`$M&7?5p35EC-)m$Q5i>N~kRisFHA18%lHTf?2Xc zZ#v(h3J_6zxW-n_?Jugeg za$O^cE_1YzuY$yg+x3B?Ha{!>nm>Q<%|J_7gI+G&;t;4Mcktw?wNqlkWDomt$mG;% zHTEAu-9!iA5uIPU{e?`EVEnfMqZNyd)a96kgRMUCWhOH4mP-9S2ZE-tLj^TLpJ~Jp z$~_FRoiO;*S67LU^jRW2LONU(hMw%2K&6;`4=%RP(vFX239gkqF3eom87gREGsNK4 z4w?h+?Y29Y>}*~@0Up}6^@KSH&~x=7SNR>SxWLacsCcW3+%>SybASzPTscOV(+CZZ z__Ha)(aKve@}&No;9b4eXc%uaXQ*qbcX(@naTR*1-|48kvarW5Nv!Ujw0K5Z&jR3N z3j!(C2%UxMj0Y^2 zp1`d)_Z$}Giu>_&+R$Ivce=&k(KjbBAT-au!gv>vr z<$_I5sI*Skcuk`B3f>K-ULn2hXTLX3Q@i*MAmUa zerdXc{X9*k*V~WqWS~w{mSts9v zgx>Q5H=SP-V^Pm|N|lMzxjN?|=^K3IHlZFivHbv?k+k$l9&s&RZ$7^qyaFk2a(Aq- z5f`^H9Au<>5xu#@fLKF>ekf$HVhHYj#U2PK@Uv{OZU4R^_F%%;JD;8=oqoMNKrf`b zYQ-(`SHoC=iVZAFY296;kbmBVFKc&qIakeX>6t!C)`qnbJ0}h{Orkf3KbJ&&uo1fz zt{fQd%h~|U?Fg$Rs^E~i=QxmWK!eah>riv5Xs!2fj1@%#Vg>ANtQdY1s;Q&6yeriy z7j+Xv$BTHA+>p8;=s@5f8+=k>TTW893On+b3dl8E2l{}?lDV!@xD$FjA%5R+o$OfEBjMq)XK5Z z&SC1fXgxwSpq!LTmWZducH=m%c=??ggQo-=oQq%5(xdIvXN=j1R;!lA4#iOiDcspQ z3{nkME8{CqW~NQ+onad05XDk1Qi!lYKaR*r>_T9iR94cg%)HF~wBCp+jY+J-gmgmeay5Pwqq&f8g2Wj* z6OEKwA(C@_ScGHVx8>|cWYKy3{cElvzSH~A#$URsrc6NMEDW8Ao&Gp#>Yu8%BF=e( z=NhG}eA25(>Rm4!zlle>+{*8FG zPlwlCDT%kbR&vOq)@Htqijus#rsct3X;B#kZIKFqEX37YNwGxls4&3A8(*AZE}Yu9-*J7 zF~S<8hxNt#xI+LKjrqIbkPoQK$JI%8tzl*5%5)^`vI9aQp^H0I`&ETQWyL6A`~@v) z@SqTbI0^aLK|!h0Q_eWY;{Y4GQ>_Ttk8BHs4-T$QD`*!xPqSLDP0(Z zzr^+fE^@bv!!E2AKS#ae$CW(>;08TkjWVgqd-rU&q|0}0BXMSX9}qj^dV3c5axM4{ zJDlcFvC70#y$Pfva$17Rb{4VMKS>m^5#@yKpWfV1E-V~_gD+Qi&Y5^R)7={@bj*V- zqGU;>-R>3zet%`OZOhl1@ZI18+sdCg+oS+`^&9N#JAOWuIRy#tBd{vk2C1k`=yxVX&1LJc*`F9Ta4~&SK+ZoBao&R`BM9I$Qwo2^6e|q zRVz{S3D-9V4DCMDotdL-i}l6KSUc4B6s=y-90IyY(U^AVSbHiS;ys2JN1HpA^cP?ok}TDLKi^ughzf<4fJ#yq!Wl?D(OnU{GNy zf<|Choqj?L%syt7>=dp_oojpohlIPlpfG&G&;N%7yDQ>gsKNSIq3+JFd@&#$t}p@?nu;!xf}Ulkg>&51E9HOA zQ0q{}&UL6GC{0tKh8d$+Ldge`tW}qB)4pr*1n)v3e`8u^Pprj!>Gx8_c=lJbtJD{J z%Yxe~qk>;J1)TKBfn^TV$KLCn%E`^LyK-wSyr&%|f#2nu8-mauJ+}W;!Z$${hz|2I z{&SANS?eY8Wve-TS%WOmt7fFR6H6P;0zI)Vp9PRt^O|LnCAh+?q&VQ;uv1W-WgD=P z^}r*nJ8oFDE>=oRWFM)Pc+Dv@|Bl&4tID_d?q$=~J$bwaU+2SKLdfU9u=GANt3pBi zV#E@mTlI16o;D4I(p6~fN8Xnmhic*7wS@=8xEnfG4u9Tgk^f>F=qc8CwsAScez>58giL6K#$6+J zc%*}ohZ+KkJV4;{15P}6r#nOVGj5~KR+5;dNSPJiFG#pyG2^joIjvJPnw3e@^wO^~ zDh9*H;0U*aBwM(Li2MNg+5!FVT&B}**{QPbE7f8%^MtqM?TTNxH%hqUT79fnEN~o3Ht}pcLC)YW9@;qZ>oEAV36{9YF+m9!X4_*V|P33TUF?n zXGX0~2@Kuf2b&vM(`J%c0J*C#MRw*=>5e3)O$_L78a4@ML-ETa&3w zm%5`mu+~bSPO=1|nCpfyjz()!Eq_+|S$IjA#iYK8OfYB~u2CBp&G^6e$xYXK;T=Pq z%McGBWCMuCT+geE7i~Y>VvGOp4=7Z_E~z1C-xEs%I;#K9fXOa-M7(N02P`}D%I@}T zD~|6Sx}h>tPyNhaLd7G{t#*yKzhkK|47Pb9`t3_q&Ns!p+q- z&Qm&zQspfiyE%uCJQT7bbknwrgS8$cep0v|E(;g{J#@d<@dx7I5^SzKaltoO_DrJX zWZO3uGBN4JRy9yUSW#0Nzkv6i1GB3Ph4zZ4Hg#P>Pk;19HAP6085FB6V!S_at2l?Z__!BGgvox< z<}`R2m6#Y9g?)nEoC|034i{#x9T+u^$~1q1*KX$STv!is`dXRR`$yi)jY@ zac_(f2ymNcFmVH$26Y#I++LMZK4<~C_Oa18wJKsZDb*opM0aRr0rqA#-&}po%LJ|T zXG$MxeDY%CV|Y6k2S;gs<|ANq4hiV$*?TxjY zh2H+gB46{FI6U%#Z^_T~$SzBOqj;cOUiL@u9|43sk9v=XgYT=0o-W&ie3$2krGFen z2R?~+l0P9+io;s|6lt(FRE`LTl9P_un;F(OU0P}LdY3bAaUXXy-ZT+{XWY3@V2eI?XMBRLeu~xk>g8gE!RV~DK zgMjs*b)n((5JP=0uLOBt!mYjbn!N1$Ln*nCvkkEMG|36*)ZEBB05}k^qTrLI#t6m? zD_=UeFI?Cz>{B}>{qn`BA?g}JWd zl}FgSrqOY2`@kk4Rdp6iT zdfuuVxvjy#WyR^6LqNyPB0>Whzn%m@_a82(s3Uzh3J?xKq((W+B)I-W{z`Jvz;@0< zPo?5uv;043{Y^Md8%Bd!J*5ec>6}VpA>jZ5CfE^f@OhZq(hj!jI(-?B`uwv7J8IM- zczY}y_&EbZ^{m979c_$8tcx(8tH0}PORbvtyY1cTyO?IR~2_YMQS2Q&50n#T>Q#5h09HT1C9&! zz@m-Kt7|=sH~3bG$@{r4iF9PJE{EUHiA)sh4N^_R2NspA1%Z#ZoE>+PXW*6pT`|z3 z9Zag}i8nJH27p4dBvJy+?FF0W~acbsQ`+0LJsh(NoP3-=g7ph=&JIK6^tX~#ML&9zG{HkUsq=BM(-r;hxAN!>kAs^!dAdXKCyZq#kD&Vzaw5 z*?G#xHV1EB1V4%VdI~Qh`3`#NjI8rsv2>!RfDp1r>{ zjQ{x9{u$!2>17{kh2#%?ToC|>uWD}zmcKB9a)Ovqcs&_^YfwkGt*lGw(o`d#gi7NO z0t!AenH}c=JTt88hFA7h*yU0uFnRX#p*15ci$KgU*UsezWY>Ml{Qh1N^Txl{-Wo0< ze%A#XpYAfo;ic_()Nrj_>HGvG@#3H-`Ya6QB$5xp?NMysfxLXTQL$iKp7A_&fyxU9&|Q6iTd ze&te%6!>hi$3MZ8y8ve27 z_t!7l3K?^2|EY*Oyw-qXq;Wx`r42QEYw|vtGc8!B#vJ`kNSCGgr1+F8I9%6C|55bM zkZmh(8%XOHi0f$gSCwYc(oa{n-0TZ_}Fp{n$aTZ z6KzqHNM5#Mm*MV%fR%dWFbsyUX?}FmcX3B7%B9LDlLO;;PS0q@j|9yk$T59)!h9bem)#9%=dT^Oz2V_N_aOZjrm%P!k7>e~m$Y99bp8m}^ zg5BEVm!YhAT%rRKEbg}iHD!!O$QsoM%YhpdDaUgtv-ely37>)bj81 z6ZWo-CP3;L4^}Dh-4OyfEj7)~3}Dc5txSn(EY@V+XYb5b z$9W`9Br+22vA2qB){}W$UG=b^ngzFAyS%3?b6X7_=_$30d7XsTA zWB9_qj~2w?ltse~~Zwl=2jnK`mf>;~;j0DyP?2g>1*U zm5bH~`W?`wQuhz-jJn5*5{->x@6~|K|ANL=6zfgKAskb3BC1 zR#1Xj7#=HxV1=AL`=832erQM86i4ay>!rG-ig+7`1`J(z%S_#;R|pv|x2?0^+J7KRq(>lwl~K26X4{f`S3-+Wgl>+-LvEqTvbpjlsWokEcJ~O;!8gl)!&ss?czixyrc?mhJiyZls3Qcab8ajh*q?EY zVHm%VcN)o4A%*y8KnKp;cfUUQcC2OTZr`Ap!-G}M)tu32 zy1@(bSui6Va9Pb=9GxbobO{c|7|A!g)zp664Jj`e+YG=N!42FS3X_bmp`PXCQ$(e= z5M%`hUGpn>7n`Q%!AX-BbgQjEfQx4`M-SkbW@8!MvDgkyhrIZ_>~N+7(ph|{!pbq|+q8tOirDHBHR&b5TDuD)gm={}rwbQINJz!j36D zIai>GSO4hIuJy5D{e`)YIGV@I%Nsbpc_ z*u3A`4^+~s}#D%4b z^NKy{xUZD&hJPDK21Vt$GG<`np}D)ya~4rgzBL@pw|Q^Ydf?ZX)N0Xf<=T=3x<|L# zQNL2JpgW^Sv*7s26O=K^_;0UPDG$6QjlRSW=wjb$J>JF3ZUejv+~e?I8qJ9v-7dPu zx!jDOD)3YTGnDG6>F_qc>7%X4vUBBzZH8y78}Pt`6FLp%D!CwYl>}dPdP@dAeER%K z0O2@{@#BK|L9|&^m*K$|S3s7GuHwLMaa{9HztW0*Vh#ekmV_;RQ-0Dk3Mx&bgQhD-3^m0>VDn~cZ7d^ zY0r*|-{wx55xx415Z0@XvvgvGDxf75gr{%3qK6^2L4fSqlcZzbDiTtsQ_Gd{MlAt_Y6hY8S)4t-cSNXr_^i zJUz_0+Kw_k6@BqA-$9}=`)akoWPYMK(#ZXnX-ZE>9kL{t6+aI#Vk26Yy>|ExO?C&}ZJ@K-wm4kx z^<{kt@q3p*ISIEYd9M`8Tj<$vhj3b6=={2E5KcQ;pq2Mi{O|uy(Sv#dF0B&#f58?KeJ3|9`hpvNIAyM9nP1Ko1RPyafh?2V1bY3wV(|n1I zF=7~eYnOLS=ig!mI^LbOeE`7nsy&vsc<6C+*Dg(`w_Y-K)K=I~AW@WegB@1Dp+e%M z)2J(GB1Ky1ugU#|k8O}gI{?SEb%+oO>q_F=+wUG{Fqqi(oV*q?eVrVuM0nm<%=-N; zaJ>{dL{U$J)X5OIWZ$3-82Mt5d6b6Y`hE*wf7-WKMYJ)Y#}6al+JF3(meQGi>ncm_ zkTy4MAB5BQR$M+=K5{#}Z6)BwcKTD(gr%p)$GdTkZDgsq3OO0ou#HCI-JDgWtG-vd z)Q1P$@rg7A1;R)E?DN*>bt>O&9@;oEO$A4by~-nTEH?v5@jk-n5Wr9pUL>GiqhN9y`?6 z&fYSts$_E4tm*dQ?SvWEAGzh-v31`q2FyG>|BIMRhj6Z<|3}h!hb6tff4okoZ0hNl z#|%duODZcf3!HGu%7!D46`6yKl1k9ri&0sb=ym8Eyd;l`EH2yE0jfy1<&wH zpgEgWn9V{bpKV@7zrvwM{UlYm*VGrL;kB{eobS07Q5P*R4QS!^5f3UTWgKIo8zqXw zf3sOlg0s4fT^Czo@7pO#^?atyeC{UVZDm6dQXu~P#7JBhy273_GbD)ata$UUiJ*p9 zz7k`)HKjD*oA=zL&FBbNGmxShAo=!h>L)UZg`0kPz~)w)kVc<~*PDnIv#q(|z3if; z3G$5VAIq*miu=haHx)qDz()pWGt5qn{&k?xN#@&PB0?HKA%Y^OgEC!UZx8lV4(5HV z3S)X06*EQwzd~gF4(3|!bqBHEg_yxK7mai_T(IPQEO3)!-+ovu^_;~;hV}0J1YL_q zR-x;nxUp|5j`9zq>KaSx!x@O ziu~3_v!Fh3sWdjx6?HMO&KjZiW1T>#inRrR3*)`UAWIzqJ1DW{-j6SD=(6!+$p8KP z*ko3mRW9E;wcMD0iTr?>7&@iZ=rJmIioc+O`7zW`&=-x4t1d9;$G%z4vz|g|wOB2I zcOqb2_|>=$kn!&2ma{=qOMmuvkjj&+7n?VYKF=2v*}e#oHx1QR5X70e)EjjMSW~9I zll(sb?*f9y+JuH}-ra`K)IRG)@9Z4jUbPbIu{HX~vhFM2`f0F&o?z1G+u1t)jy17( zbB?SQkO{0U^S`lA9wdj^OJk$IRO_#Rm<-!5U-etE=mBS`x+A$07hI$3#f>RlCyZ7} zD-wB@hoVJ=^{6ujV{tC~Ks(h|Jp-|K4n{!ECEf%{tlV@Ac?RjS$eABdBBTlfNICz( zuOjR%ii?RM{c2pbh^>=VlAD%7AM7cb&2pydSx?&x#>a1Rq9V1tn5nNul_l?Nnn|7TAu&2zNe_|z*i(e9Lna?D5y*IwK zo+;6aT1-m{rGLIx`Dl2^5~}KALN86@x~b&fru~d;;?*j^MosjRNR^d9RYtY_#QTnT z>jmiyj-KB=+~s&JH!}<}>H6a*RQ?Z4F~7H@46M@+BCcrIKZKIo_ZHEdJE^EF}gH`_uurv78p?+h9ZHAhdX*L&(R@um+dkAan zczMwJGwy6MoCFOX&poL6Ql-nPUE6Y5%Td{#^+336IuKm?5p|0k z5>~Qk$cG_VHRCU4EDUfjE7g~mx0__-xfA{yYzP7MLT!-b$#!MubcEcFV)0<4KglT? zcOjbkxTt;{nQ>I{b0FtwM@!XKk17tqM_Mqk*_a!e$~l4foZ3XI7|E)w2qaXxQO9#J zb5X7406hG1)}XN>5B(=|b>CJdZuY`gh2C5tZpFos(6d+Os3y^Q{U`gX^Nz$Yx*9BY zgCFdH`z@{OV&T4!R4(XgGnUdr8|;9s_0qh_oYgDOu3|CQ;b8g8n`eeyRk>Swx^tD3 z^>#d`&?}ne!X-m8wqntZaU6mu*PWcT{<*HZT8=?Wni=#SazsYt06uqV?rW7pWn_E8 zxSRaL?M%eyRAliKt*pL0Zr_23p*ycy-N$mtx&zfB4ukmG{^6123=t(Li|XG=jujxYw5E3G3g&ryvE$6Z0YRIOqyd-Xj_0qCfDxxZ|V)wR%Q z3O#v>$ggEmf_qM4{`mMmYjAbt&r13l2OmkZYbP&_DUKKS(%qit4WrdNjJ?XZ8@TE9 z)7c_ru+ai``DLUGynrylIk!^o_%pFTO+Nd7PMYs1;wZ$qzVsxwArzMnQu z$*T>atQK(|V9Wr%w0?+i-#nK4Mt7cUWcqG&tIu8ITO%!jnE)uilN?hA3mz|oGgVQ# z$%-_eMT-Xp=&KA@ij5Vu^ky^uUz0<$K*Wjr+hiP@{4!5LPples`>Ck{d0s( zZ!THUJaxdM{Yez_LOR9~hOogBYSX?IyLmS~up3-z;9!Ska?CJS6z<1A%$V8BHdoV6 z>oBwUa9e=-3P8{}E(SN;Mg=e@16p{iRStg}Gk{R}KGJknA&{=#Lp%O!l>}3AeWBQC zr0rhW_DHgqz5O(+p5ee2A=pKSDDWVtE_#|~Cq(D{3L050V1iDr937s=RS(;vtkTGMj%8KCS zgVN%9H*1+%w{9ioBiZ2g=WbScT@|pEAN|^RsriE&&}7ZguNrM3mQfDkF~mXhXC!Nj z%c9|&J+U>0#D62!PQ;JD{ch1!+HMvNdy-}t;Shb;lJSnTPsaM^)+)+YE~o&RWziig zU9)RsUD@Qq>s)R4!r!WPqWu*oGa3Xrj6pa-j!({;Ki{ex@c#Hy!1D54@mbL41f5a7 z=H2EIkJY$5MjB+)9RlVir%Q7}DF?vVh@qAueucgULYnVprc~MfcpI-p7Xij>9X9=x z{h|3+D{ARgwjfkMTC4Tro7#yEFdKY0gKo%>ug>^`D83@G^)>s%L5QKxG$HOOrB9PW z`q0ECJfmIc?Rv);Si&Op{rR2Xez z?g{dKiu&>J9jdjAJ2oInSGR}DSCqGqcI`c>T(EO0HkdN*YS_NBdZkof{S7JQxP^9G z@syu-coXd0)GtHtyO5Il0H?!$Z3*=y4G;^WAd?_)8I>i}*U!Z5$Cc}9HS(-R`DXEjJ{%{sWR*C9~_Sz^^Z~r=6LR4i&dN+0~inNlU%@Xnl?5J`+({ z;|NPk`Ui23&5OM6N(}>k8#r@JW zL53r@F`c-@j;H7F&B_+J3qTr`gVnl3F>C|!8y`JJ%3^g2vJC|@N3I+5bqkkxK4Wi| z6Ez7#g@@K7Z2O)~&7OAn9=&FH_?JOvg&))Cm*;o3O3F1gxhy(*VJ=_(_r378+BNh| z9sK84FYDCJ9;Qb97}BSS8~(7`V&cy()SijRQchJQz6=<+pk9CtRWt9|w<;WLgj67t zNR}eeG_>zWNl$Wh_}qMR5W{OgXr4o#(yKEcaT1&VVB2sxk97*IDRk<$n~C4rg0xTR2__YH0Cr((Q)6=CA%>n@ycUW8Z?huTB=q)6Ji(I|CX2 zybj_k0Q@E3TlND-o=^O+-Xq|d8_8Y^RwX=`99%20`rMpUmANKtf`1)OYH(Y*Dm@ep$IqQpqh&HmRoO5SqHnC?PVU=oMQ%-!uUI7e za#md3u{$$rhWnU#z~G2@}Cxn%eE)ESn7T z(bMYn<#4~YL>GH*@qap}TnxuxBsuqK#{uYkHAceQ8t)`DpHQ69B-8jY)15N*A>r|!`ejRH)K-dLuuKb3-(*N}zN={djiN9+7Ox{n{?!d*glonEre)o|+ zd`j#Zd{5Pq;`Z}RSNd1HnNtj*la=?LDR%cqFS|PEFDd^`=Dr%<;;+h=zN0YPx!R$w zR~Wt2wq4of!FlpD8p;O<>1CBs6QspT-1n1l2bVGu&|Q{)I!+J%AN_skv`J5!Kz z&Cq=gCBH+dq|3*R>nodLCJ?pCdw09y&pUXcsd9#v-tsN@#O*)gPI)2}24cLddU zj8RuHsP#2B@Nk)|0{=JExk8&1+2v82;6cd=QDxbGdN!N>wvO?N1cTlS{AD)g^6e}f zq^=t6X>pT#8MpL*ugqLKCGV_))&1PREWemA3C=J26#aFLo>sc}9ngo^9fbY8H^8y> zOFU`TSd4xC$cp%w@g#0Rn#o$ws_?N7p1m=JRVABp4y~ibkg7!Ot9_N8sV8_vNq_gy zPsBi;r{g*eC%1EcH37AH+pS!U&pnOT1DVQqUevMm{WkFQ-_*OqNqfjqLqI9Vt7P(z zfwr^RF5$RyIxXWuNV`1o87-HgS8iS?Ztri`yKYq`1IyA~WQkfWoC{FiFOW8bPeOte zg!R=O-)yvID0Dx0p%wN?LRZP~mh!mPmJJ@ftN@Qv_1LP0$yO#0fpEPS)?^uR1`ZzH zHg>{Kqnh&C9agfV)0|H_aw5+P&Uk3~hS6z5kF+=-NV6f==Nv|M?t+g9Nvs(=#z3~C zg>CF$0yL$KcebWX#$AVd)Pdyh-%VNuPMaI~;zy~XBQnT&>>JQ3_)6@m&(V*{ONb#@ z??`ruXWus1xC?S&(H-e!-h0=F{Eevvl4qy`|1p_V{